From 9aea6d811be689f9495fa3a89e0cf42972a241c1 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Mon, 16 Nov 2015 13:29:13 -0800 Subject: [PATCH 001/707] terminal-notifier: Pass arguments in wrapper script --- pkgs/applications/misc/terminal-notifier/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/terminal-notifier/default.nix b/pkgs/applications/misc/terminal-notifier/default.nix index 2afebec9ee3..7d13f0112bc 100644 --- a/pkgs/applications/misc/terminal-notifier/default.nix +++ b/pkgs/applications/misc/terminal-notifier/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { cp -r terminal-notifier.app $out/Applications cat >$out/bin/terminal-notifier < Date: Sun, 22 Nov 2015 20:12:32 +0100 Subject: [PATCH 002/707] e19.efl: remove dependency on VLC --- pkgs/desktops/e19/efl.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/e19/efl.nix index 16c934b3b3a..aa662f1ed87 100644 --- a/pkgs/desktops/e19/efl.nix +++ b/pkgs/desktops/e19/efl.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinuxCurses, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, vlc, libwebp, curl, libinput }: +{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinuxCurses, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput }: stdenv.mkDerivation rec { @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext bullet xorg.libXScrnSaver xorg.libXrender xorg.libXfixes xorg.libXrandr xorg.libxkbfile xorg.libxcb xorg.xcbutilkeysyms openjpeg doxygen expat luajit - harfbuzz jbig2dec librsvg dbus_libs alsaLib poppler libraw libspectre xineLib vlc libwebp curl libdrm + harfbuzz jbig2dec librsvg dbus_libs alsaLib poppler libraw libspectre xineLib libwebp curl libdrm libinput ]; # ac_ct_CXX must be set to random value, because then it skips some magic which does alternative searching for g++ From 52f872ec27fa9bcbcc33f7d97ac4416386316f8f Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Mon, 23 Nov 2015 14:45:26 +0000 Subject: [PATCH 003/707] services.xserver: Disable Ctrl+Alt+Backspace by default Ctrl+Alt+Backspace is usually enabled by default under X, and is a keyboard shortcut that forcefully kills the current X server. This can lead to data loss by users if accidentally pressed. This commit introduces a new option, services.xserver.enableCtrlAltBackspace, that is *disabled* by default. If set to true, the previous behavior can be restored. A similar decision was made by the Ubuntu team, and is documented here: https://wiki.ubuntu.com/XorgCtrlAltBackspace --- nixos/modules/services/x11/xserver.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 3348e8d0582..fd862232e07 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -409,6 +409,16 @@ in if possible. ''; }; + + enableCtrlAltBackspace = mkOption { + type = types.bool; + default = false; + description = '' + Whether to enable the DontZap option, which binds Ctrl+Alt+Backspace + to forcefully kill X. This can lead to data loss and is disabled + by default. + ''; + }; }; }; @@ -533,6 +543,7 @@ in '' Section "ServerFlags" Option "AllowMouseOpenFail" "on" + Option "DontZap" "${if cfg.enableCtrlAltBackspace then "off" else "on"}" ${cfg.serverFlagsSection} EndSection From 50a842fb37c6c2cbba0edb8c2b35af451277e94f Mon Sep 17 00:00:00 2001 From: taku0 Date: Sat, 28 Nov 2015 12:00:44 +0900 Subject: [PATCH 004/707] thunderbird-bin: 38.3.0 -> 38.4.0 --- .../mailreaders/thunderbird-bin/default.nix | 2 +- .../thunderbird-bin/generate_sources.rb | 62 +++-- .../mailreaders/thunderbird-bin/sources.nix | 238 +++++++++--------- 3 files changed, 160 insertions(+), 142 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix index 4dd734ed043..388fc418de1 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download-installer.cdn.mozilla.net/pub/thunderbird/releases/${version}/${source.arch}/${source.locale}/thunderbird-${version}.tar.bz2"; - inherit (source) sha1; + inherit (source) sha256; }; phases = "unpackPhase installPhase"; diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb index 308e0b71c05..1bf623a4b77 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb @@ -1,43 +1,61 @@ -require "open-uri" - version = if ARGV.empty? "latest" else ARGV[0] end -base_path = "http://archive.mozilla.org/pub/thunderbird/releases" - -Source = Struct.new(:hash, :arch, :locale, :filename) - -sources = open("#{base_path}/#{version}/SHA1SUMS") do |input| - input.readlines -end.select do |line| - /\/thunderbird-.*\.tar\.bz2$/ === line && !(/source/ === line) -end.map do |line| - hash, name = line.chomp.split(/ +/) - Source.new(hash, *(name.split("/"))) -end.sort_by do |source| - [source.locale, source.arch] -end - -real_version = sources[0].filename.match(/thunderbird-([0-9.]*)\.tar\.bz2/)[1] +base_path = "archive.mozilla.org/pub/thunderbird/releases" arches = ["linux-i686", "linux-x86_64"] +arches.each do |arch| + system("wget", "--recursive", "--continue", "--no-parent", "--reject-regex", ".*\\?.*", "--reject", "xpi", "http://#{base_path}/#{version}/#{arch}/") +end + +locales = Dir.glob("#{base_path}/#{version}/#{arches[0]}/*").map do |path| + File.basename(path) +end.sort + +locales.delete("index.html") +locales.delete("xpi") + +# real version number, e.g. "30.0" instead of "latest". +real_version = Dir.glob("#{base_path}/#{version}/#{arches[0]}/#{locales[0]}/thunderbird-*")[0].match(/thunderbird-([0-9.]*)/)[1][0..-2] + +locale_arch_path_tuples = locales.flat_map do |locale| + arches.map do |arch| + path = Dir.glob("#{base_path}/#{version}/#{arch}/#{locale}/thunderbird-*")[0] + + [locale, arch, path] + end +end + +paths = locale_arch_path_tuples.map do |tuple| tuple[2] end + +hashes = IO.popen(["sha256sum", "--binary", *paths]) do |input| + input.each_line.map do |line| + $stderr.puts(line) + + line.match(/^[0-9a-f]*/)[0] + end +end + + puts(<<"EOH") -# This file is generated from generate_nix.rb. DO NOT EDIT. +# This file is generated from generate_sources.rb. DO NOT EDIT. # Execute the following command in a temporary directory to update the file. # -# ruby generate_source.rb > source.nix +# ruby generate_sources.rb > sources.nix { version = "#{real_version}"; sources = [ EOH -sources.each do |source| - puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha1 = "#{source.hash}"; }|) +locale_arch_path_tuples.zip(hashes) do |tuple, hash| + locale, arch, path = tuple + + puts(%Q| { locale = "#{locale}"; arch = "#{arch}"; sha256 = "#{hash}"; }|) end puts(<<'EOF') diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index bdc989fea22..e07e972bf41 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -1,126 +1,126 @@ -# This file is generated from generate_nix.rb. DO NOT EDIT. +# This file is generated from generate_sources.rb. DO NOT EDIT. # Execute the following command in a temporary directory to update the file. # -# ruby generate_source.rb > source.nix +# ruby generate_sources.rb > sources.nix { - version = "38.3.0"; + version = "38.4.0"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha1 = "45a8e9613b5d5083b264fb82704bc69c622372c5"; } - { locale = "ar"; arch = "linux-x86_64"; sha1 = "97ea8fa778bd4e5fc65d919f2d0f9f473e00fc38"; } - { locale = "ast"; arch = "linux-i686"; sha1 = "0c535223b5620f249ff32381c53e05c8f5429f1a"; } - { locale = "ast"; arch = "linux-x86_64"; sha1 = "01352d0046fa41d832c7f18c2b8d0c3d74ab95ce"; } - { locale = "be"; arch = "linux-i686"; sha1 = "f496db8690c9a7b61766a235ee1dc204f622fddf"; } - { locale = "be"; arch = "linux-x86_64"; sha1 = "2a62ca92f2dfafa3a58fedbf03304fd6daed01ea"; } - { locale = "bg"; arch = "linux-i686"; sha1 = "02934c4c9dba3fce844159dc790c0575c0202efd"; } - { locale = "bg"; arch = "linux-x86_64"; sha1 = "d8cf360615b05d805b88d6057e4f08527aba6576"; } - { locale = "bn-BD"; arch = "linux-i686"; sha1 = "880434d08155275dc4806d45afa365f62bb58ad0"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "e99dcde6db5bd3178ce58f67191bc3f54f75574a"; } - { locale = "br"; arch = "linux-i686"; sha1 = "7fab50b35a4bcff0e7e1268e3b50f2088209237e"; } - { locale = "br"; arch = "linux-x86_64"; sha1 = "d9d945dc271cf092746f8921f490e0f77359f5e3"; } - { locale = "ca"; arch = "linux-i686"; sha1 = "7f6b5f5523d3b67068e153515629bbbb3e944ee5"; } - { locale = "ca"; arch = "linux-x86_64"; sha1 = "abd73c39a87a2a28063e165941be98994d22f401"; } - { locale = "cs"; arch = "linux-i686"; sha1 = "a80a5e962d0ca4458365cee96715c830681b1ee0"; } - { locale = "cs"; arch = "linux-x86_64"; sha1 = "71096a0d6e8293682638abb9073cf2dc8f905ffb"; } - { locale = "cy"; arch = "linux-i686"; sha1 = "b64f444d523f3dd88f23d491e91193ef0422f664"; } - { locale = "cy"; arch = "linux-x86_64"; sha1 = "e8fdf1acb14801c97a3e48ff49706bd15f3433e6"; } - { locale = "da"; arch = "linux-i686"; sha1 = "73ce38987daf2a145dbca2aa8cd7ca32098598a5"; } - { locale = "da"; arch = "linux-x86_64"; sha1 = "f403094fbb49addc5d7dfe15370fdd612f067256"; } - { locale = "de"; arch = "linux-i686"; sha1 = "f265e65020397b79420691a475adb98f3bcc73a1"; } - { locale = "de"; arch = "linux-x86_64"; sha1 = "267ad171576e57df9a241a22332d15efa882e485"; } - { locale = "dsb"; arch = "linux-i686"; sha1 = "3d8fb2e858ea3210ddb9eb566235ffeddbc23cb6"; } - { locale = "dsb"; arch = "linux-x86_64"; sha1 = "7c50f42a6a0c5172469f37412664306049253637"; } - { locale = "el"; arch = "linux-i686"; sha1 = "732fade73221962dc840d3a97b440753bfda35fc"; } - { locale = "el"; arch = "linux-x86_64"; sha1 = "9e8f4a7698050b506a815af03534395bf6cfda31"; } - { locale = "en-GB"; arch = "linux-i686"; sha1 = "0c0c4f87977c0ca4a70db8ba22dcb35b5276f451"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "0217d912251c52acaf071a6955c725e365d0298b"; } - { locale = "en-US"; arch = "linux-i686"; sha1 = "1ffa88c200b17e4fe8ea647c58e0d479b3e673e2"; } - { locale = "en-US"; arch = "linux-x86_64"; sha1 = "e2a2690e2e7b72eff8944effc6d8a70f4fb2a3e7"; } - { locale = "es-AR"; arch = "linux-i686"; sha1 = "7fddb79300f158ed94c970dd9a0f384093a369fe"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "961e90db7063c5d49c8494ec31761ae1206effec"; } - { locale = "es-ES"; arch = "linux-i686"; sha1 = "69a5ad0cc12d9e8e17d4a47c705d3653106248f5"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "fe84027eef32f4788a8056ea331e2a7a1ecc3c8a"; } - { locale = "et"; arch = "linux-i686"; sha1 = "d1cdd86f79f6bd17a98a1fcaec70af34671f60c6"; } - { locale = "et"; arch = "linux-x86_64"; sha1 = "3ee90372f035ba972aff2bb9e8d592cf007fd2bd"; } - { locale = "eu"; arch = "linux-i686"; sha1 = "d0caf6d75b169a1a420f68210782230bc83d5cfe"; } - { locale = "eu"; arch = "linux-x86_64"; sha1 = "eb4250e4422699d09bb9a8a2b3a539f72a91e4d1"; } - { locale = "fi"; arch = "linux-i686"; sha1 = "37e6d23be510eee3d908a2396eee554c65f24539"; } - { locale = "fi"; arch = "linux-x86_64"; sha1 = "0dc06ca1c164a3f2ca7941e376fb3e085ec29f82"; } - { locale = "fr"; arch = "linux-i686"; sha1 = "a057112a12aa7e214b2fec5cb3a24126fabe1dbf"; } - { locale = "fr"; arch = "linux-x86_64"; sha1 = "392d413e2a4c16391af122c2cbcf264d901e875b"; } - { locale = "fy-NL"; arch = "linux-i686"; sha1 = "207d75317e6257c1eb95e6ba133e3a7229125ffa"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "69e02da4f9473b25f8d3b9cd74602f966899602b"; } - { locale = "ga-IE"; arch = "linux-i686"; sha1 = "5f356a214e32696e8296a7fee3b9cfe3d86b8176"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "bce6441acd9a438ea707f6db1d8f639fa676adb8"; } - { locale = "gd"; arch = "linux-i686"; sha1 = "8a4473b82a10ad3dfefdc381b90a0616d1ecaf6b"; } - { locale = "gd"; arch = "linux-x86_64"; sha1 = "3fdbe0debaf43a741b137eeb549117747dfa08eb"; } - { locale = "gl"; arch = "linux-i686"; sha1 = "235d6b94cf0e44e7bac6e76ae8c13bd5c090865e"; } - { locale = "gl"; arch = "linux-x86_64"; sha1 = "a5f23d30426fb0d78d7840ab2b2ed457785cc6c1"; } - { locale = "he"; arch = "linux-i686"; sha1 = "5b98752dd745d406325682faaaba2d8ce4c34743"; } - { locale = "he"; arch = "linux-x86_64"; sha1 = "2ce82ecdca404f72f033f3752e34122ff97e6006"; } - { locale = "hr"; arch = "linux-i686"; sha1 = "b7e8899d7db51129ef94c2b34bcf950307c0eaa1"; } - { locale = "hr"; arch = "linux-x86_64"; sha1 = "85e0d2ee0591df75754f03566f206085a43e1603"; } - { locale = "hsb"; arch = "linux-i686"; sha1 = "6252d41415ec5ba7841e629b2617fb38f5bfe25f"; } - { locale = "hsb"; arch = "linux-x86_64"; sha1 = "40ef8f4991f9670ded25372805b05cf090ae8419"; } - { locale = "hu"; arch = "linux-i686"; sha1 = "b98b9198d0347ccee4cf1b46405c375ed94d1c79"; } - { locale = "hu"; arch = "linux-x86_64"; sha1 = "8e144f40a677471b411608cca2170c90de122ffc"; } - { locale = "hy-AM"; arch = "linux-i686"; sha1 = "aa4d323f658f4330b13e5883ba8b6e2a3e441add"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "2273f2d4d15a4dc4681a8d21e6f42f2e1ba0772a"; } - { locale = "id"; arch = "linux-i686"; sha1 = "60b9a32ba6b831f851399c6f4ba675bff163aba7"; } - { locale = "id"; arch = "linux-x86_64"; sha1 = "73cda0ab1e1c04e7ab2816642481d2f9b41746e8"; } - { locale = "is"; arch = "linux-i686"; sha1 = "9b61caeaf4f1a7e5153d042f6ec52c7a4c4a5573"; } - { locale = "is"; arch = "linux-x86_64"; sha1 = "a705d9724c2fe246a3a9e96f7304bad73ed9897d"; } - { locale = "it"; arch = "linux-i686"; sha1 = "0fcd397c3a8f6519ec85f7f2d71416b27053813f"; } - { locale = "it"; arch = "linux-x86_64"; sha1 = "6900813562473c64a50087f5d0620666763ceb09"; } - { locale = "ja"; arch = "linux-i686"; sha1 = "786e9aadae199fb2a84b03ac9716f021f118e16e"; } - { locale = "ja"; arch = "linux-x86_64"; sha1 = "8f92502e03e2bdd704d57a3298a5c109be3d3927"; } - { locale = "ko"; arch = "linux-i686"; sha1 = "0d3c52e88f5d0cc329b8bcb3cf3322fb59651dd1"; } - { locale = "ko"; arch = "linux-x86_64"; sha1 = "065a6b448189246d52bee2ea2722d22253c7fcae"; } - { locale = "lt"; arch = "linux-i686"; sha1 = "b667e748814e2d2ea508eac799325aa4d3e6b56f"; } - { locale = "lt"; arch = "linux-x86_64"; sha1 = "174214613317d4ea2c25a6c9cbc61810fe579349"; } - { locale = "nb-NO"; arch = "linux-i686"; sha1 = "669f7f03860c7648bc901120f5bbb43e63424759"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "3cb36ad745d505241bba330e0d832a77d1ba8641"; } - { locale = "nl"; arch = "linux-i686"; sha1 = "7b399deb6e9a8d4db099bbaaadc8e5a000c13293"; } - { locale = "nl"; arch = "linux-x86_64"; sha1 = "1d7391c23da59b9367071c95d43ea2cc870c5388"; } - { locale = "nn-NO"; arch = "linux-i686"; sha1 = "25d80451d59a19339ce8d0e8e9b3fb76c183cca0"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "4af717ad8b7dcc7564bada20b3f28f179d29ae91"; } - { locale = "pa-IN"; arch = "linux-i686"; sha1 = "225eab7baf002da6543918e1682a931fe7cb4493"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "d519eaf04ee57e1ca1fffe2a1dc5cfbe876ce128"; } - { locale = "pl"; arch = "linux-i686"; sha1 = "be4eeed21159601047b59aa832c9adbd54a812dd"; } - { locale = "pl"; arch = "linux-x86_64"; sha1 = "47a7a6f548dfad92a725c56858fb625e42821d9c"; } - { locale = "pt-BR"; arch = "linux-i686"; sha1 = "5e44c5e9e07cbb0ef864a98c17a3e2c744d7eddd"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "e4337edbaee9023b69518f3804459508a5fb693a"; } - { locale = "pt-PT"; arch = "linux-i686"; sha1 = "5ce4e8a2626835c3d17c37a68db6c4cc9f3db5e4"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "f155173b56f3e0302288cb359170615d925d9c12"; } - { locale = "rm"; arch = "linux-i686"; sha1 = "57549fda6d8c9ef67950f6729bb17c8fb79d18cb"; } - { locale = "rm"; arch = "linux-x86_64"; sha1 = "96cbc015ea082bf9c8a2363929bec574c3ba264d"; } - { locale = "ro"; arch = "linux-i686"; sha1 = "85399bb39ddb09b5aedd44c5362bda1a375255d8"; } - { locale = "ro"; arch = "linux-x86_64"; sha1 = "6a4f1f43d188cc0bd817d150fe7c958aec4f0ac6"; } - { locale = "ru"; arch = "linux-i686"; sha1 = "9fdd1b141cde49a5453540f4ceb3d74dc92b05aa"; } - { locale = "ru"; arch = "linux-x86_64"; sha1 = "29537fbb4eacb6a9fc396802d74b35132620613d"; } - { locale = "si"; arch = "linux-i686"; sha1 = "410f15673c95ce3744c84559e5801b4c1cc062b6"; } - { locale = "si"; arch = "linux-x86_64"; sha1 = "383acd5b025d907ed0dee36f1b8fc5bf5234c860"; } - { locale = "sk"; arch = "linux-i686"; sha1 = "86e7b065876b4eb0177e7523bab78d36182f1517"; } - { locale = "sk"; arch = "linux-x86_64"; sha1 = "cdc547aca6dfff934195a69e1ad81a357f37fef4"; } - { locale = "sl"; arch = "linux-i686"; sha1 = "a88a74354e6b481418d8b5aec08a0c1f87693117"; } - { locale = "sl"; arch = "linux-x86_64"; sha1 = "d27b3c018904dcb6862f569b84b4200b05013df0"; } - { locale = "sq"; arch = "linux-i686"; sha1 = "822e117f5a840f46c6b2500ad80efb6c16c2a5de"; } - { locale = "sq"; arch = "linux-x86_64"; sha1 = "349aeab272d702afbe9f249c54a7cf6d17918f6a"; } - { locale = "sr"; arch = "linux-i686"; sha1 = "170c6f23bdb3222e7eb95591a22d09d17ca1b5a2"; } - { locale = "sr"; arch = "linux-x86_64"; sha1 = "eda779e2154ca0ede7c69435ad49fbd541ec21d1"; } - { locale = "sv-SE"; arch = "linux-i686"; sha1 = "63e9eb73d9854e72f93639c1383dd21075626efb"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "a824725919096f53c3372a038d999ce56b242d40"; } - { locale = "ta-LK"; arch = "linux-i686"; sha1 = "5b40dd6b193a92ddc6344825bf6e9c547f58b0a2"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "5d6c019b2708b87ac32db16b828966f1b1215e08"; } - { locale = "tr"; arch = "linux-i686"; sha1 = "17c8ccd0c6d08dd00a6267d9c6850ea8a027b4a5"; } - { locale = "tr"; arch = "linux-x86_64"; sha1 = "b5c6a09750d01af1f8428425c9c7af9f73a7e42b"; } - { locale = "uk"; arch = "linux-i686"; sha1 = "6dbfd27fd8efd59cd1af932af3f302f9cc35e314"; } - { locale = "uk"; arch = "linux-x86_64"; sha1 = "690f60f461d958a076af671321b2588607369754"; } - { locale = "vi"; arch = "linux-i686"; sha1 = "84dc2737efcc831a63ea2ceeccfdadb2c065c201"; } - { locale = "vi"; arch = "linux-x86_64"; sha1 = "323be14cf52c7587200856ad31528a93d4f88766"; } - { locale = "zh-CN"; arch = "linux-i686"; sha1 = "9186336bcf83179205b91f51c56ee7972024d59c"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "97f65edfe8cbb419c4eacb54163df629b8fdb9bb"; } - { locale = "zh-TW"; arch = "linux-i686"; sha1 = "239c526df1c25aa4b7f639fb0a88d1969d49e2a1"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "88cf0f7fd1c1f73f1c8bfef0a292eac3158f7b88"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "30383ea1567d2338af99de09f144e4a3cf6c195bc3707c1011171b4c09a885ab"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "0325b8da77e0ec1c97eac81367cbf68c2e4cf62ddd086ab07494cd1705d6134e"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "5e91cb9df7aab8c887dadcdf8d01b0dd2e6427ed570333b66a680c57ff9391b2"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "3e275d4db234f2ce1c226577dbd6289f870c7ac9f3963136eaa6fa097cb7fbef"; } + { locale = "be"; arch = "linux-i686"; sha256 = "74a4dcbcf45e766b3a4b23a0bf4c08d61b8e8e8923b45d27ca23f2785dd4120b"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "52e9c46cb12b4cdb8d6eaa384717572ef5bd845c18a36d8cfd15db39c4d0332f"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "0dde851fee0eba8be214f8f673a5da9924f84cf1b558d3f76aa80f6008e518f1"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "198607f773ddc38ab1c2433500f53578fab38dea817a24ae94849fa8045bbb67"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "a34e8ae21b22cb80b772a31341a7dd5da23aaddf8685c6a1a20be6f8f3c312af"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "03f611a7029002e593175cb4e624b1d3885c12847115a027d89625d3be9247c4"; } + { locale = "br"; arch = "linux-i686"; sha256 = "6c61dcc67472b3fd1b8361d4960e0ec2a190e7a18aa9e05060fa80a7d23b3796"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "f4589f1e31697fd65296f306350558ca9355962182e69d0c6f4b303b62407e5b"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "dd2f59e278a34081c6ac3f1c8dbb61b2e9fe188b23715e6917c7034ac562ae42"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "0f77e01e3a9dda94c8dd7cc34ab2eefbfd4bcacc6d09b3a8563632130c3fb83b"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "389e99cc4b2c56067ea02eef9e2e347ef972fe21a20a094c6d056aa5e7fb65ff"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "c34ee1e3607df27a9edc03faed4476533489a962715a9d7920282044e9af2dd6"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "f77986fb3ab81e82e611247066ba6856518a209694cc71592895c4186ec80607"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "549a0c15bbd298e9d3753782e97a0874bf2bfca607bfed484efe3b9fdce3c9b0"; } + { locale = "da"; arch = "linux-i686"; sha256 = "e56cf65ce0719a3a22d2fdb33ce08113348022afd3a557f2ac39a25e35f632de"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "991b5ff474cff16d106b88ee31ac889c6e0543e15b3bf4340c3c263cd3a3ea4c"; } + { locale = "de"; arch = "linux-i686"; sha256 = "7f28547c9e67c4d76815337d8f5f39e303d1a1055077a77af42ad4162dd3b476"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "4c16d7477792759eb754cb5770be67dc78dab3cdfb47c29bb3bf038dbfe6601e"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "8f5a82f61c80dd9a1358ee43e192364f34dbba0253aeba00ad0c5d1656e57a34"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "7804c72b8c758193fbd45feedc185d01717133bf2fa1b1d0054ea421224c780e"; } + { locale = "el"; arch = "linux-i686"; sha256 = "8128d4330fdfa0c5b0e5b309d1957b7523b337f862bd1e9d2286f50fc652f339"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "1d1f7859cd25aa5bd18222f97b4496c8f661a375b1e0404eb92b0bec3bb60ae7"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "980f494e26c8a2904490d55ff2bdfcf8b3d2c82c4b251a7ade3bce90d1e4632c"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "3f3fd4139c64bbea32c53683a2ba75be24fa4a2024922c42b4647ce28a59457f"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "bca69f68e6296608e50bb798e46e209cc3be9f20b5baacc102f7571316f7f65e"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e8d9a31537a6db91efec6372106e655d73ab3e55f3c0ff2e42e564e2a4da7781"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "bbb8817ed30f591f54d47066765cc4796786f5fa41cd2ee2dbf59001fcaad4c6"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "06b55c261bc0cfbc257c264e9643088682256aaf739c8905cfbd4cd08f0868bd"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "44a77de45e05ad469cd03d17efa4766a1e2e06bc8e2e7a5d954db3aea17b8407"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f14c54fc64eb586c8015352d24b392268d3b2ced7312a5647fc1385e14f6d93d"; } + { locale = "et"; arch = "linux-i686"; sha256 = "81b28a75d61d9f8463f18ce48943b0f701f392201655eba4899fa609cb59cd9c"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "974247ffb2e003026d46888b425a5f497b7a6d06213190e5668c085e1c44453d"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "f45344ec704ad5a07639da1076ad2e6b1cad21bb75c9462e5e46abad3e57b588"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "4acba2bb5780f85e45a28f58027b75b2832281a7f001f780b215c564a2da2671"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "74c4d196d31fbc000d541d057ed7dfa31cf713f7964be4bc6fe1c3f80680824d"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "14dfe7b1cf2b1feb8a27628a27d5ef00e64dc401c5aebac1e01e1b94f7d091b6"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "a6749feae77747703f3a07a1c58bc5679c5faaeb207cb5e46f98cbac733294e1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "201af3653ade9411902e208a2d16a7b0357d2a4a44d5dfcccf59d7939e24e787"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8521f1f0551531aef107a21ad953fdeaf0b025266f709e9cfd49eab92a3dcaf2"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "195f0f25dab810e4f8a89d01f3ddb837378cd9fd691425b0b6b50653ac9bad73"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "f3f216995781f4ec55346822483d073e4a1c15449df78e56a05acb7743198292"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ebcbc721eee9020ac52eeee92531307512a8a3f2306eee3952b9343a52381d4b"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "234e5cb13726b1025c96403e8522c2cbb169ba547513c007501230d6fff3face"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "2cffd346a895b520c804d8efc7f92e38ace1256a007d8a95abd5687c6fdebcbc"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "e65afb4d848a4d6922b550888990733046227dd9201c917b161f19d9b5cab232"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "ec85e88f167c195fb1f5ac07adcd4b1ebe538ccb94959a1d2d9ca33406fc2277"; } + { locale = "he"; arch = "linux-i686"; sha256 = "2b6f436f26ab131d6d6e883a16d27f5a5b9570ada883fe8a387462ad6a2e50ea"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "e37020bd431a697b73b88cfc1a9ddee0168009627ce3848684d8de499ad3b053"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "7c005e34cde48c606dbd67d43fa691c96cd8a27ce50b552b1c1b3e114ae112b3"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "b41260a478e8afa2ae530d6b170514a815b8962bbb3bd32431032604868c3d48"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "b4b2e41f9afe8eea8b347bd8fe0ba8d03ac8b9cf9b055469e053e4f72bc1c665"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b6540fe80976a53828058e91f4a311192a7da37fd1ea8574161c0cfe494d17f2"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "c7b27a351e095353f2f53b50275ed7774faeb9254b980dd6571d48a935b50630"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "d5b014fd679bc475ade1278ba661a97e0a92d0fea8a6351e199677f5185f19f4"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e6748c7f84a6040e98bb0cb3b1ec1c975f2174f8a89c2cc0ef83921dd56d2b1c"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "ce902a1ecadf1a89ab7f32ed17eef33725c946447fd67bc83cde0492fd65022b"; } + { locale = "id"; arch = "linux-i686"; sha256 = "6f2851c35f8b3fa5187d05d252da8d593f5ec4f9d268dc9c6973b0f87ed0733e"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "1a89f09b6a4c3418fb4a1490430e96742e5e8f5dc8b2613ccd9214950c6e8c80"; } + { locale = "is"; arch = "linux-i686"; sha256 = "e1cdede34db4b9d289596a689e04452813b6c9a83c72513d51c9f356879af9b2"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "eeb91667080edb15bb5e023333ff7410580b70de878628b4e6bbaa3d0db2bdfa"; } + { locale = "it"; arch = "linux-i686"; sha256 = "bd531bf775d991710fd63f1de90b6389c176d6a0c7d7068a8139f70379d6a76b"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "89fe33ffda15340926c727b535b378bf629389edccf8f8627b03b4056284b93b"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "6e22ad0f04be5ce33dfe1d33d4d935e0dce425d80c5e6e07f3b7f2c856f64aee"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "2aaafcb3b5da060458e67f493c10a3f02266e328222f25f96b8229f8dfec37b2"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "7a0a5957bb1cf2724e551fe2f05e06e4493f95ea939812f535a166428d127a25"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "ee62aee7a4b549d95e4bcab696c28ada842f352111bb44f4d39d1fe05a49d970"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "ed13eeea81f3673ae082e92db0cb966889f00cfc14c6f54f4f90677a3adc0fd4"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "22fdb92474591dcb05fae0c6bf65d696bcba718b208224411867a38af187c87a"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "44c999f4f73d02ea3c336ceba5771ddd187ce241fd3dcc027f315bdd935ba1c4"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "04aaf3ce92aaadfc975730956b0e92a3b26b5b1abfb376bbc2e8c35b2b1d5169"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "06b86c4bc4018e5117a8e8a129f81d8ca5fb2781bd06a2f2ec29fcaceba23d58"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "186ee5e191160a72f6f5f99371412cc0cb44fc66184d5a33b0aa8cc480b784c7"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "0ce71ba703d3b307ae66502768c6fe924fbd838570f917e1ab65fc8ffedddfc8"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "4e5f3b1ac34c61ae977d9f346fa04de7a3b21a21756bbf120f5d1bd8f56a98c9"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "7b99742ca9ccca0f5151d4f9ff4b3fffbc9df5f6c8e89c3f2236da84639d6050"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6e66778a0c318add8d8fdac631400af94a9fff77d90c1c039a91e3b4ae8e66fe"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "7d50ff91e15954c4736309e23425603ae731c9d221936106a67517a5caf8c24d"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "bc224b70b522199e6c3c7012f3aec9a4cd6b31feb8eea23e3701ff891bcd2d77"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "7194b4ef864aa1cfcc00d9ba108cb9436bfcb72fda9a4bf2ff3abbf47877a5f4"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "6a94b5a6448af6c273fa526b3a359f4435482d1f55f9fbd40ef0d7aded98b1ad"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "1a0fab79901d40fe8709e8675a3c8cc6cb6474e10c64730bcda13a3577f94334"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "3672d9b0e9de882ef9f9851e0ecd9deb52053c65b4a747ac8ef0700b53426f5a"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "5f2008f9225ade5e1cff93f804e59b95f998129b1de7910280a3a7f508ea9ca5"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "645d13223d1aaf5ca3768515e6d9ac12a4205834bf1329765fbc6ff0410eed8e"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "582bafffc11ff585860b5af8e8f75d359f4f8e928c794cf35522c083089664ea"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "bf3d9ca3e1ee0d55dd601d25be1b2f2c9ebbe78094a2df725704b060b834eda0"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "3f3ebf446a22176b429cc328b002ffa723e27727ca29def5dfb88eeddef605f7"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "41f17ef5311d0d1cb10893adb68ca312710f16b07c41d64b31695013cfe15cdd"; } + { locale = "si"; arch = "linux-i686"; sha256 = "de99654352ff974fcf0c83d0f6aca669bf6fbfcc6ad534b0a26568d30c650564"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "554e32f4c204a8c7aa1b3d83dd736524abc0595c5fde6c5f58b0b5a644133df1"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "c54c6039343bd0bdbe449e6c8633a8aa18ce187850a4d81912b0751d84769fa4"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "cc38fdc0202da4a7292564f3f30fc01080582991dd5a5fb28860ccb4f4c8d75f"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "a276c5f8d1ce308f79f6ae6f95118164bd8882acc9c2aa8140c544626d1c1960"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "ccbbb0cfd53a9ac5f500e7313111a74d305107578ab94e17bf54175f3366279e"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "ede984ffb03f4a35ee18699a217d1d75492a4e7a372168a9c6ccc8fb7d133922"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "43a3fdb69989c0365d568eb7d7e697fd9d94ce59f0438a3f9b0e615c255e1eb3"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "48ee50e180515633db238d73ec8d50cd3dd5dd79e8ab7050f341a5be73401dd9"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "2a7deb046cd8652e04aafcd88b8d621a2503f7061c6b48cdafcbc763143e88bd"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "e87406cb2503ab7cc0ee8df8ac4ec92c90e5033a0133da72b14fd72e736c5360"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "f6227e1c4442dca0ff7ececf90c03bd711d6a5a83d0f8bf9857dd5c964ed243f"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "758c22dac6d97296ef1543f7eafca7d937a2313dd09ac3ca4bfe401009afe210"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "5f1993c3c54cd0ae42cdac9606664d8127de26ef31a94ec4f7da264a233d788e"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "68a3dce3a3c84d111b36dc544a82496364d3b16b411d70ee148bf8f9b8d650a0"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "facf8cc17d37049ce5c48a9aec9ce97a46242c46c18b2b52a2b3d6ca14217f63"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "836cd0eca497cc554da3e68e2274c16c875dc600b8541854a4c11e54e3262b49"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "2fdaafbd212530c309639aa0ee3ebc113c8aeddf7811b5db51e9792a98deeecb"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "9b263fb42a5ed939dc63a452e7cb87c295c6eaf270bfa97d9c858eed2931c0ae"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "b7684a1836b489b5ef8ad9b28ce0837a846fa55305f83d3a998f6722a97c0e65"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "39b0d87388ae8646f7b81d1008e8b9019a3f702031103e497326bb80988559ed"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "c85ad956bb69a97abd116b30ca5e2303fe4aebdffb08a8120ce7fdeda161b117"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "e2f931b5ffbb1d6169e16125bcc40bc432debc01354f193450075d19f0a23a78"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "3d9310cec9c1370e6a9fa8185935c6c48c3029fc17b6f2fcc311e8f8565ac804"; } ]; } From 6a766f47c22503ba0bb355547e96a64cbcb38ec6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Dec 2015 10:53:41 +0100 Subject: [PATCH 005/707] glibc: Fix assertion failure when using incompatible locale data Borrowed from http://git.savannah.gnu.org/cgit/guix.git/plain/gnu/packages/patches/glibc-locale-incompatibility.patch https://github.com/NixOS/nix/issues/599 We may also want to apply http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/glibc-versioned-locpath.patch but we'll need to ditch locale-archive first. (Apparently locale-archive is not very useful anymore anyway.) --- pkgs/development/libraries/glibc/common.nix | 2 ++ .../glibc/glibc-locale-incompatibility.patch | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index cf356ccefbe..26d2f2454b4 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -61,6 +61,8 @@ stdenv.mkDerivation ({ ./security-bdf1ff05.patch ./cve-2014-8121.patch ./cve-2015-1781.patch + + ./glibc-locale-incompatibility.patch ]; postPatch = diff --git a/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch b/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch new file mode 100644 index 00000000000..8ca2ce4cd88 --- /dev/null +++ b/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch @@ -0,0 +1,25 @@ +http://git.savannah.gnu.org/cgit/guix.git/plain/gnu/packages/patches/glibc-locale-incompatibility.patch + +This patch avoids an assertion failure when incompatible locale data +is encountered: + + https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html + +--- glibc-2.22/locale/loadlocale.c 2015-09-22 17:16:02.321981548 +0200 ++++ glibc-2.22/locale/loadlocale.c 2015-09-22 17:17:34.814659064 +0200 +@@ -120,10 +120,11 @@ + _nl_value_type_LC_XYZ array. There are all pointers. */ + switch (category) + { +-#define CATTEST(cat) \ +- case LC_##cat: \ +- assert (cnt < (sizeof (_nl_value_type_LC_##cat) \ +- / sizeof (_nl_value_type_LC_##cat[0]))); \ ++#define CATTEST(cat) \ ++ case LC_##cat: \ ++ if (cnt >= (sizeof (_nl_value_type_LC_##cat) \ ++ / sizeof (_nl_value_type_LC_##cat[0]))) \ ++ goto puntdata; \ + break + CATTEST (NUMERIC); + CATTEST (TIME); From 403271a476cbed858a0c82c1036177510c7b5633 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Dec 2015 18:12:32 +0100 Subject: [PATCH 006/707] perl: 5.20.2 -> 5.20.3 --- .../interpreters/perl/5.20/default.nix | 9 +- .../perl/5.20/perl-5.20.2-gcc5_fixes-1.patch | 127 ------------------ 2 files changed, 5 insertions(+), 131 deletions(-) delete mode 100644 pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch diff --git a/pkgs/development/interpreters/perl/5.20/default.nix b/pkgs/development/interpreters/perl/5.20/default.nix index 05d64e9c511..659fad6bb9b 100644 --- a/pkgs/development/interpreters/perl/5.20/default.nix +++ b/pkgs/development/interpreters/perl/5.20/default.nix @@ -21,11 +21,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "perl-5.20.2"; + name = "perl-5.20.3"; src = fetchurl { url = "mirror://cpan/authors/id/S/SH/SHAY/${name}.tar.gz"; - sha256 = "17cvplgpxbm1hshxlkra2fldn4da1iap1lsnb04hdm8ply93k95i"; + sha256 = "0jlvpd5l5nk7lzfd4akdg1sw6vinbkj6izclyyr0lrbidfky691m"; }; outputs = [ "out" "man" ]; @@ -33,8 +33,6 @@ stdenv.mkDerivation rec { patches = [ # Do not look in /usr etc. for dependencies. ./no-sys-dirs.patch - # Remove in 5.20.3 - ./perl-5.20.2-gcc5_fixes-1.patch ] ++ optional stdenv.isSunOS ./ld-shared.patch ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ] ; @@ -84,6 +82,9 @@ stdenv.mkDerivation rec { ''} '' + optionalString stdenv.isDarwin '' substituteInPlace hints/darwin.sh --replace "env MACOSX_DEPLOYMENT_TARGET=10.3" "" + '' + optionalString (!enableThreading) '' + # We need to do this because the bootstrap doesn't have a static libpthread + sed -i 's,\(libswanted.*\)pthread,\1,g' Configure ''; preBuild = optionalString (!(stdenv ? cc && stdenv.cc.nativeTools)) diff --git a/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch b/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch deleted file mode 100644 index 21f3ca8d7a5..00000000000 --- a/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch +++ /dev/null @@ -1,127 +0,0 @@ -Submitted By: Ken Moffat -Date: 2015-04-17 -Initial Package Version: 5.20.2 -Upstream Status: Committed -Origin: Petr Pisař and Tony Cook -Description: Fixes Errno.pm and h2ph with gcc-5. - -1. cherry-picked because the change to $version will not apply, from -commit 816b056ffb99ae54642320e20dc30a59fd1effef -Author: Petr Písař -Date: Wed Feb 11 15:46:37 2015 +0100 - - Fix Errno.pm generation for gcc-5.0 - - gcc-5.0 -E interleaves now line numbers with expended macros, so that - the generated errno.c will be preprocessed to - - EBFONT => [[ - 59 - ]] - - which is hard to parse in in line-based reader. - - So use -P option with gcc >= 5.0. Global -P usage would break makedepend, - global -ftrack-macro-expansion=0 would break lib/h2ph.t. - - RT#123784 - -diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL -index 3dadfce..c6bfa06 100644 ---- a/ext/Errno/Errno_pm.PL -+++ b/ext/Errno/Errno_pm.PL -@@ -215,20 +215,31 @@ sub write_errno_pm { - { # BeOS (support now removed) did not enter this block - # invoke CPP and read the output - -+ my $inhibit_linemarkers = ''; -+ if ($Config{gccversion} =~ /\A(\d+)\./ and $1 >= 5) { -+ # GCC 5.0 interleaves expanded macros with line numbers breaking -+ # each line into multiple lines. RT#123784 -+ $inhibit_linemarkers = ' -P'; -+ } -+ - if ($^O eq 'VMS') { -- my $cpp = "$Config{cppstdin} $Config{cppflags} $Config{cppminus}"; -+ my $cpp = "$Config{cppstdin} $Config{cppflags}" . -+ $inhibit_linemarkers . " $Config{cppminus}"; - $cpp =~ s/sys\$input//i; - open(CPPO,"$cpp errno.c |") or - die "Cannot exec $Config{cppstdin}"; - } elsif ($IsMSWin32 || $^O eq 'NetWare') { -- open(CPPO,"$Config{cpprun} $Config{cppflags} errno.c |") or -- die "Cannot run '$Config{cpprun} $Config{cppflags} errno.c'"; -+ my $cpp = "$Config{cpprun} $Config{cppflags}" . -+ $inhibit_linemarkers; -+ open(CPPO,"$cpp errno.c |") or -+ die "Cannot run '$cpp errno.c'"; - } elsif ($IsSymbian) { -- my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc -"; -+ my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc" . -+ $inhibit_linemarkers ." -"; - open(CPPO,"$cpp < errno.c |") - or die "Cannot exec $cpp"; - } else { -- my $cpp = default_cpp(); -+ my $cpp = default_cpp() . $inhibit_linemarkers; - open(CPPO,"$cpp < errno.c |") - or die "Cannot exec $cpp"; - } - -commit 3bea78d24634e630b610f59957e7a019205a67b2 -Author: Tony Cook -Date: Mon Feb 16 15:57:00 2015 +1100 - - h2ph: correct handling of hex constants for the preamble - - Previously they were treated as identifiers resulting in code - generated like C< &0xFFF >. - - We also try to prevent compile-time warnings from large hex integers, - the user isn't responsible for the generated code, so we delay those - warnings to run-time. - -diff --git a/utils/h2ph.PL b/utils/h2ph.PL -index 9a8b14d..d082f22 100644 ---- a/utils/h2ph.PL -+++ b/utils/h2ph.PL -@@ -769,7 +769,7 @@ sub inc_dirs - sub build_preamble_if_necessary - { - # Increment $VERSION every time this function is modified: -- my $VERSION = 3; -+ my $VERSION = 4; - my $preamble = "$Dest_dir/_h2ph_pre.ph"; - - # Can we skip building the preamble file? -@@ -788,6 +788,11 @@ sub build_preamble_if_necessary - - open PREAMBLE, ">$preamble" or die "Cannot open $preamble: $!"; - print PREAMBLE "# This file was created by h2ph version $VERSION\n"; -+ # Prevent non-portable hex constants from warning. -+ # -+ # We still produce an overflow warning if we can't represent -+ # a hex constant as an integer. -+ print PREAMBLE "no warnings qw(portable);\n"; - - foreach (sort keys %define) { - if ($opt_D) { -@@ -814,6 +819,18 @@ DEFINE - # integer: - print PREAMBLE - "unless (defined &$_) { sub $_() { $1 } }\n\n"; -+ } elsif ($define{$_} =~ /^([+-]?0x[\da-f]+)U?L{0,2}$/i) { -+ # hex integer -+ # Special cased, since perl warns on hex integers -+ # that can't be represented in a UV. -+ # -+ # This way we get the warning at time of use, so the user -+ # only gets the warning if they happen to use this -+ # platform-specific definition. -+ my $code = $1; -+ $code = "hex('$code')" if length $code > 10; -+ print PREAMBLE -+ "unless (defined &$_) { sub $_() { $code } }\n\n"; - } elsif ($define{$_} =~ /^\w+$/) { - my $def = $define{$_}; - if ($isatype{$def}) { From 79b1e05b42152bd1f2f84774dc2aea6ce06a25ae Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Thu, 3 Dec 2015 00:02:08 +0100 Subject: [PATCH 007/707] jackaudio: compile without profiling --- pkgs/misc/jackaudio/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/misc/jackaudio/default.nix b/pkgs/misc/jackaudio/default.nix index 25fd1a5cbbf..b5748c0f832 100644 --- a/pkgs/misc/jackaudio/default.nix +++ b/pkgs/misc/jackaudio/default.nix @@ -51,7 +51,6 @@ stdenv.mkDerivation rec { python waf configure --prefix=$out \ ${optionalString (optDbus != null) "--dbus"} \ --classic \ - --profile \ ${optionalString (optLibffado != null) "--firewire"} \ ${optionalString (optAlsaLib != null) "--alsa"} \ --autostart=${if (optDbus != null) then "dbus" else "classic"} \ From 3c437a643fff579909702229c1a8521600feba16 Mon Sep 17 00:00:00 2001 From: Burke Libbey Date: Tue, 1 Dec 2015 22:46:30 -0500 Subject: [PATCH 008/707] GNU apparently modified bash patch 042. --- pkgs/shells/bash/bash-4.3-patches.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/bash/bash-4.3-patches.nix b/pkgs/shells/bash/bash-4.3-patches.nix index c994ed636a9..f84ac836e94 100644 --- a/pkgs/shells/bash/bash-4.3-patches.nix +++ b/pkgs/shells/bash/bash-4.3-patches.nix @@ -42,5 +42,5 @@ patch: [ (patch "039" "1v3l3vkc3g2b6fjycqwlakr8xhiw6bmw6q0zd6bi0m0m4bnxr55b") (patch "040" "0sypv66vsldmc95gwvf7ylz1k7y37vnvdsjg8ajjr6b2j9mkkfw4") (patch "041" "06ic2gdpbi1afik3wqf9d4vh95if4bz8bmhcgr555621dsb35i2f") -(patch "042" "1bwhssay66n75fy0pxcrwbm032s6fvfg7dblzbrzzn5k38a56nmp") +(patch "042" "06a90k0p6bqc4wk2dsmapna69124an76xvlnlj3xm497vci968dc") ] From 12e788ff44a7c0eeca3bb8cb1a11d6308c2b9b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 5 Dec 2015 11:01:34 +0100 Subject: [PATCH 009/707] tarball: fix darwin evaluation --- 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 c6d27d5d992..6dff2274b0f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12583,7 +12583,7 @@ in modules // { (if isPy35 then null else html5lib) modules.sqlite3 beautifulsoup4 - ] ++ optional isDarwin pkgs.darwin.adv_cmds; # provides the locale command + ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command # For OSX, we need to add a dependency on libcxx, which provides # `complex.h` and other libraries that pandas depends on to build. From ce96057588821156d08b48cf8647b6cb8730e63c Mon Sep 17 00:00:00 2001 From: Christian Zagrodnick Date: Fri, 4 Dec 2015 16:17:45 +0100 Subject: [PATCH 010/707] add helper to lib/attrsets: hasAttrByPath --- lib/attrsets.nix | 11 +++++++++++ lib/tests.nix | 10 ++++++++++ 2 files changed, 21 insertions(+) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 22ecc808679..84f6cb3658b 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -23,6 +23,17 @@ rec { then attrByPath (tail attrPath) default e.${attr} else default; + /* Return if an attribute from nested attribute set exists. + For instance ["x" "y"] applied to some set e returns true, if e.x.y exists. False + is returned otherwise. */ + hasAttrByPath = attrPath: e: + let attr = head attrPath; + in + if attrPath == [] then true + else if e ? ${attr} + then hasAttrByPath (tail attrPath) e.${attr} + else false; + /* Return nested attribute set in which an attribute is set. For instance ["x" "y"] applied with some value v returns `x.y = v;' */ diff --git a/lib/tests.nix b/lib/tests.nix index 1fb2cbf5b53..c3b8839fda9 100644 --- a/lib/tests.nix +++ b/lib/tests.nix @@ -120,4 +120,14 @@ runTests { expected = { success = false; value = false; }; }; + testHasAttrByPathTrue = { + expr = hasAttrByPath ["a" "b"] { a = { b = "yey"; }; }; + expected = true; + }; + + testHasAttrByPathFalse = { + expr = hasAttrByPath ["a" "b"] { a = { c = "yey"; }; }; + expected = false; + }; + } From b789856ce3bb4029d24acf90c321d0f36d4971f9 Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Mon, 7 Dec 2015 14:23:23 +0000 Subject: [PATCH 011/707] gosmore: r30811 -> r31801, fix sha256 --- pkgs/applications/misc/gosmore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix index 43631ecdb24..67c21aea9e6 100644 --- a/pkgs/applications/misc/gosmore/default.nix +++ b/pkgs/applications/misc/gosmore/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchsvn, libxml2, gtk, curl, pkgconfig } : let - version = "30811"; + version = "31801"; in stdenv.mkDerivation { name = "gosmore-r${version}"; src = fetchsvn { url = http://svn.openstreetmap.org/applications/rendering/gosmore; - sha256 = "0d8ddfa0nhz51ambwj9y5jjbizl9y9w44sviisk3ysqvn8q0phds"; + sha256 = "0i6m3ikavsaqhfy18sykzq0cflw978nr4fhg18hawndcmr45v5zj"; rev = "${version}"; }; From c515be46510b02d541ef8b1e978227fcf0367deb Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 8 Dec 2015 16:46:57 +0000 Subject: [PATCH 012/707] networkmanager: set uid/gid for the networkmanager openvpn agent Fixes #11317 --- nixos/modules/misc/ids.nix | 2 ++ nixos/modules/services/networking/networkmanager.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 6ff95605d4b..7a7ed2f4408 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -238,6 +238,7 @@ heapster = 214; bepasty = 215; pumpio = 216; + nm-openvpn = 217; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -453,6 +454,7 @@ calibre-server = 213; bepasty = 215; pumpio = 216; + nm-openvpn = 217; # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 7df194fa419..8ab4cfcc114 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -223,9 +223,11 @@ in { } { name = "nm-openvpn"; + gid = config.ids.gids.nm-openvpn; }]; users.extraUsers = [{ name = "nm-openvpn"; + uid = config.ids.uids.nm-openvpn; }]; systemd.packages = cfg.packages; From 985bd0808e5f0c43cd378ac4ba1fe51575a3bbd3 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 8 Dec 2015 10:59:48 +0100 Subject: [PATCH 013/707] syslinux: fix missing mtools dependency closes #11472 --- pkgs/os-specific/linux/syslinux/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 5ebcef39e47..c051aac4312 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, nasm, perl, python, libuuid }: +{ stdenv, fetchFromGitHub, nasm, perl, python, libuuid, mtools, makeWrapper }: stdenv.mkDerivation rec { name = "syslinux-2015-11-09"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { patches = [ ./perl-deps.patch ]; nativeBuildInputs = [ nasm perl python ]; - buildInputs = [ libuuid ]; + buildInputs = [ libuuid makeWrapper ]; enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...' @@ -36,6 +36,11 @@ stdenv.mkDerivation rec { "bios" ]; + postInstall = '' + wrapProgram $out/bin/syslinux \ + --prefix PATH : "${mtools}/bin" + ''; + meta = with stdenv.lib; { homepage = http://www.syslinux.org/; description = "A lightweight bootloader"; From 099712f78dad5bbd2bc7279cf0cfe67f2a25803b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Andr=C3=A9?= Date: Wed, 9 Dec 2015 15:50:18 +0100 Subject: [PATCH 014/707] nixos-manual: fix incomplete container doc --- .../manual/administration/declarative-containers.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nixos/doc/manual/administration/declarative-containers.xml b/nixos/doc/manual/administration/declarative-containers.xml index 228c45b0c1f..253be80b9c4 100644 --- a/nixos/doc/manual/administration/declarative-containers.xml +++ b/nixos/doc/manual/administration/declarative-containers.xml @@ -22,8 +22,10 @@ containers.database = If you run nixos-rebuild switch, the container will -be built and started. If the container was already running, it will be -updated in place, without rebooting. +be built. If the container was already running, it will be +updated in place, without rebooting. Container can be configured to +start automatically by setting autoStart = true +in its configuration. By default, declarative containers share the network namespace of the host, meaning that they can listen on (privileged) @@ -41,13 +43,15 @@ containers.database = This gives the container a private virtual Ethernet interface with IP address 192.168.100.11, which is hooked up to a virtual Ethernet interface on the host with IP address -192.168.100.10. (See the next section for details +192.168.100.10. (See the next section for details on container networking.) To disable the container, just remove it from configuration.nix and run nixos-rebuild switch. Note that this will not delete the root directory of -the container in /var/lib/containers. +the container in /var/lib/containers. Containers can be +destroyed using the imperative method: nixos-container destroy + foo. Declarative containers can be started and stopped using the corresponding systemd service, e.g. systemctl start From b8495e4a0485cc9421d8a19dd6a32c0dfdb55bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Andr=C3=A9?= Date: Wed, 9 Dec 2015 21:01:47 +0100 Subject: [PATCH 015/707] nixos-manual: develop autoStart option for containers --- nixos/doc/manual/administration/declarative-containers.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/administration/declarative-containers.xml b/nixos/doc/manual/administration/declarative-containers.xml index 253be80b9c4..dccc8b0cb0d 100644 --- a/nixos/doc/manual/administration/declarative-containers.xml +++ b/nixos/doc/manual/administration/declarative-containers.xml @@ -24,7 +24,7 @@ containers.database = If you run nixos-rebuild switch, the container will be built. If the container was already running, it will be updated in place, without rebooting. Container can be configured to -start automatically by setting autoStart = true +start automatically by setting containers.database.autoStart = true in its configuration. By default, declarative containers share the network namespace From 3f4276369e92a4d60a48add0a89bc727b66dc5e2 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Wed, 9 Dec 2015 10:27:44 +0100 Subject: [PATCH 016/707] dovecot service: refactor module --- nixos/modules/services/mail/dovecot.nix | 292 ++++++++++++++---------- 1 file changed, 172 insertions(+), 120 deletions(-) diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index fca0d2a7f61..7ca4faae5d4 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -3,137 +3,178 @@ with lib; let - cfg = config.services.dovecot2; + dovecotPkg = cfg.package; - dovecotConf = - '' - base_dir = /var/run/dovecot2/ + baseDir = "/run/dovecot2"; + stateDir = "/var/lib/dovecot"; - protocols = ${optionalString cfg.enableImap "imap"} ${optionalString cfg.enablePop3 "pop3"} ${optionalString cfg.enableLmtp "lmtp"} + protocols = concatStrings [ + (optionalString cfg.enableImap "imap") + (optionalString cfg.enablePop3 "pop3") + (optionalString cfg.enableLmtp "lmtp") + ]; + + dovecotConf = concatStrings [ '' - + (if cfg.sslServerCert!="" then + base_dir = ${baseDir} + protocols = ${protocols} '' - ssl_cert = <${cfg.sslServerCert} - ssl_key = <${cfg.sslServerKey} - ssl_ca = <${cfg.sslCACert} - disable_plaintext_auth = yes - '' else '' + + (if isNull cfg.sslServerCert then '' ssl = no disable_plaintext_auth = no + '' else '' + ssl_cert = <${cfg.sslServerCert} + ssl_key = <${cfg.sslServerKey} + ${optionalString (!(isNull cfg.sslCACert)) ("ssl_ca = <" + cfg.sslCACert)} + disable_plaintext_auth = yes '') - + '' + '' default_internal_user = ${cfg.user} mail_location = ${cfg.mailLocation} maildir_copy_with_hardlinks = yes + pop3_uidl_format = %08Xv%08Xu auth_mechanisms = plain login + service auth { user = root } + '' + + (optionalString cfg.enablePAM '' userdb { driver = passwd } + passdb { driver = pam args = ${optionalString cfg.showPAMFailure "failure_show_msg=yes"} dovecot2 } + '') - pop3_uidl_format = %08Xv%08Xu - '' + cfg.extraConfig; + cfg.extraConfig + ]; + + modulesDir = pkgs.symlinkJoin "dovecot-modules" + (map (module: "${module}/lib/dovecot") cfg.modules); in - { - ###### interface + options.services.dovecot2 = { + enable = mkEnableOption "Dovecot 2.x POP3/IMAP server"; - options = { - - services.dovecot2 = { - - enable = mkOption { - default = false; - description = "Whether to enable the Dovecot 2.x POP3/IMAP server."; - }; - - enablePop3 = mkOption { - default = true; - description = "Start the POP3 listener (when Dovecot is enabled)."; - }; - - enableImap = mkOption { - default = true; - description = "Start the IMAP listener (when Dovecot is enabled)."; - }; - - enableLmtp = mkOption { - default = false; - description = "Start the LMTP listener (when Dovecot is enabled)."; - }; - - user = mkOption { - default = "dovecot2"; - description = "Dovecot user name."; - }; - - group = mkOption { - default = "dovecot2"; - description = "Dovecot group name."; - }; - - extraConfig = mkOption { - default = ""; - example = "mail_debug = yes"; - description = "Additional entries to put verbatim into Dovecot's config file."; - }; - - configFile = mkOption { - default = null; - description = "Config file used for the whole dovecot configuration."; - apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf; - }; - - mailLocation = mkOption { - default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */ - example = "maildir:~/mail:INBOX=/var/spool/mail/%u"; - description = '' - Location that dovecot will use for mail folders. Dovecot mail_location option. - ''; - }; - - sslServerCert = mkOption { - default = ""; - description = "Server certificate"; - }; - - sslCACert = mkOption { - default = ""; - description = "CA certificate used by the server certificate."; - }; - - sslServerKey = mkOption { - default = ""; - description = "Server key."; - }; - - showPAMFailure = mkOption { - default = false; - description = "Show the PAM failure message on authentication error (useful for OTPW)."; - }; + enablePop3 = mkOption { + type = types.bool; + default = true; + description = "Start the POP3 listener (when Dovecot is enabled)."; }; + enableImap = mkOption { + type = types.bool; + default = true; + description = "Start the IMAP listener (when Dovecot is enabled)."; + }; + + enableLmtp = mkOption { + type = types.bool; + default = false; + description = "Start the LMTP listener (when Dovecot is enabled)."; + }; + + package = mkOption { + type = types.package; + default = pkgs.dovecot22; + description = "Dovecot package to use."; + }; + + user = mkOption { + type = types.str; + default = "dovecot2"; + description = "Dovecot user name."; + }; + + group = mkOption { + type = types.str; + default = "dovecot2"; + description = "Dovecot group name."; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + example = "mail_debug = yes"; + description = "Additional entries to put verbatim into Dovecot's config file."; + }; + + configFile = mkOption { + type = types.nullOr types.str; + default = null; + description = "Config file used for the whole dovecot configuration."; + apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf; + }; + + mailLocation = mkOption { + type = types.str; + default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */ + example = "maildir:~/mail:INBOX=/var/spool/mail/%u"; + description = '' + Location that dovecot will use for mail folders. Dovecot mail_location option. + ''; + }; + + modules = mkOption { + type = types.listOf types.package; + default = []; + example = [ pkgs.dovecot_pigeonhole ]; + description = '' + Symlinks the contents of lib/dovecot of every given package into + /var/lib/dovecot/modules. This will make the given modules available + if a dovecot package with the module_dir patch applied (like + pkgs.dovecot22, the default) is being used. + ''; + }; + + sslCACert = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's CA certificate key."; + }; + + sslServerCert = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's public key."; + }; + + sslServerKey = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's private key."; + }; + + enablePAM = mkOption { + type = types.bool; + default = true; + description = "Wether to create a own Dovecot PAM service and configure PAM user logins."; + }; + + showPAMFailure = mkOption { + type = types.bool; + default = false; + description = "Show the PAM failure message on authentication error (useful for OTPW)."; + }; }; - ###### implementation + config = mkIf cfg.enable { - config = mkIf config.services.dovecot2.enable { - - security.pam.services.dovecot2 = {}; + security.pam.services.dovecot2 = mkIf cfg.enablePAM {}; users.extraUsers = [ { name = cfg.user; @@ -148,36 +189,47 @@ in } ]; - users.extraGroups = singleton - { name = cfg.group; - gid = config.ids.gids.dovecot2; + users.extraGroups = singleton { + name = cfg.group; + gid = config.ids.gids.dovecot2; + }; + + systemd.services.dovecot2 = { + description = "Dovecot IMAP/POP3 server"; + + after = [ "keys.target" "network.target" ]; + wants = [ "keys.target" ]; + wantedBy = [ "multi-user.target" ]; + + preStart = '' + mkdir -p "${baseDir}/login" + chown -R ${cfg.user}:${cfg.group} "${baseDir}" + rm -f "${stateDir}/modules" + ln -s "${modulesDir}" "${stateDir}/modules" + ''; + + serviceConfig = { + ExecStart = "${dovecotPkg}/sbin/dovecot -F -c ${cfg.configFile}"; + Restart = "on-failure"; + RestartSec = "1s"; + StartLimitInterval = "1min"; }; + }; - systemd.services.dovecot2 = - { description = "Dovecot IMAP/POP3 server"; + environment.systemPackages = [ dovecotPkg ]; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; - - preStart = - '' - ${pkgs.coreutils}/bin/mkdir -p /var/run/dovecot2 /var/run/dovecot2/login - ${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2 - ''; - - serviceConfig = { - ExecStart = "${pkgs.dovecot}/sbin/dovecot -F -c ${cfg.configFile}"; - Restart = "on-failure"; - RestartSec = "1s"; - StartLimitInterval = "1min"; - }; - - }; - - environment.systemPackages = [ pkgs.dovecot ]; - - assertions = [{ assertion = cfg.enablePop3 || cfg.enableImap; - message = "dovecot needs at least one of the IMAP or POP3 listeners enabled";}]; + assertions = [ + { assertion = cfg.enablePop3 || cfg.enableImap; + message = "dovecot needs at least one of the IMAP or POP3 listeners enabled"; + } + { assertion = isNull cfg.sslServerCert == isNull cfg.sslServerKey + && (!(isNull cfg.sslCACert) -> !(isNull cfg.sslServerCert || isNull cfg.sslServerKey)); + message = "dovecot needs both sslServerCert and sslServerKey defined for working crypto"; + } + { assertion = cfg.showPAMFailure -> cfg.enablePAM; + message = "dovecot is configured with showPAMFailure while enablePAM is disabled"; + } + ]; }; From 1b05ef86f0c27ba42cb31cf793c1054fd594c31d Mon Sep 17 00:00:00 2001 From: wedens Date: Thu, 10 Dec 2015 22:06:12 +0600 Subject: [PATCH 017/707] rtv: 1.6.1 -> 1.7.0 --- pkgs/applications/misc/rtv/default.nix | 4 ++-- pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix index f67797fbe86..84f9bdcadb7 100644 --- a/pkgs/applications/misc/rtv/default.nix +++ b/pkgs/applications/misc/rtv/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }: pythonPackages.buildPythonPackage rec { - version = "1.6.1"; + version = "1.7.0"; name = "rtv-${version}"; src = fetchFromGitHub { owner = "michael-lazar"; repo = "rtv"; rev = "v${version}"; - sha256 = "0ywx4h37b25w36vln2ydpw73ysbbkpibp597cghsfn2izlaa0i02"; + sha256 = "0fynymia3c2rynq9bm0jssd3rad7f7hhmjpkby7yj6g3jvk7jn4x"; }; propagatedBuildInputs = with pythonPackages; [ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e407be5969f..2a516013582 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13448,7 +13448,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/praw/${name}.zip"; - sha256 = "1dilb3vr5llqy344i6nh7gl07wcssb5dmqrhjwhfqi1mais7b953"; + sha256 = "17s8s4a1yk9rq21f3kmj9k4dbgvfa3650l8b39nhwybvxl3j5nfv"; }; propagatedBuildInputs = with self; [ From 171d622fcd1f28c87b2f47ed4c9e96a6d637b25f Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 20 Sep 2015 21:38:40 +0000 Subject: [PATCH 018/707] redir: init at 2.2.1 --- pkgs/tools/networking/redir/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/networking/redir/default.nix diff --git a/pkgs/tools/networking/redir/default.nix b/pkgs/tools/networking/redir/default.nix new file mode 100644 index 00000000000..1fcb73e00dc --- /dev/null +++ b/pkgs/tools/networking/redir/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "redir-2.2.1"; + + src = fetchurl { + url = "http://sammy.net/~sammy/hacks/${name}.tar.gz"; + sha256 = "0v0f14br00rrmd1ss644adsby4gm29sn7a2ccy7l93ik6pw099by"; + }; + + installPhase = '' + mkdir -p $out/bin + cp redir $out/bin + ''; + + meta = { + description = "A port redirector"; + homepage = http://sammy.net/~sammy/hacks/; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ globin ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 648d2963976..8053318f6e1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2855,6 +2855,8 @@ let read-edid = callPackage ../os-specific/linux/read-edid { }; + redir = callPackage ../tools/networking/redir { }; + redmine = callPackage ../applications/version-management/redmine { }; rtmpdump = callPackage ../tools/video/rtmpdump { }; From 94ad6e44448db1037deec9134eb64f050668c3fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Andr=C3=A9?= Date: Thu, 10 Dec 2015 19:17:06 +0100 Subject: [PATCH 019/707] nixos-manual: fix grammar --- nixos/doc/manual/administration/declarative-containers.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/administration/declarative-containers.xml b/nixos/doc/manual/administration/declarative-containers.xml index dccc8b0cb0d..f3f65edcec2 100644 --- a/nixos/doc/manual/administration/declarative-containers.xml +++ b/nixos/doc/manual/administration/declarative-containers.xml @@ -23,7 +23,7 @@ containers.database = If you run nixos-rebuild switch, the container will be built. If the container was already running, it will be -updated in place, without rebooting. Container can be configured to +updated in place, without rebooting. The container can be configured to start automatically by setting containers.database.autoStart = true in its configuration. From b670cec4acf2e4d5d799a9b8140b52dbe838ff2b Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Thu, 10 Dec 2015 17:25:49 -0500 Subject: [PATCH 020/707] libsass: v3.2.4 -> v3.3.2 --- pkgs/development/libraries/libsass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libsass/default.nix b/pkgs/development/libraries/libsass/default.nix index 356891e7351..9efe07c6567 100644 --- a/pkgs/development/libraries/libsass/default.nix +++ b/pkgs/development/libraries/libsass/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libsass-${version}"; - version = "3.2.4"; + version = "3.3.2"; src = fetchurl { url = "https://github.com/sass/libsass/archive/${version}.tar.gz"; - sha256 = "1v804r7k0iv97ihlr46hwfw88v874kfklsm616b85yzdz0105i8h"; + sha256 = "affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573"; }; patchPhase = '' From 2de85bd7e5369e13be7d08092ae7b0dad4a1250e Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Thu, 10 Dec 2015 17:26:26 -0500 Subject: [PATCH 021/707] sassc: v3.2.4 -> v3.3.2 --- pkgs/development/tools/sassc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/sassc/default.nix b/pkgs/development/tools/sassc/default.nix index 256bd93f1ab..1e990b0e2e9 100644 --- a/pkgs/development/tools/sassc/default.nix +++ b/pkgs/development/tools/sassc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "sassc-${version}"; - version = "3.2.4"; + version = "3.3.2"; src = fetchurl { url = "https://github.com/sass/sassc/archive/${version}.tar.gz"; - sha256 = "0ksdfv9ff5smba4vbwr1wqf3bp908rnprkp6lfssj85h9ciqq896"; + sha256 = "15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d"; }; patchPhase = '' From c4ab553c925f1cfb83eaea5a2b38b1480e8bb17e Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Thu, 10 Dec 2015 23:09:31 +0100 Subject: [PATCH 022/707] screen: patch CVE-2015-6806 Fixes a possible denial of service of the screen tool. Patch sourced from upstream GIT repository. --- pkgs/tools/misc/screen/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/screen/default.nix b/pkgs/tools/misc/screen/default.nix index 8c132d5ba02..3e130154e46 100644 --- a/pkgs/tools/misc/screen/default.nix +++ b/pkgs/tools/misc/screen/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses, pam ? null }: +{ stdenv, fetchurl, fetchpatch, ncurses, pam ? null }: stdenv.mkDerivation rec { name = "screen-4.3.1"; @@ -13,8 +13,15 @@ stdenv.mkDerivation rec { sed -i -e "s|/usr/local|/non-existent|g" -e "s|/usr|/non-existent|g" configure Makefile.in */Makefile.in ''; - # TODO: remove when updating the version of screen. Only a patch for 4.3.1 - patches = stdenv.lib.optional stdenv.isDarwin (fetchurl { + # TODO: remove when updating the version of screen. Only patches for 4.3.1 + patches = [ + (fetchpatch { + name = "CVE-2015-6806.patch"; + stripLen = 1; + url = "http://git.savannah.gnu.org/cgit/screen.git/patch/?id=b7484c224738247b510ed0d268cd577076958f1b"; + sha256 = "160zhpzi80qkvwib78jdvx4jcm2c2h59q5ap7hgnbz4xbkb3k37l"; + }) + ] ++ stdenv.lib.optional stdenv.isDarwin (fetchurl { url = "http://savannah.gnu.org/file/screen-utmp.patch\?file_id=34815"; sha256 = "192dsa8hm1zw8m638avzhwhnrddgizhyrwaxgwa96zr9vwai2nvc"; }); From 442ed86b15e55d6a3650d402bfc63353f0c7d427 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 11 Dec 2015 10:22:28 +0000 Subject: [PATCH 023/707] pkgs.xorriso: 1.4.0 -> 1.4.2 See release announcement at https://lists.gnu.org/archive/html/info-gnu/2015-11/msg00011.html --- pkgs/tools/cd-dvd/xorriso/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/cd-dvd/xorriso/default.nix b/pkgs/tools/cd-dvd/xorriso/default.nix index 29d483f725f..8dd4c709b01 100644 --- a/pkgs/tools/cd-dvd/xorriso/default.nix +++ b/pkgs/tools/cd-dvd/xorriso/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }: stdenv.mkDerivation rec { - name = "xorriso-1.4.0"; + name = "xorriso-1.4.2"; src = fetchurl { url = "mirror://gnu/xorriso/${name}.tar.gz"; - sha256 = "0mhfxn2idkrw1i65a5y4gnb1fig85zpnszb9ax7w4a2v062y1l8b"; + sha256 = "1cq4a0904lnz6nygbgarnlq49cz4qnfdyvz90s3nfk5as7gbwhr8"; }; doCheck = true; From 392fcb14cfac24b7026043e09e03398fce7a7557 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 11 Dec 2015 14:30:21 +0000 Subject: [PATCH 024/707] pythonPackages.netcdf4: 1.1.8 -> 1.2.1 --- pkgs/top-level/python-packages.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d84da0312e3..a2b3a37ce31 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5266,13 +5266,13 @@ in modules // { netcdf4 = buildPythonPackage rec { name = "netCDF4-${version}"; - version = "1.1.8"; + version = "1.2.1"; disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/netCDF4/${name}.tar.gz"; - sha256 = "0y6s8g82rbij0brh9hz3aapyyq6apj8fpmhhlyibz1354as7rjq1"; + sha256 = "0wzg73zyjjhns4209vrcvh71gs392d16ynz76x3pl1xg2by723iy"; }; propagatedBuildInputs = with self ; [ @@ -5284,13 +5284,12 @@ in modules // { pkgs.libjpeg ]; - patchPhase = '' - export USE_NCCONFIG=0 - export HDF5_DIR="${pkgs.hdf5}" - export NETCDF4_DIR="${pkgs.netcdf}" - export CURL_DIR="${pkgs.curl}" - export JPEG_DIR="${pkgs.libjpeg}" - ''; + # Variables used to configure the build process + USE_NCCONFIG="0"; + HDF5_DIR="${pkgs.hdf5}"; + NETCDF4_DIR="${pkgs.netcdf}"; + CURL_DIR="${pkgs.curl}"; + JPEG_DIR="${pkgs.libjpeg}"; meta = { description = "interface to netCDF library (versions 3 and 4)"; From 3ade7b690eb597f68e60ece03e650dbfc2aa4626 Mon Sep 17 00:00:00 2001 From: leenaars Date: Fri, 11 Dec 2015 18:00:49 +0100 Subject: [PATCH 025/707] opendkim: 2.4.3 > 2.10.3 Added some metadata as well. --- pkgs/development/libraries/opendkim/default.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/opendkim/default.nix b/pkgs/development/libraries/opendkim/default.nix index 5dfd87c4d84..d84f9e75510 100644 --- a/pkgs/development/libraries/opendkim/default.nix +++ b/pkgs/development/libraries/opendkim/default.nix @@ -1,13 +1,21 @@ -{stdenv, fetchurl, openssl, libmilter}: +{stdenv, fetchurl, openssl, libmilter, libbsd}: stdenv.mkDerivation rec { - name = "opendkim-2.4.3"; + name = "opendkim-2.10.3"; src = fetchurl { url = "mirror://sourceforge/opendkim/files/${name}.tar.gz"; - sha256 = "01h97h012gcp8rimjbc9mrv4759cnw4flb42ddiady1bmb2p7vy3"; + sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823"; }; configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}"; - buildInputs = [openssl libmilter]; + buildInputs = [openssl libmilter libbsd]; + + meta = { + description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service"; + homepage = http://opendkim.org/; + maintainers = [ ]; + platforms = with stdenv.lib.platforms; all; + }; + } From a7fe3c667fd60cdfe94a5b694961e53ad6050c7e Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Fri, 11 Dec 2015 21:31:40 +0300 Subject: [PATCH 026/707] vimPlugins: update to 11.12.2015 --- pkgs/misc/vim-plugins/default.nix | 373 ++++++++++++++++-------------- 1 file changed, 198 insertions(+), 175 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index fe393753f24..30c4c7d63b1 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -110,22 +110,22 @@ rec { }; Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Gist-2015-08-13"; + name = "Gist-2015-10-25"; src = fetchgit { url = "git://github.com/mattn/gist-vim"; - rev = "ea7dc962c5c2ac2a1c4adc94d54cac190d713648"; - sha256 = "0b96a572018de25120fe91eea17b8ee2844881c88ab63e03d999c22fc292f11e"; + rev = "88c331e2e07765090112a396e5e119b39b5aa754"; + sha256 = "0da7e356b4a50921c1a67edcf066785ed637750094f42ac1bc61ae82a2f7f9c5"; }; dependencies = []; }; Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Hoogle-2013-11-26"; + name = "Hoogle-2015-11-27"; src = fetchgit { url = "git://github.com/Twinside/vim-hoogle"; - rev = "81f28318b0d4174984c33df99db7752891c5c4e9"; - sha256 = "0f96f3badb6218cac87d0f7027ff032ecc74f08ad3ada542898278ce11cbd5a0"; + rev = "f0deb22baad592329b158217143f8b324548b4bd"; + sha256 = "e98b9b729b8c7dfcf34ccd36940e4d855975580864cf36f5e4bb88336fd1e263"; }; dependencies = []; @@ -154,11 +154,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2015-10-02"; + name = "Syntastic-2015-12-10"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "7e26d3589ab414155dff2c362a07e9e8bb970823"; - sha256 = "3878a0d2664eac37c033985d725c8606bb6c1796cf94d36ffe85197bf1df8b24"; + rev = "48736aa376341518d7bedf3a39daf0ae9e1dcdc0"; + sha256 = "2a523c7d54b5afee1eda6073c71ffcea7ba60e5240d91ea235f007ad89fb8e55"; }; dependencies = []; @@ -187,33 +187,33 @@ rec { }; The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_Commenter-2015-07-26"; + name = "The_NERD_Commenter-2015-10-29"; src = fetchgit { url = "git://github.com/scrooloose/nerdcommenter"; - rev = "5cc672a4f2adb734ac671499476034f0cd1d3d72"; - sha256 = "a8ab1f90044bf96e9c105c4a3ff6bbd9aaa20bddbaca1d82d7ca15d2cc3c2654"; + rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe"; + sha256 = "4ef10aafc54bcb3e119cac7f4b0065d8dc09d43d92dc069a499e96e935afb83d"; }; dependencies = []; }; The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_tree-2015-09-18"; + name = "The_NERD_tree-2015-12-02"; src = fetchgit { url = "git://github.com/scrooloose/nerdtree"; - rev = "0b44415a3302030b56755cc1135ca9ca57dc1ada"; - sha256 = "7841683821e41b65e4aff9222639a43f05d7b24c874b309f1cc3e6407e09343f"; + rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b"; + sha256 = "f730aa7347d6e710451514137985265338f8f60c4ab7f98e2a0eed65071e08ed"; }; dependencies = []; }; UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "UltiSnips-2015-09-20"; + name = "UltiSnips-2015-12-09"; src = fetchgit { - url = "git://github.com/sirver/ultisnips"; - rev = "e1e005a810edc7b1c13b5095fe3ab7ce2600b0cb"; - sha256 = "de2fd5d654fc48021325f5373ca5be741d105a191ba47ad1c5333046a615b745"; + url = "git://github.com/SirVer/ultisnips"; + rev = "5a2dcc5cbfa4c1e4a981d57544eb51fc5baeecea"; + sha256 = "dd9b087b7a08b75a60f104cf734b604f8823a219b76531694b4957fce6a2a8d5"; }; dependencies = []; @@ -231,11 +231,11 @@ rec { }; WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "WebAPI-2015-09-14"; + name = "WebAPI-2015-10-05"; src = fetchgit { url = "git://github.com/mattn/webapi-vim"; - rev = "575859ae34175a3bb88371dd65b266d7e8044140"; - sha256 = "bee247bd833db32386313b8966ba7ae36623606c3e3712d4660de671b626b958"; + rev = "dfc60635e610f9200646a84d11887af9e3d50b10"; + sha256 = "7bc85fe344854e02377f4ac931a015ef1ffd6de14f1d0d8fca04785beabe584b"; }; dependencies = []; @@ -280,11 +280,11 @@ rec { }; ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-z-2013-05-08"; + name = "ctrlp-z-2015-10-17"; src = fetchgit { url = "git://github.com/amiorin/ctrlp-z"; - rev = "7845735a3d63a68ed63aa3a5363b178c48f199bf"; - sha256 = "14c5240e6ab373cbd04d105a46808aed4a324472ddfd67b993534bf5d726e93f"; + rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026"; + sha256 = "d40ba49edba53805779706633ec3ee0056dd88835cc6b2e88fbe628a5e90da9a"; }; dependencies = []; @@ -302,22 +302,22 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2015-10-02"; + name = "fugitive-2015-12-01"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "0b43b51d7785aeb4002b45ca49cea5aef0d2e988"; - sha256 = "8b6002169ec54487951680c67e618b2bfdf04cc0d430eb1149917f82277fc20f"; + rev = "d854197c03c0b027cca41abf86a5557c5473b82f"; + sha256 = "cbe8333d1d359c5ba556d8f59e6700d14c0425a3b333503e3411e48b4b239cda"; }; dependencies = []; }; ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ghcmod-2015-09-17"; + name = "ghcmod-2015-12-10"; src = fetchgit { url = "git://github.com/eagletmt/ghcmod-vim"; - rev = "3e012a5b0b904c5c32eeea39071534d492a64a0f"; - sha256 = "e35c4528d08efb85c68fd4faa19283d67f936d915cae780de0cae0cc53131500"; + rev = "1cab59653ef0fba71574c7f64e60a27df2bc38fc"; + sha256 = "34556e0d4d7059fb6842eabfc4e9d0065e69b0e45b54e224b684e562f2917556"; }; dependencies = []; @@ -335,11 +335,11 @@ rec { }; vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-nix-2015-05-10"; + name = "vim-nix-2015-12-10"; src = fetchgit { url = "git://github.com/LnL7/vim-nix"; - rev = "39f5eb681f2ed2282ed562af2d6a2e40712d8429"; - sha256 = "6f109b6949f773b2d7f06adeb45334fa61479c95750666b450265851cb24c761"; + rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12"; + sha256 = "52dbdd4d5bc12988eb62d9022109dbd8b1c5716c27753ce187db6c2fb6737664"; }; dependencies = []; @@ -357,11 +357,11 @@ rec { }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2015-09-29"; + name = "neomake-2015-12-05"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "dc65a7a5d85670c84fc0055d19fa6901ae96ef93"; - sha256 = "967559156af1f06e345c04a4df9e3ab6a0e913e56ff2a66189a91a5c57c4f668"; + rev = "73f186e069d432b7746c1c09ac085c68d6e120f8"; + sha256 = "e6bbe895e373a3b596291e0420d856928cd874485c4c2f5b7c2972738696464b"; }; dependencies = []; @@ -379,44 +379,44 @@ rec { }; vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-tmux-navigator-2015-05-29"; + name = "vim-tmux-navigator-2015-12-05"; src = fetchgit { url = "git://github.com/christoomey/vim-tmux-navigator"; - rev = "176452ead44118174ddad3502709a247d9c24bb4"; - sha256 = "789c8b24b971a3b307ac296234230f1048ff2928c89302700bd4e5fc2edd2d8a"; + rev = "1298b71c420f1d0abceba3f35cc710131f84d73b"; + sha256 = "bde962fe1441cd6f030d9704e6e71117fb43d827b8952d3e1d44009c297b4eb5"; }; dependencies = []; }; ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-vim-2015-09-15"; + name = "ctrlp-vim-2015-11-30"; src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; - rev = "58247bdf8550879e183c13860eefa03983959e4a"; - sha256 = "1d4cf293a1e48564a491e00077794e23f5360827a72c2618fd3e99ee153ea6a8"; + rev = "7a80267ed061f3dc30bb319f438bdadfd8c7b1fd"; + sha256 = "ae29eb79ca32ca0edd32602cf6b1e1276ccd4f5086ac4297a7f0dea2dd2e1f1b"; }; dependencies = []; }; vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-jade-2015-07-06"; + name = "vim-jade-2015-11-23"; src = fetchgit { url = "git://github.com/digitaltoad/vim-jade"; - rev = "fb47bb8303e81fc17b4340ccd01a462332f7d90a"; - sha256 = "c3dde95c01d9e174a9143103e76796d2da40ddb68de9f321fce3f88df312e15a"; + rev = "f760e239386df055eb1892243624fdf7f7c58392"; + sha256 = "812e65090e6a1c31f433878fd1012673a8244d8b6974b1c2ffd1558c30c716cc"; }; dependencies = []; }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2015-10-03"; + name = "neco-ghc-2015-11-20"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "0550fea80e9c958a479067805bcf98e294bb2e32"; - sha256 = "061fadcae3122f4d2bb86e0a238f8980884080427bbc3f0fe7e2e9c9efe6c5eb"; + rev = "53a3d63bc4ecc10d8506a40a0472987f262050da"; + sha256 = "85ff5e1564a7fd81bbfcec1f4d16e675c2dd1fba38223dbae134f665f03985a8"; }; dependencies = []; @@ -434,22 +434,33 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2015-10-03"; + name = "vim-go-2015-12-08"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "1792ee374ba8d384cd547506cbf8f43690d1d55f"; - sha256 = "cbcac7b9ee8fccf89fc7b5adfb9a7ca7cda2e15447093a9fc886c2fd5b0063e0"; + rev = "0aeb07e9305f5696bfc1cffb1e3b2226d851b913"; + sha256 = "6bd784ef49f68526b26b25149f153b2caafa5840690ee65452b9ee6d0e99814e"; + }; + dependencies = []; + + }; + + vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorschemes-2015-07-25"; + src = fetchgit { + url = "git://github.com/flazz/vim-colorschemes"; + rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; + sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; }; dependencies = []; }; idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "idris-vim-2015-08-14"; + name = "idris-vim-2015-12-08"; src = fetchgit { url = "git://github.com/idris-hackers/idris-vim"; - rev = "45680a3c412f2cc8d40aff512e5e9ace44002922"; - sha256 = "e053a37cb14228a49be265c5fa1af96d3bae1a5a5ceffdd21e3c4547a79656b1"; + rev = "1f9bad6bc1d05b44e7555fe80472fbb7a542f47a"; + sha256 = "50cfb5a58a6c203c5f3695de61e9bc743e5dca71427e00c5cae86b4409debd3c"; }; dependencies = []; @@ -532,6 +543,17 @@ rec { }; + vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorstepper-2015-08-04"; + src = fetchgit { + url = "git://github.com/jonbri/vim-colorstepper"; + rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; + sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; + }; + dependencies = []; + + }; + vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-xdebug-2012-08-15"; src = fetchgit { @@ -566,11 +588,11 @@ rec { }; vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-eighties-2015-06-15"; + name = "vim-eighties-2015-11-02"; src = fetchgit { url = "git://github.com/justincampbell/vim-eighties"; - rev = "68dc644664bf569e96ac91f79fdf828e89d70e02"; - sha256 = "d6600665179395141d660c65dad3e03c13aeba164a6c1e6fabfc9e2499588132"; + rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5"; + sha256 = "b3386d1c40650e5c0ebda2105d1404cfb2aab74153e13bace4a73bc667d91e81"; }; dependencies = []; @@ -599,22 +621,22 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2015-10-04"; + name = "vimtex-2015-12-11"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "db92be5756239c31eed521f2131eac3ca997c0cc"; - sha256 = "67597a04c0c92199d0499607982a202247ef879768445eb0c7a21d27357845fc"; + rev = "62d0b9b44c53eb2302a50ad6f7a8446ab10e233c"; + sha256 = "b847f22a40e605c05a5e7672562e2e58b0effd5615c1e199937a920002ff4634"; }; dependencies = []; }; vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easymotion-2015-08-06"; + name = "vim-easymotion-2015-10-27"; src = fetchgit { url = "git://github.com/lokaltog/vim-easymotion"; - rev = "0806257ca6432ac7beb75c4319dadf7f3ba9907b"; - sha256 = "529f836da3a546c507ec99f7c827902a75472fefe570a93258360bfa4c253909"; + rev = "a21d4474f0e9df7a721246e0a3b386068901965f"; + sha256 = "96bb705e9ff626b139a7f92906468eda63d743b8457a1dc1e4de9c3cf9486525"; }; dependencies = []; @@ -636,11 +658,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2015-08-20"; + name = "vim-startify-2015-12-11"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "6f886cdc48cf34c50eb723abca2f813a5de2c11b"; - sha256 = "2614bee6a0cdb1a80aa6d3cfeba9e7521ac0be21d15ca4512a413cf192d93fd8"; + rev = "295fe7a09a881448eea1aa71d26f53dcda3c499b"; + sha256 = "a561488ae8870364f822a93ef18d35511b4dd7e779fd18e365851e8d216df61e"; }; dependencies = []; @@ -691,11 +713,11 @@ rec { }; racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "racer-2015-09-18"; + name = "racer-2015-12-11"; src = fetchgit { url = "git://github.com/phildawes/racer"; - rev = "b9750c373adf75fc28700bce382761ad85a8a2bd"; - sha256 = "a2f2ca5106a0c30ee8e724291559f0f26729ede545ac7b9be3ee973face24444"; + rev = "ce1915a6fd76f76433f30cfaf1fe1b2a8e21cdd4"; + sha256 = "24d48cbf6d69e397cd7a9925c42e2a10fb8c9dc4a0ef8b9122894847224fd735"; }; dependencies = []; buildPhase = '' @@ -705,55 +727,55 @@ rec { }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2015-10-03"; + name = "neocomplete-vim-2015-12-11"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "d2a78075207b97c105041927a125e2cf0b2b0ca5"; - sha256 = "6a64c6bd90a53f7f3636177cb1c507229d51b7dbb6a5dde8f3c4aad4cbe176d7"; + rev = "1c8d6356ad562e7430f091950530925f0a9dad5f"; + sha256 = "148d61fff5e07547a09e41f9105fa3a4bbecf82089855cab8d5b26cccddec0f5"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2015-09-07"; + name = "neosnippet-snippets-2015-12-05"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "7bc1674170670a4c43f7f4fc65e0e396759512ea"; - sha256 = "87a0c603517ab740b774245ca224235ff03abd1480855f4c2bedccd9acb95d53"; + rev = "42e81d1409fd08a3acec8c82c8480880338e4808"; + sha256 = "fb8aca8264851bceecf06d483162a55897f8ecdbe873fbc383d5a05cd0a50e1f"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2015-10-03"; + name = "neosnippet-vim-2015-12-12"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "7c07c4d8a2228c77ae4d519c936811db662ecd4a"; - sha256 = "c967ad2b7a70bfa273e9a802b3b6603f85bcb5dcdae8749019ce43de7dfde85c"; + rev = "7dc7ce803e28783bcbb829bfdbe8bbae6e51139a"; + sha256 = "bddcd3e651fbd96cb740fec67782439f3d899715e564b539e6e19eef34750d56"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2015-10-02"; + name = "unite-vim-2015-12-05"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "c57bed02229a80d050c2411dff5f0943e6edf08a"; - sha256 = "3486c584a023b31257e3c67ad86557d62577aa9a5ee19b79736844f1a114179f"; + rev = "f376de838a46c4848a81a2e95ebc4116732b1fef"; + sha256 = "372c353040b3e79dd6c223e0ead442090e4257daabd0d002e733d9cb691c778c"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2015-10-03"; + name = "vimproc-vim-2015-12-11"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "3134f1258de30a4eb7a3b1aeee90628a7f0c3a2a"; - sha256 = "8993f0ac8d768f3e99fa05fca61434eeb5dc34b337db42b0524f60827be41b79"; + rev = "f96e476e41ab4cdb9c37242c8cf76f1e5aa5b91d"; + sha256 = "da5de329b567d72fec8dc49d13006f19eca09282c57304dfa8d22bfbf8a9ace4"; }; dependencies = []; buildInputs = [ which ]; @@ -768,21 +790,21 @@ rec { }; vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimshell-vim-2015-08-28"; + name = "vimshell-vim-2015-11-24"; src = fetchgit { url = "git://github.com/shougo/vimshell.vim"; - rev = "a1f9a2010bea4b109341f1e2411a32839a8547b3"; - sha256 = "bd2419b50b981e62e25afaa9c5206b818098cd7663cac8566f1d654fbea56ca6"; + rev = "7931e3bf9fbba738b26bb76143dfc1df17f7a99b"; + sha256 = "f51ee4e8b16460226ce74d87236834f13008dca16dbc9090d89576a545f573bc"; }; dependencies = [ "vimproc-vim" ]; }; gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "gundo-vim-2013-07-10"; + name = "gundo-vim-2015-12-07"; src = fetchgit { url = "git://github.com/sjl/gundo.vim"; - rev = "3975ac871565115e3769dc69c06bc88ddc1369af"; - sha256 = "f66ed79d88171a4d57ee64eaf21035291518d8c64b607bd420c3ee85fa14afe5"; + rev = "dd5ab1e930deb8c74ea9046654dd0587df0cf459"; + sha256 = "6fe21b7398d8eb9b18f2015f64b7d40768123c2dbbde829d654d3dbf1ffb8070"; }; dependencies = []; @@ -800,22 +822,22 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-10-02"; + name = "vim-quickrun-2015-11-14"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "9fff9e5f12fcea45637821e30e6dbee05e748854"; - sha256 = "ca7376c6eafc1397c0a92c2ace7141daeeb881aaeabdc3168d4a0b598fd25caa"; + rev = "5bcb966b80d9d9e4051d9882a07fd61a2ea39d23"; + sha256 = "894a0f5c569ddd633514084e8021322b2fe62889fa8d32b2211d7bab04a701f2"; }; dependencies = []; }; molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "molokai-2014-04-11"; + name = "molokai-2015-11-11"; src = fetchgit { url = "git://github.com/tomasr/molokai"; - rev = "db8ce13b3737d3ddea8368498183d7c204a762eb"; - sha256 = "34587133f0f17b8950ed0428b3deeacc2f15933ede8bfdd000593098ed6d903a"; + rev = "c67bdfcdb31415aa0ade7f8c003261700a885476"; + sha256 = "3a0cd4eef9b4e3a4fd826c66a8edec44a087d04f500217981a84fb59b2fc3ade"; }; dependencies = []; @@ -855,11 +877,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2015-09-25"; + name = "youcompleteme-2015-12-11"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "5a186275a581b04bbdb7001475d946e30d0f80b4"; - sha256 = "6794aaa55ad55db1972260fe02099c8c05961c5ac9151776c88a2cdf3fcd92fd"; + rev = "14083d939d4b1341dc6ad2053914c327b7d647b1"; + sha256 = "ec900cb1fabfb1690ae735a46375e1f5044f70df5fd34e2ea233e9b4f558e342"; }; dependencies = []; buildInputs = [ @@ -901,22 +923,22 @@ rec { }; vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-2015-08-13"; + name = "vim-pandoc-2015-10-20"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc"; - rev = "ead1f177b2c894d60e01d3f16227e2e6e06c85a7"; - sha256 = "44fa5d236f7ae2e98bd3e1575b79265be812b4a49488d001f9f37e9b2b8cd3f8"; + rev = "7d7fdeabb83808f669f4cab37d7950b1bed8adbe"; + sha256 = "451e520ca62cf1207da0f22c2c23f4502f81c0b5a662cd9bfb898e1f53301c41"; }; dependencies = []; }; vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-syntax-2015-09-25"; + name = "vim-pandoc-syntax-2015-11-05"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; - rev = "dd71d6fc53e22e2bc84790e0b60f9827957e1ea7"; - sha256 = "60787f9ced453f335c0fe02f3e727bc9d4f4ab2e40a42a881b3b6f3b20798e37"; + rev = "40c65141bc8c771f270ce8251a99ccdda1ab102c"; + sha256 = "c1be96f358b211d8a5126fdb541a6500c9016e829527d57766b1ec18a4d8ad0e"; }; dependencies = []; @@ -1000,11 +1022,11 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2015-10-01"; + name = "vim-wakatime-2015-12-01"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "9fd813c489958f98f5e8b215ab8b91b47f86fb5a"; - sha256 = "d55ee76845eda96d1864f73d6927f8c20a2df21bd25dae03ede732d2610d9a32"; + rev = "2b758403d8637cacbab1de603258c611408b9fa7"; + sha256 = "e3a3da2dd40c4098b18815ca12d83ad1789f5342a8d822669a29e9900600e6ff"; }; dependencies = []; buildInputs = [ python ]; @@ -1028,11 +1050,11 @@ rec { }; goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "goyo-2015-08-08"; + name = "goyo-2015-11-15"; src = fetchgit { url = "git://github.com/junegunn/goyo.vim"; - rev = "c1293a91a3a04bcb82421b2ee711c49f83a418ae"; - sha256 = "258b23f4f043569e6e0458c8035d5b00be6031b02e460136f7783da1bbadcc49"; + rev = "630f5d80861beb36ae2dfa0c587ec6b51982cff5"; + sha256 = "28e74ab067ce55d0dd964b5214601e851046149ccf98b377861c56225f36dc44"; }; dependencies = []; @@ -1127,11 +1149,11 @@ rec { }; snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "snipmate-2015-09-18"; + name = "snipmate-2015-10-27"; src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; - rev = "e2d294b3962acbe7d8333bade2ebdb0ccde06740"; - sha256 = "856149bc5121845e3f3cd24f74d59e9af722a6ebdc0e050a90639704bfe14ee9"; + rev = "7f91de39088138491e40a35a855adb70677b02d3"; + sha256 = "e8c70bbad496fc1306814fbb078736a93d4f418d16f7692f4e37dbcc00ec6633"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1160,11 +1182,11 @@ rec { }; table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "table-mode-2015-06-05"; + name = "table-mode-2015-12-03"; src = fetchgit { url = "git://github.com/dhruvasagar/vim-table-mode"; - rev = "5395c9f52b91ae6083fd7b26577b8f926da6871e"; - sha256 = "784e51f7144790fcfad83c2dc5c7f250608826ce48706b80c41f88fa04914ae2"; + rev = "2ab64777a5b81e240810999eb6e7dc65e1de5461"; + sha256 = "64aff63c0aeb696f087cf41021867e1576e4fe8d392d36ec2ca46ddec104a8e1"; }; dependencies = []; @@ -1192,22 +1214,22 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2015-08-05"; + name = "tlib-2015-12-11"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "4c128ee2fee6d97cc5c6089e7797b4ad536de2a4"; - sha256 = "9cd0fc23bb332d5ae939019929d989b636b891c894f350c38234eaf084e0656c"; + rev = "b957a0a6b7f7a1b0ffa370963712b4ef526b5f76"; + sha256 = "12168055ecafbbde4afafe7d5fce8046b21d62d748326a290b5dc4239b30db34"; }; dependencies = []; }; undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "undotree-2015-08-19"; + name = "undotree-2015-10-28"; src = fetchgit { url = "git://github.com/mbbill/undotree"; - rev = "8ff701a5bdb8d382431eb042e4faf3320883b020"; - sha256 = "9c166cb812be486350a3e71eed273a630545d91e3198a214e3dce13b131aeb1d"; + rev = "74874d92d4bde3d026f2d0f3ff780b1787ba4e84"; + sha256 = "aa36bd56b1af88b55aac561ba7339944a28f8159c11f1058abb692eb9f99990d"; }; dependencies = []; @@ -1235,6 +1257,17 @@ rec { }; + vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-background-cmd-2015-12-11"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-background-cmd"; + rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a"; + sha256 = "06223ebaa157e17434cc09dae474324c105374e4e05d85695a05c7d0a2761c20"; + }; + dependencies = ["vim-addon-mw-utils"]; + + }; + vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-commenting-2013-06-10"; src = fetchgit { @@ -1356,6 +1389,17 @@ rec { }; + vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-signs-2013-04-19"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-signs"; + rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae"; + sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8"; + }; + dependencies = []; + + }; + vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-sql-2014-01-18"; src = fetchgit { @@ -1401,11 +1445,11 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2015-10-05"; + name = "vim-airline-2015-10-18"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "543438e482763f64985a3fcab38a1936242a8087"; - sha256 = "2e21b2658a941fd15b8db59220b50b3090a44e8852b42d0538d7217f12cbc77c"; + rev = "14d14cf951c08fc88ca6c3e6f28fe47b99421e23"; + sha256 = "cfc686cad3749e3bd933b5ae3ea35c4a9c02765be9223e6b30e7d801a9174aa7"; }; dependencies = []; @@ -1423,11 +1467,11 @@ rec { }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2015-10-01"; + name = "vim-easy-align-2015-10-09"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "0db4ea6132110631ec678a99a82aa49a0686ae65"; - sha256 = "c70440c3d0afdda630422819ca66ccf483035af86903d8725be5ca43a0940937"; + rev = "7cb559eb70600bbd81afbb2d7f60d98334f631e2"; + sha256 = "2ea40064f64a8a4f0f1e405ea5db5a3e79424cdec44d033c3d65cc40a2a19b18"; }; dependencies = []; @@ -1445,11 +1489,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2015-08-26"; + name = "vim-gitgutter-2015-12-10"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "1067294cdc379be1deb56074a093b49a8303308f"; - sha256 = "cb9f44e41fbf565eb07968270289bb4988a84f30f03d11f2919c0423c5ee278c"; + rev = "28aea43adf187ca01f0255c5a9418a5aac6380f1"; + sha256 = "74c6655373fd7d671e8599cd1996b962b12fc23fcc1c6437a9a09429509f3efb"; }; dependencies = []; @@ -1478,55 +1522,55 @@ rec { }; vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-multiple-cursors-2015-08-27"; + name = "vim-multiple-cursors-2015-10-30"; src = fetchgit { url = "git://github.com/terryma/vim-multiple-cursors"; - rev = "146fe47ee6b2faf90d6dc1232ef1858883d798bb"; - sha256 = "916659142dc0abb3a390b56b6ec3c69e489cbbab582e09af8b9aae5b9a792727"; + rev = "73a78c926ad208bd1984e575ceece276d61a1404"; + sha256 = "74f51c7c6a903621ee3fc5e78fbce4853b5da086463d015c652808d155cbc7e6"; }; dependencies = []; }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2015-07-08"; + name = "vim-signature-2015-11-11"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "0a31fb0c4c62705b4b894e150330857170080b96"; - sha256 = "945cc02d15bf7e71a87d6b1ec0ae24e6f145bff0f76586f6d8f6bba38a303a4a"; + rev = "7cabfb5a3d3b45e739eb1d7e198782fb4a5a23da"; + sha256 = "18a8ab7ba9e74d2f65c64c0c316ef824e48f21196520dfd292522c1eb8c87cb3"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2015-08-13"; + name = "vim-signify-2015-12-09"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "d08f17873e3187da3f9998ddb81d81626ffb9ecf"; - sha256 = "7fffc5fbd21dd4f3ea81131ccb52d992d95a73be72288457b2ec3a0fa53ce3b2"; + rev = "ecb796139eb0fc9b79fdc28e9b610fa1a2c5f589"; + sha256 = "6086fb614a0da7f676f2f567b5dfc6ddd765167141f629dc8dbb02862e7db34c"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2015-10-05"; + name = "vim-snippets-2015-12-08"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "eb17eb104bf39812658db504cb9bd13106a17dee"; - sha256 = "8000dde268d95ddf504bbd54f4e03ec72cf8547b03966f0bdf46ca0becf1a684"; + rev = "c0040abe4e54786c77ec41d6dbd1be916a03a506"; + sha256 = "20b8a1e4ae563b5119d181d19538d540e4811cd20dd2509cc29940a01208bc7e"; }; dependencies = []; }; vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-webdevicons-2015-09-14"; + name = "vim-webdevicons-2015-12-01"; src = fetchgit { url = "git://github.com/ryanoasis/vim-devicons"; - rev = "fec56878c734b608c1fa79952579aa976da2c98b"; - sha256 = "ecbe3c62c06aaf0c7d3104210f95e95db529368fd58533360ea5041acb3bcdf1"; + rev = "0e1b7864cfee4b0585daa277bedd992f858e1e75"; + sha256 = "e265c6c0906d0427409a98458192a4eb94afe671f26fc8de8890dae0e66f7764"; }; dependencies = []; @@ -1544,46 +1588,25 @@ rec { }; vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimwiki-2014-02-21"; + name = "vimwiki-2015-12-10"; src = fetchgit { url = "git://github.com/vimwiki/vimwiki"; - rev = "2c03d82a0e4662adf1e347487d73a9bf4bf6fdac"; - sha256 = "8f94fe1204ae3770b114370382f9c616f971eb9b940d8d08ca96ac83405a0cdf"; + rev = "3bd3d9b86036b21aecd69f0a1e572643d626c280"; + sha256 = "7a10ae3881af0d17a041ffd766680ceedf706411abbbedccf64e9e777fabd5c8"; }; dependencies = []; }; vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vundle-2015-08-10"; + name = "vundle-2015-11-04"; src = fetchgit { url = "git://github.com/gmarik/vundle"; - rev = "0ee36b26e127cda512a8f2852a59e5a5f374c87f"; - sha256 = "62fc2b756bd2a8bc9452c61de5babbb1f02de6e8122424a60862be61b8f80af1"; + rev = "5f70ae6025e951f0154e3940d123138adffa4c88"; + sha256 = "c063cabca479449a3330c14e879536473d4fdb0ca4b384c9c8be18c198a929fa"; }; dependencies = []; }; - vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorschemes-2015-07-25"; - src = fetchgit { - url = "git://github.com/flazz/vim-colorschemes"; - rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; - sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; - }; - dependencies = []; - - }; - - vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorstepper-2015-08-04"; - src = fetchgit { - url = "git://github.com/jonbri/vim-colorstepper"; - rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; - sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; - }; - dependencies = []; - - }; } From 941ef62cae0a84886b17fe7708d8097d3a78b5c6 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 11 Dec 2015 19:45:07 +0100 Subject: [PATCH 027/707] bdf2psf: 1.132 -> 1.134 --- pkgs/tools/misc/bdf2psf/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/bdf2psf/default.nix b/pkgs/tools/misc/bdf2psf/default.nix index 342c014faaa..192aed7489d 100644 --- a/pkgs/tools/misc/bdf2psf/default.nix +++ b/pkgs/tools/misc/bdf2psf/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "bdf2psf-${version}"; - version = "1.132"; + version = "1.134"; src = fetchurl { url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; - sha256 = "01r8v6qi6klsgi66ld86c78cdz308mywrm9j101d73nsxgx6qhzz"; + sha256 = "1am5ka5qrbh60jjihzqac03ii3ydprvqm3w54dc55a0zwl61njsz"; }; buildInputs = [ dpkg ]; @@ -21,12 +21,14 @@ stdenv.mkDerivation rec { cp -r . $out "; - meta = { + meta = with stdenv.lib; { description = "BDF to PSF converter"; homepage = https://packages.debian.org/sid/bdf2psf; longDescription = '' Font converter to generate console fonts from BDF source fonts ''; - license = stdenv.lib.licenses.gpl2; + license = licenses.gpl2; + maintainers = with maintainers; [ rnhmjoj ]; + platforms = platforms.unix; }; -} \ No newline at end of file +} From fdece0c2a49fd2d937420ff95fb05ed38e66d01e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 11 Dec 2015 19:50:36 +0100 Subject: [PATCH 028/707] atom: 1.2.0 -> 1.3.1 --- pkgs/applications/editors/atom/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index e3dc175b339..13e00754acd 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -16,11 +16,11 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.2.0"; + version = "1.3.1"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "05s3kvsz6pzh4gm22aaps1nccp76skfshdzlqwg0qn0ljz58sdqh"; + sha256 = "17q5vrvjsyxcd8favp0sldfvhcwr0ba6ws32df6iv2iyla5h94y1"; name = "${name}.deb"; }; From a6519d50c048ba67b946ad7f04dca3cb1f96a081 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 11 Dec 2015 19:51:28 +0100 Subject: [PATCH 029/707] calibre: 2.45.0 -> 2.46.0 --- pkgs/applications/misc/calibre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 950d7032882..a3ecef308eb 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.45.0"; + version = "2.46.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "1s3wrrvp2d0mczs09g2xkkknvlk3max6ws7awpss5kkdpjvay6ma"; + sha256 = "0ig1pb62w57l6nhwg391mkjhw9dyicix6xigpdyw0320jdw9nlkb"; }; inherit python; From 75dbf02d85933e676eee6a49045a8e8b489ac075 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Fri, 11 Dec 2015 03:25:59 +0000 Subject: [PATCH 030/707] unifi:Update download location; the binaries moved --- pkgs/servers/unifi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index 8fab18c434e..5e647f90de1 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "4.7.6"; src = fetchurl { - url = "http://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; + url = "https://www.ubnt.com/downloads/unifi/${version}/UniFi.unix.zip"; sha256 = "0xinrxcbd5gb2jgcvrx3jcslad0f19qrbjzkiir9zjq59sn68gfn"; }; From 154e88ab3fdbc0f7f201aea180a97b0903726887 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 12 Dec 2015 11:47:00 +0100 Subject: [PATCH 031/707] xprintidel-ng: init at git-2015-09-01 --- pkgs/tools/X11/xprintidle-ng/default.nix | 36 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/X11/xprintidle-ng/default.nix diff --git a/pkgs/tools/X11/xprintidle-ng/default.nix b/pkgs/tools/X11/xprintidle-ng/default.nix new file mode 100644 index 00000000000..7ddab964436 --- /dev/null +++ b/pkgs/tools/X11/xprintidle-ng/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, libX11, libXScrnSaver, libXext, gnulib + , autoconf, automake, libtool, gettext, pkgconfig + , git, perl, texinfo, help2man +}: +stdenv.mkDerivation rec { + version = "git-2015-09-01"; + name = "${baseName}-${version}"; + baseName = "xprintidle-ng"; + + buildInputs = [ + libX11 libXScrnSaver libXext gnulib + autoconf automake libtool gettext pkgconfig git perl + texinfo help2man + ]; + src = fetchFromGitHub { + owner = "taktoa"; + repo = "${baseName}"; + rev = "9083ba284d9222541ce7da8dc87d5a27ef5cc592"; + sha256 = "0a5024vimpfrpj6w60j1ad8qvjkrmxiy8w1yijxfwk917ag9rkpq"; + }; + + configurePhase = '' + cp -r "${gnulib}" gnulib + chmod a+rX,u+w -R gnulib + ./bootstrap --gnulib-srcdir=gnulib + ./configure --prefix="$out" + ''; + + meta = { + inherit version; + description = ''A command-line tool to print idle time from libXss''; + license = stdenv.lib.licenses.gpl2 ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 84cf2ed6aef..8a4a6543a82 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3495,6 +3495,8 @@ let xbrightness = callPackage ../tools/X11/xbrightness { }; + xprintidle-ng = callPackage ../tools/X11/xprintidle-ng {}; + xsettingsd = callPackage ../tools/X11/xsettingsd { }; xsensors = callPackage ../os-specific/linux/xsensors { }; From becb04096988d27ea4252019fb77c1931e4bd495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 12 Dec 2015 11:33:07 +0100 Subject: [PATCH 032/707] qtcreator: 3.4.2 -> 3.5.1 Builds and runs. --- pkgs/development/qtcreator/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix index b2460c768f2..4051ac21836 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -3,8 +3,8 @@ with stdenv.lib; let - baseVersion = "3.4"; - revision = "2"; + baseVersion = "3.5"; + revision = "1"; version = "${baseVersion}.${revision}"; in @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz"; - sha256 = "1asbfphws0aqs92gjgh0iqzr1911kg51r9al44jxpfk88yazjzgm"; + sha256 = "0r9ysq9hzig4ag9m8pcpw1jng2fqqns8zwp0jj893gh8ia0sq9ar"; }; buildInputs = [ makeWrapper qtLib.base qtLib.script qtLib.quickcontrols qtLib.declarative ]; From 42c7004d33d166c3bd47e5f65758a9bce9855a98 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 12 Dec 2015 11:30:44 +0100 Subject: [PATCH 033/707] checkstyle: 6.12.1 -> 6.13 --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index c17c453bf55..a9cf08c4c3e 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.12.1"; + version = "6.13"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "1s2qj2kz5q2wrfxk9mnw23ly3abplnly73apy37583d2nvs2hjyq"; + sha256 = "0k53kj0mx0shypagny134yrhkjgawzs5yixaxv87br52ablcqdvx"; }; installPhase = '' From 80420c318769ef9cf8108eab2161c841745133a4 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 12 Dec 2015 11:41:04 +0100 Subject: [PATCH 034/707] hevea: 2.25 -> 2.26 --- pkgs/tools/typesetting/hevea/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/typesetting/hevea/default.nix b/pkgs/tools/typesetting/hevea/default.nix index 0626ec84fbe..3343579bbab 100644 --- a/pkgs/tools/typesetting/hevea/default.nix +++ b/pkgs/tools/typesetting/hevea/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ocaml }: stdenv.mkDerivation rec { - name = "hevea-2.25"; + name = "hevea-2.26"; src = fetchurl { url = "http://pauillac.inria.fr/~maranget/hevea/distri/${name}.tar.gz"; - sha256 = "0kn99v92xsfy12r9gfvwgs0xf3s9s6frfg86a8q6damj1dampiz4"; + sha256 = "173v6z2li12pah6315dfpwhqrdljkhsff82gj7sql812zwjkvd2f"; }; buildInputs = [ ocaml ]; From d0fbac6358e35ba63ce4af9c49e27b67ee619e03 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 12 Dec 2015 11:48:45 +0100 Subject: [PATCH 035/707] nzbget: 16.3 -> 16.4 --- pkgs/tools/networking/nzbget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/nzbget/default.nix b/pkgs/tools/networking/nzbget/default.nix index 733e12d1e9b..78ef6998e3a 100644 --- a/pkgs/tools/networking/nzbget/default.nix +++ b/pkgs/tools/networking/nzbget/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "nzbget-${version}"; - version = "16.3"; + version = "16.4"; src = fetchurl { url = "http://github.com/nzbget/nzbget/releases/download/v${version}/${name}-src.tar.gz"; - sha256 = "03xzrvgqh90wx183sjrcyn7yilip92g2x5wffnw956ywxb3nsy2g"; + sha256 = "03sdzxxsjpxp82jpk593xls96yk29989z05j73jah21dbpkkx7lf"; }; buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls From de37086064d62a76fc7418944c4ab05dd28e9be8 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 12 Dec 2015 11:51:50 +0100 Subject: [PATCH 036/707] potrace: 1.12 -> 1.13 --- pkgs/applications/graphics/potrace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/potrace/default.nix b/pkgs/applications/graphics/potrace/default.nix index 13636e1f1fe..3cc5fe6fdd2 100644 --- a/pkgs/applications/graphics/potrace/default.nix +++ b/pkgs/applications/graphics/potrace/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "potrace-${version}"; - version = "1.12"; + version = "1.13"; src = fetchurl { url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz"; - sha256 = "0fqpfq5wwqz8j6pfh4p2pbflf6r86s4h63r8jawzrsyvpbbz3fxh"; + sha256 = "115p2vgyq7p2mf4nidk2x3aa341nvv2v8ml056vbji36df5l6lk2"; }; configureFlags = [ "--with-libpotrace" ]; From e0a7c3a54bda41441ec2298a2e6f5b4653b03ed3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 12 Dec 2015 11:58:22 +0100 Subject: [PATCH 037/707] intel-gpu-tools: 1.12 -> 1.13 --- pkgs/development/tools/misc/intel-gpu-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/intel-gpu-tools/default.nix b/pkgs/development/tools/misc/intel-gpu-tools/default.nix index caed095d151..28deca284ce 100644 --- a/pkgs/development/tools/misc/intel-gpu-tools/default.nix +++ b/pkgs/development/tools/misc/intel-gpu-tools/default.nix @@ -2,11 +2,11 @@ , libX11, libXext, libXv, libXrandr, glib, bison, libunwind }: stdenv.mkDerivation rec { - name = "intel-gpu-tools-1.12"; + name = "intel-gpu-tools-1.13"; src = fetchurl { url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2"; - sha256 = "1qwbwgvsqxba0adzlwxqmdw1asykx0pmk9ra0ff0nmjj9apf0gql"; + sha256 = "0d5ff9l12zw9mdsjwbwn6y9k1gz6xlzsx5k87apz9vq6q625irn6"; }; buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11 From 069b1891d34f2a1a674daf6baad02d73ab8228c6 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 12 Dec 2015 11:30:32 +0100 Subject: [PATCH 038/707] pkgs.wget: 1.17 -> 1.17.1 1.17.1 is a bugfix release. See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00007.html for announcement. --- pkgs/tools/networking/wget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix index 6389234342f..5abc84bb1ea 100644 --- a/pkgs/tools/networking/wget/default.nix +++ b/pkgs/tools/networking/wget/default.nix @@ -3,11 +3,11 @@ , libiconv, libpsl, openssl ? null }: stdenv.mkDerivation rec { - name = "wget-1.17"; + name = "wget-1.17.1"; src = fetchurl { url = "mirror://gnu/wget/${name}.tar.xz"; - sha256 = "11xvs919a8xr595hs6hk323rkk7yshyfdfyfdhlahagkrcxdcsdx"; + sha256 = "1jcpvl5sxb2ag8yahpy370c5jlfb097a21k2mhsidh4wxdhrnmgy"; }; preConfigure = '' From b1e44d80c6803c6105102279e650545e1506d4e5 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 11 Dec 2015 01:35:45 +0100 Subject: [PATCH 039/707] pythonPackages.mpv: init at 0.1 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f9c9a6698f1..9aed2686f47 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9203,6 +9203,25 @@ let }; }; + mpv = buildPythonPackage rec { + name = "mpv-0.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/mpv/${name}.tar.gz"; + sha256 = "0b9kd70mshdr713f3l1lbnz1q0vlg2y76h5d8liy1bzqm7hjcgfw"; + }; + buildInputs = [ pkgs.mpv ]; + patchPhase = "substituteInPlace mpv.py --replace libmpv.so ${pkgs.mpv}/lib/libmpv.so"; + + meta = with pkgs.stdenv.lib; { + description = "A python interface to the mpv media player"; + homepage = "https://github.com/jaseg/python-mpv"; + license = licenses.agpl3; + }; + + }; + + mrbob = buildPythonPackage rec { name = "mrbob-${version}"; version = "0.1.1"; From 7b407414a480c806b9409def28a398c387b2e5e5 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 12 Dec 2015 13:27:03 +0100 Subject: [PATCH 040/707] telegram: create explicit folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Will be used for other tools coming soon™. --- .../instant-messengers/{ => telegram}/telegram-cli/default.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/applications/networking/instant-messengers/{ => telegram}/telegram-cli/default.nix (100%) diff --git a/pkgs/applications/networking/instant-messengers/telegram-cli/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix similarity index 100% rename from pkgs/applications/networking/instant-messengers/telegram-cli/default.nix rename to pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..11f433b7b06 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13214,7 +13214,7 @@ let taskserver = callPackage ../servers/misc/taskserver { }; - telegram-cli = callPackage ../applications/networking/instant-messengers/telegram-cli/default.nix { }; + telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli/default.nix { }; telepathy_gabble = callPackage ../applications/networking/instant-messengers/telepathy/gabble { }; From 7200a5c07904791b78987fe02775f52386b32a14 Mon Sep 17 00:00:00 2001 From: David A Roberts Date: Fri, 11 Dec 2015 22:35:17 +1000 Subject: [PATCH 041/707] cmdstan: init at 2.9.0 --- .../development/compilers/cmdstan/default.nix | 40 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/compilers/cmdstan/default.nix diff --git a/pkgs/development/compilers/cmdstan/default.nix b/pkgs/development/compilers/cmdstan/default.nix new file mode 100644 index 00000000000..182808031e6 --- /dev/null +++ b/pkgs/development/compilers/cmdstan/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "cmdstan-2.9.0"; + + src = fetchurl { + url = "https://github.com/stan-dev/cmdstan/releases/download/v2.9.0/cmdstan-2.9.0.tar.gz"; + sha256 = "08bim6nxgam989152hm0ga1rfb33mr71pwsym1nmfmavma68bwm9"; + }; + + buildFlags = "build"; + enableParallelBuilding = true; + + doCheck = true; + checkPhase = "./runCmdStanTests.py src/test/interface"; + + installPhase = '' + mkdir -p $out/opt $out/bin + cp -r . $out/opt/cmdstan + ln -s $out/opt/cmdstan/bin/stanc $out/bin/stanc + ln -s $out/opt/cmdstan/bin/stansummary $out/bin/stansummary + cat > $out/bin/stan < Date: Sat, 12 Dec 2015 12:31:07 +0000 Subject: [PATCH 042/707] claws-mail: enable PGP plugin by default --- pkgs/applications/networking/mailreaders/claws-mail/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index beb21546c0c..198a13567b2 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -13,7 +13,7 @@ # python requires python , enableLdap ? false , enableNetworkManager ? false -, enablePgp ? false +, enablePgp ? true , enablePluginArchive ? false , enablePluginFancy ? false , enablePluginNotificationDialogs ? true From 40242c1bff02556329718ecab9df7f899637d2d0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 06:58:51 -0600 Subject: [PATCH 043/707] kf516.breeze-icons: propagate qtsvg into user environment --- pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix index 8c86a46401d..879262c56a4 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix +++ b/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix @@ -1,8 +1,10 @@ { kdeFramework , extra-cmake-modules +, qtsvg }: kdeFramework { name = "breeze-icons"; nativeBuildInputs = [ extra-cmake-modules ]; + propagatedUserEnvPkgs = [ qtsvg ]; } From e3aa60ed81ceb45589bfc7461361bd4259cd8f63 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 07:14:47 -0600 Subject: [PATCH 044/707] kf517: init at 5.17.0 --- .../libraries/kde-frameworks-5.17/attica.nix | 11 + .../libraries/kde-frameworks-5.17/baloo.nix | 25 + .../kde-frameworks-5.17/bluez-qt.nix | 17 + .../kde-frameworks-5.17/breeze-icons.nix | 10 + .../libraries/kde-frameworks-5.17/default.nix | 114 ++++ .../0001-extra-cmake-modules-paths.patch | 74 +++ .../extra-cmake-modules/default.nix | 18 + .../extra-cmake-modules/setup-hook.sh | 27 + .../kde-frameworks-5.17/fetchsrcs.sh | 57 ++ .../frameworkintegration.nix | 17 + .../kde-frameworks-5.17/kactivities.nix | 22 + .../libraries/kde-frameworks-5.17/kapidox.nix | 12 + .../kde-frameworks-5.17/karchive.nix | 11 + .../kde-frameworks-5.17/kauth/default.nix | 16 + .../kauth/kauth-policy-install.patch | 13 + .../kde-frameworks-5.17/kbookmarks.nix | 25 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../kde-frameworks-5.17/kcmutils/default.nix | 17 + .../libraries/kde-frameworks-5.17/kcodecs.nix | 11 + .../kde-frameworks-5.17/kcompletion.nix | 14 + .../libraries/kde-frameworks-5.17/kconfig.nix | 16 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../kconfigwidgets/default.nix | 17 + .../kde-frameworks-5.17/kcoreaddons.nix | 16 + .../libraries/kde-frameworks-5.17/kcrash.nix | 16 + .../kde-frameworks-5.17/kdbusaddons.nix | 17 + .../kde-frameworks-5.17/kdeclarative.nix | 22 + .../libraries/kde-frameworks-5.17/kded.nix | 19 + .../kde-frameworks-5.17/kdelibs4support.nix | 32 + .../kde-frameworks-5.17/kdesignerplugin.nix | 34 ++ .../libraries/kde-frameworks-5.17/kdesu.nix | 13 + .../kde-frameworks-5.17/kdewebkit.nix | 13 + .../libraries/kde-frameworks-5.17/kdnssd.nix | 13 + .../kde-frameworks-5.17/kdoctools/default.nix | 20 + .../kdoctools-no-find-docbook-xml.patch | 12 + .../kdoctools/setup-hook.sh | 5 + .../kde-frameworks-5.17/kemoticons.nix | 17 + .../kde-frameworks-5.17/kfilemetadata.nix | 13 + .../kde-frameworks-5.17/kglobalaccel.nix | 23 + .../kde-frameworks-5.17/kguiaddons.nix | 13 + .../libraries/kde-frameworks-5.17/khtml.nix | 21 + .../libraries/kde-frameworks-5.17/ki18n.nix | 16 + .../kde-frameworks-5.17/kiconthemes.nix | 17 + .../kde-frameworks-5.17/kidletime.nix | 15 + .../kde-frameworks-5.17/kimageformats.nix | 13 + .../kinit/0001-kinit-libpath.patch | 42 ++ .../kde-frameworks-5.17/kinit/default.nix | 17 + .../libraries/kde-frameworks-5.17/kio.nix | 31 + .../kde-frameworks-5.17/kitemmodels.nix | 11 + .../kde-frameworks-5.17/kitemviews.nix | 11 + .../kde-frameworks-5.17/kjobwidgets.nix | 16 + .../libraries/kde-frameworks-5.17/kjs.nix | 16 + .../kde-frameworks-5.17/kjsembed.nix | 17 + .../kde-frameworks-5.17/kmediaplayer.nix | 15 + .../kde-frameworks-5.17/knewstuff.nix | 17 + .../kde-frameworks-5.17/knotifications.nix | 21 + .../kde-frameworks-5.17/knotifyconfig.nix | 13 + .../kpackage/0001-allow-external-paths.patch | 25 + .../0002-qdiriterator-follow-symlinks.patch | 39 ++ .../kde-frameworks-5.17/kpackage/default.nix | 26 + .../libraries/kde-frameworks-5.17/kparts.nix | 17 + .../libraries/kde-frameworks-5.17/kpeople.nix | 15 + .../kde-frameworks-5.17/kplotting.nix | 11 + .../libraries/kde-frameworks-5.17/kpty.nix | 10 + .../libraries/kde-frameworks-5.17/kross.nix | 14 + .../libraries/kde-frameworks-5.17/krunner.nix | 16 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../kservice/0002-no-canonicalize-path.patch | 25 + .../kde-frameworks-5.17/kservice/default.nix | 19 + .../kservice/setup-hook.sh | 43 ++ .../0001-no-qcoreapplication.patch | 48 ++ .../ktexteditor/default.nix | 18 + .../kde-frameworks-5.17/ktextwidgets.nix | 16 + .../kde-frameworks-5.17/kunitconversion.nix | 10 + .../libraries/kde-frameworks-5.17/kwallet.nix | 21 + .../kde-frameworks-5.17/kwidgetsaddons.nix | 11 + .../kde-frameworks-5.17/kwindowsystem.nix | 13 + .../libraries/kde-frameworks-5.17/kxmlgui.nix | 18 + .../kde-frameworks-5.17/kxmlrpcclient.nix | 10 + .../kde-frameworks-5.17/modemmanager-qt.nix | 13 + .../kde-frameworks-5.17/networkmanager-qt.nix | 13 + .../kde-frameworks-5.17/oxygen-icons5.nix | 13 + .../plasma-framework/default.nix | 25 + .../libraries/kde-frameworks-5.17/solid.nix | 17 + .../libraries/kde-frameworks-5.17/sonnet.nix | 13 + .../libraries/kde-frameworks-5.17/srcs.nix | 565 ++++++++++++++++++ .../kde-frameworks-5.17/threadweaver.nix | 11 + pkgs/top-level/all-packages.nix | 1 + 88 files changed, 2322 insertions(+) create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/attica.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/baloo.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh create mode 100755 pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/karchive.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kded.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/khtml.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kio.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kjs.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kpackage/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kparts.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kpeople.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kplotting.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kpty.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kross.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/krunner.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kservice/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/solid.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/srcs.nix create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.17/attica.nix b/pkgs/development/libraries/kde-frameworks-5.17/attica.nix new file mode 100644 index 00000000000..98721876c12 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/attica.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "attica"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.17/baloo.nix new file mode 100644 index 00000000000..38c41d9271d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/baloo.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig +, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime +, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid +}: + +kdeFramework { + name = "baloo"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + kconfig kcrash kdbusaddons lmdb qtquick1 solid + ]; + propagatedBuildInputs = [ + kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase + ]; + postInstall = '' + wrapQtProgram "$out/bin/baloo_file" + wrapQtProgram "$out/bin/baloo_file_extractor" + wrapQtProgram "$out/bin/balooctl" + wrapQtProgram "$out/bin/baloosearch" + wrapQtProgram "$out/bin/balooshow" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix new file mode 100644 index 00000000000..f981b0516f7 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtdeclarative +}: + +kdeFramework { + name = "bluez-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtdeclarative ]; + preConfigure = '' + substituteInPlace CMakeLists.txt \ + --replace /lib/udev/rules.d "$out/lib/udev/rules.d" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix new file mode 100644 index 00000000000..879262c56a4 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix @@ -0,0 +1,10 @@ +{ kdeFramework +, extra-cmake-modules +, qtsvg +}: + +kdeFramework { + name = "breeze-icons"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedUserEnvPkgs = [ qtsvg ]; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix new file mode 100644 index 00000000000..6c2889aa598 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix @@ -0,0 +1,114 @@ +# Maintainer's Notes: +# +# How To Update +# 1. Edit the URL in ./manifest.sh +# 2. Run ./manifest.sh +# 3. Fix build errors. + +{ pkgs, debug ? false }: + +let + + inherit (pkgs) lib makeSetupHook stdenv; + + mirror = "mirror://kde"; + srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; + + kdeFramework = args: + let + inherit (args) name; + inherit (srcs."${name}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); + + addPackages = self: with self; { + attica = callPackage ./attica.nix {}; + baloo = callPackage ./baloo.nix {}; + bluez-qt = callPackage ./bluez-qt.nix {}; + breeze-icons = callPackage ./breeze-icons.nix {}; + extra-cmake-modules = callPackage ./extra-cmake-modules {}; + frameworkintegration = callPackage ./frameworkintegration.nix {}; + kactivities = callPackage ./kactivities.nix {}; + kapidox = callPackage ./kapidox.nix {}; + karchive = callPackage ./karchive.nix {}; + kauth = callPackage ./kauth {}; + kbookmarks = callPackage ./kbookmarks.nix {}; + kcmutils = callPackage ./kcmutils {}; + kcodecs = callPackage ./kcodecs.nix {}; + kcompletion = callPackage ./kcompletion.nix {}; + kconfig = callPackage ./kconfig.nix {}; + kconfigwidgets = callPackage ./kconfigwidgets {}; + kcoreaddons = callPackage ./kcoreaddons.nix {}; + kcrash = callPackage ./kcrash.nix {}; + kdbusaddons = callPackage ./kdbusaddons.nix {}; + kdeclarative = callPackage ./kdeclarative.nix {}; + kded = callPackage ./kded.nix {}; + kdelibs4support = callPackage ./kdelibs4support.nix {}; + kdesignerplugin = callPackage ./kdesignerplugin.nix {}; + kdewebkit = callPackage ./kdewebkit.nix {}; + kdesu = callPackage ./kdesu.nix {}; + kdnssd = callPackage ./kdnssd.nix {}; + kdoctools = callPackage ./kdoctools {}; + kemoticons = callPackage ./kemoticons.nix {}; + kfilemetadata = callPackage ./kfilemetadata.nix {}; + kglobalaccel = callPackage ./kglobalaccel.nix {}; + kguiaddons = callPackage ./kguiaddons.nix {}; + khtml = callPackage ./khtml.nix {}; + ki18n = callPackage ./ki18n.nix {}; + kiconthemes = callPackage ./kiconthemes.nix {}; + kidletime = callPackage ./kidletime.nix {}; + kimageformats = callPackage ./kimageformats.nix {}; + kinit = callPackage ./kinit {}; + kio = callPackage ./kio.nix {}; + kitemmodels = callPackage ./kitemmodels.nix {}; + kitemviews = callPackage ./kitemviews.nix {}; + kjobwidgets = callPackage ./kjobwidgets.nix {}; + kjs = callPackage ./kjs.nix {}; + kjsembed = callPackage ./kjsembed.nix {}; + kmediaplayer = callPackage ./kmediaplayer.nix {}; + knewstuff = callPackage ./knewstuff.nix {}; + knotifications = callPackage ./knotifications.nix {}; + knotifyconfig = callPackage ./knotifyconfig.nix {}; + kpackage = callPackage ./kpackage {}; + kparts = callPackage ./kparts.nix {}; + kpeople = callPackage ./kpeople.nix {}; + kplotting = callPackage ./kplotting.nix {}; + kpty = callPackage ./kpty.nix {}; + kross = callPackage ./kross.nix {}; + krunner = callPackage ./krunner.nix {}; + kservice = callPackage ./kservice {}; + ktexteditor = callPackage ./ktexteditor {}; + ktextwidgets = callPackage ./ktextwidgets.nix {}; + kunitconversion = callPackage ./kunitconversion.nix {}; + kwallet = callPackage ./kwallet.nix {}; + kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; + kwindowsystem = callPackage ./kwindowsystem.nix {}; + kxmlgui = callPackage ./kxmlgui.nix {}; + kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; + modemmanager-qt = callPackage ./modemmanager-qt.nix {}; + networkmanager-qt = callPackage ./networkmanager-qt.nix {}; + oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; + plasma-framework = callPackage ./plasma-framework {}; + solid = callPackage ./solid.nix {}; + sonnet = callPackage ./sonnet.nix {}; + threadweaver = callPackage ./threadweaver.nix {}; + }; + + newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); + +in lib.makeScope newScope addPackages diff --git a/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch new file mode 100644 index 00000000000..9717716faf5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch @@ -0,0 +1,74 @@ +From 3cc148e878b69fc3e0228f3e3bf1bbe689dad87c Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Fri, 20 Feb 2015 23:17:39 -0600 +Subject: [PATCH] extra-cmake-modules paths + +--- + kde-modules/KDEInstallDirs.cmake | 37 ++++--------------------------------- + 1 file changed, 4 insertions(+), 33 deletions(-) + +diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake +index b7cd34d..2f868ac 100644 +--- a/kde-modules/KDEInstallDirs.cmake ++++ b/kde-modules/KDEInstallDirs.cmake +@@ -193,37 +193,8 @@ + # (To distribute this file outside of extra-cmake-modules, substitute the full + # License text for the above reference.) + +-# Figure out what the default install directory for libraries should be. +-# This is based on the logic in GNUInstallDirs, but simplified (the +-# GNUInstallDirs code deals with re-configuring, but that is dealt with +-# by the _define_* macros in this module). ++# The default library directory on NixOS is *always* /lib. + set(_LIBDIR_DEFAULT "lib") +-# Override this default 'lib' with 'lib64' iff: +-# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling +-# - we are NOT on debian +-# - we are on a 64 bits system +-# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf +-# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if +-# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" +-# See http://wiki.debian.org/Multiarch +-if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") +- AND NOT CMAKE_CROSSCOMPILING) +- if (EXISTS "/etc/debian_version") # is this a debian system ? +- if(CMAKE_LIBRARY_ARCHITECTURE) +- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") +- endif() +- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: +- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) +- message(AUTHOR_WARNING +- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " +- "Please enable at least one language before including KDEInstallDirs.") +- else() +- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") +- set(_LIBDIR_DEFAULT "lib64") +- endif() +- endif() +- endif() +-endif() + + set(_gnu_install_dirs_vars + BINDIR +@@ -445,15 +416,15 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) + "QtQuick2 imports" + QML_INSTALL_DIR) + else() +- _define_relative(QTPLUGINDIR LIBDIR "plugins" ++ _define_relative(QTPLUGINDIR LIBDIR "qt5/plugins" + "Qt plugins" + QT_PLUGIN_INSTALL_DIR) + +- _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "imports" ++ _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "qt5/imports" + "QtQuick1 imports" + IMPORTS_INSTALL_DIR) + +- _define_relative(QMLDIR LIBDIR "qml" ++ _define_relative(QMLDIR LIBDIR "qt5/qml" + "QtQuick2 imports" + QML_INSTALL_DIR) + endif() +-- +2.3.0 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix new file mode 100644 index 00000000000..4e1b1aff3bd --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }: + +kdeFramework { + name = "extra-cmake-modules"; + patches = [ ./0001-extra-cmake-modules-paths.patch ]; + + setupHook = ./setup-hook.sh; + + # It is OK to propagate these inputs as long as + # extra-cmake-modules is never a propagated input + # of some other derivation. + propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; + + meta = { + license = stdenv.lib.licenses.bsd2; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh new file mode 100644 index 00000000000..a6fa6189240 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh @@ -0,0 +1,27 @@ +addMimePkg() { + local propagated + + if [[ -d "$1/share/mime" ]]; then + propagated= + for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + fi + done + if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs $1" + fi + + propagated= + for pkg in $propagatedUserEnvPkgs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + fi + done + if [[ -z $propagated ]]; then + propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" + fi + fi +} + +envHooks+=(addMimePkg) diff --git a/pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh new file mode 100755 index 00000000000..16a8de82c59 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh @@ -0,0 +1,57 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.kde.org/stable/frameworks/5.17/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix new file mode 100644 index 00000000000..26987c385ad --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion +, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications +, kwidgetsaddons, libXcursor, qtx11extras +}: + +kdeFramework { + name = "frameworkintegration"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kbookmarks kcompletion kconfig knotifications kwidgetsaddons + libXcursor + ]; + propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix new file mode 100644 index 00000000000..3225098f439 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig +, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n +, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative +}: + +kdeFramework { + name = "kactivities"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + boost kcmutils kconfig kcoreaddons kdbusaddons kservice + kxmlgui + ]; + propagatedBuildInputs = [ + kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kactivitymanagerd" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix new file mode 100644 index 00000000000..647be8f052c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix @@ -0,0 +1,12 @@ +{ kdeFramework, lib +, extra-cmake-modules +, python +}: + +kdeFramework { + name = "kapidox"; + nativeBuildInputs = [ extra-cmake-modules python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.17/karchive.nix new file mode 100644 index 00000000000..a8d9a0003c3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/karchive.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "karchive"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix new file mode 100644 index 00000000000..42a10019334 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, polkitQt +}: + +kdeFramework { + name = "kauth"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ polkitQt ]; + propagatedBuildInputs = [ kcoreaddons ]; + patches = [ ./kauth-policy-install.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch new file mode 100644 index 00000000000..340155256f2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch @@ -0,0 +1,13 @@ +diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in +index e859ec7..9a8ab18 100644 +--- a/KF5AuthConfig.cmake.in ++++ b/KF5AuthConfig.cmake.in +@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") + + set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") + set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") +-set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") ++set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") + set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") + + find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix new file mode 100644 index 00000000000..1a469ab4db6 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kconfigwidgets +, kcoreaddons +, kiconthemes +, kxmlgui +}: + +kdeFramework { + name = "kbookmarks"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs + kconfig + kconfigwidgets + kcoreaddons + kiconthemes + kxmlgui + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 00000000000..0d861fa9501 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:43:53 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/kpluginselector.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp +index 9c3431d..d6b1ee2 100644 +--- a/src/kpluginselector.cpp ++++ b/src/kpluginselector.cpp +@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, + QStringList desktopFileNames; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + desktopFileNames.append(it.next()); + } +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix new file mode 100644 index 00000000000..dbbb783ac61 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets +, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews +, kpackage, kservice, kxmlgui +}: + +kdeFramework { + name = "kcmutils"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcoreaddons kiconthemes kitemviews kpackage kxmlgui + ]; + propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix new file mode 100644 index 00000000000..53a69a69b69 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kcodecs"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix new file mode 100644 index 00000000000..e393774f16a --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kwidgetsaddons +}: + +kdeFramework { + name = "kcompletion"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kwidgetsaddons ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix new file mode 100644 index 00000000000..e132afe5988 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +}: + +kdeFramework { + name = "kconfig"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kreadconfig5" + wrapQtProgram "$out/bin/kwriteconfig5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 00000000000..7a6c0ee9053 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:47:01 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/khelpclient.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp +index 53a331e..80fbb01 100644 +--- a/src/khelpclient.cpp ++++ b/src/khelpclient.cpp +@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) + QString docPath; + const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); + Q_FOREACH (const QString &dir, desktopDirs) { +- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString desktopPath(it.next()); + KDesktopFile desktopFile(desktopPath); +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix new file mode 100644 index 00000000000..0e14d06edd3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig +, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper +}: + +kdeFramework { + name = "kconfigwidgets"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ kguiaddons ]; + propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + postInstall = '' + wrapQtProgram "$out/bin/preparetips5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix new file mode 100644 index 00000000000..f3a1db7bd48 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, shared_mime_info +}: + +kdeFramework { + name = "kcoreaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ shared_mime_info ]; + postInstall = '' + wrapQtProgram "$out/bin/desktoptojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix new file mode 100644 index 00000000000..bbab78ccb40 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwindowsystem +, qtx11extras +}: + +kdeFramework { + name = "kcrash"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix new file mode 100644 index 00000000000..d2ceab31d14 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kdbusaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + propagatedBuildInputs = [ qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kquitapp5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix new file mode 100644 index 00000000000..74d107466cf --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage +, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig +, qtdeclarative +}: + +kdeFramework { + name = "kdeclarative"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + epoxy kguiaddons kiconthemes kwidgetsaddons + ]; + propagatedBuildInputs = [ + kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kpackagelauncherqml" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kded.nix b/pkgs/development/libraries/kde-frameworks-5.17/kded.nix new file mode 100644 index 00000000000..47ae2d68c68 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kded.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kdoctools +, kinit +, kservice +}: + +kdeFramework { + name = "kded"; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix new file mode 100644 index 00000000000..0dd5c415761 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix @@ -0,0 +1,32 @@ +{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth +, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kcrash, kdbusaddons, kdesignerplugin, kdoctools, kemoticons +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels +, kinit, knotifications, kparts, kservice, ktextwidgets +, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui +, networkmanager, qtsvg, qtx11extras, xlibs +}: + +# TODO: debug docbook detection + +kdeFramework { + name = "kdelibs4support"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcompletion kconfig kservice kwidgetsaddons + kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM + ]; + propagatedBuildInputs = [ + kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons + kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio + kiconthemes kitemmodels kinit knotifications kparts ktextwidgets + kunitconversion kwindowsystem + ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXML4_DTD_VERSION=4.5" + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix new file mode 100644 index 00000000000..cbc114ccca0 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix @@ -0,0 +1,34 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, kcompletion +, kconfig +, kconfigwidgets +, kcoreaddons +, kdewebkit +, kdoctools +, kiconthemes +, kio +, kitemviews +, kplotting +, ktextwidgets +, kwidgetsaddons +, kxmlgui +, sonnet +}: + +kdeFramework { + name = "kdesignerplugin"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit + kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons + kxmlgui + ]; + propagatedBuildInputs = [ kio sonnet ]; + postInstall = '' + wrapQtProgram "$out/bin/kgendesignerplugin" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix new file mode 100644 index 00000000000..364fbd6a720 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty +, kservice +}: + +kdeFramework { + name = "kdesu"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kservice ]; + propagatedBuildInputs = [ ki18n kpty ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix new file mode 100644 index 00000000000..d361313d1d4 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit +}: + +kdeFramework { + name = "kdewebkit"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; + propagatedBuildInputs = [ ki18n kio qtwebkit ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix new file mode 100644 index 00000000000..f00432b0c9c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, avahi +}: + +kdeFramework { + name = "kdnssd"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ avahi ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix new file mode 100644 index 00000000000..138c3fc33b9 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix @@ -0,0 +1,20 @@ +{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 +, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages +}: + +kdeFramework { + name = "kdoctools"; + setupHook = ./setup-hook.sh; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive ]; + propagatedBuildInputs = [ ki18n ]; + propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" + ]; + patches = [ ./kdoctools-no-find-docbook-xml.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch new file mode 100644 index 00000000000..4e3a33efab3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch @@ -0,0 +1,12 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 5c4863c..f731775 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES + ) + + +-find_package(DocBookXML4 "4.5") + + set_package_properties(DocBookXML4 PROPERTIES + TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh new file mode 100644 index 00000000000..5cfffbd622d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh @@ -0,0 +1,5 @@ +addXdgData() { + addToSearchPath XDG_DATA_DIRS "$1/share" +} + +envHooks+=(addXdgData) diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix new file mode 100644 index 00000000000..d165f84e3a2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, karchive +, kconfig +, kcoreaddons +, kservice +}: + +kdeFramework { + name = "kemoticons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive kconfig kcoreaddons ]; + propagatedBuildInputs = [ kservice ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix new file mode 100644 index 00000000000..92ca1f26b93 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 +, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib +}: + +kdeFramework { + name = "kfilemetadata"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; + propagatedBuildInputs = [ qtbase ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix new file mode 100644 index 00000000000..c535b3590a3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix @@ -0,0 +1,23 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kwindowsystem +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kglobalaccel"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kglobalaccel5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix new file mode 100644 index 00000000000..bc4e9ab1184 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kguiaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.17/khtml.nix new file mode 100644 index 00000000000..d40df466ebb --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/khtml.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, giflib, karchive +, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs +, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons +, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet +}: + +kdeFramework { + name = "khtml"; + nativeBuildInputs = [ extra-cmake-modules perl ]; + buildInputs = [ + giflib karchive kiconthemes knotifications kwallet kwidgetsaddons + kxmlgui phonon + ]; + propagatedBuildInputs = [ + kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets + kwindowsystem qtx11extras sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix new file mode 100644 index 00000000000..915e3294b46 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, gettext +, python +, qtscript +}: + +kdeFramework { + name = "ki18n"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtscript ]; + propagatedNativeBuildInputs = [ gettext python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix new file mode 100644 index 00000000000..eb24403169d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules, kconfigwidgets, ki18n +, kitemviews, qtsvg +}: + +kdeFramework { + name = "kiconthemes"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfigwidgets kitemviews qtsvg ]; + propagatedBuildInputs = [ ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/kiconfinder5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix new file mode 100644 index 00000000000..fc086560023 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtbase +, qtx11extras +}: + +kdeFramework { + name = "kidletime"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + propagatedBuildInputs = [ qtbase ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix new file mode 100644 index 00000000000..49d66bbcc2c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, ilmbase +}: + +kdeFramework { + name = "kimageformats"; + nativeBuildInputs = [ extra-cmake-modules ]; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch new file mode 100644 index 00000000000..9c76079a382 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch @@ -0,0 +1,42 @@ +From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 13 Jun 2015 08:57:55 -0500 +Subject: [PATCH] kinit libpath + +--- + src/kdeinit/kinit.cpp | 18 ++++++++++-------- + 1 file changed, 10 insertions(+), 8 deletions(-) + +diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp +index 9e775b6..0ac5646 100644 +--- a/src/kdeinit/kinit.cpp ++++ b/src/kdeinit/kinit.cpp +@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, + if (!libpath.isEmpty()) { + if (!l.load()) { + if (libpath_relative) { +- // NB: Because Qt makes the actual dlopen() call, the +- // RUNPATH of kdeinit is *not* respected - see +- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 +- // - so we try hacking it in ourselves +- QString install_lib_dir = QFile::decodeName( +- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); +- libpath = install_lib_dir + libpath; +- l.setFileName(libpath); ++ // Use QT_PLUGIN_PATH to find shared library directories ++ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 ++ // shared libraries should be in /lib/qt5/plugins/../../ ++ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); ++ const QString up = QString::fromLocal8Bit("/../../"); ++ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); ++ Q_FOREACH (const QString &path, paths) { ++ l.setFileName(path + up + libpath); + l.load(); ++ if (l.isLoaded()) break; ++ } + } + } + if (!l.isLoaded()) { +-- +2.4.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix new file mode 100644 index 00000000000..5f644d7c424 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash +, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap +, libcap_progs +}: + +# TODO: setuid wrapper + +kdeFramework { + name = "kinit"; + nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; + buildInputs = [ kconfig kcrash kservice libcap ]; + propagatedBuildInputs = [ ki18n kio kwindowsystem ]; + patches = [ ./0001-kinit-libpath.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kio.nix b/pkgs/development/libraries/kde-frameworks-5.17/kio.nix new file mode 100644 index 00000000000..199565e2418 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kio.nix @@ -0,0 +1,31 @@ +{ kdeFramework, lib, extra-cmake-modules, acl, karchive +, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews +, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet +, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper +, qtscript, qtx11extras, solid +}: + +kdeFramework { + name = "kio"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + acl karchive kconfig kcoreaddons kdbusaddons kiconthemes + knotifications ktextwidgets kwallet kwidgetsaddons + qtscript + ]; + propagatedBuildInputs = [ + kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets + kservice kwindowsystem kxmlgui solid qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/kcookiejar5" + wrapQtProgram "$out/bin/ktelnetservice5" + wrapQtProgram "$out/bin/ktrash5" + wrapQtProgram "$out/bin/kmailservice5" + wrapQtProgram "$out/bin/protocoltojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix new file mode 100644 index 00000000000..a9024d771cc --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemmodels"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix new file mode 100644 index 00000000000..931019ce495 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemviews"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix new file mode 100644 index 00000000000..746edf12eea --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwidgetsaddons +, qtx11extras +}: + +kdeFramework { + name = "kjobwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kwidgetsaddons ]; + propagatedBuildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjs.nix new file mode 100644 index 00000000000..768720f178c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kjs.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +}: + +kdeFramework { + name = "kjs"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kjs5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix new file mode 100644 index 00000000000..22eef2d47bd --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs +, makeQtWrapper, qtsvg +}: + +kdeFramework { + name = "kjsembed"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ qtsvg ]; + propagatedBuildInputs = [ ki18n kjs ]; + postInstall = '' + wrapQtProgram "$out/bin/kjscmd5" + wrapQtProgram "$out/bin/kjsconsole" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix new file mode 100644 index 00000000000..460458b2232 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kparts +, kxmlgui +}: + +kdeFramework { + name = "kmediaplayer"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kxmlgui ]; + propagatedBuildInputs = [ kparts ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix new file mode 100644 index 00000000000..5bcd6f30146 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, karchive +, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio +, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui +}: + +kdeFramework { + name = "knewstuff"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + karchive kcompletion kconfig kcoreaddons kiconthemes + kitemviews ktextwidgets kwidgetsaddons + ]; + propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix new file mode 100644 index 00000000000..7e301dd0f26 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kcoreaddons +, kwindowsystem +, phonon +, qtx11extras +}: + +kdeFramework { + name = "knotifications"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs kconfig kcoreaddons phonon + ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix new file mode 100644 index 00000000000..dd99d2d4f1e --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, ki18n, kio, phonon +}: + +kdeFramework { + name = "knotifyconfig"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcompletion kconfig phonon ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch new file mode 100644 index 00000000000..beede4d7ccb --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch @@ -0,0 +1,25 @@ +From a92ac391b4e6ca335bd7fa78f1addd23c9467931 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 28 Jan 2015 07:15:30 -0600 +Subject: [PATCH 1/2] allow external paths + +--- + src/kpackage/package.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/kpackage/package.cpp b/src/kpackage/package.cpp +index 539b21a..977a026 100644 +--- a/src/kpackage/package.cpp ++++ b/src/kpackage/package.cpp +@@ -789,7 +789,7 @@ PackagePrivate::PackagePrivate() + : QSharedData(), + fallbackPackage(0), + metadata(0), +- externalPaths(false), ++ externalPaths(true), + valid(false), + checkedValid(false) + { +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch new file mode 100644 index 00000000000..6e93fca9b21 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch @@ -0,0 +1,39 @@ +From 9fc26c3c0478eb7cb0a531836ba2e3a85d820c88 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:50:28 -0500 +Subject: [PATCH 2/2] qdiriterator follow symlinks + +--- + src/kpackage/packageloader.cpp | 2 +- + src/kpackage/private/packagejobthread.cpp | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/kpackage/packageloader.cpp b/src/kpackage/packageloader.cpp +index eb5ed47..94217f6 100644 +--- a/src/kpackage/packageloader.cpp ++++ b/src/kpackage/packageloader.cpp +@@ -241,7 +241,7 @@ QList PackageLoader::listPackages(const QString &packageFormat, + } else { + //qDebug() << "Not cached"; + // If there's no cache file, fall back to listing the directory +- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; ++ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; + const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")); + + QDirIterator it(plugindir, nameFilters, QDir::Files, flags); +diff --git a/src/kpackage/private/packagejobthread.cpp b/src/kpackage/private/packagejobthread.cpp +index ca523b3..1cfa792 100644 +--- a/src/kpackage/private/packagejobthread.cpp ++++ b/src/kpackage/private/packagejobthread.cpp +@@ -145,7 +145,7 @@ bool indexDirectory(const QString& dir, const QString& dest) + QJsonArray plugins; + + int i = 0; +- QDirIterator it(dir, QStringList()< +Date: Wed, 14 Oct 2015 06:28:57 -0500 +Subject: [PATCH 1/2] qdiriterator follow symlinks + +--- + src/sycoca/kbuildsycoca.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp +index 1deae14..250baa8 100644 +--- a/src/sycoca/kbuildsycoca.cpp ++++ b/src/sycoca/kbuildsycoca.cpp +@@ -208,7 +208,7 @@ bool KBuildSycoca::build() + QStringList relFiles; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString filePath = it.next(); + Q_ASSERT(filePath.startsWith(dir)); // due to the line below... +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch new file mode 100644 index 00000000000..685c6852611 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch @@ -0,0 +1,25 @@ +From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:31:29 -0500 +Subject: [PATCH 2/2] no canonicalize path + +--- + src/sycoca/vfolder_menu.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp +index d3e31c3..d15d743 100644 +--- a/src/sycoca/vfolder_menu.cpp ++++ b/src/sycoca/vfolder_menu.cpp +@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR + } + + if (!relative) { +- QString resolved = QDir(dir).canonicalPath(); ++ QString resolved = QDir::cleanPath(dir); + if (!resolved.isEmpty()) { + dir = resolved; + } +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix new file mode 100644 index 00000000000..03b7c7c2f51 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem +}: + +kdeFramework { + name = "kservice"; + setupHook = ./setup-hook.sh; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ kcrash kdbusaddons ]; + propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; + propagatedUserEnvPkgs = [ kcoreaddons ]; + patches = [ + ./0001-qdiriterator-follow-symlinks.patch + ./0002-no-canonicalize-path.patch + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh new file mode 100644 index 00000000000..c28e862ff8a --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh @@ -0,0 +1,43 @@ +addServicePkg() { + local propagated + for dir in "share/kservices5" "share/kservicetypes5"; do + if [[ -d "$1/$dir" ]]; then + propagated= + for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs $1" + fi + + propagated= + for pkg in $propagatedUserEnvPkgs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" + fi + + break + fi + done +} + +envHooks+=(addServicePkg) + +local propagated +for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z@out@" ]]; then + propagated=1 + break + fi +done +if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs @out@" +fi diff --git a/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch new file mode 100644 index 00000000000..def55bff9b2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch @@ -0,0 +1,48 @@ +From dc50fffdc72b76498384ce2f9065c3757b786d71 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 09:08:59 -0500 +Subject: [PATCH] no qcoreapplication + +--- + src/syntax/data/katehighlightingindexer.cpp | 11 ++++------- + 1 file changed, 4 insertions(+), 7 deletions(-) + +diff --git a/src/syntax/data/katehighlightingindexer.cpp b/src/syntax/data/katehighlightingindexer.cpp +index 3c63140..e3d5efe 100644 +--- a/src/syntax/data/katehighlightingindexer.cpp ++++ b/src/syntax/data/katehighlightingindexer.cpp +@@ -51,19 +51,16 @@ QStringList readListing(const QString &fileName) + + int main(int argc, char *argv[]) + { +- // get app instance +- QCoreApplication app(argc, argv); +- + // ensure enough arguments are passed +- if (app.arguments().size() < 3) ++ if (argc < 3) + return 1; + + // open schema + QXmlSchema schema; +- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) ++ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) + return 2; + +- const QString hlFilenamesListing = app.arguments().value(3); ++ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); + if (hlFilenamesListing.isEmpty()) { + return 1; + } +@@ -147,7 +144,7 @@ int main(int argc, char *argv[]) + return anyError; + + // create outfile, after all has worked! +- QFile outFile(app.arguments().at(1)); ++ QFile outFile(QString::fromLocal8Bit(argv[1])); + if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) + return 7; + +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix new file mode 100644 index 00000000000..39092fbb278 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, karchive, kconfig +, kguiaddons, ki18n, kio, kiconthemes, kparts, perl, qtscript +, qtxmlpatterns, sonnet +}: + +kdeFramework { + name = "ktexteditor"; + nativeBuildInputs = [ extra-cmake-modules perl ]; + buildInputs = [ + karchive kconfig kguiaddons kiconthemes kparts qtscript + qtxmlpatterns + ]; + propagatedBuildInputs = [ ki18n kio sonnet ]; + patches = [ ./0001-no-qcoreapplication.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix new file mode 100644 index 00000000000..e332d4ff9a8 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem +, sonnet +}: + +kdeFramework { + name = "ktextwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kiconthemes kservice + ]; + propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix new file mode 100644 index 00000000000..3cf0f847d83 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n }: + +kdeFramework { + name = "kunitconversion"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix new file mode 100644 index 00000000000..7c4177e009d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications +, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper +}: + +kdeFramework { + name = "kwallet"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kconfig kcoreaddons kdbusaddons kiconthemes knotifications + kservice kwidgetsaddons libgcrypt + ]; + propagatedBuildInputs = [ ki18n kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/kwalletd5" + wrapQtProgram "$out/bin/kwallet-query" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix new file mode 100644 index 00000000000..d95f44d3fec --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kwidgetsaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix new file mode 100644 index 00000000000..09ab1f2200d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kwindowsystem"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix new file mode 100644 index 00000000000..f081d5f9170 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, kconfig +, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews +, ktextwidgets, kwindowsystem, sonnet +}: + +kdeFramework { + name = "kxmlgui"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + attica kconfig kiconthemes kitemviews ktextwidgets + ]; + propagatedBuildInputs = [ + kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix new file mode 100644 index 00000000000..20a300b68bc --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: + +kdeFramework { + name = "kxmlrpcclient"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix new file mode 100644 index 00000000000..7d7f769d6a9 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, modemmanager +}: + +kdeFramework { + name = "modemmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ modemmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix new file mode 100644 index 00000000000..333378bd143 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, networkmanager +}: + +kdeFramework { + name = "networkmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ networkmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix new file mode 100644 index 00000000000..ee350f8e153 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix @@ -0,0 +1,13 @@ +{ kdeFramework +, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "oxygen-icons5"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix new file mode 100644 index 00000000000..d8846f77723 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative +, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio +, knotifications, kpackage, kservice, kwindowsystem, kxmlgui +, makeQtWrapper, qtscript, qtx11extras +}: + +kdeFramework { + name = "plasma-framework"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons + kiconthemes knotifications kxmlgui qtscript + ]; + propagatedBuildInputs = [ + kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem + qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/plasmapkg2" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/solid.nix b/pkgs/development/libraries/kde-frameworks-5.17/solid.nix new file mode 100644 index 00000000000..afd125e3c59 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/solid.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtdeclarative +}: + +kdeFramework { + name = "solid"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ qtdeclarative ]; + postInstall = '' + wrapQtProgram "$out/bin/solid-hardware5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix new file mode 100644 index 00000000000..943fe04a1c9 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, hunspell +}: + +kdeFramework { + name = "sonnet"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ hunspell ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix new file mode 100644 index 00000000000..8cf8d1bbad4 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix @@ -0,0 +1,565 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/attica-5.17.0.tar.xz"; + sha256 = "0n5f8754705ga3s158nn56haakajcpx7hms3pjn32jc1n95h06nf"; + name = "attica-5.17.0.tar.xz"; + }; + }; + baloo = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/baloo-5.17.0.tar.xz"; + sha256 = "01gkn69i63ppjrswpqw1vdfc590vn4xlld1zmjzprbfs2ryni2k0"; + name = "baloo-5.17.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz"; + sha256 = "1jh60gs2lqwg1x609lh3lrgqjfg179r40j59wgmzrm5bfvc5zsk5"; + name = "bluez-qt-5.17.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/breeze-icons-5.17.0.tar.xz"; + sha256 = "120x15mps8gy4c4vzrcwvfcmjv7qka7q92lyqk76g70v6yh29q84"; + name = "breeze-icons-5.17.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz"; + sha256 = "01blad3rwffsgd21xkkk653kbqv2gvh0ckmvpil9x9fc0w7gwmqs"; + name = "extra-cmake-modules-5.17.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz"; + sha256 = "1f8clq6wszb74qal6402r66izansn9cz1x5j13v8ajwqb7rr8gvl"; + name = "frameworkintegration-5.17.0.tar.xz"; + }; + }; + kactivities = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kactivities-5.17.0.tar.xz"; + sha256 = "0lnx3kbgna9pq1bdzzygng0l7rkwyvr2gkxm5abhbw290dvq0xas"; + name = "kactivities-5.17.0.tar.xz"; + }; + }; + kapidox = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kapidox-5.17.0.tar.xz"; + sha256 = "1cd32n36w8hfggng61m50jflb9lpv4ba74aq1g64c1grbfjad3k1"; + name = "kapidox-5.17.0.tar.xz"; + }; + }; + karchive = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/karchive-5.17.0.tar.xz"; + sha256 = "1ry7vwgc1np9pw1b8791lji09n1y6afyifqlv112riifq7ljmld1"; + name = "karchive-5.17.0.tar.xz"; + }; + }; + kauth = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kauth-5.17.0.tar.xz"; + sha256 = "0v7vgh4hmfk3h3083jwx3n11xz22j6vn50naffzwwixqlrqa7qy3"; + name = "kauth-5.17.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz"; + sha256 = "0rk70ag21lpym9lw4dd9rlq77lfi2v2y076g6000hhrqjnvdbcya"; + name = "kbookmarks-5.17.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz"; + sha256 = "176b8ai490ipc1p8zqzi3ymsqzazb7awgnrd81b4fr3fzcm3q8zh"; + name = "kcmutils-5.17.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz"; + sha256 = "12nic57sx69zvj9ihw3ifiwnf9giqq57kgp892kcz5q42wjqzvj3"; + name = "kcodecs-5.17.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz"; + sha256 = "0d8mx3kr29lp1fk0n8pmmzlzrw9fa3czayn46xdwf1dr2pjj4a2g"; + name = "kcompletion-5.17.0.tar.xz"; + }; + }; + kconfig = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kconfig-5.17.0.tar.xz"; + sha256 = "1kdagw6wisqnfj6iq77r0nkc04cvhj4n454s3w3az0bhk23b4nrj"; + name = "kconfig-5.17.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz"; + sha256 = "0fvrk5ap4lr8i2nlphsy3z7kv39h28v33yja2r54pa4207kq4cy2"; + name = "kconfigwidgets-5.17.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz"; + sha256 = "0pd6siicagcjd4vbn30rhrlwy6r3iiyjpl2pim1njr6fvsb0687n"; + name = "kcoreaddons-5.17.0.tar.xz"; + }; + }; + kcrash = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcrash-5.17.0.tar.xz"; + sha256 = "0v1v4ksfswc3fg7piqiw0fln30vilk5pbqq2wphbwbgn5im91m7d"; + name = "kcrash-5.17.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz"; + sha256 = "1n4k97206v7hdkrd2p8vhy1bnr194zvamw3vpvhfxgq4pr4a96dm"; + name = "kdbusaddons-5.17.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz"; + sha256 = "12p5dkdww32d5gk71aw7x5xpa3gj1ag60vj17b9v3zmax0a2g84k"; + name = "kdeclarative-5.17.0.tar.xz"; + }; + }; + kded = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kded-5.17.0.tar.xz"; + sha256 = "1sly9dviv0q99045p13xswjr78x2x5fzwj4qad66w6cyv67i0khk"; + name = "kded-5.17.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz"; + sha256 = "03i7r60zjd10cam0q0kld0x43a8fn281bgn25fysw7604f92x7rx"; + name = "kdelibs4support-5.17.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz"; + sha256 = "0v47sia41gsf9gaf5jgvfgf2wzszfa76abzplqrmlgvrymi1fk1z"; + name = "kdesignerplugin-5.17.0.tar.xz"; + }; + }; + kdesu = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdesu-5.17.0.tar.xz"; + sha256 = "188k34x4z1s948f3qdy4c5pascdzshrqnbsx0ppnjlgxhv8sx108"; + name = "kdesu-5.17.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz"; + sha256 = "1p3nanp1i09hpxp9gfvjyqcrfjf7ypxpfhpd381az96pjs35dixc"; + name = "kdewebkit-5.17.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz"; + sha256 = "05njhdpmp28c46271laxjy87v6miwzf7xm1886b9q0v47cpin2p1"; + name = "kdnssd-5.17.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz"; + sha256 = "0qbzj68rfg9xc3nabhrnaqm9ysgbrdhdgm8ag64ixk6b4x6hjmr8"; + name = "kdoctools-5.17.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz"; + sha256 = "0cxzjfsl1ph3nl6ycsgyaz22rb4nc15n2glcgnmrqchh67xxzv13"; + name = "kemoticons-5.17.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz"; + sha256 = "1a6865v1cz31i8a63hhjzp1lw5b78p0r7ypml6syxlblpg2y9mzh"; + name = "kfilemetadata-5.17.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz"; + sha256 = "0dm8xljqgxay98dcqdgvmhcf0fanv3iiw23nk4vyzis6n8nv04hz"; + name = "kglobalaccel-5.17.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz"; + sha256 = "1r15ll4c27zp78p9i18izxrpmf41hynz16z0fmz8jgcdnxgx0d74"; + name = "kguiaddons-5.17.0.tar.xz"; + }; + }; + khtml = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz"; + sha256 = "0mz5mb7mh2nxih2avy2ncmchlyzg8pignnl4lbr5cnfc7y79g7i4"; + name = "khtml-5.17.0.tar.xz"; + }; + }; + ki18n = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ki18n-5.17.0.tar.xz"; + sha256 = "07chysr2x579ll6qwxmirmcy5b06wf0578l8xmvgc9q4wk0m0m73"; + name = "ki18n-5.17.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz"; + sha256 = "1fgwgwmrb0pav30s7wc30src92cvfw6cxqz2q14n5flz7kg1d0k3"; + name = "kiconthemes-5.17.0.tar.xz"; + }; + }; + kidletime = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kidletime-5.17.0.tar.xz"; + sha256 = "06ig3wca3k1kdq0w1pl5syvcgrrshyws6xal7qswr6vsf6jd7n95"; + name = "kidletime-5.17.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz"; + sha256 = "0dw007wc50fhgpm1sv8qxs3y8xwwgcz33nd8p7yg8bxqfgjmhzbs"; + name = "kimageformats-5.17.0.tar.xz"; + }; + }; + kinit = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kinit-5.17.0.tar.xz"; + sha256 = "18agcc5z8g0vsk97wh4p09185m5vz52wdsia7rg8f5fb4wkzrn5i"; + name = "kinit-5.17.0.tar.xz"; + }; + }; + kio = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kio-5.17.0.tar.xz"; + sha256 = "1dfh2kbp00kv5b94p4xjimh4fhlwmcgac7wsi1g2pvrbw7gsi48l"; + name = "kio-5.17.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz"; + sha256 = "19zq1d7ymfzlz3nx4a9hvlfssa7x0rdh8pg8i9rchalals6239ny"; + name = "kitemmodels-5.17.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz"; + sha256 = "1k3f1j3sw86jl5y3ak767ldb2fraspldjh6i98926wingqq3y8p3"; + name = "kitemviews-5.17.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz"; + sha256 = "02j7fm0g0dc6grvgjhx269b5p4xil7k8z1m8amkjpc7v3j3vkyrw"; + name = "kjobwidgets-5.17.0.tar.xz"; + }; + }; + kjs = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz"; + sha256 = "0988qcgiqc4mla3x12mb8xaw0mhy2kmdi94xw634az03mwghljh4"; + name = "kjs-5.17.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz"; + sha256 = "0am27pdc2pdjisc82iinq68lw8r12a0zb9n6ywa1mlqbrvr5sqgs"; + name = "kjsembed-5.17.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz"; + sha256 = "1idzbddyfrf05kbqqm1hcyy53qrnvg9sb0f29rqp33mq36y63rxg"; + name = "kmediaplayer-5.17.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz"; + sha256 = "1ljr1syg7810ww0wlqq2p7xdqn9sfz7kkxr8vdw4627gjqr50l5s"; + name = "knewstuff-5.17.0.tar.xz"; + }; + }; + knotifications = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knotifications-5.17.0.tar.xz"; + sha256 = "0k2g0vmlhandp9zihj5sbs06yanmpy06h2pq5d2hn569anvpxr0r"; + name = "knotifications-5.17.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz"; + sha256 = "1lfa23vag5j294ry5c0n59rs04k1mb5yr7vi69al2pw6xmnkbw6n"; + name = "knotifyconfig-5.17.0.tar.xz"; + }; + }; + kpackage = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpackage-5.17.0.tar.xz"; + sha256 = "03z3hcibzkzymva935gx39bbrl61jw8wnxqxh2f56z7qmm7sj9x7"; + name = "kpackage-5.17.0.tar.xz"; + }; + }; + kparts = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kparts-5.17.0.tar.xz"; + sha256 = "08dh17z5345gmvaacrllpx9zdfayndfxl8ykhzpp3gvx0ssrswwx"; + name = "kparts-5.17.0.tar.xz"; + }; + }; + kpeople = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpeople-5.17.0.tar.xz"; + sha256 = "0d7j2j92r2iwkabnqm6f6wm5d4j69r4z1859pc9l4rhh4f0qy9g3"; + name = "kpeople-5.17.0.tar.xz"; + }; + }; + kplotting = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kplotting-5.17.0.tar.xz"; + sha256 = "0i8gcvf2fiaxxqjan1lil9is8v5bfd4yi9zyl7bzijcishckrkmx"; + name = "kplotting-5.17.0.tar.xz"; + }; + }; + kpty = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpty-5.17.0.tar.xz"; + sha256 = "1csgwp9y33sfgzn4mwinqznfmsd2cm1iia6qm0xpmf8n39rassxc"; + name = "kpty-5.17.0.tar.xz"; + }; + }; + kross = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz"; + sha256 = "0bjkp8ibaw1zr71dbfz09qbaragmzh3slyp8mm6ypaixgfvprklx"; + name = "kross-5.17.0.tar.xz"; + }; + }; + krunner = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz"; + sha256 = "0ghxbmkpi20kbrsn6kib3na3gdnsn5akfzazfwh8q00dhabhin4k"; + name = "krunner-5.17.0.tar.xz"; + }; + }; + kservice = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kservice-5.17.0.tar.xz"; + sha256 = "0nz46n6yj3h6ml0gvn2j7malvxn4p96q9xh9f2i7j1jwl3c5j4b8"; + name = "kservice-5.17.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz"; + sha256 = "16shf6zq019pmg8avnlvn4l5w71h4y6v3511rckn8kqdrz3wb4pr"; + name = "ktexteditor-5.17.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz"; + sha256 = "1940a2s084hwf359rr3vrlzdz09iyn3nlpch24wgff728i28mc73"; + name = "ktextwidgets-5.17.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz"; + sha256 = "0yc3k0d91m5ql75azabqqsihy3hai3x0hzwby8wwm5by20mq1bjf"; + name = "kunitconversion-5.17.0.tar.xz"; + }; + }; + kwallet = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwallet-5.17.0.tar.xz"; + sha256 = "0552cd4m6nf439vrbwljxmb030h1ndmldvnl4p5r0g8h8jd12siv"; + name = "kwallet-5.17.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz"; + sha256 = "151jywz4z375kgx362i39gf5xb7fdayz9kly738vzwx4vx253xvn"; + name = "kwidgetsaddons-5.17.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz"; + sha256 = "180b567ixiv487fdw2hp0jgs7cckm8f82y0mny5zvi25l39gjq54"; + name = "kwindowsystem-5.17.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz"; + sha256 = "0rbxk9f918wmq1ijxcpjf6rl31p1f0f85f8rjk5aln3gh65b1zdn"; + name = "kxmlgui-5.17.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz"; + sha256 = "1zj7c6b72cnnkds73938xyy87padbv0ah3jfqxdfb1yd5zxba7cs"; + name = "kxmlrpcclient-5.17.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz"; + sha256 = "1q3abgr527lcrzy40anm3sjy9j8ycga4g1gkqz201lwa1wp22zr3"; + name = "modemmanager-qt-5.17.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz"; + sha256 = "08aafz3y2lnnl5dmzj4s1nfjwhy3mda20pkxjyw1vk8l3s8nhs1l"; + name = "networkmanager-qt-5.17.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/oxygen-icons5-5.17.0.tar.xz"; + sha256 = "18m5hfz4zappnz45f230sgjbl52fsjxli6d5dvm6998bhcyvv1y9"; + name = "oxygen-icons5-5.17.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz"; + sha256 = "0pi91pg9h0s4xziw9m8mc65b8ryhgjnv14zalmbwyr63qn7bkfjh"; + name = "plasma-framework-5.17.0.tar.xz"; + }; + }; + solid = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/solid-5.17.0.tar.xz"; + sha256 = "1igdqk5cgrxq4is55zdskkc0kbcyp9vjfdrvr9xxhs0lxgizccx3"; + name = "solid-5.17.0.tar.xz"; + }; + }; + sonnet = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/sonnet-5.17.0.tar.xz"; + sha256 = "0f7bzdcknc7kc4133q0c3zc1j78yf29kh8i7c0qg01zv1iafbbsv"; + name = "sonnet-5.17.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz"; + sha256 = "1cf7qrzw4saai0z6l7bzhfc8clhngcgxla5zbpj28l6130lha8sw"; + name = "threadweaver-5.17.0.tar.xz"; + }; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix new file mode 100644 index 00000000000..52817921cc7 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "threadweaver"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8ab4c78159..9b949400029 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6846,6 +6846,7 @@ let kf515 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.15 { inherit pkgs; }); kf516 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.16 { inherit pkgs; }); + kf517 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }); kf5_stable = kf515; kf5_latest = kf516; From 54829da8229e418d955a87ab39104f65d5d99c47 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 07:15:07 -0600 Subject: [PATCH 045/707] kf517.ki18n: add missing qtdeclarative dependency --- pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix index 915e3294b46..268006512e7 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix @@ -2,13 +2,14 @@ , extra-cmake-modules , gettext , python +, qtdeclarative , qtscript }: kdeFramework { name = "ki18n"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtscript ]; + buildInputs = [ qtdeclarative qtscript ]; propagatedNativeBuildInputs = [ gettext python ]; meta = { maintainers = [ lib.maintainers.ttuegel ]; From cc79a6360bdfb57b610df21c84f918c4262bafd7 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 12 Dec 2015 14:26:46 +0100 Subject: [PATCH 046/707] geoclue2: 2.1.10 -> 2.4.1 --- pkgs/development/libraries/geoclue/2.0.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/geoclue/2.0.nix b/pkgs/development/libraries/geoclue/2.0.nix index 88545bf732c..73d3bb92e7e 100644 --- a/pkgs/development/libraries/geoclue/2.0.nix +++ b/pkgs/development/libraries/geoclue/2.0.nix @@ -1,18 +1,18 @@ { fetchurl, stdenv, intltool, pkgconfig, glib, json_glib, libsoup, geoip -, dbus, dbus_glib, networkmanager, modemmanager +, dbus, dbus_glib, modemmanager, avahi }: stdenv.mkDerivation rec { - name = "geoclue-2.1.10"; + name = "geoclue-2.4.1"; src = fetchurl { - url = "http://www.freedesktop.org/software/geoclue/releases/2.1/${name}.tar.xz"; - sha256 = "0s0ws2bx5g1cbjamxmm448r4n4crha2fwpzm8zbx6cq6qslygmzi"; + url = "http://www.freedesktop.org/software/geoclue/releases/2.4/${name}.tar.xz"; + sha256 = "1m1l1npdv804m98xhfpd1wl1whrrp2pjivliwwlnyk86yq0gs6cs"; }; buildInputs = [ intltool pkgconfig glib json_glib libsoup geoip - dbus dbus_glib networkmanager modemmanager + dbus dbus_glib modemmanager avahi ]; preConfigure = '' From 77463eec42bcb5b3406b62d1a105986049eb887d Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 25 Nov 2015 19:02:03 +0000 Subject: [PATCH 047/707] use fetchurlBoot in libressl --- pkgs/top-level/all-packages.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8ab4c78159..dcd6cef383c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8005,10 +8005,14 @@ let ffmpeg = ffmpeg_0; }; - libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix { }; - libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { }; # 2.3 breaks some backward-compability libressl = libressl_2_2; + libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix { + fetchurl = fetchurlBoot; + }; + libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { + fetchurl = fetchurlBoot; + }; boringssl = callPackage ../development/libraries/boringssl { }; From 4cf6fef6fc1d27a74d346c9fc81c063b66dcb2e4 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 12 Dec 2015 14:41:53 +0100 Subject: [PATCH 048/707] pkgs.gcc5: 5.2.0 -> 5.3.0 gcc-5.3.0 is a bug-fix release from the GCC 5 branch. See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00002.html --- pkgs/development/compilers/gcc/5/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix index 6decc4c8cc3..f3dda7d13f7 100644 --- a/pkgs/development/compilers/gcc/5/default.nix +++ b/pkgs/development/compilers/gcc/5/default.nix @@ -57,7 +57,7 @@ assert langGo -> langCC; with stdenv.lib; with builtins; -let version = "5.2.0"; +let version = "5.3.0"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; @@ -212,7 +212,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; - sha256 = "1bccp8a106xwz3wkixn65ngxif112vn90qf95m6lzpgpnl25p0sz"; + sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq"; }; inherit patches; From 18af0f88d008ba967efdc8c7a1c258abc154b7ce Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sat, 12 Dec 2015 08:46:34 -0500 Subject: [PATCH 049/707] Linux 4.3: 4.3 -> 4.3.2 --- pkgs/os-specific/linux/kernel/linux-4.3.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.3.nix b/pkgs/os-specific/linux/kernel/linux-4.3.nix index 7248641a5b8..00d46761b2a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.3.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.3.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.3"; - modDirVersion = "4.3.0"; + version = "4.3.2"; + extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1bpkr45i4yzp32p0vpnz8mlv9lk4q2q9awf1kg9khg4a9g42qqja"; + sha256 = "27689c993943f21b4a34d45889fbd02daa7edabf00561eebee1ca0670e31ae9d"; }; features.iwlwifi = true; From 5aa99f680e71918c58ade6299e06aba3f331c41a Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 12 Dec 2015 14:54:25 +0100 Subject: [PATCH 050/707] pkgs.gdb: 7.10 -> 7.10.1 See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00003.html --- pkgs/development/tools/misc/gdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix index 0f2bc98b017..547f7a81ab6 100644 --- a/pkgs/development/tools/misc/gdb/default.nix +++ b/pkgs/development/tools/misc/gdb/default.nix @@ -10,7 +10,7 @@ let - basename = "gdb-7.10"; + basename = "gdb-7.10.1"; # Whether (cross-)building for GNU/Hurd. This is an approximation since # having `stdenv ? cross' doesn't tell us if we're building `crossDrv' and @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnu/gdb/${basename}.tar.xz"; - sha256 = "1a08c9svaihqmz2mm44il1gwa810gmwkckns8b0y0v3qz52amgby"; + sha256 = "1mfnjcwnwm5cg4rc9pncs9v356a0bz6ymjyac56mbj6784yjzir5"; }; nativeBuildInputs = [ pkgconfig texinfo perl ] From 178c20f0f6f9427d32aaa28fec90174bccc743bf Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sat, 12 Dec 2015 08:57:56 -0500 Subject: [PATCH 051/707] perlPackages.LinuxDistribution: Disable test suite. Fails on distros that aren't on its supported list, including NixOS. --- pkgs/top-level/perl-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 59e7ae2b2a5..04cf46e9339 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6258,6 +6258,9 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/C/CH/CHORNY/Linux-Distribution-0.23.tar.gz; sha256 = "603e27da607b3e872a669d7a66d75982f0969153eab2d4b20c341347b4ebda5f"; }; + # The tests fail if the distro it's built on isn't in the supported list. + # This includes NixOS. + doCheck = false; meta = { description = "Perl extension to detect on which Linux distribution we are running"; license = "perl"; From f27dee4eb22b26b9deac06594c38e7f94dae0eff Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 12 Dec 2015 15:04:27 +0100 Subject: [PATCH 052/707] pkgs.freeipmi: 1.4.9 -> 1.5.1 See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00000.html --- pkgs/tools/system/freeipmi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/freeipmi/default.nix b/pkgs/tools/system/freeipmi/default.nix index 7e3ec2358c7..3a88267f6c4 100644 --- a/pkgs/tools/system/freeipmi/default.nix +++ b/pkgs/tools/system/freeipmi/default.nix @@ -1,12 +1,12 @@ { fetchurl, stdenv, libgcrypt, readline }: stdenv.mkDerivation rec { - version = "1.4.9"; + version = "1.5.1"; name = "freeipmi-${version}"; src = fetchurl { url = "mirror://gnu/freeipmi/${name}.tar.gz"; - sha256 = "0v2xfwik2mv6z8066raiypc4xymjvr8pb0mv3mc3g4ym4km132qp"; + sha256 = "0lhjxlha4j5rx11d81y1rgp9j18rlpxsjc0flsmj6bm60awmm627"; }; buildInputs = [ libgcrypt readline ]; From 28b74a05af4330110ef90d119fcba8247a283130 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 08:09:48 -0600 Subject: [PATCH 053/707] remove kf516 --- pkgs/applications/kde-apps-15.12/default.nix | 2 +- .../libraries/kde-frameworks-5.16/attica.nix | 11 - .../libraries/kde-frameworks-5.16/baloo.nix | 25 - .../kde-frameworks-5.16/bluez-qt.nix | 17 - .../kde-frameworks-5.16/breeze-icons.nix | 10 - .../libraries/kde-frameworks-5.16/default.nix | 114 ---- .../0001-extra-cmake-modules-paths.patch | 74 --- .../extra-cmake-modules/default.nix | 18 - .../extra-cmake-modules/setup-hook.sh | 27 - .../kde-frameworks-5.16/fetchsrcs.sh | 57 -- .../frameworkintegration.nix | 17 - .../kde-frameworks-5.16/kactivities.nix | 22 - .../libraries/kde-frameworks-5.16/kapidox.nix | 12 - .../kde-frameworks-5.16/karchive.nix | 11 - .../kde-frameworks-5.16/kauth/default.nix | 16 - .../kauth/kauth-policy-install.patch | 13 - .../kde-frameworks-5.16/kbookmarks.nix | 25 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.16/kcmutils/default.nix | 17 - .../libraries/kde-frameworks-5.16/kcodecs.nix | 11 - .../kde-frameworks-5.16/kcompletion.nix | 14 - .../libraries/kde-frameworks-5.16/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kconfigwidgets/default.nix | 17 - .../kde-frameworks-5.16/kcoreaddons.nix | 16 - .../libraries/kde-frameworks-5.16/kcrash.nix | 16 - .../kde-frameworks-5.16/kdbusaddons.nix | 17 - .../kde-frameworks-5.16/kdeclarative.nix | 22 - .../libraries/kde-frameworks-5.16/kded.nix | 19 - .../kde-frameworks-5.16/kdelibs4support.nix | 32 - .../kde-frameworks-5.16/kdesignerplugin.nix | 34 -- .../libraries/kde-frameworks-5.16/kdesu.nix | 13 - .../kde-frameworks-5.16/kdewebkit.nix | 13 - .../libraries/kde-frameworks-5.16/kdnssd.nix | 13 - .../kde-frameworks-5.16/kdoctools/default.nix | 20 - .../kdoctools-no-find-docbook-xml.patch | 12 - .../kdoctools/setup-hook.sh | 5 - .../kde-frameworks-5.16/kemoticons.nix | 17 - .../kde-frameworks-5.16/kfilemetadata.nix | 13 - .../kde-frameworks-5.16/kglobalaccel.nix | 23 - .../kde-frameworks-5.16/kguiaddons.nix | 13 - .../libraries/kde-frameworks-5.16/khtml.nix | 21 - .../libraries/kde-frameworks-5.16/ki18n.nix | 16 - .../kde-frameworks-5.16/kiconthemes.nix | 17 - .../kde-frameworks-5.16/kidletime.nix | 15 - .../kde-frameworks-5.16/kimageformats.nix | 13 - .../kinit/0001-kinit-libpath.patch | 42 -- .../kde-frameworks-5.16/kinit/default.nix | 17 - .../libraries/kde-frameworks-5.16/kio.nix | 31 - .../kde-frameworks-5.16/kitemmodels.nix | 11 - .../kde-frameworks-5.16/kitemviews.nix | 11 - .../kde-frameworks-5.16/kjobwidgets.nix | 16 - .../libraries/kde-frameworks-5.16/kjs.nix | 16 - .../kde-frameworks-5.16/kjsembed.nix | 17 - .../kde-frameworks-5.16/kmediaplayer.nix | 15 - .../kde-frameworks-5.16/knewstuff.nix | 17 - .../kde-frameworks-5.16/knotifications.nix | 21 - .../kde-frameworks-5.16/knotifyconfig.nix | 13 - .../kpackage/0001-allow-external-paths.patch | 25 - .../0002-qdiriterator-follow-symlinks.patch | 39 -- .../kde-frameworks-5.16/kpackage/default.nix | 26 - .../libraries/kde-frameworks-5.16/kparts.nix | 17 - .../libraries/kde-frameworks-5.16/kpeople.nix | 15 - .../kde-frameworks-5.16/kplotting.nix | 11 - .../libraries/kde-frameworks-5.16/kpty.nix | 10 - .../libraries/kde-frameworks-5.16/kross.nix | 14 - .../libraries/kde-frameworks-5.16/krunner.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kservice/0002-no-canonicalize-path.patch | 25 - .../kde-frameworks-5.16/kservice/default.nix | 19 - .../kservice/setup-hook.sh | 43 -- .../0001-no-qcoreapplication.patch | 48 -- .../ktexteditor/default.nix | 18 - .../kde-frameworks-5.16/ktextwidgets.nix | 16 - .../kde-frameworks-5.16/kunitconversion.nix | 10 - .../libraries/kde-frameworks-5.16/kwallet.nix | 21 - .../kde-frameworks-5.16/kwidgetsaddons.nix | 11 - .../kde-frameworks-5.16/kwindowsystem.nix | 13 - .../libraries/kde-frameworks-5.16/kxmlgui.nix | 18 - .../kde-frameworks-5.16/kxmlrpcclient.nix | 10 - .../kde-frameworks-5.16/modemmanager-qt.nix | 13 - .../kde-frameworks-5.16/networkmanager-qt.nix | 13 - .../kde-frameworks-5.16/oxygen-icons5.nix | 13 - .../plasma-framework/default.nix | 25 - .../libraries/kde-frameworks-5.16/solid.nix | 17 - .../libraries/kde-frameworks-5.16/sonnet.nix | 13 - .../libraries/kde-frameworks-5.16/srcs.nix | 565 ------------------ .../kde-frameworks-5.16/threadweaver.nix | 11 - pkgs/top-level/all-packages.nix | 4 +- 89 files changed, 3 insertions(+), 2324 deletions(-) delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/attica.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/baloo.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh delete mode 100755 pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/karchive.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kded.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/khtml.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kiconthemes.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kio.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kjs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kpackage/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kparts.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kpeople.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kplotting.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kpty.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kross.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/krunner.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/solid.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/srcs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index 0c8c0780aaf..807c32ccb7d 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -49,6 +49,6 @@ let l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); }; - newScope = scope: pkgs.kf516.newScope ({ inherit kdeApp; } // scope); + newScope = scope: pkgs.kf517.newScope ({ inherit kdeApp; } // scope); in lib.makeScope newScope packages diff --git a/pkgs/development/libraries/kde-frameworks-5.16/attica.nix b/pkgs/development/libraries/kde-frameworks-5.16/attica.nix deleted file mode 100644 index 98721876c12..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix deleted file mode 100644 index 38c41d9271d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix deleted file mode 100644 index f981b0516f7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix deleted file mode 100644 index 879262c56a4..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework -, extra-cmake-modules -, qtsvg -}: - -kdeFramework { - name = "breeze-icons"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedUserEnvPkgs = [ qtsvg ]; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/default.nix deleted file mode 100644 index 6c2889aa598..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/default.nix +++ /dev/null @@ -1,114 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - addPackages = self: with self; { - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - breeze-icons = callPackage ./breeze-icons.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support.nix {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata.nix {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes.nix {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio.nix {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - - newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); - -in lib.makeScope newScope addPackages diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch deleted file mode 100644 index 9717716faf5..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 3cc148e878b69fc3e0228f3e3bf1bbe689dad87c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 20 Feb 2015 23:17:39 -0600 -Subject: [PATCH] extra-cmake-modules paths - ---- - kde-modules/KDEInstallDirs.cmake | 37 ++++--------------------------------- - 1 file changed, 4 insertions(+), 33 deletions(-) - -diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake -index b7cd34d..2f868ac 100644 ---- a/kde-modules/KDEInstallDirs.cmake -+++ b/kde-modules/KDEInstallDirs.cmake -@@ -193,37 +193,8 @@ - # (To distribute this file outside of extra-cmake-modules, substitute the full - # License text for the above reference.) - --# Figure out what the default install directory for libraries should be. --# This is based on the logic in GNUInstallDirs, but simplified (the --# GNUInstallDirs code deals with re-configuring, but that is dealt with --# by the _define_* macros in this module). -+# The default library directory on NixOS is *always* /lib. - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR -@@ -445,15 +416,15 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) - "QtQuick2 imports" - QML_INSTALL_DIR) - else() -- _define_relative(QTPLUGINDIR LIBDIR "plugins" -+ _define_relative(QTPLUGINDIR LIBDIR "qt5/plugins" - "Qt plugins" - QT_PLUGIN_INSTALL_DIR) - -- _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "imports" -+ _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "qt5/imports" - "QtQuick1 imports" - IMPORTS_INSTALL_DIR) - -- _define_relative(QMLDIR LIBDIR "qml" -+ _define_relative(QMLDIR LIBDIR "qt5/qml" - "QtQuick2 imports" - QML_INSTALL_DIR) - endif() --- -2.3.0 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix deleted file mode 100644 index 4e1b1aff3bd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - patches = [ ./0001-extra-cmake-modules-paths.patch ]; - - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = { - license = stdenv.lib.licenses.bsd2; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index a6fa6189240..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,27 +0,0 @@ -addMimePkg() { - local propagated - - if [[ -d "$1/share/mime" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - fi -} - -envHooks+=(addMimePkg) diff --git a/pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh deleted file mode 100755 index 72d83057545..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.16/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix deleted file mode 100644 index 26987c385ad..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix deleted file mode 100644 index 3225098f439..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix deleted file mode 100644 index 647be8f052c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix deleted file mode 100644 index a8d9a0003c3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix deleted file mode 100644 index 42a10019334..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, polkitQt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkitQt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = [ ./kauth-policy-install.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch deleted file mode 100644 index 340155256f2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in -index e859ec7..9a8ab18 100644 ---- a/KF5AuthConfig.cmake.in -+++ b/KF5AuthConfig.cmake.in -@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") - set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa9501..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix deleted file mode 100644 index dbbb783ac61..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix deleted file mode 100644 index 53a69a69b69..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix deleted file mode 100644 index e393774f16a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix deleted file mode 100644 index e132afe5988..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee9053..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix deleted file mode 100644 index 0e14d06edd3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix deleted file mode 100644 index f3a1db7bd48..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ shared_mime_info ]; - postInstall = '' - wrapQtProgram "$out/bin/desktoptojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix deleted file mode 100644 index bbab78ccb40..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix deleted file mode 100644 index 74d107466cf..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kded.nix b/pkgs/development/libraries/kde-frameworks-5.16/kded.nix deleted file mode 100644 index 47ae2d68c68..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix deleted file mode 100644 index 0dd5c415761..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix deleted file mode 100644 index cbc114ccca0..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kgendesignerplugin" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix deleted file mode 100644 index 364fbd6a720..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix deleted file mode 100644 index d361313d1d4..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix deleted file mode 100644 index f00432b0c9c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix deleted file mode 100644 index 138c3fc33b9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh deleted file mode 100644 index 5cfffbd622d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh +++ /dev/null @@ -1,5 +0,0 @@ -addXdgData() { - addToSearchPath XDG_DATA_DIRS "$1/share" -} - -envHooks+=(addXdgData) diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix deleted file mode 100644 index d165f84e3a2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix deleted file mode 100644 index 92ca1f26b93..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix deleted file mode 100644 index c535b3590a3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix deleted file mode 100644 index bc4e9ab1184..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix deleted file mode 100644 index d40df466ebb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix deleted file mode 100644 index 915e3294b46..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.16/kiconthemes.nix deleted file mode 100644 index eb24403169d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kiconthemes.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules, kconfigwidgets, ki18n -, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/kiconfinder5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix deleted file mode 100644 index fc086560023..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 13 Jun 2015 08:57:55 -0500 -Subject: [PATCH] kinit libpath - ---- - src/kdeinit/kinit.cpp | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp -index 9e775b6..0ac5646 100644 ---- a/src/kdeinit/kinit.cpp -+++ b/src/kdeinit/kinit.cpp -@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -+ // Use QT_PLUGIN_PATH to find shared library directories -+ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 -+ // shared libraries should be in /lib/qt5/plugins/../../ -+ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); -+ const QString up = QString::fromLocal8Bit("/../../"); -+ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); -+ Q_FOREACH (const QString &path, paths) { -+ l.setFileName(path + up + libpath); - l.load(); -+ if (l.isLoaded()) break; -+ } - } - } - if (!l.isLoaded()) { --- -2.4.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix deleted file mode 100644 index 5f644d7c424..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kio.nix b/pkgs/development/libraries/kde-frameworks-5.16/kio.nix deleted file mode 100644 index 199565e2418..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kio.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - wrapQtProgram "$out/bin/protocoltojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix deleted file mode 100644 index a9024d771cc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix deleted file mode 100644 index 931019ce495..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix deleted file mode 100644 index 746edf12eea..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix deleted file mode 100644 index 768720f178c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix deleted file mode 100644 index 22eef2d47bd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix deleted file mode 100644 index 460458b2232..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix deleted file mode 100644 index 5bcd6f30146..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix deleted file mode 100644 index 7e301dd0f26..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch deleted file mode 100644 index beede4d7ccb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a92ac391b4e6ca335bd7fa78f1addd23c9467931 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 28 Jan 2015 07:15:30 -0600 -Subject: [PATCH 1/2] allow external paths - ---- - src/kpackage/package.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpackage/package.cpp b/src/kpackage/package.cpp -index 539b21a..977a026 100644 ---- a/src/kpackage/package.cpp -+++ b/src/kpackage/package.cpp -@@ -789,7 +789,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 6e93fca9b21..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 9fc26c3c0478eb7cb0a531836ba2e3a85d820c88 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:50:28 -0500 -Subject: [PATCH 2/2] qdiriterator follow symlinks - ---- - src/kpackage/packageloader.cpp | 2 +- - src/kpackage/private/packagejobthread.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/kpackage/packageloader.cpp b/src/kpackage/packageloader.cpp -index eb5ed47..94217f6 100644 ---- a/src/kpackage/packageloader.cpp -+++ b/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::listPackages(const QString &packageFormat, - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -diff --git a/src/kpackage/private/packagejobthread.cpp b/src/kpackage/private/packagejobthread.cpp -index ca523b3..1cfa792 100644 ---- a/src/kpackage/private/packagejobthread.cpp -+++ b/src/kpackage/private/packagejobthread.cpp -@@ -145,7 +145,7 @@ bool indexDirectory(const QString& dir, const QString& dest) - QJsonArray plugins; - - int i = 0; -- QDirIterator it(dir, QStringList()< -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c6852611..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix deleted file mode 100644 index 03b7c7c2f51..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - propagatedUserEnvPkgs = [ kcoreaddons ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh deleted file mode 100644 index c28e862ff8a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh +++ /dev/null @@ -1,43 +0,0 @@ -addServicePkg() { - local propagated - for dir in "share/kservices5" "share/kservicetypes5"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - - break - fi - done -} - -envHooks+=(addServicePkg) - -local propagated -for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z@out@" ]]; then - propagated=1 - break - fi -done -if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs @out@" -fi diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch deleted file mode 100644 index def55bff9b2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch +++ /dev/null @@ -1,48 +0,0 @@ -From dc50fffdc72b76498384ce2f9065c3757b786d71 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 09:08:59 -0500 -Subject: [PATCH] no qcoreapplication - ---- - src/syntax/data/katehighlightingindexer.cpp | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -diff --git a/src/syntax/data/katehighlightingindexer.cpp b/src/syntax/data/katehighlightingindexer.cpp -index 3c63140..e3d5efe 100644 ---- a/src/syntax/data/katehighlightingindexer.cpp -+++ b/src/syntax/data/katehighlightingindexer.cpp -@@ -51,19 +51,16 @@ QStringList readListing(const QString &fileName) - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -147,7 +144,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix deleted file mode 100644 index 39092fbb278..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, karchive, kconfig -, kguiaddons, ki18n, kio, kiconthemes, kparts, perl, qtscript -, qtxmlpatterns, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts qtscript - qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = [ ./0001-no-qcoreapplication.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a8..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix deleted file mode 100644 index 7c4177e009d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications -, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper -}: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kiconthemes knotifications - kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fec..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix deleted file mode 100644 index f081d5f9170..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kiconthemes kitemviews ktextwidgets - ]; - propagatedBuildInputs = [ - kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix deleted file mode 100644 index 333378bd143..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix deleted file mode 100644 index ee350f8e153..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework -, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "oxygen-icons5"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix deleted file mode 100644 index d8846f77723..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/solid.nix b/pkgs/development/libraries/kde-frameworks-5.16/solid.nix deleted file mode 100644 index afd125e3c59..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix deleted file mode 100644 index 943fe04a1c9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix deleted file mode 100644 index 8e3d6a4a921..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix +++ /dev/null @@ -1,565 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/attica-5.16.0.tar.xz"; - sha256 = "1739pf892vgvl03l4322p09p346ca4nghc50ansny7868c73f95w"; - name = "attica-5.16.0.tar.xz"; - }; - }; - baloo = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/baloo-5.16.0.tar.xz"; - sha256 = "0s8l9q43ak87sjagashxfwadildlz3vdysj96in6v3gcg09ngm8j"; - name = "baloo-5.16.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/bluez-qt-5.16.0.tar.xz"; - sha256 = "0xxlwb4kqiiqmph9vr6ppyzjndzz1ys9qbnzzinrhhdmiir5m3k6"; - name = "bluez-qt-5.16.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/breeze-icons-5.16.0.tar.xz"; - sha256 = "1vmwnqin9p6p78kshn1bfq7zz1znmm615bq28545shywfkri1yil"; - name = "breeze-icons-5.16.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/extra-cmake-modules-5.16.0.tar.xz"; - sha256 = "06xfmxbjkrdswh2n0qmdi5zvm3dqhawiazi5x6p32n77ij5wiph9"; - name = "extra-cmake-modules-5.16.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/frameworkintegration-5.16.0.tar.xz"; - sha256 = "0vyv3c34mpp6yjgqm8gyir7cwxn3a064q5d3ms49macpjkkz7c6f"; - name = "frameworkintegration-5.16.0.tar.xz"; - }; - }; - kactivities = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kactivities-5.16.0.tar.xz"; - sha256 = "0aq0yxbzhg3r9jpddn1vnylmjb2xr4xx5rviisyfa6nhn21ynqxm"; - name = "kactivities-5.16.0.tar.xz"; - }; - }; - kapidox = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kapidox-5.16.0.tar.xz"; - sha256 = "0gfxnssbkdkfncka956y5d2w3zm7yxkl11jvl88cwg6zx2rfh1a4"; - name = "kapidox-5.16.0.tar.xz"; - }; - }; - karchive = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/karchive-5.16.0.tar.xz"; - sha256 = "0rn8n7lnw9z7rl1d2cdy59j4f38jzd6sj0s33dkfk04i4kl0ccpc"; - name = "karchive-5.16.0.tar.xz"; - }; - }; - kauth = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kauth-5.16.0.tar.xz"; - sha256 = "1972c4m7kcj7hnklvy973935sn0khl4jby6g8q2i5hzivp5b0sn3"; - name = "kauth-5.16.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kbookmarks-5.16.0.tar.xz"; - sha256 = "009yls3f4l97z1hcn9nk0j35b0kfysc2l0gvdnijk9prgldn287j"; - name = "kbookmarks-5.16.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcmutils-5.16.0.tar.xz"; - sha256 = "1cz3lgwm6vp39c40yykg26791xcjk3vr83266nhcyl6cm7dk04rl"; - name = "kcmutils-5.16.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcodecs-5.16.0.tar.xz"; - sha256 = "164yj6mpqb7hl9v5xdhgwpddrk7d4qig8qhx9i8xlxbb2v30rlcp"; - name = "kcodecs-5.16.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcompletion-5.16.0.tar.xz"; - sha256 = "084nqd5j7rffqh67v862h88zsqks3pyynw2fzmayhngcjm1y8c22"; - name = "kcompletion-5.16.0.tar.xz"; - }; - }; - kconfig = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kconfig-5.16.0.tar.xz"; - sha256 = "1871ixmk4z4ajfnszlyba4ibmywz0iw7ibg073wwzm3hpx2nizmf"; - name = "kconfig-5.16.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kconfigwidgets-5.16.0.tar.xz"; - sha256 = "11pl9295qnvz9284liyacz87hb5w5a4ybzcyg0jchc62aw1q9bi6"; - name = "kconfigwidgets-5.16.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcoreaddons-5.16.0.tar.xz"; - sha256 = "1944csk50q42a2prm6fijnzi1cds23phdzkfvsxlxxxzga7744fm"; - name = "kcoreaddons-5.16.0.tar.xz"; - }; - }; - kcrash = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcrash-5.16.0.tar.xz"; - sha256 = "1bk7dvlzxs6n63iy0lmb7jgwa3np0ja4ldvwxx1y82gq593dqwa9"; - name = "kcrash-5.16.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdbusaddons-5.16.0.tar.xz"; - sha256 = "0ykfgmhisyiah9nisb73xcdfnxgiwcpjzry68x9j1r60b506r6za"; - name = "kdbusaddons-5.16.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdeclarative-5.16.0.tar.xz"; - sha256 = "0ck8w2vd9z288h08zc8fa2bndgcg6m63g34dl95snb4h00ciybd4"; - name = "kdeclarative-5.16.0.tar.xz"; - }; - }; - kded = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kded-5.16.0.tar.xz"; - sha256 = "0p0mxa989k9n45iaq0ymgr228nx4g31v3bcbdm2vlzzr524jnx8q"; - name = "kded-5.16.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kdelibs4support-5.16.0.tar.xz"; - sha256 = "0y2m67h79in7hdlv95g31kkdnjafdda1h26dm9fdjv52183n8kdc"; - name = "kdelibs4support-5.16.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdesignerplugin-5.16.0.tar.xz"; - sha256 = "1x2kd70nyvykcmd4whnv991pqyflpaahans5jaz0v0y1a2l67965"; - name = "kdesignerplugin-5.16.0.tar.xz"; - }; - }; - kdesu = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdesu-5.16.0.tar.xz"; - sha256 = "10g7vg8q2hibdh098n373jg8njzr0w9dxyfi9yb84pjyyshj7km6"; - name = "kdesu-5.16.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdewebkit-5.16.0.tar.xz"; - sha256 = "1nq6j1k3ddp9p40mdgczcvv0ba16haz3s4km9pyxsv7qwrbpm6wa"; - name = "kdewebkit-5.16.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdnssd-5.16.0.tar.xz"; - sha256 = "1ds1xvw7v75vz2nnrygy10slwysis75y57s8xafsw7fhs8sybvc3"; - name = "kdnssd-5.16.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdoctools-5.16.0.tar.xz"; - sha256 = "1qf82drggsbhwlwsrmwbk6m0x4jhihhx0wz32y7ybhn867p8glgb"; - name = "kdoctools-5.16.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kemoticons-5.16.0.tar.xz"; - sha256 = "166la4160vjf444cylyr4dnc507fqsifl9qpdw2gqa8nw45w6kms"; - name = "kemoticons-5.16.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kfilemetadata-5.16.0.tar.xz"; - sha256 = "1yf7hgpgrvw8qvyj0l8c828y6xh3w3grslg4s9grx93jsw2jpypm"; - name = "kfilemetadata-5.16.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kglobalaccel-5.16.0.tar.xz"; - sha256 = "12hxhi8b53az3qrpgcjz494vylbqgxq3921qhsccy3nvywg7r3mv"; - name = "kglobalaccel-5.16.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kguiaddons-5.16.0.tar.xz"; - sha256 = "1gv0rhr06xzgkw1pj1nc4jbc6vmr952bbvs1vp3x2609pfn7d8b4"; - name = "kguiaddons-5.16.0.tar.xz"; - }; - }; - khtml = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/khtml-5.16.0.tar.xz"; - sha256 = "11q66h7hlsmjc7rj4m70yian6vymbjisz7yw7ck81qbv7b75w9bk"; - name = "khtml-5.16.0.tar.xz"; - }; - }; - ki18n = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ki18n-5.16.0.tar.xz"; - sha256 = "08hxinx0x8b4pprx23a6aklc9sd26cd21ajdzlk2wrv8jp3dl2pw"; - name = "ki18n-5.16.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kiconthemes-5.16.0.tar.xz"; - sha256 = "10y9rz4dmza6xjl8n9hhjpymnxzpdqk6w82s7d4yaam2kkv5hysk"; - name = "kiconthemes-5.16.0.tar.xz"; - }; - }; - kidletime = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kidletime-5.16.0.tar.xz"; - sha256 = "1s51xbn2i50d7dpl7p9aq92gy5zvgxb0liaq36f425g3hzmdkr57"; - name = "kidletime-5.16.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kimageformats-5.16.0.tar.xz"; - sha256 = "02jsmz3ysddywd9v7y8cbsvanpg4d9xwbgr0sqxb600a4s0z797s"; - name = "kimageformats-5.16.0.tar.xz"; - }; - }; - kinit = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kinit-5.16.0.tar.xz"; - sha256 = "1flpxypblj7jjv854f81xd6yx3x1wsns18hpp19jnwb54w2xy0g0"; - name = "kinit-5.16.0.tar.xz"; - }; - }; - kio = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kio-5.16.0.tar.xz"; - sha256 = "1mm94ywvkfnrfkd29vhcnc8v3ly9d33vvjmrhz9r2q3rw4zyjpiv"; - name = "kio-5.16.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kitemmodels-5.16.0.tar.xz"; - sha256 = "1bm948adzhqpq698wg1bqxz09cmpxwqhpv1qvb6fgnxv2fyjgdg2"; - name = "kitemmodels-5.16.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kitemviews-5.16.0.tar.xz"; - sha256 = "1bv41lijf3yh2dwwkwjp80sxz5yffyl1hqs7prhhv2jyn88xpx6a"; - name = "kitemviews-5.16.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kjobwidgets-5.16.0.tar.xz"; - sha256 = "07dclwc85294ca3vkg1sf9zqcgr3brzjimb8qqy0svdbfvbr0kxa"; - name = "kjobwidgets-5.16.0.tar.xz"; - }; - }; - kjs = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kjs-5.16.0.tar.xz"; - sha256 = "0zj5px9wx5c5yzlsz48bahi0xnshn3xbrfm4l9j4x4nj4vk3jksv"; - name = "kjs-5.16.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kjsembed-5.16.0.tar.xz"; - sha256 = "17vsbz0a6cd0nfjpwlyr6401pfrz0snxrcqwnj0llcmbpkbc3las"; - name = "kjsembed-5.16.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kmediaplayer-5.16.0.tar.xz"; - sha256 = "0j9g13qd7l2kwn1imphdsannjdxbx3jk8jl3d9xa6g33mqav8bjc"; - name = "kmediaplayer-5.16.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knewstuff-5.16.0.tar.xz"; - sha256 = "0213lnnlah2jq8a5rbbwzjxl0qc0cgmsnixjbkbvq3wr7yb1s6hr"; - name = "knewstuff-5.16.0.tar.xz"; - }; - }; - knotifications = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knotifications-5.16.0.tar.xz"; - sha256 = "0bfr68a2favrnmpmck16vrqy8mni72plkn0fv0fl6bfq3fmi645a"; - name = "knotifications-5.16.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knotifyconfig-5.16.0.tar.xz"; - sha256 = "0ma5s4451h9jl9va4nnjrwhxgq5jmgq2b0m5y7hdh7m03hwhjqmc"; - name = "knotifyconfig-5.16.0.tar.xz"; - }; - }; - kpackage = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpackage-5.16.0.tar.xz"; - sha256 = "0js7dbg0y6b6nqnwc70706pchxpg12l9g7si1qab2jq8ir5drrap"; - name = "kpackage-5.16.0.tar.xz"; - }; - }; - kparts = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kparts-5.16.0.tar.xz"; - sha256 = "0g405r2x900d8c5jdsspy05m70agj3gqja6y3j319b8ph3yycnq4"; - name = "kparts-5.16.0.tar.xz"; - }; - }; - kpeople = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpeople-5.16.0.tar.xz"; - sha256 = "07lsacynsr3mzqyizbq3mywk8d54kyzfx5a3nminf2hs5a1wgg8m"; - name = "kpeople-5.16.0.tar.xz"; - }; - }; - kplotting = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kplotting-5.16.0.tar.xz"; - sha256 = "1fc448f52lf8nvs2zi2r55vqfhph7qdvdwvdpk0gz8jadj4gciz7"; - name = "kplotting-5.16.0.tar.xz"; - }; - }; - kpty = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpty-5.16.0.tar.xz"; - sha256 = "074sws3rvjs090l2cbhl9gxcgb6bjlxard8ylmrkhvqr0dc9syvc"; - name = "kpty-5.16.0.tar.xz"; - }; - }; - kross = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kross-5.16.0.tar.xz"; - sha256 = "05mwldy2jwal5pjn6hbiny61xd02sbljkkbyc33ni5qiiznxjk56"; - name = "kross-5.16.0.tar.xz"; - }; - }; - krunner = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/krunner-5.16.0.tar.xz"; - sha256 = "1rk7j6kj3sv6dqnv98hprdyrp94wz57lr1lvlmw11kdlm1mmh45p"; - name = "krunner-5.16.0.tar.xz"; - }; - }; - kservice = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kservice-5.16.0.tar.xz"; - sha256 = "140b4jxs3s00xbbbh8jjqw9q5krsd7xh4qal2k0hjk0nfx5blvp9"; - name = "kservice-5.16.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ktexteditor-5.16.0.tar.xz"; - sha256 = "0g1yms864jq83c48j5ida4pmwisqxn49kl5daf7c1ssaia1pxfqw"; - name = "ktexteditor-5.16.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ktextwidgets-5.16.0.tar.xz"; - sha256 = "1vzklpq1zdn3cg5hh7f2988q3sdn6y9mr1hgkmpcsc1y8pfhn7w9"; - name = "ktextwidgets-5.16.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kunitconversion-5.16.0.tar.xz"; - sha256 = "1ppmma1z1hk9shfn1w7dvy72872ryyqs9252s65pzx3ycrd00nll"; - name = "kunitconversion-5.16.0.tar.xz"; - }; - }; - kwallet = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwallet-5.16.0.tar.xz"; - sha256 = "1gcwc7m8q5ya3gbj02pmmjaigpr0y94m3h526b2xdbksc23kv2gi"; - name = "kwallet-5.16.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwidgetsaddons-5.16.0.tar.xz"; - sha256 = "0vzyikwp351sdywh38m6jj851sf5l4s8mxyvf5i6jkzpzl5591a3"; - name = "kwidgetsaddons-5.16.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwindowsystem-5.16.0.tar.xz"; - sha256 = "07hl0sy0573nwddzyph5s75h983569p5bb96gxjbh0lh3ixar2ig"; - name = "kwindowsystem-5.16.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kxmlgui-5.16.0.tar.xz"; - sha256 = "1vzhf29gd5kn94x1cydnblb5v5163a52vpwh7fpsg3dlhhwd9h2s"; - name = "kxmlgui-5.16.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kxmlrpcclient-5.16.0.tar.xz"; - sha256 = "1pacf0q67xckw8nvj3bncz5ydsmiw2a0fksmabklpbdmi9p2dz0a"; - name = "kxmlrpcclient-5.16.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/modemmanager-qt-5.16.0.tar.xz"; - sha256 = "0q135rhp52pk3ilmx9gx2cmn2p834s56kcqg3vdfycvi5gmvn81x"; - name = "modemmanager-qt-5.16.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/networkmanager-qt-5.16.0.tar.xz"; - sha256 = "115r211bf16dlcccib6dg0fd22g9kq9xshh8vf7f4msaa63kdfjv"; - name = "networkmanager-qt-5.16.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/oxygen-icons5-5.16.0.tar.xz"; - sha256 = "0nmr1jp3kr41k4wn9jvj1yvq9w51ljajzk94qf5k7rh68dzj4jl7"; - name = "oxygen-icons5-5.16.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/plasma-framework-5.16.0.tar.xz"; - sha256 = "1snih6i9n29c48sfw51csl99khps1c9bralb599d3c6q1j4iqzp3"; - name = "plasma-framework-5.16.0.tar.xz"; - }; - }; - solid = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/solid-5.16.0.tar.xz"; - sha256 = "1km4nb8cmqag2lpwgrmjj5rn8lv6s9lbhh2d3dfb2f0lmnqm00sl"; - name = "solid-5.16.0.tar.xz"; - }; - }; - sonnet = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/sonnet-5.16.0.tar.xz"; - sha256 = "1fn729ijclvdrxw9h0c23sbayfagh2jb7yglgsqqjsg3bdp72qi7"; - name = "sonnet-5.16.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/threadweaver-5.16.0.tar.xz"; - sha256 = "1ansjzfl6bvwqw2yi597gvzikyaaf8z5pvldwfd4mamb3vl42y4y"; - name = "threadweaver-5.16.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix deleted file mode 100644 index 52817921cc7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9b949400029..6a189988540 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6845,10 +6845,9 @@ let }; kf515 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.15 { inherit pkgs; }); - kf516 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.16 { inherit pkgs; }); kf517 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }); kf5_stable = kf515; - kf5_latest = kf516; + kf5_latest = kf517; kf5PackagesFun = self: with self; { @@ -6891,6 +6890,7 @@ let }; kf515Packages = lib.makeScope kf515.newScope kf5PackagesFun; + kf517Packages = lib.makeScope kf517.newScope kf5PackagesFun; kf5Packages = kf515Packages; kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; From 612781e8169bf13fde26091f2d6c55ebed6ccb6f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 6 Dec 2015 16:55:09 +0100 Subject: [PATCH 054/707] simp_le service: letsencrypt cert auto-renewal This new service invokes `simp_le` for a defined set of certs on a regular basis with a systemd timer. `simp_le` is smart enough to handle account registration, domain validation and renewal on its own. The only thing required is an existing HTTP server that serves the path `/.well-known/acme-challenge` from the webroot cert parameter. Example: services.simp_le.certs."foo.example.com" = { webroot = "/var/www/challenges"; extraDomains = [ "www.example.com" ]; email = "foo@example.com"; validMin = 2592000; renewInterval = "weekly"; }; Example Nginx vhost: services.nginx.appendConfig = '' http { server { server_name _; listen 80; listen [::]:80; location /.well-known/acme-challenge { root /var/www/challenges; } location / { return 301 https://$host$request_uri; } } } ''; --- nixos/modules/module-list.nix | 1 + nixos/modules/services/security/simp_le.nix | 133 ++++++++++++++++++++ 2 files changed, 134 insertions(+) create mode 100644 nixos/modules/services/security/simp_le.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 963daf721ad..c708f095f40 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -388,6 +388,7 @@ ./services/security/hologram.nix ./services/security/munge.nix ./services/security/physlock.nix + ./services/security/simp_le.nix ./services/security/torify.nix ./services/security/tor.nix ./services/security/torsocks.nix diff --git a/nixos/modules/services/security/simp_le.nix b/nixos/modules/services/security/simp_le.nix new file mode 100644 index 00000000000..d578d5bb679 --- /dev/null +++ b/nixos/modules/services/security/simp_le.nix @@ -0,0 +1,133 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.simp_le; + + certOpts = { ... }: { + options = { + webroot = mkOption { + type = types.nullOr types.str; + default = null; + description = "Where the webroot of the HTTP vhost is located."; + }; + + validMin = mkOption { + type = types.int; + default = 2592000; + description = "Minimum remaining validity before renewal in seconds."; + }; + + renewInterval = mkOption { + type = types.str; + default = "weekly"; + description = "Systemd calendar expression when to check for renewal. See systemd.time(7)."; + }; + + email = mkOption { + type = types.nullOr types.str; + default = null; + description = "Contact email address for the CA to be able to reach you."; + }; + + plugins = mkOption { + type = types.listOf (types.enum [ + "cert.der" "cert.pem" "chain.der" "chain.pem" "external_pem.sh" + "fullchain.der" "fullchain.pem" "key.der" "key.pem" + ]); + default = [ "fullchain.pem" "key.pem" ]; + description = "Plugins to enable."; + }; + + extraDomains = mkOption { + default = [ ]; + type = types.listOf types.str; + description = "More domains to include in the certificate."; + example = [ "example.com" "foo.example.com:/var/www/foo" ]; + }; + }; + }; + +in + +{ + + ###### interface + + options = { + services.simp_le = { + directory = mkOption { + default = "/etc/ssl"; + type = types.str; + description = '' + Directory where certs will be stored by default. + ''; + }; + + certs = mkOption { + default = { }; + type = types.loaOf types.optionSet; + description = '' + Attribute set of certificates to get signed and renewed. + ''; + options = [ certOpts ]; + example = { + "foo.example.com" = { + webroot = "/var/www/challenges/"; + email = "foo@example.com"; + extraDomains = [ "www.example.com" "example.com" ]; + }; + "bar.example.com" = { + webroot = "/var/www/challenges/"; + email = "bar@example.com"; + }; + }; + }; + }; + }; + + ###### implementation + config = mkIf (cfg.certs != { }) { + + systemd.services = flip mapAttrs' cfg.certs (cert: data: nameValuePair + ("simp_le-${cert}") + ({ + description = "simp_le cert renewal for ${cert}"; + after = [ "network.target" ]; + serviceConfig = { + Type = "oneshot"; + SuccessExitStatus = "0 1"; + }; + preStart = '' + mkdir -p "${cfg.directory}/${cert}" + ''; + script = '' + WEBROOT="${optionalString (data.webroot == null) data.webroot}" + cd "${cfg.directory}/${cert}" + ${pkgs.simp_le}/bin/simp_le -v \ + ${concatMapStringsSep " " (p: "-f ${p}") data.plugins} \ + -d ${cert} --default_root "$WEBROOT" \ + ${concatMapStringsSep " " (p: "-d ${p}") data.extraDomains} \ + ${optionalString (data.email != null) "--email ${data.email}"} \ + --valid_min ${toString data.validMin} + ''; + }) + ); + + systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair + ("simp_le-${cert}") + ({ + description = "timer for simp_le cert renewal of ${cert}"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnCalendar = data.renewInterval; + Unit = "simp_le-${cert}.service"; + }; + }) + ); + + }; + +} From adc693f982d73af6611856579234f56e383245ad Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 8 Dec 2015 21:07:26 +0300 Subject: [PATCH 055/707] simp_le: 20151205 -> 20151207 --- pkgs/tools/admin/simp_le/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index 5f945309aac..43e361ba647 100644 --- a/pkgs/tools/admin/simp_le/default.nix +++ b/pkgs/tools/admin/simp_le/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonPackage rec { - name = "simp_le-20151205"; + name = "simp_le-20151207"; src = fetchFromGitHub { owner = "kuba"; repo = "simp_le"; - rev = "976a33830759e66610970f92f6ec1a656a2c8335"; - sha256 = "0bfa5081rmjjg9sii6pn2dskd1wh0dgrf9ic9hpisawrk0y0739i"; + rev = "ac836bc0af988cb14dc0a83dc2039e7fa541b677"; + sha256 = "0r07mlis81n0pmj74wjcvjpi6i3lkzs6hz8iighhk8yymn1a8rbn"; }; - propagatedBuildInputs = with pythonPackages; [ acme cryptography pytz requests2 ]; + propagatedBuildInputs = with pythonPackages; [ acme ]; meta = with stdenv.lib; { homepage = https://github.com/kuba/simp_le; From 6906baae5c8686ac8d859b3af6083d8210c57d80 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 8 Dec 2015 21:09:19 +0300 Subject: [PATCH 056/707] nixos/simp_le: improve configuration options --- nixos/modules/services/security/simp_le.nix | 101 +++++++++++++++----- 1 file changed, 77 insertions(+), 24 deletions(-) diff --git a/nixos/modules/services/security/simp_le.nix b/nixos/modules/services/security/simp_le.nix index d578d5bb679..927359da0d3 100644 --- a/nixos/modules/services/security/simp_le.nix +++ b/nixos/modules/services/security/simp_le.nix @@ -9,9 +9,14 @@ let certOpts = { ... }: { options = { webroot = mkOption { - type = types.nullOr types.str; - default = null; - description = "Where the webroot of the HTTP vhost is located."; + type = types.str; + description = '' + Where the webroot of the HTTP vhost is located. + .well-known/acme-challenge/ directory + will be created automatically if it doesn't exist. + http://example.org/.well-known/acme-challenge/ must also + be available (notice unencrypted HTTP). + ''; }; validMin = mkOption { @@ -32,20 +37,53 @@ let description = "Contact email address for the CA to be able to reach you."; }; + user = mkOption { + type = types.str; + default = "root"; + description = "User under which simp_le would run."; + }; + + group = mkOption { + type = types.str; + default = "root"; + description = "Group under which simp_le would run."; + }; + + postRun = mkOption { + type = types.lines; + default = ""; + example = "systemctl reload nginx.service"; + description = '' + Commands to run after certificates are re-issued. Typically + the web server and other servers using certificates need to + be reloaded. + ''; + }; + plugins = mkOption { type = types.listOf (types.enum [ "cert.der" "cert.pem" "chain.der" "chain.pem" "external_pem.sh" - "fullchain.der" "fullchain.pem" "key.der" "key.pem" + "fullchain.der" "fullchain.pem" "key.der" "key.pem" "account_key.json" ]); - default = [ "fullchain.pem" "key.pem" ]; - description = "Plugins to enable."; + default = [ "fullchain.pem" "key.pem" "account_key.json" ]; + description = '' + Plugins to enable. With default settings simp_le will + store public certificate bundle in fullchain.pem + and private key in key.pem in its state directory. + ''; }; extraDomains = mkOption { - default = [ ]; - type = types.listOf types.str; - description = "More domains to include in the certificate."; - example = [ "example.com" "foo.example.com:/var/www/foo" ]; + type = types.attrsOf (types.nullOr types.str); + default = {}; + example = { + "example.org" = "/srv/http/nginx"; + "mydomain.org" = null; + }; + description = '' + Extra domain names for which certificates are to be issued, with their + own server roots if needed. + ''; }; }; }; @@ -62,7 +100,7 @@ in default = "/etc/ssl"; type = types.str; description = '' - Directory where certs will be stored by default. + Directory where certs and other state will be stored by default. ''; }; @@ -74,10 +112,10 @@ in ''; options = [ certOpts ]; example = { - "foo.example.com" = { + "example.com" = { webroot = "/var/www/challenges/"; email = "foo@example.com"; - extraDomains = [ "www.example.com" "example.com" ]; + extraDomains = { "www.example.com" = null; "foo.example.com" = "/var/www/foo/"; }; }; "bar.example.com" = { webroot = "/var/www/challenges/"; @@ -91,27 +129,42 @@ in ###### implementation config = mkIf (cfg.certs != { }) { - systemd.services = flip mapAttrs' cfg.certs (cert: data: nameValuePair + systemd.services = flip mapAttrs' cfg.certs (cert: data: + let + cpath = "${cfg.directory}/${cert}"; + cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" data.validMin ] + ++ optionals (data.email != null) [ "--email" data.email ] + ++ concatMap (p: [ "-f" p ]) data.plugins + ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); + + in nameValuePair ("simp_le-${cert}") ({ description = "simp_le cert renewal for ${cert}"; after = [ "network.target" ]; serviceConfig = { Type = "oneshot"; - SuccessExitStatus = "0 1"; + SuccessExitStatus = [ "0" "1" ]; }; + path = [ pkgs.simp_le pkgs.sudo ]; preStart = '' - mkdir -p "${cfg.directory}/${cert}" + mkdir -p '${cfg.directory}' + if [ ! -d '${cpath}' ]; then + mkdir -m 700 '${cpath}' + chown '${data.user}:${data.group}' '${cpath}' + fi ''; script = '' - WEBROOT="${optionalString (data.webroot == null) data.webroot}" - cd "${cfg.directory}/${cert}" - ${pkgs.simp_le}/bin/simp_le -v \ - ${concatMapStringsSep " " (p: "-f ${p}") data.plugins} \ - -d ${cert} --default_root "$WEBROOT" \ - ${concatMapStringsSep " " (p: "-d ${p}") data.extraDomains} \ - ${optionalString (data.email != null) "--email ${data.email}"} \ - --valid_min ${toString data.validMin} + cd '${cpath}' + set +e + sudo -u '${data.user}' -- simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} + EXITCODE=$? + set -e + if [ "$EXITCODE" = "0" ]; then + ${data.postRun} + else + exit "$EXITCODE" + fi ''; }) ); From 1641c19d0b367ebe9eca15f269c9f8dbf020c113 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 8 Dec 2015 21:23:09 +0300 Subject: [PATCH 057/707] nixos/simp_le: use /var/lib/simp_le as root dir by default /etc on NixOS is regenerated on boot and there was movement towards making it read-only -- so let's keep dynamic state elsewhere. --- nixos/modules/services/security/simp_le.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/security/simp_le.nix b/nixos/modules/services/security/simp_le.nix index 927359da0d3..31eb89da55c 100644 --- a/nixos/modules/services/security/simp_le.nix +++ b/nixos/modules/services/security/simp_le.nix @@ -97,7 +97,7 @@ in options = { services.simp_le = { directory = mkOption { - default = "/etc/ssl"; + default = "/var/lib/simp_le"; type = types.str; description = '' Directory where certs and other state will be stored by default. From e7362a877dd11493d23dcbbee390343b64c0a491 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 11 Dec 2015 17:30:45 +0100 Subject: [PATCH 058/707] nixos/simp_le: Use systemd for setting user and group This is much cleaner and we don't depend on sudo. --- nixos/modules/services/security/simp_le.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/security/simp_le.nix b/nixos/modules/services/security/simp_le.nix index 31eb89da55c..12d9f970816 100644 --- a/nixos/modules/services/security/simp_le.nix +++ b/nixos/modules/services/security/simp_le.nix @@ -145,8 +145,12 @@ in serviceConfig = { Type = "oneshot"; SuccessExitStatus = [ "0" "1" ]; + PermissionsStartOnly = true; + User = data.user; + Group = data.group; + PrivateTmp = true; }; - path = [ pkgs.simp_le pkgs.sudo ]; + path = [ pkgs.simp_le ]; preStart = '' mkdir -p '${cfg.directory}' if [ ! -d '${cpath}' ]; then @@ -157,13 +161,16 @@ in script = '' cd '${cpath}' set +e - sudo -u '${data.user}' -- simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} + simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} EXITCODE=$? set -e - if [ "$EXITCODE" = "0" ]; then + echo "$EXITCODE" > /tmp/lastExitCode + exit "$EXITCODE" + ''; + postStop = '' + if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then + echo "Executing postRun hook..." ${data.postRun} - else - exit "$EXITCODE" fi ''; }) From de24b00d41d6a80ccae0adecc3557c7c7154aa22 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 11 Dec 2015 17:42:17 +0100 Subject: [PATCH 059/707] nixos/simp_le: Rename to security.acme --- nixos/modules/module-list.nix | 2 +- .../simp_le.nix => security/acme.nix} | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) rename nixos/modules/{services/security/simp_le.nix => security/acme.nix} (92%) diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index c708f095f40..039b562b6f3 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -80,6 +80,7 @@ ./programs/xfs_quota.nix ./programs/zsh/zsh.nix ./rename.nix + ./security/acme.nix ./security/apparmor.nix ./security/apparmor-suid.nix ./security/ca.nix @@ -388,7 +389,6 @@ ./services/security/hologram.nix ./services/security/munge.nix ./services/security/physlock.nix - ./services/security/simp_le.nix ./services/security/torify.nix ./services/security/tor.nix ./services/security/torsocks.nix diff --git a/nixos/modules/services/security/simp_le.nix b/nixos/modules/security/acme.nix similarity index 92% rename from nixos/modules/services/security/simp_le.nix rename to nixos/modules/security/acme.nix index 12d9f970816..72eac82defa 100644 --- a/nixos/modules/services/security/simp_le.nix +++ b/nixos/modules/security/acme.nix @@ -4,7 +4,7 @@ with lib; let - cfg = config.services.simp_le; + cfg = config.security.acme; certOpts = { ... }: { options = { @@ -40,13 +40,13 @@ let user = mkOption { type = types.str; default = "root"; - description = "User under which simp_le would run."; + description = "User running the ACME client."; }; group = mkOption { type = types.str; default = "root"; - description = "Group under which simp_le would run."; + description = "Group running the ACME client."; }; postRun = mkOption { @@ -95,9 +95,9 @@ in ###### interface options = { - services.simp_le = { + security.acme = { directory = mkOption { - default = "/var/lib/simp_le"; + default = "/var/lib/acme"; type = types.str; description = '' Directory where certs and other state will be stored by default. @@ -138,9 +138,9 @@ in ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); in nameValuePair - ("simp_le-${cert}") + ("acme-${cert}") ({ - description = "simp_le cert renewal for ${cert}"; + description = "ACME cert renewal for ${cert} using simp_le"; after = [ "network.target" ]; serviceConfig = { Type = "oneshot"; @@ -177,13 +177,13 @@ in ); systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair - ("simp_le-${cert}") + ("acme-${cert}") ({ - description = "timer for simp_le cert renewal of ${cert}"; + description = "timer for ACME cert renewal of ${cert}"; wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = data.renewInterval; - Unit = "simp_le-${cert}.service"; + Unit = "acme-simp_le-${cert}.service"; }; }) ); From 0517d59a66f613471f478d0497aa5adb5dccfcdc Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 12 Dec 2015 14:19:56 +0100 Subject: [PATCH 060/707] nixos/acme: Improve documentation --- nixos/modules/security/acme.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 72eac82defa..37e4c287623 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -21,14 +21,18 @@ let validMin = mkOption { type = types.int; - default = 2592000; + default = 30 * 24 * 3600; description = "Minimum remaining validity before renewal in seconds."; }; renewInterval = mkOption { type = types.str; default = "weekly"; - description = "Systemd calendar expression when to check for renewal. See systemd.time(7)."; + description = '' + Systemd calendar expression when to check for renewal. See + systemd.time + 5. + ''; }; email = mkOption { From 9374ddb89523f6d77951445c5224b464d9ec198c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 12 Dec 2015 14:21:44 +0100 Subject: [PATCH 061/707] nixos/acme: validMin & renewInterval aren't cert-specific --- nixos/modules/security/acme.nix | 36 ++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 37e4c287623..37de46cb1a5 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -19,22 +19,6 @@ let ''; }; - validMin = mkOption { - type = types.int; - default = 30 * 24 * 3600; - description = "Minimum remaining validity before renewal in seconds."; - }; - - renewInterval = mkOption { - type = types.str; - default = "weekly"; - description = '' - Systemd calendar expression when to check for renewal. See - systemd.time - 5. - ''; - }; - email = mkOption { type = types.nullOr types.str; default = null; @@ -108,6 +92,22 @@ in ''; }; + validMin = mkOption { + type = types.int; + default = 30 * 24 * 3600; + description = "Minimum remaining validity before renewal in seconds."; + }; + + renewInterval = mkOption { + type = types.str; + default = "weekly"; + description = '' + Systemd calendar expression when to check for renewal. See + systemd.time + 5. + ''; + }; + certs = mkOption { default = { }; type = types.loaOf types.optionSet; @@ -136,7 +136,7 @@ in systemd.services = flip mapAttrs' cfg.certs (cert: data: let cpath = "${cfg.directory}/${cert}"; - cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" data.validMin ] + cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] ++ optionals (data.email != null) [ "--email" data.email ] ++ concatMap (p: [ "-f" p ]) data.plugins ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); @@ -186,7 +186,7 @@ in description = "timer for ACME cert renewal of ${cert}"; wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = data.renewInterval; + OnCalendar = cfg.renewInterval; Unit = "acme-simp_le-${cert}.service"; }; }) From 1685b9d06ebe93eaaed478bde02db813fc39e4b2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 12 Dec 2015 16:06:24 +0100 Subject: [PATCH 062/707] nixos/acme: Add module documentation --- .../manual/configuration/configuration.xml | 1 + nixos/doc/manual/default.nix | 1 + nixos/modules/security/acme.nix | 121 +++++++++--------- nixos/modules/security/acme.xml | 69 ++++++++++ 4 files changed, 134 insertions(+), 58 deletions(-) create mode 100644 nixos/modules/security/acme.xml diff --git a/nixos/doc/manual/configuration/configuration.xml b/nixos/doc/manual/configuration/configuration.xml index afffd60bc48..1e488b59343 100644 --- a/nixos/doc/manual/configuration/configuration.xml +++ b/nixos/doc/manual/configuration/configuration.xml @@ -26,6 +26,7 @@ effect after you run nixos-rebuild. + diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 844cba57cd8..bd558dac971 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -55,6 +55,7 @@ let cp -prd $sources/* . # */ chmod -R u+w . cp ${../../modules/services/databases/postgresql.xml} configuration/postgresql.xml + cp ${../../modules/security/acme.xml} configuration/acme.xml cp ${../../modules/misc/nixos.xml} configuration/nixos.xml ln -s ${optionsDocBook} options-db.xml echo "${version}" > version diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 37de46cb1a5..8f3a2ee073b 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -131,67 +131,72 @@ in }; ###### implementation - config = mkIf (cfg.certs != { }) { + config = mkMerge [ + (mkIf (cfg.certs != { }) { - systemd.services = flip mapAttrs' cfg.certs (cert: data: - let - cpath = "${cfg.directory}/${cert}"; - cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] - ++ optionals (data.email != null) [ "--email" data.email ] - ++ concatMap (p: [ "-f" p ]) data.plugins - ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); + systemd.services = flip mapAttrs' cfg.certs (cert: data: + let + cpath = "${cfg.directory}/${cert}"; + cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] + ++ optionals (data.email != null) [ "--email" data.email ] + ++ concatMap (p: [ "-f" p ]) data.plugins + ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); - in nameValuePair - ("acme-${cert}") - ({ - description = "ACME cert renewal for ${cert} using simp_le"; - after = [ "network.target" ]; - serviceConfig = { - Type = "oneshot"; - SuccessExitStatus = [ "0" "1" ]; - PermissionsStartOnly = true; - User = data.user; - Group = data.group; - PrivateTmp = true; - }; - path = [ pkgs.simp_le ]; - preStart = '' - mkdir -p '${cfg.directory}' - if [ ! -d '${cpath}' ]; then - mkdir -m 700 '${cpath}' - chown '${data.user}:${data.group}' '${cpath}' - fi - ''; - script = '' - cd '${cpath}' - set +e - simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} - EXITCODE=$? - set -e - echo "$EXITCODE" > /tmp/lastExitCode - exit "$EXITCODE" - ''; - postStop = '' - if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then - echo "Executing postRun hook..." - ${data.postRun} - fi - ''; - }) - ); + in nameValuePair + ("acme-${cert}") + ({ + description = "ACME cert renewal for ${cert} using simp_le"; + after = [ "network.target" ]; + serviceConfig = { + Type = "oneshot"; + SuccessExitStatus = [ "0" "1" ]; + PermissionsStartOnly = true; + User = data.user; + Group = data.group; + PrivateTmp = true; + }; + path = [ pkgs.simp_le ]; + preStart = '' + mkdir -p '${cfg.directory}' + if [ ! -d '${cpath}' ]; then + mkdir -m 700 '${cpath}' + chown '${data.user}:${data.group}' '${cpath}' + fi + ''; + script = '' + cd '${cpath}' + set +e + simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} + EXITCODE=$? + set -e + echo "$EXITCODE" > /tmp/lastExitCode + exit "$EXITCODE" + ''; + postStop = '' + if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then + echo "Executing postRun hook..." + ${data.postRun} + fi + ''; + }) + ); - systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair - ("acme-${cert}") - ({ - description = "timer for ACME cert renewal of ${cert}"; - wantedBy = [ "timers.target" ]; - timerConfig = { - OnCalendar = cfg.renewInterval; - Unit = "acme-simp_le-${cert}.service"; - }; - }) - ); + systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair + ("acme-${cert}") + ({ + description = "timer for ACME cert renewal of ${cert}"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnCalendar = cfg.renewInterval; + Unit = "acme-simp_le-${cert}.service"; + }; + }) + ); + }) - }; + { meta.maintainers = with lib.maintainers; [ abbradar fpletz globin ]; + meta.doc = ./acme.xml; + } + ]; } diff --git a/nixos/modules/security/acme.xml b/nixos/modules/security/acme.xml new file mode 100644 index 00000000000..e32fa72c939 --- /dev/null +++ b/nixos/modules/security/acme.xml @@ -0,0 +1,69 @@ + + +SSL/TLS Certificates with ACME + +NixOS supports automatic domain validation & certificate +retrieval and renewal using the ACME protocol. This is currently only +implemented by and for Let's Encrypt. The alternative ACME client +simp_le is used under the hood. + +
Prerequisites + +You need to have a running HTTP server for verification. The server must +have a webroot defined that can serve +.well-known/acme-challenge. This directory must be +writeable by the user that will run the ACME client. + +For instance, this generic snippet could be used for Nginx: + + +http { + server { + server_name _; + listen 80; + listen [::]:80; + + location /.well-known/acme-challenge { + root /var/www/challenges; + } + + location / { + return 301 https://$host$request_uri; + } + } +} + + + +
+ +
Configuring + +To enable ACME certificate retrieval & renewal for a certificate for +foo.example.com, add the following in your +configuration.nix: + + +security.acme.certs."foo.example.com" = { + webroot = "/var/www/challenges"; + email = "foo@example.com"; +}; + + + +The private key key.pem and certificate +fullchain.pem will be put into +/var/lib/acme/foo.example.com. The target directory can +be configured with the option security.acme.directory. + + +Refer to for all available configuration +options for the security.acme module. + +
+ +
From 492541c37840978886d357125bf260e5cf3e8246 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 12 Dec 2015 17:01:23 +0100 Subject: [PATCH 063/707] miniupnpd 1.9.20150721 -> 1.9.20151212 Changes: https://github.com/miniupnp/miniupnp/blob/master/miniupnpd/Changelog.txt --- pkgs/tools/networking/miniupnpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index 0d852573eab..91306b4ae6d 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -3,11 +3,11 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "miniupnpd-1.9.20150721"; + name = "miniupnpd-1.9.20151212"; src = fetchurl { url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; - sha256 = "0w2422wfcir333qd300swkdvmksdfdllspplnz8vbv13a1724h4k"; + sha256 = "1ay7dw1y5fqgjrqa9s8av8ndmw7wkjm39xnnzzw8pxbv70d6b12j"; name = "${name}.tar.gz"; }; From 19aa4f0a6b10b980b7705d3aaf1a10156658bcea Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 12 Dec 2015 17:38:45 +0100 Subject: [PATCH 064/707] pixz: init at 1.0.6 --- pkgs/tools/compression/pixz/default.nix | 36 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/compression/pixz/default.nix diff --git a/pkgs/tools/compression/pixz/default.nix b/pkgs/tools/compression/pixz/default.nix new file mode 100644 index 00000000000..8572221572c --- /dev/null +++ b/pkgs/tools/compression/pixz/default.nix @@ -0,0 +1,36 @@ +{ + stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig + , asciidoc, libxslt, libxml2, docbook_xml_dtd_45, docbook_xml_xslt + , libarchive, lzma +}: +stdenv.mkDerivation rec { + baseName = "pixz"; + version = "1.0.6"; + name = "${baseName}-${version}"; + + buildInputs = [ + autoconf automake libtool pkgconfig asciidoc libxslt libxml2 + docbook_xml_dtd_45 docbook_xml_xslt + libarchive lzma + ]; + preBuild = '' + echo "XML_CATALOG_FILES='$XML_CATALOG_FILES'" + ''; + src = fetchFromGitHub { + owner = "vasi"; + repo = baseName; + rev = "v${version}"; + sha256 = "0q61wqg2yxrgd4nc7256mf7izp92is29ll3rax1cxr6fj9jrd8b7"; + }; + preConfigure = '' + ./autogen.sh + ''; + + meta = { + inherit version; + description = ''A parallel compressor/decompressor for xz format''; + license = stdenv.lib.licenses.bsd2; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d98c327f8f..61b4278f0fa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1814,6 +1814,8 @@ let pgf_graphics = callPackage ../tools/graphics/pgf { }; pigz = callPackage ../tools/compression/pigz { }; + + pixz = callPackage ../tools/compression/pixz { }; pxz = callPackage ../tools/compression/pxz { }; From 269ae2e29d1e25b98d6491fc0b5e14d0521c12b2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 10:47:03 -0600 Subject: [PATCH 065/707] gnuplot: use texlive-new --- pkgs/tools/graphics/gnuplot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index f8dd35576ff..8a9df4982a3 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline -, withTeXLive ? false, texLive +, withTeXLive ? false, texlive , withLua ? false, lua , emacs ? null , libX11 ? null @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ] - ++ lib.optional withTeXLive texLive + ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) ++ lib.optional withLua lua ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] ++ lib.optional withQt [ qt ] From f7edf63b23e25305fbe6c77d75a87fba7891beb5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 10:57:38 -0600 Subject: [PATCH 066/707] ipe: use texlive-new --- pkgs/applications/graphics/ipe/default.nix | 17 ++++++++++------- pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/graphics/ipe/default.nix b/pkgs/applications/graphics/ipe/default.nix index 9f1f53abc5c..c1c1861cd3d 100644 --- a/pkgs/applications/graphics/ipe/default.nix +++ b/pkgs/applications/graphics/ipe/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texLive, ghostscriptX +{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texlive, ghostscript , libjpeg, qtbase -, makeWrapper }: -let ghostscript = ghostscriptX; in +, makeQtWrapper +}: + stdenv.mkDerivation rec { name = "ipe-7.1.10"; @@ -21,16 +22,18 @@ stdenv.mkDerivation rec { ''; IPEPREFIX="$$out"; - URWFONTDIR="${texLive}/texmf-dist/fonts/type1/urw/"; + URWFONTDIR="${texlive}/texmf-dist/fonts/type1/urw/"; LUA_PACKAGE = "lua"; buildInputs = [ - libjpeg pkgconfig zlib qtbase freetype cairo lua5 texLive ghostscript makeWrapper + libjpeg pkgconfig zlib qtbase freetype cairo lua5 texlive ghostscript ]; - postInstall = '' + nativeBuildInputs = [ makeQtWrapper ]; + + postFixup = '' for prog in $out/bin/*; do - wrapProgram "$prog" --prefix PATH : "${texLive}/bin" + wrapQtProgram "$prog" --prefix PATH : "${texlive}/bin" done ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 922ef1d676f..6c021b858e2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12165,7 +12165,10 @@ let lua = lua5; }; - ipe = qt5Libs.callPackage ../applications/graphics/ipe { }; + ipe = qt5Libs.callPackage ../applications/graphics/ipe { + ghostscript = ghostscriptX; + texlive = texlive.combine { inherit (texlive) scheme-small; }; + }; iptraf = callPackage ../applications/networking/iptraf { }; From b07fa98f82ac44801dc34b6b143048ee28f7e1a3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 11:31:26 -0600 Subject: [PATCH 067/707] nixos/sddm: add setupScript and stopScript options These options allow setting the start and stop scripts for the display manager. Making these configurable is necessary to allow some hardware configurations. Upstream ships empty scripts by default, anyway. --- .../services/x11/display-managers/sddm.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index d156f692f26..50e6a85b4f2 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -17,6 +17,16 @@ let exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} "$@" ''; + Xsetup = pkgs.writeScript "Xsetup" '' + #!/bin/sh + ${cfg.setupScript} + ''; + + Xstop = pkgs.writeScript "Xstop" '' + #!/bin/sh + ${cfg.stopScript} + ''; + cfgFile = pkgs.writeText "sddm.conf" '' [General] HaltCommand=${pkgs.systemd}/bin/systemctl poweroff @@ -39,6 +49,8 @@ let SessionCommand=${dmcfg.session.script} SessionDir=${dmcfg.session.desktops} XauthPath=${pkgs.xorg.xauth}/bin/xauth + DisplayCommand=${Xsetup} + DisplayStopCommand=${Xstop} ${optionalString cfg.autoLogin.enable '' [Autologin] @@ -98,6 +110,27 @@ in ''; }; + setupScript = mkOption { + type = types.str; + default = ""; + example = '' + # workaround for using NVIDIA Optimus without Bumblebee + xrandr --setprovideroutputsource modesetting NVIDIA-0 + xrandr --auto + ''; + description = '' + A script to execute when starting the display server. + ''; + }; + + stopScript = mkOption { + type = types.str; + default = ""; + description = '' + A script to execute when stopping the display server. + ''; + }; + autoLogin = mkOption { default = {}; description = '' From 73a9826001873ae5dc861fc086d6265cadf9e3e4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 11:32:20 -0600 Subject: [PATCH 068/707] sddm: don't install empty scripts --- pkgs/applications/display-managers/sddm/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index d2faf465106..b7bf5ee5664 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -45,6 +45,11 @@ let enableParallelBuilding = true; + postInstall = '' + # remove empty scripts + rm "$out/share/sddm/scripts/Xsetup" "$out/share/sddm/scripts/Xstop" + ''; + meta = with stdenv.lib; { description = "QML based X11 display manager"; homepage = https://github.com/sddm/sddm; From fac138a2f5a784694b652f7f1f8767e7882d542c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 11:33:39 -0600 Subject: [PATCH 069/707] nixos/sddm: fix indentation --- .../modules/services/x11/display-managers/sddm.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index 50e6a85b4f2..bcac83aa738 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -138,7 +138,7 @@ in ''; type = types.submodule { - options = { + options = { enable = mkOption { type = types.bool; default = false; @@ -163,7 +163,7 @@ in will work only the first time. ''; }; - }; + }; }; }; @@ -175,14 +175,16 @@ in assertions = [ { assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null; - message = "SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set"; + message = '' + SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set + ''; } { assertion = cfg.autoLogin.enable -> elem defaultSessionName dmcfg.session.names; message = '' SDDM auto-login requires that services.xserver.desktopManager.default and - services.xserver.windowMananger.default are set to valid values. The current - default session: ${defaultSessionName} is not valid. - ''; + services.xserver.windowMananger.default are set to valid values. The current + default session: ${defaultSessionName} is not valid. + ''; } ]; From 8da384edad4e6434b5aff34a88de149ff2928c38 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 12 Dec 2015 19:36:08 +0100 Subject: [PATCH 070/707] virt-manager: 1.2.1 -> 1.3.1 --- pkgs/applications/virtualization/virt-manager/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 0d54489a189..d22072f1095 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -9,12 +9,12 @@ with pythonPackages; buildPythonPackage rec { name = "virt-manager-${version}"; - version = "1.2.1"; + version = "1.3.1"; namePrefix = ""; src = fetchurl { url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz"; - sha256 = "1gp6ijrwl6kjs54l395002pc9sblp08p4nqx9zcb9qg5f87aifvl"; + sha256 = "0lqd9ix7k4jswqzxarnvxfbq6rvpcm8rrc1if86nw67ms1dh2i36"; }; propagatedBuildInputs = From 6734127545570274acefbabd5c6259822f231a24 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 27 Nov 2015 02:44:56 +0100 Subject: [PATCH 071/707] shairport-sync service: add module Adds a new service module for shairport-sync. Tested with a local and remote pulseaudio server. Needs to be run as a user in the pulse group to access pulseaudio. --- nixos/modules/module-list.nix | 1 + .../services/networking/shairport-sync.nix | 80 +++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 nixos/modules/services/networking/shairport-sync.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 963daf721ad..9b25f998400 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -343,6 +343,7 @@ ./services/networking/searx.nix ./services/networking/seeks.nix ./services/networking/skydns.nix + ./services/networking/shairport-sync.nix ./services/networking/shout.nix ./services/networking/softether.nix ./services/networking/spiped.nix diff --git a/nixos/modules/services/networking/shairport-sync.nix b/nixos/modules/services/networking/shairport-sync.nix new file mode 100644 index 00000000000..a523e66d09b --- /dev/null +++ b/nixos/modules/services/networking/shairport-sync.nix @@ -0,0 +1,80 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.shairport-sync; + +in + +{ + + ###### interface + + options = { + + services.shairport-sync = { + + enable = mkOption { + default = false; + description = '' + Enable the shairport-sync daemon. + + Running with a local system-wide or remote pulseaudio server + is recommended. + ''; + }; + + arguments = mkOption { + default = "-v -o pulse"; + description = '' + Arguments to pass to the daemon. Defaults to a local pulseaudio + server. + ''; + }; + + user = mkOption { + default = "shairport"; + description = '' + User account name under which to run shairport-sync. The account + will be created. + ''; + }; + + }; + + }; + + + ###### implementation + + config = mkIf config.services.shairport-sync.enable { + + services.avahi.enable = true; + + users.extraUsers = singleton + { name = cfg.user; + description = "Shairport user"; + isSystemUser = true; + createHome = true; + home = "/var/lib/shairport-sync"; + extraGroups = [ "audio" ] ++ optional config.hardware.pulseaudio.enable "pulse"; + }; + + systemd.services.shairport-sync = + { + description = "shairport-sync"; + after = [ "network.target" "avahi-daemon.service" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + User = cfg.user; + ExecStart = "${pkgs.shairport-sync}/bin/shairport-sync ${cfg.arguments}"; + }; + }; + + environment.systemPackages = [ pkgs.shairport-sync ]; + + }; + +} From b6776d41dd45c9bc1be80c4a5d99b16ce2fde77d Mon Sep 17 00:00:00 2001 From: Asko Soukka Date: Sat, 12 Dec 2015 21:32:59 +0200 Subject: [PATCH 072/707] zc.buildout-nix: 2.4.3 -> 2.5.0 --- pkgs/development/python-modules/buildout-nix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/buildout-nix/default.nix b/pkgs/development/python-modules/buildout-nix/default.nix index 001aebc1029..d12702d98ca 100644 --- a/pkgs/development/python-modules/buildout-nix/default.nix +++ b/pkgs/development/python-modules/buildout-nix/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, buildPythonPackage }: buildPythonPackage { - name = "zc.buildout-nix-2.4.3"; + name = "zc.buildout-nix-2.5.0"; src = fetchurl { - url = "https://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-2.4.3.tar.gz"; - sha256 = "db877d791e058a6207ac716e1017296e6862e4f1b5388dd145702eb19d902580"; + url = "https://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-2.5.0.tar.gz"; + sha256 = "721bd2231a9f01f2d5c14f3adccb3385f85b093ee05b18d15d0ff2b9f1f1bd02"; }; patches = [ ./nix.patch ]; From 8f1c4b4dde202b14005249db1880cccd7f4cf128 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Dec 2015 21:04:16 +0100 Subject: [PATCH 073/707] python tqdm: init at 3.1.4 --- pkgs/top-level/python-packages.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fab1d41bcc7..29d6773c015 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18722,6 +18722,31 @@ in modules // { }; }; + tqdm = buildPythonPackage rec { + name = "tqdm-${version}"; + version = "3.1.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/tqdm/${name}.tar.gz"; + sha256 = "e2dbef0df0fd24c9ae3b2e07bef2a3607ad8431142e76d3294a5a11926d214bf"; + }; + + buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; + propagatedBuildInputs = with self; [ matplotlib pandas ]; + + preBuild = '' + export LC_ALL="en_US.UTF-8" + ''; + + doCheck = !(isPy27); # Performance test fails + + meta = { + description = "A Fast, Extensible Progress Meter"; + homepage = https://github.com/tqdm/tqdm; + license = with licenses; [ mit ]; + }; + }; + smmap = buildPythonPackage rec { name = "smmap-0.9.0"; disabled = isPyPy; # This fails the tests if built with pypy From 9f71bba8a482bfd6347f50423f04bae908c78d16 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Sat, 12 Dec 2015 12:24:21 -0800 Subject: [PATCH 074/707] libb64: init at 1.2 --- pkgs/development/libraries/libb64/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/libb64/default.nix diff --git a/pkgs/development/libraries/libb64/default.nix b/pkgs/development/libraries/libb64/default.nix new file mode 100644 index 00000000000..793c4992c3f --- /dev/null +++ b/pkgs/development/libraries/libb64/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "libb64-${version}"; + version = "1.2"; + + src = fetchurl { + url = "http://download.draios.com/dependencies/libb64-1.2.src.zip"; + md5 = "a609809408327117e2c643bed91b76c5"; + }; + + buildInputs = [ unzip ]; + + installPhase = '' + mkdir -p $out $out/lib $out/bin $out/include + cp -r include/* $out/include/ + cp base64/base64 $out/bin/ + cp src/libb64.a src/cencode.o src/cdecode.o $out/lib/ + ''; + + meta = { + inherit version; + description = "ANSI C routines for fast base64 encoding/decoding"; + license = stdenv.lib.licenses.publicDomain; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3acd586706c..c728843286b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6837,6 +6837,8 @@ let libjson = callPackage ../development/libraries/libjson { }; + libb64 = callPackage ../development/libraries/libb64 { }; + judy = callPackage ../development/libraries/judy { }; keybinder = callPackage ../development/libraries/keybinder { @@ -8329,7 +8331,7 @@ let rubberband = callPackage ../development/libraries/rubberband { inherit (vamp) vampSDK; }; - + sad = callPackage ../applications/science/logic/sad { }; sbc = callPackage ../development/libraries/sbc { }; From 229f0ac257f430d92c7bbf46b4b3d139fbc039ee Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Sat, 12 Dec 2015 12:25:17 -0800 Subject: [PATCH 075/707] sysdig: 0.1.102 -> 0.5.1 --- pkgs/os-specific/linux/sysdig/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix index e2758e7c2b6..5c15ba1a9ce 100644 --- a/pkgs/os-specific/linux/sysdig/default.nix +++ b/pkgs/os-specific/linux/sysdig/default.nix @@ -1,15 +1,15 @@ -{stdenv, fetchurl, cmake, luajit, kernel, zlib, ncurses}: +{stdenv, fetchurl, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl}: let inherit (stdenv.lib) optional optionalString; s = rec { baseName="sysdig"; - version = "0.1.102"; + version = "0.5.1"; name="${baseName}-${version}"; url="https://github.com/draios/sysdig/archive/${version}.tar.gz"; - sha256 = "0mrz14wvcb8m8idr4iqbr3jmxfs7dlmh06n0q9fcfph75wkc5fp0"; + sha256 = "08wnk0593ljdq466hk0npsjc0gbm37nsjm1x2ilsf58n1xl8dmfs"; }; buildInputs = [ - cmake zlib luajit ncurses + cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl ]; in stdenv.mkDerivation { @@ -20,9 +20,7 @@ stdenv.mkDerivation { }; cmakeFlags = [ - "-DUSE_BUNDLED_LUAJIT=OFF" - "-DUSE_BUNDLED_ZLIB=OFF" - "-DUSE_BUNDLED_NCURSES=OFF" + "-DUSE_BUNDLED_DEPS=OFF" ] ++ optional (kernel == null) "-DBUILD_DRIVER=OFF"; preConfigure = '' export INSTALL_MOD_PATH="$out" From 7e86e9a048d2b5ee2eb054b52154cd2d48e0e43e Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sat, 12 Dec 2015 20:32:38 +0000 Subject: [PATCH 076/707] zfs:Always import from /dev/disk/by-id --- nixos/modules/tasks/filesystems/zfs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 675bd3d232a..dedd3f5ca45 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -214,7 +214,7 @@ in done ''] ++ (map (pool: '' echo "importing root ZFS pool \"${pool}\"..." - zpool import -N $ZFS_FORCE "${pool}" + zpool import -d /dev/disk/by-id -N $ZFS_FORCE "${pool}" '') rootPools)); }; @@ -255,7 +255,7 @@ in }; script = '' zpool_cmd="${zfsUserPkg}/sbin/zpool" - ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}" + ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -d /dev/disk/by-id -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}" ''; }; in listToAttrs (map createImportService dataPools) // { From d6e3a8e921040dedba39adb4ba047465284d6d7b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 14:32:47 -0600 Subject: [PATCH 077/707] nixos/kde5: enable SVG icons in GTK programs Fixes #10758. --- nixos/modules/services/x11/desktop-managers/kde5.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 0f3cb5735e7..06fc622325f 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -166,6 +166,11 @@ in GST_PLUGIN_SYSTEM_PATH_1_0 = [ "/lib/gstreamer-1.0" ]; }; + # Enable GTK applications to load SVG icons + environment.variables = mkIf (lib.hasAttr "breeze-icons" kf5) { + GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; + }; + fonts.fonts = [ (plasma5.oxygen-fonts or pkgs.noto-fonts) ]; programs.ssh.askPassword = "${plasma5.ksshaskpass}/bin/ksshaskpass"; From bce4e95a80f9d67ad732cb0fd2b337c1576ff27b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 17:21:48 -0600 Subject: [PATCH 078/707] kdeApps_15_12: 15.11.80 -> 15.11.90 --- pkgs/applications/kde-apps-15.12/fetchsrcs.sh | 2 +- pkgs/applications/kde-apps-15.12/srcs.nix | 1920 ++++++++--------- 2 files changed, 961 insertions(+), 961 deletions(-) diff --git a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh index a5d568a2b6f..334d94a5e47 100755 --- a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh +++ b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/unstable/applications/15.11.80/ -A *.tar.xz' +WGET_ARGS='http://download.kde.org/unstable/applications/15.11.90/ -A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/applications/kde-apps-15.12/srcs.nix b/pkgs/applications/kde-apps-15.12/srcs.nix index ffd12f9e242..d6eaf208b4b 100644 --- a/pkgs/applications/kde-apps-15.12/srcs.nix +++ b/pkgs/applications/kde-apps-15.12/srcs.nix @@ -3,1923 +3,1923 @@ { akonadi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-15.11.80.tar.xz"; - sha256 = "02a4j9ydxqvjv5kpp8nlw7j0jil0ryqrv39ibypcfm73hx09xxkn"; - name = "akonadi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/akonadi-15.11.90.tar.xz"; + sha256 = "09frr1chl0lh135lh43i8fnjjw4d06npafwnvzbd0rv0gzvl89sv"; + name = "akonadi-15.11.90.tar.xz"; }; }; akonadi-calendar = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-calendar-15.11.80.tar.xz"; - sha256 = "1cdyv10gfc5ygiz726vxzr17s6bk28bla7z8vidn9nkh922wn3k4"; - name = "akonadi-calendar-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/akonadi-calendar-15.11.90.tar.xz"; + sha256 = "0wh6f9pxl23jqgjsx0gglk4vfqy9qi9572jggqwl80j0jbzr8686"; + name = "akonadi-calendar-15.11.90.tar.xz"; }; }; akonadi-search = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-search-15.11.80.tar.xz"; - sha256 = "0749i1hqwyn4l12039vq2ckm72p9ajcmr9mljsn9vcil9cvd8g82"; - name = "akonadi-search-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/akonadi-search-15.11.90.tar.xz"; + sha256 = "16l9v2g2ll5dsg2skhdgprdmk57696py6llm4i1r4hj7v2xz9k9g"; + name = "akonadi-search-15.11.90.tar.xz"; }; }; analitza = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/analitza-15.11.80.tar.xz"; - sha256 = "1x8l71acmg2fswwlc4pci6681nz7r1qsvbcfdw3alq76l28zmrhp"; - name = "analitza-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/analitza-15.11.90.tar.xz"; + sha256 = "101kbgw8rg5ic8033pch5z4fcirb1vzyqxa4rwflh9w3i5bkgy2c"; + name = "analitza-15.11.90.tar.xz"; }; }; ark = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ark-15.11.80.tar.xz"; - sha256 = "1sj6mkzxy4gw19yclps5jn54780is5vpr526bvmbsa2vgj8njxcw"; - name = "ark-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ark-15.11.90.tar.xz"; + sha256 = "1mccm69rqzcl9zw632fgkyb248r9c9d915yyl2lv28f873m2awai"; + name = "ark-15.11.90.tar.xz"; }; }; artikulate = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/artikulate-15.11.80.tar.xz"; - sha256 = "0qxykga1kyc6viyqdsqngfvnrf0wk81h54ybrlq3bgkirnfmng07"; - name = "artikulate-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/artikulate-15.11.90.tar.xz"; + sha256 = "16c6a7cm22nqnjjs1py6h031nkca7axnq1ipv14fwdwanz5mra6r"; + name = "artikulate-15.11.90.tar.xz"; }; }; audiocd-kio = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/audiocd-kio-15.11.80.tar.xz"; - sha256 = "0l4x2gm1f6qwzvdq57h0z1zw1qkg7dah5zb2gpjz6apggw4iah00"; - name = "audiocd-kio-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/audiocd-kio-15.11.90.tar.xz"; + sha256 = "0vkb03hc4p3h60w138xi44jsw35hji27lkm9isi544375kcimd6b"; + name = "audiocd-kio-15.11.90.tar.xz"; }; }; baloo-widgets = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/baloo-widgets-15.11.80.tar.xz"; - sha256 = "11wf2gf64dd8xxyk32kviyxki8f0ddg86nzw5g19l9drspils6jh"; - name = "baloo-widgets-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/baloo-widgets-15.11.90.tar.xz"; + sha256 = "168ld1376fh4q2g3fg1mc22j3bnsw5pc644lffcl1rsfkk6gnigi"; + name = "baloo-widgets-15.11.90.tar.xz"; }; }; blinken = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/blinken-15.11.80.tar.xz"; - sha256 = "1lib5mq4xy8xphxfa3ljcdzqp1kd08f1zc7ch6sfb124dv9yzpln"; - name = "blinken-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/blinken-15.11.90.tar.xz"; + sha256 = "1y26azmasnx9430iflwmafzyjn9z1q1fqrd2hyy42chkgfgzzf08"; + name = "blinken-15.11.90.tar.xz"; }; }; bomber = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/bomber-15.11.80.tar.xz"; - sha256 = "1rldcx532llxy22y6r1lvz6y8zh66mby5in59snzp5gv1bj6aq89"; - name = "bomber-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/bomber-15.11.90.tar.xz"; + sha256 = "13h65alwrnq7g7d1fhh49rixlkpyffbgxzkxdf789lc1kfpjg456"; + name = "bomber-15.11.90.tar.xz"; }; }; bovo = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/bovo-15.11.80.tar.xz"; - sha256 = "1ypna943rq6sidx2zc23r8mm61jfhsc28bdi74v1qg4ishpsjls9"; - name = "bovo-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/bovo-15.11.90.tar.xz"; + sha256 = "1yrlrdakn98vlgcrv71n5gqm9w0h7hxsdn1zz44292kklky0960f"; + name = "bovo-15.11.90.tar.xz"; }; }; cantor = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/cantor-15.11.80.tar.xz"; - sha256 = "0pfksygz9ng1c4vf3wfnw6w9dfr133hn7xnfdd2vymqh6bws8b34"; - name = "cantor-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/cantor-15.11.90.tar.xz"; + sha256 = "17dg35303mfz91mhgzysxifddwrlc69p9k0mhzasq64i5vmhz8pk"; + name = "cantor-15.11.90.tar.xz"; }; }; cervisia = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/cervisia-15.11.80.tar.xz"; - sha256 = "0hrbxd3db71kcnvjv64184c3cqankzdnfyfjj4ar1sznvvl29836"; - name = "cervisia-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/cervisia-15.11.90.tar.xz"; + sha256 = "0ksxahl6lv3lqqdvkir9b1lkqg3j3y0yfr08ac0ib5v61cb6lfgp"; + name = "cervisia-15.11.90.tar.xz"; }; }; dolphin = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dolphin-15.11.80.tar.xz"; - sha256 = "1c7i3akafqhrrv6aq992fl9a9ki2mgs6y9cd6ha320x6npl1f1rj"; - name = "dolphin-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/dolphin-15.11.90.tar.xz"; + sha256 = "1w05cb1kc29f48p5spwwxx6fksd3mn6mc43n7hp8r0abkybibpgk"; + name = "dolphin-15.11.90.tar.xz"; }; }; dolphin-plugins = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dolphin-plugins-15.11.80.tar.xz"; - sha256 = "0vn02bjwch54cg1rfrad12g773r3slhdnl9kpfy1kgjra5p2vdm9"; - name = "dolphin-plugins-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/dolphin-plugins-15.11.90.tar.xz"; + sha256 = "0940mhj9v0g8b0rbkp70x6vrxk1pdhj67hv73dab63m3i2yfn4hh"; + name = "dolphin-plugins-15.11.90.tar.xz"; }; }; dragon = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dragon-15.11.80.tar.xz"; - sha256 = "1vv8kxrz2444n8ffi4vq99vi7a64ywbhmy4dx6k055hzpcmh5005"; - name = "dragon-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/dragon-15.11.90.tar.xz"; + sha256 = "1znj06dkcgqs66z9magc2i5shrv9zvsw6lrvva3sh0pvv7mw3v76"; + name = "dragon-15.11.90.tar.xz"; }; }; ffmpegthumbs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ffmpegthumbs-15.11.80.tar.xz"; - sha256 = "0zcaz96rd178w22cqmlay3iq2gb3j6snyy2fd0x4xnzmhmwnvxm6"; - name = "ffmpegthumbs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ffmpegthumbs-15.11.90.tar.xz"; + sha256 = "1q2iqk6pkv8whk82q8rvpd5dknjki0dnmg72q147pgrvi5aajrvi"; + name = "ffmpegthumbs-15.11.90.tar.xz"; }; }; filelight = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/filelight-15.11.80.tar.xz"; - sha256 = "0i2iwrq83j2jv4kw3nakiprxdk8i9zk700pvcm9p89ls2h91gv0k"; - name = "filelight-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/filelight-15.11.90.tar.xz"; + sha256 = "0xkrd92a26rd5s471s451dwr71rw9dyzp305h2lmg9ay6bhhjf9g"; + name = "filelight-15.11.90.tar.xz"; }; }; gpgmepp = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/gpgmepp-15.11.80.tar.xz"; - sha256 = "14igg9kpkv1762q9jjzdc3289swj5l2a21q9xj3smabf7b3mzm3d"; - name = "gpgmepp-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/gpgmepp-15.11.90.tar.xz"; + sha256 = "1ygxa6miynlvc4ig08dqnrmwrv0jwl18yxa3v6i20xy1qjnpbw9w"; + name = "gpgmepp-15.11.90.tar.xz"; }; }; granatier = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/granatier-15.11.80.tar.xz"; - sha256 = "11rsgjl9fkdhwwmszj3sx97mmrks77qhj9zfwb4rgd67q6q8vrzm"; - name = "granatier-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/granatier-15.11.90.tar.xz"; + sha256 = "1vxf9qw8y1gxjs5lpjk4439qxglgdb8wx3hlygx6a71p2vg0qgdx"; + name = "granatier-15.11.90.tar.xz"; }; }; gwenview = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/gwenview-15.11.80.tar.xz"; - sha256 = "1w67bgbsfykg0lsh7vapimgp3wmlygdq9pcwdrbdscymwhhpirj3"; - name = "gwenview-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/gwenview-15.11.90.tar.xz"; + sha256 = "0n29iz2pdi848fwsz0xllylwh7mcdjrq8xwn51ysjrwf7vxc004y"; + name = "gwenview-15.11.90.tar.xz"; }; }; jovie = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/jovie-15.11.80.tar.xz"; - sha256 = "1mlwm31dbph2dzsjg64rbjq7nr3i6fnh5h45xlmbq6fi1906h9kw"; - name = "jovie-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/jovie-15.11.90.tar.xz"; + sha256 = "1zvx54vch6xdsig9s2nkdxs129fvcv2lbbvy18l68q1i9wn4ksnq"; + name = "jovie-15.11.90.tar.xz"; }; }; juk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/juk-15.11.80.tar.xz"; - sha256 = "0lc0x5pscqnzi5mhwsdd0qrqi8b8nwsqbqplfrbk4zlg5dvql7nl"; - name = "juk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/juk-15.11.90.tar.xz"; + sha256 = "1q9pzj9j5qhi70vbkcqylfpqxiclx3j0x71axn1v5svc8wrr1hv1"; + name = "juk-15.11.90.tar.xz"; }; }; kaccessible = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccessible-15.11.80.tar.xz"; - sha256 = "0vg684xnr46iipil058vwwa75rigq3hdq2isfzhi5qxxm9n1n6ri"; - name = "kaccessible-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kaccessible-15.11.90.tar.xz"; + sha256 = "03mpqp83m8m3f4kyr55v26k64sfx8nfsn4l0wcmmi166m8kdl4c2"; + name = "kaccessible-15.11.90.tar.xz"; }; }; kaccounts-integration = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccounts-integration-15.11.80.tar.xz"; - sha256 = "0sbihlzd837q1p52vjc5ym7c5vsms00rl7l5wa72pd8q9haqabz8"; - name = "kaccounts-integration-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kaccounts-integration-15.11.90.tar.xz"; + sha256 = "192ic4f9cm3w658cbmw967jx0d0w9x8jh3j1gg18lg7yfla3hmfm"; + name = "kaccounts-integration-15.11.90.tar.xz"; }; }; kaccounts-providers = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccounts-providers-15.11.80.tar.xz"; - sha256 = "12127sk2ki8hxrwap7mazz6ksqn5wf6wh6h3qb5sw1k8ngmqaxqd"; - name = "kaccounts-providers-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kaccounts-providers-15.11.90.tar.xz"; + sha256 = "1sc2krffspxn3lvx7jjwdqc46j628nk5x47sjwp8wpkwmawjnpy9"; + name = "kaccounts-providers-15.11.90.tar.xz"; }; }; kajongg = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kajongg-15.11.80.tar.xz"; - sha256 = "017x84r78kf25hv9xl7ac9hsrkzxdxdzgdxhq74mgw3lsnp9vrvp"; - name = "kajongg-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kajongg-15.11.90.tar.xz"; + sha256 = "1xyy3jfixbmbkzhb5lqhjd8yk4wlcc601ay5v6j24rngr3hnjmv9"; + name = "kajongg-15.11.90.tar.xz"; }; }; kalarmcal = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalarmcal-15.11.80.tar.xz"; - sha256 = "1h11r2j2iw2cpd2javzpsnspjzy6h5bypj29j426m77b00d8jyaw"; - name = "kalarmcal-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kalarmcal-15.11.90.tar.xz"; + sha256 = "0dssjcdgrzxpadl5nh1v2fz4ncjf73yngjz92w4j1i6cpfkw5lrj"; + name = "kalarmcal-15.11.90.tar.xz"; }; }; kalgebra = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalgebra-15.11.80.tar.xz"; - sha256 = "160m1jvfx03dafvzz37jap023p9ap0b2f59r9ayaf1y7ldagdip5"; - name = "kalgebra-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kalgebra-15.11.90.tar.xz"; + sha256 = "1lpi4kj6vdvlh2lkxsckfz6qx868v4li8zhvqs060qxmy2w0zw58"; + name = "kalgebra-15.11.90.tar.xz"; }; }; kalzium = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalzium-15.11.80.tar.xz"; - sha256 = "0hw9a18h3ldvilz6aawnph62mc6v9yggapkyf478d9m7faqdpmll"; - name = "kalzium-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kalzium-15.11.90.tar.xz"; + sha256 = "13grbk9y1nqh4ir9764fac3hx8gxn9bya2nxqn296x7z1wibgr4m"; + name = "kalzium-15.11.90.tar.xz"; }; }; kamera = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kamera-15.11.80.tar.xz"; - sha256 = "0zhi6aimih3szdph4vn0s7a48bn97glp0kxdy6mfkcmx4hgv59v8"; - name = "kamera-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kamera-15.11.90.tar.xz"; + sha256 = "1nmsqrglaxgp7bg21x45lyplpz5bc7pqh3afkqd3p5mnmzpa38qi"; + name = "kamera-15.11.90.tar.xz"; }; }; kanagram = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kanagram-15.11.80.tar.xz"; - sha256 = "1hhpzk4yf9pxmdkydwazdvzm3iayh07wwp1p06nhd91zxgjh696y"; - name = "kanagram-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kanagram-15.11.90.tar.xz"; + sha256 = "0lyr873l68jajqhd2bairrv6f2pgfnjsx5j0hgssgl6v32c37727"; + name = "kanagram-15.11.90.tar.xz"; }; }; kapman = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kapman-15.11.80.tar.xz"; - sha256 = "1kdjdngsdm95w8skr21722nmv4h860gaa2zifbzkn387k348n23s"; - name = "kapman-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kapman-15.11.90.tar.xz"; + sha256 = "1hrpsn4f9k8jk1lp2cs8ykbnp3il9d495lsncrwmxycn2grd22dx"; + name = "kapman-15.11.90.tar.xz"; }; }; kapptemplate = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kapptemplate-15.11.80.tar.xz"; - sha256 = "0xs5x6hlsm41axavdr3dbaqhcr5ncjigwxzcvr0d3v58k4w55va5"; - name = "kapptemplate-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kapptemplate-15.11.90.tar.xz"; + sha256 = "1hiz1vas8ja0n4m0jwpbhnn6fxga4shvjrls9nhga359y2adsxid"; + name = "kapptemplate-15.11.90.tar.xz"; }; }; kate = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kate-15.11.80.tar.xz"; - sha256 = "0503hzhys5004d8f72j8q5vifi39shfkdvj3kvs1wy4naipg6906"; - name = "kate-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kate-15.11.90.tar.xz"; + sha256 = "153pl21nin1v2419kj1iwgasgn7abxbi8shmg1dvd7s8p7rh4z77"; + name = "kate-15.11.90.tar.xz"; }; }; katomic = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/katomic-15.11.80.tar.xz"; - sha256 = "0brp5zxaaw9ymyvdbw47c72s9ms6q0prgn327qmnzjpcvi1nagiv"; - name = "katomic-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/katomic-15.11.90.tar.xz"; + sha256 = "0aam62g97aab9prfp64r6wcw41lc4qdsr7wp4ip4z3n4pplwsg4q"; + name = "katomic-15.11.90.tar.xz"; }; }; kblackbox = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblackbox-15.11.80.tar.xz"; - sha256 = "06qpbivv7jmj900pizs35kivsyz34z6smw3vjmczh5cg6wccjwwc"; - name = "kblackbox-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kblackbox-15.11.90.tar.xz"; + sha256 = "0kjfjv6955w1k8nbldaplwfjdn7nvyz6s4l1xlx1zjp8vin1gvcv"; + name = "kblackbox-15.11.90.tar.xz"; }; }; kblocks = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblocks-15.11.80.tar.xz"; - sha256 = "0rf60pa73kj5zcyvswpx0pwwrkxif2z8gj75cj1qg20nl15xzcv9"; - name = "kblocks-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kblocks-15.11.90.tar.xz"; + sha256 = "0z7z575z5npihq7rsigrk2043n5r857x9wcj47f86r1vf4nli0vf"; + name = "kblocks-15.11.90.tar.xz"; }; }; kblog = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblog-15.11.80.tar.xz"; - sha256 = "09ywpx0pkl518hshlcbqx5g7kfrivz0j440xkp7slzaw5ydslh9w"; - name = "kblog-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kblog-15.11.90.tar.xz"; + sha256 = "1lk27i7a18k30ayc4xbbzqs2sacib5zx0dq3fi0hm2axn9zi618w"; + name = "kblog-15.11.90.tar.xz"; }; }; kbounce = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbounce-15.11.80.tar.xz"; - sha256 = "1brgv8zc9zw6hkg2315dhnqpk4s2wdv223pxxp7dqcjg28zmr8fs"; - name = "kbounce-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kbounce-15.11.90.tar.xz"; + sha256 = "0nqxwiiym4bq1wgcmnvik0jwxy9866gy3slygxn3bi9mzmplnw15"; + name = "kbounce-15.11.90.tar.xz"; }; }; kbreakout = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbreakout-15.11.80.tar.xz"; - sha256 = "1rr606dgsj75cy665q94cdqz68glc0n8r59ihmwgjkz2xg06cpnc"; - name = "kbreakout-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kbreakout-15.11.90.tar.xz"; + sha256 = "1lfbf65ybah5mqq0lsh2jq8wxnrr011b5pfjd8ph2cfi2140iyjp"; + name = "kbreakout-15.11.90.tar.xz"; }; }; kbruch = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbruch-15.11.80.tar.xz"; - sha256 = "1hqnxj4f005jbhhbhjac5lzpmhbfgmsw4mhqavw79v42nldmaygj"; - name = "kbruch-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kbruch-15.11.90.tar.xz"; + sha256 = "10p6a8hs3p9bk209w3x47bivipmsgzklb5zsw37xwrc9icvfqysf"; + name = "kbruch-15.11.90.tar.xz"; }; }; kcachegrind = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcachegrind-15.11.80.tar.xz"; - sha256 = "0rc308n9yrjfmdg8v0fz4qmm9p8vvvihw9mvc7n31kpfwwlymx3n"; - name = "kcachegrind-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcachegrind-15.11.90.tar.xz"; + sha256 = "1mc8vq3xkswfrdxbihv2ai473zjc1zbqzz74agx9i0iz488x1fy8"; + name = "kcachegrind-15.11.90.tar.xz"; }; }; kcalc = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalc-15.11.80.tar.xz"; - sha256 = "1dvnj2fnl6rjcfw373xplchzkkl63lr0h1b1d0h2l36i7j37g0ih"; - name = "kcalc-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcalc-15.11.90.tar.xz"; + sha256 = "1cggmkydxpzija2llp4cml971z824ick3nfl03r8ap5ya65vk90i"; + name = "kcalc-15.11.90.tar.xz"; }; }; kcalcore = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalcore-15.11.80.tar.xz"; - sha256 = "1kxw4cvz72flb3587wzx1p8vykwhwjbsw2xq10z6zvk55s8y9g8h"; - name = "kcalcore-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcalcore-15.11.90.tar.xz"; + sha256 = "1sw776d8pvp33qnm9dccmc8ggxmc66qq7lsvxndkvz7hmwq5pjs8"; + name = "kcalcore-15.11.90.tar.xz"; }; }; kcalutils = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalutils-15.11.80.tar.xz"; - sha256 = "0gnw0j92nk9gf40gn0ikbmij8qd3p8zsqwwcq8rbmrlh6g31cb94"; - name = "kcalutils-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcalutils-15.11.90.tar.xz"; + sha256 = "1fy52kba0qfwdjkl2p61m31igs8g2hi11g48z6hblalx7y7g7qyf"; + name = "kcalutils-15.11.90.tar.xz"; }; }; kcharselect = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcharselect-15.11.80.tar.xz"; - sha256 = "0sdq3vwkcjm59gbyq7hz3lhpkwrhb6xv4rrdpw9wfhh50gy1ckif"; - name = "kcharselect-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcharselect-15.11.90.tar.xz"; + sha256 = "09vwsqhh8shnylcbpm91rvsk6ijf6xnbnrb6zsbf0ymp46h43jaz"; + name = "kcharselect-15.11.90.tar.xz"; }; }; kcolorchooser = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcolorchooser-15.11.80.tar.xz"; - sha256 = "1i2s7ay2r0ymfrhcnmvza627ni2m955c9m7c085h5qchgmljp994"; - name = "kcolorchooser-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcolorchooser-15.11.90.tar.xz"; + sha256 = "0vnf3fkad37s5irkg864r0cmdr9kwhsalydcji3zsxjcki0hfgdi"; + name = "kcolorchooser-15.11.90.tar.xz"; }; }; kcontacts = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcontacts-15.11.80.tar.xz"; - sha256 = "1wa45vyd7j3zbi1wsz4z0mkhf2ii4qnb7pd8rshvh4z929f1kqg8"; - name = "kcontacts-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcontacts-15.11.90.tar.xz"; + sha256 = "16x0334hgb363266k4rf7xw8dq88pi5jcds93g8q1dyyk1qgh1bx"; + name = "kcontacts-15.11.90.tar.xz"; }; }; kcron = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcron-15.11.80.tar.xz"; - sha256 = "10dndgavnmwagkfylbji23kvyblnj5p7drygds6md0dqmcdnlvg6"; - name = "kcron-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kcron-15.11.90.tar.xz"; + sha256 = "0y0sv96z9y3wa151rid6r5nssbznvpv26pzcf0i2axnj8pq5z8sp"; + name = "kcron-15.11.90.tar.xz"; }; }; kde-baseapps = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-baseapps-15.11.80.tar.xz"; - sha256 = "14d5rx0rl6673h949b0c51pxx0a604wsv1sdwyd44ym6z7p5nvab"; - name = "kde-baseapps-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-baseapps-15.11.90.tar.xz"; + sha256 = "1zc2rh8ni8anjvirbmy1qypvcryfbxxjmlsmxr9zvkk4yjnffy8n"; + name = "kde-baseapps-15.11.90.tar.xz"; }; }; kdebugsettings = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdebugsettings-15.11.80.tar.xz"; - sha256 = "1z0h2ng4v287bb1pjwfdq2slhy6ph516k458jyjsv2mgkjfi5fhi"; - name = "kdebugsettings-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdebugsettings-15.11.90.tar.xz"; + sha256 = "1qhavzgcd4i0dydajhi8qf129kdwwbd235nawy038n4lz13daj1z"; + name = "kdebugsettings-15.11.90.tar.xz"; }; }; kde-dev-scripts = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-dev-scripts-15.11.80.tar.xz"; - sha256 = "001396pg0jgy3rdk44fi3c2bavqzbfryi75d0ldn33jzhpa2l7sl"; - name = "kde-dev-scripts-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-dev-scripts-15.11.90.tar.xz"; + sha256 = "0h5mwc6aclb2md0hifdrjqqk1h39lw2l414z0x901b49gjv9ajly"; + name = "kde-dev-scripts-15.11.90.tar.xz"; }; }; kde-dev-utils = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-dev-utils-15.11.80.tar.xz"; - sha256 = "0jkmgdap3win3znz089nc8znpa001scs0la7rni1a3fh7fm6x1pc"; - name = "kde-dev-utils-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-dev-utils-15.11.90.tar.xz"; + sha256 = "0kn1s2djs0zz530a83hq23g54xjdk3jksq9a45vgg2l2383f48m0"; + name = "kde-dev-utils-15.11.90.tar.xz"; }; }; kdeedu-data = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdeedu-data-15.11.80.tar.xz"; - sha256 = "17mfb3xp5xpbx6wfs88frdqh9732jfliv4kq5nba8mh3h8vrnrrb"; - name = "kdeedu-data-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdeedu-data-15.11.90.tar.xz"; + sha256 = "0fnrc0dbjxiwhbi9zknqh4n5805ydd4a7vxpnyzaqdc0gvbzvq0a"; + name = "kdeedu-data-15.11.90.tar.xz"; }; }; kdegraphics-mobipocket = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-mobipocket-15.11.80.tar.xz"; - sha256 = "1yydb4g0dd9pfq8lypp245y42zk18f63khp7na61c04k04d6vfwl"; - name = "kdegraphics-mobipocket-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-mobipocket-15.11.90.tar.xz"; + sha256 = "04nwsgbsysgqnjr85v4dq5rjaqys4f87vcn64rgfa6j9m6pkcx5w"; + name = "kdegraphics-mobipocket-15.11.90.tar.xz"; }; }; kdegraphics-strigi-analyzer = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-strigi-analyzer-15.11.80.tar.xz"; - sha256 = "0z0gx48rjxad45ar4spppxndpr13zx4lvb8zx2whpdbhf43a8xng"; - name = "kdegraphics-strigi-analyzer-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-strigi-analyzer-15.11.90.tar.xz"; + sha256 = "0d8c5kf0xd804irhdisdkhaxkh5qpjf37gnkklxm77i66k5x63p9"; + name = "kdegraphics-strigi-analyzer-15.11.90.tar.xz"; }; }; kdegraphics-thumbnailers = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-thumbnailers-15.11.80.tar.xz"; - sha256 = "0gpwv1d8v2x631p2zdpq5b6wbr5zjvawh04pfajkbi45iby9z156"; - name = "kdegraphics-thumbnailers-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-thumbnailers-15.11.90.tar.xz"; + sha256 = "1l7n3j8qf633limppvx4gy783fyrkwq129dj46bm48j8igrpkjcl"; + name = "kdegraphics-thumbnailers-15.11.90.tar.xz"; }; }; kde-l10n-ar = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ar-15.11.80.tar.xz"; - sha256 = "07hdcqm0f5i47g7vzgdc7mhn03hv0nbrww24xqx7kmzxmq8ficik"; - name = "kde-l10n-ar-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ar-15.11.90.tar.xz"; + sha256 = "01qkrgzvrll84mfq10ahrr9c55yd63avns5fl1yn83hg047qrxj1"; + name = "kde-l10n-ar-15.11.90.tar.xz"; }; }; kde-l10n-bg = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-bg-15.11.80.tar.xz"; - sha256 = "1cx7vax6n27ai54zpxibi9q2v1ilkzw5vs4zk7y7fr3r8llsn3ci"; - name = "kde-l10n-bg-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-bg-15.11.90.tar.xz"; + sha256 = "1cs0c4wsb247s8df5a7rsdjiky010i6b2m6m57jj593j8lmjgj95"; + name = "kde-l10n-bg-15.11.90.tar.xz"; }; }; kde-l10n-bs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-bs-15.11.80.tar.xz"; - sha256 = "1nw5h67j7qis4h127f101c5b5zc82r2pwfb7rhc0jg8fyxrkb0l9"; - name = "kde-l10n-bs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-bs-15.11.90.tar.xz"; + sha256 = "12hcr2yzd86n4kyxdbdnzxxjg637xmn1n72s0i9wdybgp385544k"; + name = "kde-l10n-bs-15.11.90.tar.xz"; }; }; kde-l10n-ca = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ca-15.11.80.tar.xz"; - sha256 = "1x6p2bklh2qf047ws9jincbgk33c9xsg20xsyfazp7x4iyrsw3lv"; - name = "kde-l10n-ca-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ca-15.11.90.tar.xz"; + sha256 = "0xxx3hic96743z38n866w6d75w66hwkc5467l7y5dxba25z1m78m"; + name = "kde-l10n-ca-15.11.90.tar.xz"; }; }; kde-l10n-ca_valencia = { - version = "ca_valencia-15.11.80"; + version = "ca_valencia-15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ca@valencia-15.11.80.tar.xz"; - sha256 = "1n58flzasr0r64pqhh8j7rizz0w3h9xdjhlj8c18mm50xyp011bq"; - name = "kde-l10n-ca_valencia-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ca@valencia-15.11.90.tar.xz"; + sha256 = "05fw6vks4dm2rpa47jpds9ss57178k9vz0rgg8jfc4jdvsgs1cj6"; + name = "kde-l10n-ca_valencia-15.11.90.tar.xz"; }; }; kde-l10n-cs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-cs-15.11.80.tar.xz"; - sha256 = "0mnwbb9s2x2pl168awxygrah8a8yzn2zlsrh7fp9kbhiypwr8gvl"; - name = "kde-l10n-cs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-cs-15.11.90.tar.xz"; + sha256 = "1vr2c9wkvpziklbynzbam8y97c047ja7gmqkpjj1mhwd9iy1rs8p"; + name = "kde-l10n-cs-15.11.90.tar.xz"; }; }; kde-l10n-da = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-da-15.11.80.tar.xz"; - sha256 = "0igc9dzj7l7n4kznlij0myvqsdcm2a2hf80j23wh810d1fkgg16a"; - name = "kde-l10n-da-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-da-15.11.90.tar.xz"; + sha256 = "1ihxgqlrm8z1srkkz44r43zqa38rb36d6z5c18ipp7186aiwzhcs"; + name = "kde-l10n-da-15.11.90.tar.xz"; }; }; kde-l10n-de = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-de-15.11.80.tar.xz"; - sha256 = "1mwaiapzailc644j5qcmac3m3h5jg7swia21gshdpywcjisrrka7"; - name = "kde-l10n-de-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-de-15.11.90.tar.xz"; + sha256 = "0wzzg9ym17q88pb4dzg6jllmpsj49wb04sskinszvpngxxf1pl2d"; + name = "kde-l10n-de-15.11.90.tar.xz"; }; }; kde-l10n-el = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-el-15.11.80.tar.xz"; - sha256 = "1f0nj7lh2hgs6yxwxcgmc9ydiy294d2pfxffqg3nvk6r7qxxr62i"; - name = "kde-l10n-el-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-el-15.11.90.tar.xz"; + sha256 = "0sn03wvrlsci2whhwza6vq5r5mr8x66xag0kkd9jmzx76xjxrdlg"; + name = "kde-l10n-el-15.11.90.tar.xz"; }; }; kde-l10n-en_GB = { - version = "en_GB-15.11.80"; + version = "en_GB-15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-en_GB-15.11.80.tar.xz"; - sha256 = "05kxsfmj6p3w10ily3yn3l53zgjib0v10whq8ls5l99aygws90y3"; - name = "kde-l10n-en_GB-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-en_GB-15.11.90.tar.xz"; + sha256 = "04cv9aj7my5ffqq1lnraa628c6nkc3110zmzvchhagqnb0nhi20s"; + name = "kde-l10n-en_GB-15.11.90.tar.xz"; }; }; kde-l10n-eo = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-eo-15.11.80.tar.xz"; - sha256 = "1wial0ky930cg66a5f0a7j7f57m7c8nyj62v6c66irdskfm5gh9d"; - name = "kde-l10n-eo-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-eo-15.11.90.tar.xz"; + sha256 = "027x3hxzwa1g40zp5vwza138yyvi99a64gm568xdzvxf0h5d4dcs"; + name = "kde-l10n-eo-15.11.90.tar.xz"; }; }; kde-l10n-es = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-es-15.11.80.tar.xz"; - sha256 = "02jz8lm6rz14vp0abycnyghwz87vc6qca2371p8bnsz4sggqbarj"; - name = "kde-l10n-es-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-es-15.11.90.tar.xz"; + sha256 = "04vwp1wrxlgzc716kfhbfng4mvcw47zwz54p2d8gjhviskh64k5i"; + name = "kde-l10n-es-15.11.90.tar.xz"; }; }; kde-l10n-et = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-et-15.11.80.tar.xz"; - sha256 = "1da4jz8a8ixkalwvf27mknchrr761a0rifjghjl2wlr463ivba4q"; - name = "kde-l10n-et-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-et-15.11.90.tar.xz"; + sha256 = "0fg6nscjhymz7dx9szcfhlx4mkx5rbqfrk4yikm849flr86i7njr"; + name = "kde-l10n-et-15.11.90.tar.xz"; }; }; kde-l10n-eu = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-eu-15.11.80.tar.xz"; - sha256 = "1l0clwn2h6ph6jgnv3vrfx2ww04rm55byrndivm78x1i8vci8jx0"; - name = "kde-l10n-eu-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-eu-15.11.90.tar.xz"; + sha256 = "0czfx3xi32ldsa57hd5ab43lgw9p1nrz9q82vd0kz35yfgspvp0y"; + name = "kde-l10n-eu-15.11.90.tar.xz"; }; }; kde-l10n-fa = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fa-15.11.80.tar.xz"; - sha256 = "0v2vcpyvih2xmx69yg1d9wyh988f3439g66vk01wqp2gsa505r1p"; - name = "kde-l10n-fa-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fa-15.11.90.tar.xz"; + sha256 = "1ci4mni45imwdaf4jbisb1c1yx9kj2j3dr7267n1fvmbpxfx55bf"; + name = "kde-l10n-fa-15.11.90.tar.xz"; }; }; kde-l10n-fi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fi-15.11.80.tar.xz"; - sha256 = "0shxcr6xndxz2136nx1qhm4kbfcgxw3j8fnby1jgjqz8shfjz318"; - name = "kde-l10n-fi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fi-15.11.90.tar.xz"; + sha256 = "1nwd32h0il6bd9lxlkvxk2caf7d51w2ng6nwh8j95p4h95b8pb4j"; + name = "kde-l10n-fi-15.11.90.tar.xz"; }; }; kde-l10n-fr = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fr-15.11.80.tar.xz"; - sha256 = "1b1cs3fwzknhm3rd2ipbgx63wkn7idck825wvpjbgipg65q6a788"; - name = "kde-l10n-fr-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fr-15.11.90.tar.xz"; + sha256 = "0airxvji5z0g2ydgj0npn906z6r2wp3hjlmf1frjl29nwbj46wxw"; + name = "kde-l10n-fr-15.11.90.tar.xz"; }; }; kde-l10n-ga = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ga-15.11.80.tar.xz"; - sha256 = "05z536w3djr5p89vbyc1rj8d9z4cwgym74fv08jaz816iq1cz8ww"; - name = "kde-l10n-ga-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ga-15.11.90.tar.xz"; + sha256 = "184i1mskqr0f59xr8g72ph1472z66y6pq4phs31s7wxqjx90icb7"; + name = "kde-l10n-ga-15.11.90.tar.xz"; }; }; kde-l10n-gl = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-gl-15.11.80.tar.xz"; - sha256 = "0jrv68qjcrikgpnqsgdgxj6nl0m2prbgj418fjns1c4c4lna43qk"; - name = "kde-l10n-gl-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-gl-15.11.90.tar.xz"; + sha256 = "0lllkr65dd7s388d5khj1p6q6iymdrs3m1jmj0v0npycf613pcvf"; + name = "kde-l10n-gl-15.11.90.tar.xz"; }; }; kde-l10n-he = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-he-15.11.80.tar.xz"; - sha256 = "0h71g3rqsvfwkvj2rwf6c0mma6qmp2h0nrbc3biqijgjxl8vyd5s"; - name = "kde-l10n-he-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-he-15.11.90.tar.xz"; + sha256 = "0zdmpgxmzigwpliysjcjr80fdrywvk8as6s8ym1z5aliiqb8b78q"; + name = "kde-l10n-he-15.11.90.tar.xz"; }; }; kde-l10n-hi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hi-15.11.80.tar.xz"; - sha256 = "1blwzqk0v9455c1lsvb9q5qf0x2lj0zj5av8vxbicfd35hr6hc6y"; - name = "kde-l10n-hi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hi-15.11.90.tar.xz"; + sha256 = "0qkfhdypj41ympfqk9m6nsg868wfjf1hcc785r0fh4a32mbc6h98"; + name = "kde-l10n-hi-15.11.90.tar.xz"; }; }; kde-l10n-hr = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hr-15.11.80.tar.xz"; - sha256 = "11zz6zjk13hqd9i409786d6xinkpyaynlza2dkql104kzymbyknf"; - name = "kde-l10n-hr-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hr-15.11.90.tar.xz"; + sha256 = "0aq8lnibjvjc0vchy1jfadidfl31xwwrxdmd3b3c6cd2v6fyhp5k"; + name = "kde-l10n-hr-15.11.90.tar.xz"; }; }; kde-l10n-hu = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hu-15.11.80.tar.xz"; - sha256 = "18hzyyv5ijl29b27q9jfm9sq0w82638yb4gjabq7rkngy0h2v02x"; - name = "kde-l10n-hu-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hu-15.11.90.tar.xz"; + sha256 = "0y1awp3rfmxw5h595v5cv8fqswyyjg3x69b6dhmqnrsv9jh6ww3q"; + name = "kde-l10n-hu-15.11.90.tar.xz"; }; }; kde-l10n-ia = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ia-15.11.80.tar.xz"; - sha256 = "013acls9vqfhpr6yzfpg6c3yn87myrznq2qxm2n4lgmksibw8l38"; - name = "kde-l10n-ia-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ia-15.11.90.tar.xz"; + sha256 = "1c7sfm5nh6fbc7h0hia1w9wsszggdii6ssrly9pxxghnifx1ry8x"; + name = "kde-l10n-ia-15.11.90.tar.xz"; }; }; kde-l10n-id = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-id-15.11.80.tar.xz"; - sha256 = "0l1vsa5s6zdiymw67iy28fsarh2lgi4wpcma7nnbj90jf4l7zj0g"; - name = "kde-l10n-id-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-id-15.11.90.tar.xz"; + sha256 = "1k5ixg654v9pfzc0z5cf76kzfc4432shyw6hiq2h861zy96vlvz7"; + name = "kde-l10n-id-15.11.90.tar.xz"; }; }; kde-l10n-is = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-is-15.11.80.tar.xz"; - sha256 = "07rs26zl15qar6pn6mg3ihfx78zakqn5mbvqv7f0zjsfd6fmmkxx"; - name = "kde-l10n-is-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-is-15.11.90.tar.xz"; + sha256 = "1gsvgydqki3h1hqmmazcj66w4f5q1w539yjksw7izw64wd94sn18"; + name = "kde-l10n-is-15.11.90.tar.xz"; }; }; kde-l10n-it = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-it-15.11.80.tar.xz"; - sha256 = "0x7qi9rgma6l7i80r5i37jh35zfi4j6axk6ha1h9dbmyfw9p1fkr"; - name = "kde-l10n-it-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-it-15.11.90.tar.xz"; + sha256 = "11wdxb18wjzvv72ljzwqpbybimqg7aj3qdr1d6r2h2bmv19q5zy4"; + name = "kde-l10n-it-15.11.90.tar.xz"; }; }; kde-l10n-ja = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ja-15.11.80.tar.xz"; - sha256 = "0dh8k8gyimzdhmycz8711l2hn0rddprywqz1brs7m43shx8cqxk7"; - name = "kde-l10n-ja-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ja-15.11.90.tar.xz"; + sha256 = "12mpnbrq7knkjmi3fp22qq18r0fzvii6hrgn45kyqf80s5m9cslm"; + name = "kde-l10n-ja-15.11.90.tar.xz"; }; }; kde-l10n-kk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-kk-15.11.80.tar.xz"; - sha256 = "1r9w4yw3fc4v0pgy130phvapy69p1b7j1gzayg60lakckr3wbpd8"; - name = "kde-l10n-kk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-kk-15.11.90.tar.xz"; + sha256 = "0qhf5a8xwyb7nxgndainzycy4r8v1xk2qqbj3hcyhy9kz7g9cb66"; + name = "kde-l10n-kk-15.11.90.tar.xz"; }; }; kde-l10n-km = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-km-15.11.80.tar.xz"; - sha256 = "10swsr4zvrv42d2i2w45kqmaqkba7an7w6f519qqsnmp4ykcl0dk"; - name = "kde-l10n-km-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-km-15.11.90.tar.xz"; + sha256 = "1i67pmc9q4dh96zdinhby2ffgwv3q0yzl1r83n3gk70vigbqdm4x"; + name = "kde-l10n-km-15.11.90.tar.xz"; }; }; kde-l10n-ko = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ko-15.11.80.tar.xz"; - sha256 = "07ly80fbz0kqiam3ykfilv6q4y0pa6nzi9chxas830xzzkygri9k"; - name = "kde-l10n-ko-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ko-15.11.90.tar.xz"; + sha256 = "1l453c5na6n1pmls5w702zcv0vxcf3v6a6xvkjawwr58i6dzcwkx"; + name = "kde-l10n-ko-15.11.90.tar.xz"; }; }; kde-l10n-lt = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-lt-15.11.80.tar.xz"; - sha256 = "11xq8wv3rcg8yz76mnb0052xd6h8l5wis5c9k6lrpqik57kg06ic"; - name = "kde-l10n-lt-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-lt-15.11.90.tar.xz"; + sha256 = "0kwv9hgk9v17wg1hnx5rrlxdzjjdhj4hsgvl4jps11vaxw6z5l3y"; + name = "kde-l10n-lt-15.11.90.tar.xz"; }; }; kde-l10n-lv = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-lv-15.11.80.tar.xz"; - sha256 = "0wxd9cbzgw404zvi94zs71sx65cai8xhks8jb6j5g0086iscar5a"; - name = "kde-l10n-lv-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-lv-15.11.90.tar.xz"; + sha256 = "0w5cq3jrjvwyzsnwj57f2n342si9xy2bggf0904yzi2kg9fy503m"; + name = "kde-l10n-lv-15.11.90.tar.xz"; }; }; kde-l10n-mr = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-mr-15.11.80.tar.xz"; - sha256 = "116pk7fzba0k32pl8mdgaq54xxhqg43y7vv1ra0dgilf0znpibyv"; - name = "kde-l10n-mr-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-mr-15.11.90.tar.xz"; + sha256 = "1wkxz8v8y1fkzbwdmiwphfmgdgar4cbs37d32cvlql94ivwg7bm8"; + name = "kde-l10n-mr-15.11.90.tar.xz"; }; }; kde-l10n-nb = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nb-15.11.80.tar.xz"; - sha256 = "03y3qbf8nfbqh0c2saznv12igg82bj56i791ksxcphlm5065rlzq"; - name = "kde-l10n-nb-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nb-15.11.90.tar.xz"; + sha256 = "05xbfc1pv8m8qdyh9c9cxzq59xrgd1amkc00nwk2sxbnwr3nw8ks"; + name = "kde-l10n-nb-15.11.90.tar.xz"; }; }; kde-l10n-nds = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nds-15.11.80.tar.xz"; - sha256 = "0wr842xfclxbx5w30f2aig2rdq5p2vrhd91kr5v9zcidgddms2fj"; - name = "kde-l10n-nds-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nds-15.11.90.tar.xz"; + sha256 = "00l83v501p73kbjwhhc22gxvyjd2fgyhdw41z89a1ghb0gg721pd"; + name = "kde-l10n-nds-15.11.90.tar.xz"; }; }; kde-l10n-nl = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nl-15.11.80.tar.xz"; - sha256 = "110fwbf2b6ss21vrswj3d3d9zlr1n2p44vs3znwcrv9pjds2v8jg"; - name = "kde-l10n-nl-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nl-15.11.90.tar.xz"; + sha256 = "0wdfxl5a4n0iqw9sk45pbj78rp8gb1r4y1l2abkbwr8jfmfamjn1"; + name = "kde-l10n-nl-15.11.90.tar.xz"; }; }; kde-l10n-nn = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nn-15.11.80.tar.xz"; - sha256 = "073zcpwx8acv1hdwkk8w7nzkrg6qfb4w4lvah8gkgjhl2r6h4lkr"; - name = "kde-l10n-nn-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nn-15.11.90.tar.xz"; + sha256 = "1wzmf0yrz5dn87xg6z8df8izvdv7fricazsy5wb81aksi24hk2n2"; + name = "kde-l10n-nn-15.11.90.tar.xz"; }; }; kde-l10n-pa = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pa-15.11.80.tar.xz"; - sha256 = "1x99m4rj99wdlyiqmgl9vs125vdjl2g46nk1q0xb2xz7znn003na"; - name = "kde-l10n-pa-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pa-15.11.90.tar.xz"; + sha256 = "1gwphwmwg6dgmw9hak7ps1xhjkmq76cs2rbbfl5z31zjv0lhzrdm"; + name = "kde-l10n-pa-15.11.90.tar.xz"; }; }; kde-l10n-pl = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pl-15.11.80.tar.xz"; - sha256 = "0hxsdbcclgnalkzpvrl948l4yb122lg8bhxg0mkcm23jmvi594cv"; - name = "kde-l10n-pl-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pl-15.11.90.tar.xz"; + sha256 = "1db898g2xn1i6w343axcv91aca32n0dhxh6cri6p6jq1a0rc9vbr"; + name = "kde-l10n-pl-15.11.90.tar.xz"; }; }; kde-l10n-pt = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pt-15.11.80.tar.xz"; - sha256 = "1wijadwzv119dyx7wpddwiyc4jip1lqwkhb01dvyq1dzzkjf39f4"; - name = "kde-l10n-pt-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pt-15.11.90.tar.xz"; + sha256 = "00x2iwd6929ry5r4a3h00rsxn7ssnmq29zsra2axl796dyqdbzds"; + name = "kde-l10n-pt-15.11.90.tar.xz"; }; }; kde-l10n-pt_BR = { - version = "pt_BR-15.11.80"; + version = "pt_BR-15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pt_BR-15.11.80.tar.xz"; - sha256 = "19ki8sf4mj8fjrf2f7a43bj8bnqg9bc0m6982ba558nxdb3lr7fs"; - name = "kde-l10n-pt_BR-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pt_BR-15.11.90.tar.xz"; + sha256 = "06xnn7xdzl5lqasy2sh6a323j1ny8f8i8z8ggp4d8igwcni7rkvy"; + name = "kde-l10n-pt_BR-15.11.90.tar.xz"; }; }; kde-l10n-ro = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ro-15.11.80.tar.xz"; - sha256 = "1p79xvd49vs81gn18pzmpjz6qy974ryn3ywvqda920nb1wfaqh1k"; - name = "kde-l10n-ro-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ro-15.11.90.tar.xz"; + sha256 = "0mganx5zh51inlrz9iyk8cvp7w33qd3y1vyxw6v1aclcc91dl4ba"; + name = "kde-l10n-ro-15.11.90.tar.xz"; }; }; kde-l10n-ru = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ru-15.11.80.tar.xz"; - sha256 = "04x6ym1gs1n6krg9k876gfk7d4ljrxvwv5lmagmjadx7dhfvy4ym"; - name = "kde-l10n-ru-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ru-15.11.90.tar.xz"; + sha256 = "0d0lz1jzrkv9ymdwadlmbqns9n521nv1cc0243hv7piwg9v02v1k"; + name = "kde-l10n-ru-15.11.90.tar.xz"; }; }; kde-l10n-sk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sk-15.11.80.tar.xz"; - sha256 = "0mdy9fhppnm5nkanb7q2myinngmnf6hq3iywvhg66iv6nsmbjdw9"; - name = "kde-l10n-sk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sk-15.11.90.tar.xz"; + sha256 = "18y301b845b3zf5grcf9h4x97qc05jg7mw23j54d590x5k8ihbp6"; + name = "kde-l10n-sk-15.11.90.tar.xz"; }; }; kde-l10n-sl = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sl-15.11.80.tar.xz"; - sha256 = "06nd0wjni4sfmiza6wb8m3mdrbkkvk0k5ymvar396wh8037mjp64"; - name = "kde-l10n-sl-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sl-15.11.90.tar.xz"; + sha256 = "1mqqzhsr8m7y7pygzx9qyqq4hzpccrp20d42n2dgbqqwy4w10nyh"; + name = "kde-l10n-sl-15.11.90.tar.xz"; }; }; kde-l10n-sr = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sr-15.11.80.tar.xz"; - sha256 = "1pj9k4j6c5hfzl1lz7vyakggl6p8drrfy5ln7m69s1qy4skraf8x"; - name = "kde-l10n-sr-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sr-15.11.90.tar.xz"; + sha256 = "1rb3ivad7gskdnc9i7n6vm6a8i2davrs6b7imd06lgrcxzq56yqf"; + name = "kde-l10n-sr-15.11.90.tar.xz"; }; }; kde-l10n-sv = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sv-15.11.80.tar.xz"; - sha256 = "18p880a66iz258lbc8hn3h217qcigi3glzml5r9yq2d8kmr1gfwg"; - name = "kde-l10n-sv-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sv-15.11.90.tar.xz"; + sha256 = "1xs1jjjzbihxj3ix4dbmvs329b9qhb1di2933dr41qlqm4kdnczh"; + name = "kde-l10n-sv-15.11.90.tar.xz"; }; }; kde-l10n-tr = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-tr-15.11.80.tar.xz"; - sha256 = "0r3sb0i1c0zzywsvkxzmhr67592ss6xzdaqmams6qa37znpxwjw3"; - name = "kde-l10n-tr-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-tr-15.11.90.tar.xz"; + sha256 = "055crwxa0fim4mpb1ghpcdjrnysqbnymc3c1yz0m3gkzy1bjlf3j"; + name = "kde-l10n-tr-15.11.90.tar.xz"; }; }; kde-l10n-ug = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ug-15.11.80.tar.xz"; - sha256 = "0daw8qi6bn26xhvxnz3rs7xxqi5azhmj57ay8p62p84d6wfbswsw"; - name = "kde-l10n-ug-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ug-15.11.90.tar.xz"; + sha256 = "038lgvz17rnm8lx22gvisxf3r3ix80fvdvq18n8bnin3lfjqdhm7"; + name = "kde-l10n-ug-15.11.90.tar.xz"; }; }; kde-l10n-uk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-uk-15.11.80.tar.xz"; - sha256 = "0sfgsj4n0v0c99lmzbicjsyysf1n49413509lh0ljgmsr7v4mskw"; - name = "kde-l10n-uk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-uk-15.11.90.tar.xz"; + sha256 = "0yf5nja326qrqqqn7ssli83n8llqiq244a9q5ri4khdvp0i9ni7r"; + name = "kde-l10n-uk-15.11.90.tar.xz"; }; }; kde-l10n-wa = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-wa-15.11.80.tar.xz"; - sha256 = "04v29qq4n48lkql4nyxx4v95jl9v4gh5wxjqrimycw3n2xmrlbnb"; - name = "kde-l10n-wa-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-wa-15.11.90.tar.xz"; + sha256 = "03wxmf88vjg4h9dmi7jhzzq4vzabc2pr3gvl53b78l533x0ajss4"; + name = "kde-l10n-wa-15.11.90.tar.xz"; }; }; kde-l10n-zh_CN = { - version = "zh_CN-15.11.80"; + version = "zh_CN-15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-zh_CN-15.11.80.tar.xz"; - sha256 = "15aa0b3bry1x87v9vwsylp06wzirq98jii1qfbkvh4cf17l23yvb"; - name = "kde-l10n-zh_CN-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-zh_CN-15.11.90.tar.xz"; + sha256 = "04yzvrpykp07rnml1p9xdh32cnil9s2jrn2h7826gf29imwk4b79"; + name = "kde-l10n-zh_CN-15.11.90.tar.xz"; }; }; kde-l10n-zh_TW = { - version = "zh_TW-15.11.80"; + version = "zh_TW-15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-zh_TW-15.11.80.tar.xz"; - sha256 = "0llisjlc6w13gqya7qgq9cxrqh8aicpz2q4z4afn770dqm02jbvn"; - name = "kde-l10n-zh_TW-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-zh_TW-15.11.90.tar.xz"; + sha256 = "0rbin45cp4iwn3pcvgks154y6jcj4qp6ah1is7l83spn5wyjw6lj"; + name = "kde-l10n-zh_TW-15.11.90.tar.xz"; }; }; kdenetwork-filesharing = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenetwork-filesharing-15.11.80.tar.xz"; - sha256 = "0rip7k13lfpblg2lbpj6y1dj6j0gmr6ydqdqkcnb37lgrjr1cmn0"; - name = "kdenetwork-filesharing-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdenetwork-filesharing-15.11.90.tar.xz"; + sha256 = "19rkvxgkqkqrnsj0f1lh6wjm6fwsvl0n4hvfmy4wq2w669v7b1wx"; + name = "kdenetwork-filesharing-15.11.90.tar.xz"; }; }; kdenetwork-strigi-analyzers = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenetwork-strigi-analyzers-15.11.80.tar.xz"; - sha256 = "097m04s0vflpfpkbf55k4drbs9w8mp1a80chwyn623mmvg2bdr92"; - name = "kdenetwork-strigi-analyzers-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdenetwork-strigi-analyzers-15.11.90.tar.xz"; + sha256 = "11nhrfvjqfasy9xyh3phqkbi3519z3hcf4d797w9jgd6386vw32d"; + name = "kdenetwork-strigi-analyzers-15.11.90.tar.xz"; }; }; kdenlive = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenlive-15.11.80.tar.xz"; - sha256 = "0ms8q5daq8kklv73yhyh8905766zy6v26gbjcrsj4pvql3r6rbs4"; - name = "kdenlive-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdenlive-15.11.90.tar.xz"; + sha256 = "0cfhcd2wvski14w5zzn2vyvya5gymigp57wl54whll5f3p67x4h4"; + name = "kdenlive-15.11.90.tar.xz"; }; }; kdepim = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepim-15.11.80.tar.xz"; - sha256 = "0zjrjlsd49c3zk0l12b9ijl62y8jmgkmllgvxkpzrblpn1mqjjls"; - name = "kdepim-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdepim-15.11.90.tar.xz"; + sha256 = "0iwwqmw7m06wjmx6iw2kn9ldnfz2pkvac5jvq78pmnf493v7avva"; + name = "kdepim-15.11.90.tar.xz"; }; }; kdepimlibs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepimlibs-15.11.80.tar.xz"; - sha256 = "06z926a68b8k02w89qqddlarcnrr8wrpgvgg021xqnykgar3dy7h"; - name = "kdepimlibs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdepimlibs-15.11.90.tar.xz"; + sha256 = "0x575rqkfxfckc4rsckxiqi85mlvshqxn7pxik84iz98nrz8p73q"; + name = "kdepimlibs-15.11.90.tar.xz"; }; }; kdepim-runtime = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepim-runtime-15.11.80.tar.xz"; - sha256 = "07xirx1z54xa7r4gcqfp0sz3r0vgi5f75klcmwna21j53hzc387r"; - name = "kdepim-runtime-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdepim-runtime-15.11.90.tar.xz"; + sha256 = "16ms6j9qcsd4xpc96l6ck88x805dzafz16d7zm0whwkpkghb7jb3"; + name = "kdepim-runtime-15.11.90.tar.xz"; }; }; kde-runtime = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-runtime-15.11.80.tar.xz"; - sha256 = "1470pp11nc8z1x6wr5b8cpvx6fzflzx2ds06zl2yrq96acl5g8sp"; - name = "kde-runtime-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kde-runtime-15.11.90.tar.xz"; + sha256 = "020gb46g8wnqypx0kxifvyfvg9vabi6cyiq4m9qg5gqixwzbfhv7"; + name = "kde-runtime-15.11.90.tar.xz"; }; }; kdesdk-kioslaves = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-kioslaves-15.11.80.tar.xz"; - sha256 = "1gm8k4xnkija07kssakpli32isf5455hfvq5pnciqlzf7lllmib7"; - name = "kdesdk-kioslaves-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-kioslaves-15.11.90.tar.xz"; + sha256 = "03m5sxagca23vb1h9s3hakn0wyr5z3wchnzsl1pnk6llbrb4s0mz"; + name = "kdesdk-kioslaves-15.11.90.tar.xz"; }; }; kdesdk-strigi-analyzers = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-strigi-analyzers-15.11.80.tar.xz"; - sha256 = "0h6pnssm3nfnk3fqva3qwbkw82vxrzkg7incg2qzpvk0pwbxgyz9"; - name = "kdesdk-strigi-analyzers-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-strigi-analyzers-15.11.90.tar.xz"; + sha256 = "1ck0mcpqm0fjyc0q46y7mwcl7p23fqi5smnllvx5f2xwzkcpp9pr"; + name = "kdesdk-strigi-analyzers-15.11.90.tar.xz"; }; }; kdesdk-thumbnailers = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-thumbnailers-15.11.80.tar.xz"; - sha256 = "0wm4gy020lz7mlgn6naixy4fz72xscdlg1vmpw37p4dmxzphmdxy"; - name = "kdesdk-thumbnailers-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-thumbnailers-15.11.90.tar.xz"; + sha256 = "1l8gq4hm8r6g2nr81bb2d7vyx64b64jbcawqgsg9p90g83j5zybd"; + name = "kdesdk-thumbnailers-15.11.90.tar.xz"; }; }; kdewebdev = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdewebdev-15.11.80.tar.xz"; - sha256 = "00qmfas4d2r1gh8w421zmxyfra1xbc76zdisyv48phhw80rpqwyx"; - name = "kdewebdev-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdewebdev-15.11.90.tar.xz"; + sha256 = "0shwkqjc7r415m4zsz3cs6gks4zh9z4h83r0vjzlcmi8crnimwh7"; + name = "kdewebdev-15.11.90.tar.xz"; }; }; kdf = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdf-15.11.80.tar.xz"; - sha256 = "19gazwf02kzga0980y6ixj5l56hjmzfms51zh0n7wl1cr8dbgg5i"; - name = "kdf-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdf-15.11.90.tar.xz"; + sha256 = "14yn33svspsrh51dmnvm5q84hhxrmfasmxpy2gg4qshba85k60mf"; + name = "kdf-15.11.90.tar.xz"; }; }; kdiamond = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdiamond-15.11.80.tar.xz"; - sha256 = "0pp01c8n9m208hknigwcq5nvw5anf4621kip232iibw7pkwk8x2i"; - name = "kdiamond-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kdiamond-15.11.90.tar.xz"; + sha256 = "0qfs6jcdvvmffdpzqkb3r8s2i6r26w3ywcd914fwww4s8qghvhvg"; + name = "kdiamond-15.11.90.tar.xz"; }; }; kfloppy = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kfloppy-15.11.80.tar.xz"; - sha256 = "1935k4gm32kspjvb05jr24q1b3r31f96vs9g2s6b9s5a63b89w5j"; - name = "kfloppy-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kfloppy-15.11.90.tar.xz"; + sha256 = "01qwkp7d117rbxfwm2w6h2rg547c9ih6bqwxc1i1j82cggmrb7sw"; + name = "kfloppy-15.11.90.tar.xz"; }; }; kfourinline = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kfourinline-15.11.80.tar.xz"; - sha256 = "0y5hv4gr0nyilizcd90xka34n6xgqzgh9gh8gy8mw76xklnd1mfd"; - name = "kfourinline-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kfourinline-15.11.90.tar.xz"; + sha256 = "01lav9pgzcb8z9ranqzzf12iq0z0d5jvrn04cr927m3qnx434hqn"; + name = "kfourinline-15.11.90.tar.xz"; }; }; kgeography = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgeography-15.11.80.tar.xz"; - sha256 = "01jzl84dc6jf48dx4i6vdv9mgnjvv92ssnamqkgs4jw2iva22s6f"; - name = "kgeography-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kgeography-15.11.90.tar.xz"; + sha256 = "0x4acd9cbhabsrz88y7iya6gnpdxh19bgkxhqyd3xj70nh1n43jh"; + name = "kgeography-15.11.90.tar.xz"; }; }; kget = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kget-15.11.80.tar.xz"; - sha256 = "17q7vpnx89zrgqgybxc1vjc596vgh82fpanqfbym5n0bxcpap8q5"; - name = "kget-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kget-15.11.90.tar.xz"; + sha256 = "0gzx0bnnp885bcx2bc0b5wp97dcazm5wx6aw0rlkrvz7vljb2jmh"; + name = "kget-15.11.90.tar.xz"; }; }; kgoldrunner = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgoldrunner-15.11.80.tar.xz"; - sha256 = "0k815mkmd82aa6djyblm71ddl94796b52c0gf6c5dsg42r29w10f"; - name = "kgoldrunner-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kgoldrunner-15.11.90.tar.xz"; + sha256 = "1aks2ipzmkkrmmjz7bic0ggvsdgn8zd8b1sk3f8rz6z3iin8s7sh"; + name = "kgoldrunner-15.11.90.tar.xz"; }; }; kgpg = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgpg-15.11.80.tar.xz"; - sha256 = "0p088fb8mhfgvp0zihdda0554yw8k90f1xkd6hc4c9ngjc7d2pjf"; - name = "kgpg-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kgpg-15.11.90.tar.xz"; + sha256 = "0i0zkzm30gq84b1r3gpbbqksicv399al46rqqzahalcl3j5hq9kg"; + name = "kgpg-15.11.90.tar.xz"; }; }; khangman = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/khangman-15.11.80.tar.xz"; - sha256 = "1lz2qgqddq18dczs9cax0r5pay9yxqn63j7msch0y99x33hfyidn"; - name = "khangman-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/khangman-15.11.90.tar.xz"; + sha256 = "0xbybx7v8pm7ff30ckfiylb6lrf0acbnwd80wy5rabplnjq56k4z"; + name = "khangman-15.11.90.tar.xz"; }; }; kholidays = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kholidays-15.11.80.tar.xz"; - sha256 = "086d0vbzz2xcq6ibd7ia97lz89452gz3cxb879rvqxz3cyhhyfwr"; - name = "kholidays-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kholidays-15.11.90.tar.xz"; + sha256 = "0pyd98ir6cs4abflk9lzsp847vi4wib9j970xzdp9sbi2rwqjcjh"; + name = "kholidays-15.11.90.tar.xz"; }; }; kidentitymanagement = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kidentitymanagement-15.11.80.tar.xz"; - sha256 = "1j159alnxhvq4mpd2vr7jnj091x58gv47ms1rxk865xc66xv956s"; - name = "kidentitymanagement-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kidentitymanagement-15.11.90.tar.xz"; + sha256 = "19qx3g25nw81fr2izzs52mih352yrf47d7shdk51ivr31ch728cb"; + name = "kidentitymanagement-15.11.90.tar.xz"; }; }; kig = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kig-15.11.80.tar.xz"; - sha256 = "0w19w1bmj2grinq6s7biqqbdv9njdwqsynncb605ldwfvxnyyw7w"; - name = "kig-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kig-15.11.90.tar.xz"; + sha256 = "1j678j0csm1xjk1yx38ml9929q9mxq8rnwpdybxfh40ckqw62qk4"; + name = "kig-15.11.90.tar.xz"; }; }; kigo = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kigo-15.11.80.tar.xz"; - sha256 = "169cl12z1mjk4jn3c1ncq2q5adravsqraqxp7zq63yz819mv2mxj"; - name = "kigo-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kigo-15.11.90.tar.xz"; + sha256 = "14dh86wwmxk3xpcvar7msx7rd6czqmm54ddr464p0i2r1vr9r1xg"; + name = "kigo-15.11.90.tar.xz"; }; }; killbots = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/killbots-15.11.80.tar.xz"; - sha256 = "13l02ndf3nyqq2qisfb4ap87z5jf1iplcs7mdj2iswmr57vpc16g"; - name = "killbots-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/killbots-15.11.90.tar.xz"; + sha256 = "1rv0m7a4v8bypzwghfzir0gnh8q3l0ql5m88q3796dms3xdsksdf"; + name = "killbots-15.11.90.tar.xz"; }; }; kimap = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kimap-15.11.80.tar.xz"; - sha256 = "12wcgjgkg8fk91g7f9g7kw2sp1783kv478m521rhl1cy345250sw"; - name = "kimap-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kimap-15.11.90.tar.xz"; + sha256 = "1x26xxkiz6a60dh84r8fbpb99lacpwi9rvsv77wk54nm8anzwr4l"; + name = "kimap-15.11.90.tar.xz"; }; }; kio-extras = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kio-extras-15.11.80.tar.xz"; - sha256 = "19i8dgs5spayilhc7wyn2g5f30yy9dkzn7vzj2fxd3bwvl8agn2a"; - name = "kio-extras-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kio-extras-15.11.90.tar.xz"; + sha256 = "1pgvbxkx6asclbfv450x6ih9g84gwxd21gkp7s2xbya9c22445wf"; + name = "kio-extras-15.11.90.tar.xz"; }; }; kiriki = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kiriki-15.11.80.tar.xz"; - sha256 = "0zrpvz8av3xcnlmms7akis1897pyqc6j9ysmv36gg4bsjj2g7ng3"; - name = "kiriki-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kiriki-15.11.90.tar.xz"; + sha256 = "0v9d2gkgk3ad8p40k5qdczxypqziaghr7fxq54cs2cpf2mkir95b"; + name = "kiriki-15.11.90.tar.xz"; }; }; kiten = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kiten-15.11.80.tar.xz"; - sha256 = "0ci4wq5hp4dbmrb511m1pz6kyr2knl7aa82sd9pphndfg64l0mpi"; - name = "kiten-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kiten-15.11.90.tar.xz"; + sha256 = "0xmcga41bcg5map804jqaag4z7w4i1dffy7pn3hx7hyqyk0wdad7"; + name = "kiten-15.11.90.tar.xz"; }; }; kjumpingcube = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kjumpingcube-15.11.80.tar.xz"; - sha256 = "121dd6gly5dqr85rvwnqaf9ssbaqlmhlg0crcs3idj9dwag9abvi"; - name = "kjumpingcube-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kjumpingcube-15.11.90.tar.xz"; + sha256 = "052ig7xf5q3f0cwn9khh9pm51n527iv4659nphg81hl2cx7cxn21"; + name = "kjumpingcube-15.11.90.tar.xz"; }; }; kldap = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kldap-15.11.80.tar.xz"; - sha256 = "1y5g13amhl14wdbb4sxdndrhcixc9xq0glrz17wz42w2jvsf1nsb"; - name = "kldap-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kldap-15.11.90.tar.xz"; + sha256 = "1rqgypkk0l1f8wc3wkd5bwpifpgd9411lkqw9qv748jvnxwyz4hm"; + name = "kldap-15.11.90.tar.xz"; }; }; klettres = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klettres-15.11.80.tar.xz"; - sha256 = "1yiaz0ac9s99blqkb70228k5c575z05flqwmn1g13gdh8cyp41pj"; - name = "klettres-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/klettres-15.11.90.tar.xz"; + sha256 = "01qkhnbjqlr8zvr4w835kvgxn5vnnrvb1g2c4cvbnj6093p583h7"; + name = "klettres-15.11.90.tar.xz"; }; }; klickety = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klickety-15.11.80.tar.xz"; - sha256 = "09801vm45llrd8h1r9xb4ch1za98scihs655d0g8v938zqm0mzsz"; - name = "klickety-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/klickety-15.11.90.tar.xz"; + sha256 = "0apl56jcvjk67qy05nyn0mq9pakj6vqfw9k1sgzpcx1nppzn0whp"; + name = "klickety-15.11.90.tar.xz"; }; }; klines = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klines-15.11.80.tar.xz"; - sha256 = "1ssg07a48ymh3kl7pgd9wvfqf1q4kysl3c2ygiassl2dzk8inn6c"; - name = "klines-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/klines-15.11.90.tar.xz"; + sha256 = "07dbf0dwabwd6hckbgdxj2a5wfv5ikc6slmf907ba7v82bhkhxas"; + name = "klines-15.11.90.tar.xz"; }; }; kmag = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmag-15.11.80.tar.xz"; - sha256 = "0pdm8jj8h0r2xny1aa3nkrbyl4kvmamx49m3cvyv9kcnvabs6hhs"; - name = "kmag-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmag-15.11.90.tar.xz"; + sha256 = "07ysgxjahs8r2cni0fy9sidig2sm980rrihl12g75n1v9v10km7y"; + name = "kmag-15.11.90.tar.xz"; }; }; kmahjongg = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmahjongg-15.11.80.tar.xz"; - sha256 = "036wckckjdm1hwpb4lpw5djm41faih22466abmqiw6327dddwysy"; - name = "kmahjongg-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmahjongg-15.11.90.tar.xz"; + sha256 = "18g4ng4a5qf49cb54zbijcywkwazncqcqlq3148h0iib5q24ghpq"; + name = "kmahjongg-15.11.90.tar.xz"; }; }; kmailtransport = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmailtransport-15.11.80.tar.xz"; - sha256 = "0wl27x4z31lpbphx8bsb8kacpnbgcjds4a6ipdgp2xcxqxfixxdl"; - name = "kmailtransport-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmailtransport-15.11.90.tar.xz"; + sha256 = "012ghx7hw6b72zpbgac4cak8azv12i556bvhywkhsw539zk4psqp"; + name = "kmailtransport-15.11.90.tar.xz"; }; }; kmbox = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmbox-15.11.80.tar.xz"; - sha256 = "0ijdzizjc2vz3w684ny8rj92hpjmcsaqmh9q1vp2ffjfvz5qjppm"; - name = "kmbox-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmbox-15.11.90.tar.xz"; + sha256 = "13v3awx4qxdr7vnl1ngm9gs8n9jsk1rqg7fqhlj7daa4h4nvjzas"; + name = "kmbox-15.11.90.tar.xz"; }; }; kmime = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmime-15.11.80.tar.xz"; - sha256 = "1m6n6waap6y9afff5cqldi08dwl5kk002y13m8l8yjxk056qgw06"; - name = "kmime-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmime-15.11.90.tar.xz"; + sha256 = "0yn8x4zi5ra8ykcncy85s764skwcimskhs96jc8qzm8bcdd9pzpf"; + name = "kmime-15.11.90.tar.xz"; }; }; kmines = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmines-15.11.80.tar.xz"; - sha256 = "0h29ibkcwlwj3npmkdwii652n5gwhl8xvm31xng93ap98qaawp1b"; - name = "kmines-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmines-15.11.90.tar.xz"; + sha256 = "1lyjpzfjz6pl1s38xj4186jpl29lvi063fvcmhi9dfny2nkmfa15"; + name = "kmines-15.11.90.tar.xz"; }; }; kmix = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmix-15.11.80.tar.xz"; - sha256 = "0vry36l9rjbq44z022q4m1zgdgmhw9n7yr7920zq0wiq64qpm98w"; - name = "kmix-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmix-15.11.90.tar.xz"; + sha256 = "0gc0139xxw5rm00x8kqyqgkyr4yr48gb17a7x9hxf7qlwydjvvav"; + name = "kmix-15.11.90.tar.xz"; }; }; kmousetool = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmousetool-15.11.80.tar.xz"; - sha256 = "0hby69lj0n5swn4zk8mxiba27g4x8ci1cwcc9pxgbn7yc241zbhb"; - name = "kmousetool-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmousetool-15.11.90.tar.xz"; + sha256 = "1dw7cnd40y1rigv033b6d6q140f56hd9cg1lsv3lg52pgfmdpa3n"; + name = "kmousetool-15.11.90.tar.xz"; }; }; kmouth = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmouth-15.11.80.tar.xz"; - sha256 = "1mi0lm725s22nal01w7jzq4lfybk0qdln84q5yficpx13f7917fn"; - name = "kmouth-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmouth-15.11.90.tar.xz"; + sha256 = "14xbxdrpyc12lgx0l66vfxicz5zy69g0dgljakvd10qhbk5bv7cd"; + name = "kmouth-15.11.90.tar.xz"; }; }; kmplot = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmplot-15.11.80.tar.xz"; - sha256 = "1979nlcgil7qg334944p439nvq4hnc2nlql321s06dp03a8k6cf5"; - name = "kmplot-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kmplot-15.11.90.tar.xz"; + sha256 = "1dacdvcjkipbk30k3ad4slq50nlik57wg7pc9fj4dbkb22fkwq5q"; + name = "kmplot-15.11.90.tar.xz"; }; }; knavalbattle = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/knavalbattle-15.11.80.tar.xz"; - sha256 = "12wbj8nrzjydykvfj1hgpgmwivsipzd5fw5w9k9yi30bgvnryjxw"; - name = "knavalbattle-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/knavalbattle-15.11.90.tar.xz"; + sha256 = "0rq5whawhc806kcn0lbssscfkgy8khw9bwxybkb9wl0ps6p3za65"; + name = "knavalbattle-15.11.90.tar.xz"; }; }; knetwalk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/knetwalk-15.11.80.tar.xz"; - sha256 = "15w99pigi8q0282j9sl98lddrivdm510q3pk3pm2mwwc7pi9gpc9"; - name = "knetwalk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/knetwalk-15.11.90.tar.xz"; + sha256 = "0kp30yjpq84vzj8d4j1f9vzdh6j5rfg2kkzcxzy7xn6a56318c40"; + name = "knetwalk-15.11.90.tar.xz"; }; }; kolf = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kolf-15.11.80.tar.xz"; - sha256 = "1rdj30lyihhn1d64d3k0viw0x1acn3j6cwqjsvzcd50zbhrkcj85"; - name = "kolf-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kolf-15.11.90.tar.xz"; + sha256 = "144cmzkw7dx4ylacmig5828346yyi0kcgn7058qpf9r42v4h06wi"; + name = "kolf-15.11.90.tar.xz"; }; }; kollision = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kollision-15.11.80.tar.xz"; - sha256 = "1hycqsp4j3rargpprfwqshmmr4g4vjd8145a0782ha0cj14ndrr8"; - name = "kollision-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kollision-15.11.90.tar.xz"; + sha256 = "10qparglgiqfbqfvs0r1272q0l8xcscpmv5d883ciss6d4ivw3mw"; + name = "kollision-15.11.90.tar.xz"; }; }; kolourpaint = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kolourpaint-15.11.80.tar.xz"; - sha256 = "1walxy7i9b6anb3sa4nj43m8n4mkcnm87i92fjspb7hm029bj8z1"; - name = "kolourpaint-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kolourpaint-15.11.90.tar.xz"; + sha256 = "0s7r2q97y3f7gdxpff0k1mlscgxz8d1jifpfvs728mwhn821vb3d"; + name = "kolourpaint-15.11.90.tar.xz"; }; }; kompare = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kompare-15.11.80.tar.xz"; - sha256 = "10qvjqvy1dgzw1ywbza8z4ia2hcman0nlha7czy0lr2phf05rw8b"; - name = "kompare-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kompare-15.11.90.tar.xz"; + sha256 = "1f1xs97b6llgi27gv6gd1zcv8bxkw1n46bl2rd0363n789ipdpx8"; + name = "kompare-15.11.90.tar.xz"; }; }; konquest = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/konquest-15.11.80.tar.xz"; - sha256 = "0jkjncr5kb5qdqykvc4wksv5kj75fijnb6mzahx6ivcgaxp4jff8"; - name = "konquest-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/konquest-15.11.90.tar.xz"; + sha256 = "0f3hqk7lf1h7wbc4qvn6j662qw1g6vmrbr2995rar37bzr2x7g20"; + name = "konquest-15.11.90.tar.xz"; }; }; konsole = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/konsole-15.11.80.tar.xz"; - sha256 = "0vgzqnd27ab48rc6mb8hqhr8yk0qf8ygz0mgbhz4aswwk08dm0k0"; - name = "konsole-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/konsole-15.11.90.tar.xz"; + sha256 = "1xh5sw0qdffxs7rbxpai25p4ri7pf6n69c9f9d6zkrpwqrnbnyvn"; + name = "konsole-15.11.90.tar.xz"; }; }; kontactinterface = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kontactinterface-15.11.80.tar.xz"; - sha256 = "0ywjvwx3y007mi1g0r9gq1vrcqdfgipk5jralxb91mzxrml2af8a"; - name = "kontactinterface-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kontactinterface-15.11.90.tar.xz"; + sha256 = "10lzs4pwcqhd58mpgiayi0z24x03z21fz1k56di37c40p829v50m"; + name = "kontactinterface-15.11.90.tar.xz"; }; }; kopete = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kopete-15.11.80.tar.xz"; - sha256 = "0jk39agyl9nx4gkwff23aiq3lmnaz4w9xcfbhm906p7072ma82zj"; - name = "kopete-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kopete-15.11.90.tar.xz"; + sha256 = "0f8xazwhvi7jarx4rnlw9sggvdy9a02577919f5prvm7cp29k0g8"; + name = "kopete-15.11.90.tar.xz"; }; }; kpat = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kpat-15.11.80.tar.xz"; - sha256 = "07vchzgf5g92g6zf9slg3x0166fs9s6imysvs2lhin9adwawpbfj"; - name = "kpat-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kpat-15.11.90.tar.xz"; + sha256 = "09fpnss71xg62crm6vw6iw16p7z6x8d39jn8ydwzp9dqw351x0dq"; + name = "kpat-15.11.90.tar.xz"; }; }; kpimtextedit = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kpimtextedit-15.11.80.tar.xz"; - sha256 = "1lx2a183p97ixx65f4aqn0k5avb124sm2rzgpj5mjnhqwxfc3fs7"; - name = "kpimtextedit-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kpimtextedit-15.11.90.tar.xz"; + sha256 = "06zicz9d0807vmqyryv19wmgnw2w2nvfrsp7ca74mzybi9j18rvh"; + name = "kpimtextedit-15.11.90.tar.xz"; }; }; kppp = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kppp-15.11.80.tar.xz"; - sha256 = "1j2kyp3jagp2grhbp5hcszq7h3lz43x8k2mfh5cahfkkzn88yqws"; - name = "kppp-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kppp-15.11.90.tar.xz"; + sha256 = "1q332n00fak1jz3ksn1fnyvyi9mz80h9ylzgn8r9mr7v7lpz5x3r"; + name = "kppp-15.11.90.tar.xz"; }; }; kqtquickcharts = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kqtquickcharts-15.11.80.tar.xz"; - sha256 = "1ssbljhwj5idci7z9hd70pv7b7bmrc87x4k0fxpqayclgwi0iijf"; - name = "kqtquickcharts-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kqtquickcharts-15.11.90.tar.xz"; + sha256 = "1slyjj7np7k70ddrnw6clqzpwfdci722vsgxzwsripgwcdk7915x"; + name = "kqtquickcharts-15.11.90.tar.xz"; }; }; krdc = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/krdc-15.11.80.tar.xz"; - sha256 = "1vhd01zf8w8555pp6b5d9vn92y0nm4r4cksiwvklqsrlv4p3yscc"; - name = "krdc-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/krdc-15.11.90.tar.xz"; + sha256 = "0qsm3m8ry07lkqkbbk5wy2b7vnaamdmgqvcbv193fnj2w62gcfmi"; + name = "krdc-15.11.90.tar.xz"; }; }; kremotecontrol = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kremotecontrol-15.11.80.tar.xz"; - sha256 = "19hmq74nx074h5vhdcxkdqqdz58vkwpspc3dbyk8lypwd28xb09d"; - name = "kremotecontrol-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kremotecontrol-15.11.90.tar.xz"; + sha256 = "0kapm1kmr4pwy4qaz4rsh22rji4w9nz2a79gmzcdkq51srs6iv7f"; + name = "kremotecontrol-15.11.90.tar.xz"; }; }; kreversi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kreversi-15.11.80.tar.xz"; - sha256 = "1zd3lds1rrvbwxrv7qm2pm4pb0ki8szzv1bxpf18kywvw6kb40cr"; - name = "kreversi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kreversi-15.11.90.tar.xz"; + sha256 = "0swmh832irdg1dxdy0kvvn2ph4ic9yis15v3bf95rl0vbhz3892w"; + name = "kreversi-15.11.90.tar.xz"; }; }; krfb = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/krfb-15.11.80.tar.xz"; - sha256 = "10873di286pgzadlrz4c96b4j2kajxin2wmys7y2lbv6cf0vya2i"; - name = "krfb-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/krfb-15.11.90.tar.xz"; + sha256 = "17rj7hgqm0w5s05g35mnsjdp12vxmrx1kzg4iiwa4x74fhhahgcd"; + name = "krfb-15.11.90.tar.xz"; }; }; kross-interpreters = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kross-interpreters-15.11.80.tar.xz"; - sha256 = "0zl0f3gh80inmb2wv1jpsxqd0pqaiaa6hkma756mhgxjb90shz3m"; - name = "kross-interpreters-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kross-interpreters-15.11.90.tar.xz"; + sha256 = "0wbbfxfa7i8brrpah2a3w01jljwlfpznbw1biayq4m2wh4s1zfbc"; + name = "kross-interpreters-15.11.90.tar.xz"; }; }; kruler = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kruler-15.11.80.tar.xz"; - sha256 = "188mya8phcjlp1a8cf2mkkmrg38bwgclgqm36wk181f03cvrqwhi"; - name = "kruler-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kruler-15.11.90.tar.xz"; + sha256 = "1frrinlkc9pp7y99jf5xlrzphh00i68jdxpgkqjfmsdf1ifm3xp1"; + name = "kruler-15.11.90.tar.xz"; }; }; ksaneplugin = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksaneplugin-15.11.80.tar.xz"; - sha256 = "1n42i649vcgmv80vacvf1xwa99ay1sz1csi6jc1y09qk83cwdfpa"; - name = "ksaneplugin-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksaneplugin-15.11.90.tar.xz"; + sha256 = "1vkbbpack87rg20ab4byp8hgwgi7dws375lk6pkx29gq091blnby"; + name = "ksaneplugin-15.11.90.tar.xz"; }; }; kscd = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kscd-15.11.80.tar.xz"; - sha256 = "1xgb7qvqhg9mlxi09ggqs2l6ybs6wilabp6hbzk1r1zqf44fvvh1"; - name = "kscd-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kscd-15.11.90.tar.xz"; + sha256 = "1c7rq1p7n2p15yl21x9pmd80w3b7zl4k839jw8i02aidllbkm252"; + name = "kscd-15.11.90.tar.xz"; }; }; kshisen = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kshisen-15.11.80.tar.xz"; - sha256 = "0wzran4wdb4zjf4qzj08hzzf3mqzi6dds0yhfv2mwwpw59bba2y4"; - name = "kshisen-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kshisen-15.11.90.tar.xz"; + sha256 = "0hl0xbf6s44rjwk34kvm4l2i91w4yd60pcxc7hqc9aq5mwmdxwqn"; + name = "kshisen-15.11.90.tar.xz"; }; }; ksirk = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksirk-15.11.80.tar.xz"; - sha256 = "0ciab5mxqli299x084cig8vrlxsirzjvqxzmvk6pz0jf4g8jl797"; - name = "ksirk-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksirk-15.11.90.tar.xz"; + sha256 = "0wpjwp5p9hna0n3dp5x0pjx18pq16vvhmq84sbar7qm289v5j6si"; + name = "ksirk-15.11.90.tar.xz"; }; }; ksnakeduel = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksnakeduel-15.11.80.tar.xz"; - sha256 = "1p0fcjm06a9klb9hrclxs5jskflfb5c3ix7w3b23ql1798nml4f3"; - name = "ksnakeduel-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksnakeduel-15.11.90.tar.xz"; + sha256 = "020sm6vff3zx36cx8h24y51a8r68h2h354j4p33wanmj8w3lsjdy"; + name = "ksnakeduel-15.11.90.tar.xz"; }; }; kspaceduel = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kspaceduel-15.11.80.tar.xz"; - sha256 = "116bjbp5771p6plvamd8iybnj3cx2xi07qhrd2ky8jbxrbbzvmya"; - name = "kspaceduel-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kspaceduel-15.11.90.tar.xz"; + sha256 = "0hs4yxp3zhxhrlq3wrl0kgiamwlamyyd70h5xpqcvl8kfqavggik"; + name = "kspaceduel-15.11.90.tar.xz"; }; }; ksquares = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksquares-15.11.80.tar.xz"; - sha256 = "0k3h1r5h8bdvs7sk39nh371pdibgl8xmgp3w0xj95q3ya6587zqg"; - name = "ksquares-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksquares-15.11.90.tar.xz"; + sha256 = "0zqb0xlmp3k9s0i6iyd55dp99z2vglnjnwib49vrkh0rmbq3xcn9"; + name = "ksquares-15.11.90.tar.xz"; }; }; kstars = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kstars-15.11.80.tar.xz"; - sha256 = "1djzvsk91hpxlnmymn1148lr9kdyvwsn2krfrs8wg3f2wy20shjr"; - name = "kstars-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kstars-15.11.90.tar.xz"; + sha256 = "0c5fx1z83plfkimnh7ykfq8a0zvivfbpw6j2m4ssi0bxlan9kphd"; + name = "kstars-15.11.90.tar.xz"; }; }; ksudoku = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksudoku-15.11.80.tar.xz"; - sha256 = "0cv9ax2iarz5fy46jp53sgmqw58maasnmp8zky8sm0xz4slphcmq"; - name = "ksudoku-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksudoku-15.11.90.tar.xz"; + sha256 = "0qf7ia9pq6pv2hpwx4zs21w6bx38c9kman6i7qrbs09fd6chndf9"; + name = "ksudoku-15.11.90.tar.xz"; }; }; ksystemlog = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksystemlog-15.11.80.tar.xz"; - sha256 = "0iah8676h10y5dlw4n9qxy0kxp7n7wzwkvkgvmxzapzvxly2jpdl"; - name = "ksystemlog-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ksystemlog-15.11.90.tar.xz"; + sha256 = "1flpy7sssbl5mn0gzpx2053wncylj6ak89jx6gsldq16w5yf7qhr"; + name = "ksystemlog-15.11.90.tar.xz"; }; }; kteatime = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kteatime-15.11.80.tar.xz"; - sha256 = "0ylkhi0i3w7m4jn3bdvnq0wvamj546mk4dggd4ivkwbbf1csbwi2"; - name = "kteatime-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kteatime-15.11.90.tar.xz"; + sha256 = "07zpjx4nilp3ldnbh9rx8y70xdpbjfhrdc2drg87z2ywrf8kmv64"; + name = "kteatime-15.11.90.tar.xz"; }; }; ktimer = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktimer-15.11.80.tar.xz"; - sha256 = "0jv5xzpczwz6mrp2dpynq5bfa90my6pdrndjrz7qa09g9zi9k0wk"; - name = "ktimer-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktimer-15.11.90.tar.xz"; + sha256 = "0xgkan0a4gz37vqby8hjra0jylma8l586dr38gf8blm8vc4qw58g"; + name = "ktimer-15.11.90.tar.xz"; }; }; ktnef = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktnef-15.11.80.tar.xz"; - sha256 = "0s1x877vrzhjyxvm317i0xyc589awkfgyq6cp3yjr3sdyb21bklr"; - name = "ktnef-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktnef-15.11.90.tar.xz"; + sha256 = "136hb86lp4qd9kzm63876gf9wllqh6mkciqq9lflrc1f4csy3h3l"; + name = "ktnef-15.11.90.tar.xz"; }; }; ktouch = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktouch-15.11.80.tar.xz"; - sha256 = "1ys3flgmwqryvk39b8405gf2v8qdj9prz7iz9kx0ncb353fz1fd0"; - name = "ktouch-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktouch-15.11.90.tar.xz"; + sha256 = "0fa2zlk1546xgv5q9nbcymfpizrppllla1yhm46fh1rrhxv8spaw"; + name = "ktouch-15.11.90.tar.xz"; }; }; ktp-accounts-kcm = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-accounts-kcm-15.11.80.tar.xz"; - sha256 = "0kdc96lxzyp7gc9iva6q0dawcw1naw0rdzmcvr254dvk5pwz8wcq"; - name = "ktp-accounts-kcm-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-accounts-kcm-15.11.90.tar.xz"; + sha256 = "1gcj320221h7b3c20vcpbgqpgw61zfw3zf9ryl1b3cxdfnvqnzzl"; + name = "ktp-accounts-kcm-15.11.90.tar.xz"; }; }; ktp-approver = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-approver-15.11.80.tar.xz"; - sha256 = "03f39h4ppwy92w18wn2n4m5gwiryahj49nmbcsfhvha0va0892fa"; - name = "ktp-approver-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-approver-15.11.90.tar.xz"; + sha256 = "1gi72mj8p9rq051hdj574mr51445nzl3wpcb2az145igbdyh97d4"; + name = "ktp-approver-15.11.90.tar.xz"; }; }; ktp-auth-handler = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-auth-handler-15.11.80.tar.xz"; - sha256 = "0wcz1wjz2r3r86cfvp2wyfcbnvar0alyil7zv8hizzyickwsb3y7"; - name = "ktp-auth-handler-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-auth-handler-15.11.90.tar.xz"; + sha256 = "042p5s416a4208wksvqzhh2cwxncgh0vljp45i2isy7bcxdcqnan"; + name = "ktp-auth-handler-15.11.90.tar.xz"; }; }; ktp-common-internals = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-common-internals-15.11.80.tar.xz"; - sha256 = "1gq6mpa0mrfyiv9kiyy39fh28xvwj9vivn3p8nhx5zmai37l5ds4"; - name = "ktp-common-internals-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-common-internals-15.11.90.tar.xz"; + sha256 = "0lxd4brfv1ib9y9pgs5dig18pmsqpj9php785xj2n3lpqjjmyw9z"; + name = "ktp-common-internals-15.11.90.tar.xz"; }; }; ktp-contact-list = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-contact-list-15.11.80.tar.xz"; - sha256 = "14az86dv3jmb5x26vgn2wqnys77nz9rjscp6n6hvpqcyp6g5h075"; - name = "ktp-contact-list-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-contact-list-15.11.90.tar.xz"; + sha256 = "1x40rx4xhcznhhhb0lmr860hdspr0jj5kjd8kl9si2rb8355ddpq"; + name = "ktp-contact-list-15.11.90.tar.xz"; }; }; ktp-contact-runner = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-contact-runner-15.11.80.tar.xz"; - sha256 = "0qp7mgn46favlz1a9xv9rv4pbykmc5m5csv3mbrq6pndpihdfbxq"; - name = "ktp-contact-runner-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-contact-runner-15.11.90.tar.xz"; + sha256 = "0fshmq6m3w3srwzy42p4sxl6ha94950b4mz7jv9gijr6z9gjm4hf"; + name = "ktp-contact-runner-15.11.90.tar.xz"; }; }; ktp-desktop-applets = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-desktop-applets-15.11.80.tar.xz"; - sha256 = "1l6z58g0p5xlc0l9z9xgkw3sv7jx4kdwp8jpx1v8m513r8szfwgg"; - name = "ktp-desktop-applets-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-desktop-applets-15.11.90.tar.xz"; + sha256 = "1nn1kmx6dxcpfra98d9nk9y942s0jcivl35fx4r1wwa33ky33sch"; + name = "ktp-desktop-applets-15.11.90.tar.xz"; }; }; ktp-filetransfer-handler = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-filetransfer-handler-15.11.80.tar.xz"; - sha256 = "019h5q83593yg2mgknv8yzfq3bl2vjfkf0dwv7mb6ykf6bsb9630"; - name = "ktp-filetransfer-handler-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-filetransfer-handler-15.11.90.tar.xz"; + sha256 = "0mq5s3fwb865jd0a6yw0cvipbia2bnhqs1h9ybsxs03q9ywwdfnk"; + name = "ktp-filetransfer-handler-15.11.90.tar.xz"; }; }; ktp-kded-module = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-kded-module-15.11.80.tar.xz"; - sha256 = "1mf9mya8r6lrmbr26pdp9d7hdp1irsba46zlr859hjl6pqa10i3b"; - name = "ktp-kded-module-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-kded-module-15.11.90.tar.xz"; + sha256 = "1mrrx8kl5i7gcb21mqy18iycz34hdzlg236hgk3pbv7ykwrwxibq"; + name = "ktp-kded-module-15.11.90.tar.xz"; }; }; ktp-send-file = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-send-file-15.11.80.tar.xz"; - sha256 = "1d265x89854xvxdxqa9z37r6m13kiplawkxq5l4cy5hlwmvp3ivm"; - name = "ktp-send-file-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-send-file-15.11.90.tar.xz"; + sha256 = "0kfh389zwp8ckkjcs24ffzmxhzxb73jdpcjd9iyb0xzrhc2n8gpl"; + name = "ktp-send-file-15.11.90.tar.xz"; }; }; ktp-text-ui = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-text-ui-15.11.80.tar.xz"; - sha256 = "0mixwwqwx4z8m0kaj0wfn5zczq08w18ascl9r78mvx6p1946m86q"; - name = "ktp-text-ui-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktp-text-ui-15.11.90.tar.xz"; + sha256 = "1jx9s356z2yrz9ir6xhf7qyllnr2yqby9cpchsb5fkhy4g4dfs6j"; + name = "ktp-text-ui-15.11.90.tar.xz"; }; }; ktuberling = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktuberling-15.11.80.tar.xz"; - sha256 = "1gpsimdx0l9ml9f8nfqbqm2jmj60w3bni1s23iyc62b96pazx9a4"; - name = "ktuberling-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/ktuberling-15.11.90.tar.xz"; + sha256 = "0im0qypwysznjgam115bnqbqsa0rk2z29mwh173lv4gy6dpiyrl4"; + name = "ktuberling-15.11.90.tar.xz"; }; }; kturtle = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kturtle-15.11.80.tar.xz"; - sha256 = "13z9rsk0ikg1q312wkag8njgw5921nhfmd57bdfa6p0w971wndm4"; - name = "kturtle-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kturtle-15.11.90.tar.xz"; + sha256 = "1hqp0cdk2gjrfyjwqmd7r4d8ghwwvz61z6yal8bwidam3dll6p63"; + name = "kturtle-15.11.90.tar.xz"; }; }; kubrick = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kubrick-15.11.80.tar.xz"; - sha256 = "11kccqc8vs6cvwzabq80bwyn4f1qypln807m7xx5g3p07qzplc28"; - name = "kubrick-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kubrick-15.11.90.tar.xz"; + sha256 = "0w3184cv8qi0q61ba8hlkj05vbzgpi3rl5sfqyk3wv86vl7vr31d"; + name = "kubrick-15.11.90.tar.xz"; }; }; kuser = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kuser-15.11.80.tar.xz"; - sha256 = "0ima6v48i0cd1kizadla6zm40hdmdp3b4phq8lmai1vqhy9890h8"; - name = "kuser-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kuser-15.11.90.tar.xz"; + sha256 = "18033k08p9qmzg1q4s9wi4rv1kb4c19byvkylmkgab48i2ksp946"; + name = "kuser-15.11.90.tar.xz"; }; }; kwalletmanager = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kwalletmanager-15.11.80.tar.xz"; - sha256 = "1fg9qjlb12wnxrdz9f6yvvs4ybwwwp3n73nsmq6igms2rw00ixaf"; - name = "kwalletmanager-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kwalletmanager-15.11.90.tar.xz"; + sha256 = "0h9a2jy4sbpys3frx55gi1zj8r5ysg55lj2bckmd6f3pk9z7h38b"; + name = "kwalletmanager-15.11.90.tar.xz"; }; }; kwordquiz = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kwordquiz-15.11.80.tar.xz"; - sha256 = "00pv1q2d0ccihwbvsk51hblzc2vvnw81lrla7a77bdgk266b2q3c"; - name = "kwordquiz-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/kwordquiz-15.11.90.tar.xz"; + sha256 = "1zlq2m2y3z2s1rw74gb7rgwrin4i449z3vqdglgxq6376rzffvx7"; + name = "kwordquiz-15.11.90.tar.xz"; }; }; libkcddb = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkcddb-15.11.80.tar.xz"; - sha256 = "0dm8vi0h84zm84jjqrlgpc5n8shwlipd3dmm3ndl31jx3wmm4cca"; - name = "libkcddb-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkcddb-15.11.90.tar.xz"; + sha256 = "0dsnfkhmwvhp56adh07r1pl3m7045na9xmz065ykmnfb8s4czqyv"; + name = "libkcddb-15.11.90.tar.xz"; }; }; libkcompactdisc = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkcompactdisc-15.11.80.tar.xz"; - sha256 = "0q6yvjzjlkc5pmjqrxphk4n7va6hcr903vkamvnbhn559qv3j11x"; - name = "libkcompactdisc-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkcompactdisc-15.11.90.tar.xz"; + sha256 = "1rbhv1fl423swl93sm9vgmqvx1sd3m0337jcjdch3siw3wl1wfff"; + name = "libkcompactdisc-15.11.90.tar.xz"; }; }; libkdcraw = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdcraw-15.11.80.tar.xz"; - sha256 = "1s7cz3wh4066wyixbzvczba94v5fizwmcnl6waazgnabr8djy75r"; - name = "libkdcraw-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkdcraw-15.11.90.tar.xz"; + sha256 = "0lsk89rdx9awsh4mv3m93z0556bmxb1yk68c6aqhryz2ggl6xkld"; + name = "libkdcraw-15.11.90.tar.xz"; }; }; libkdeedu = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdeedu-15.11.80.tar.xz"; - sha256 = "0xmfv692x6s6c350l324mi69512sbmqscx26hv3827sm02lxi3nj"; - name = "libkdeedu-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkdeedu-15.11.90.tar.xz"; + sha256 = "13w3ar3lklbpzd4mg77hab1hqs30jxn5avfr841chp5wpdlr38l1"; + name = "libkdeedu-15.11.90.tar.xz"; }; }; libkdegames = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdegames-15.11.80.tar.xz"; - sha256 = "1pkl30ijnbmzc8gs1ib5l7qvmnb2a59smakaipji2n6pcik5xdi5"; - name = "libkdegames-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkdegames-15.11.90.tar.xz"; + sha256 = "1rswaag39jy2qvr1c5p41crr3151i6wqrfrscvf3zgbfs33vgmv7"; + name = "libkdegames-15.11.90.tar.xz"; }; }; libkeduvocdocument = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkeduvocdocument-15.11.80.tar.xz"; - sha256 = "0p7mbw5xm7ywrz36rs8xpcnjm4w844jgjcciv0r4qwbpvcxm38kh"; - name = "libkeduvocdocument-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkeduvocdocument-15.11.90.tar.xz"; + sha256 = "1gvrj0sw7v976r449q05i6syvcadcmbfvs51kbrz30dfshjlddrk"; + name = "libkeduvocdocument-15.11.90.tar.xz"; }; }; libkexiv2 = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkexiv2-15.11.80.tar.xz"; - sha256 = "0pis24db80l9w62v6axy9137rdgpsdlfrzf9k3yi63x0qs037k5c"; - name = "libkexiv2-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkexiv2-15.11.90.tar.xz"; + sha256 = "1kwcxjqds68f37rml334swk0aawla0hia4bzyaf57yhwzd1v9vcj"; + name = "libkexiv2-15.11.90.tar.xz"; }; }; libkface = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkface-15.11.80.tar.xz"; - sha256 = "0mr52fn3j71y0qaxn4wdz7lrk8ylmlj965jvilgzpnf97jdhy8bc"; - name = "libkface-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkface-15.11.90.tar.xz"; + sha256 = "071nc8vr7rwwkfzcsmldqj2ycgn5y1mq990w21rf6i0iizilqsd9"; + name = "libkface-15.11.90.tar.xz"; }; }; libkgeomap = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkgeomap-15.11.80.tar.xz"; - sha256 = "1nwzakm5njilqpa7fslgz4gcy02b1kzhnrckm867qavn8qmy0j56"; - name = "libkgeomap-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkgeomap-15.11.90.tar.xz"; + sha256 = "0is45slxb3arkrr1w56bc3ynvvdmlm8am92gpyl5pv915l4d4lbb"; + name = "libkgeomap-15.11.90.tar.xz"; }; }; libkipi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkipi-15.11.80.tar.xz"; - sha256 = "1qmpbrmpm8hbrfwjihpg3gks177cvwc99rmb9bvphi2q8xg49xzn"; - name = "libkipi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkipi-15.11.90.tar.xz"; + sha256 = "1kfyci0w2dxdsshkak1xffh7zy32j08p64i8nvfzmc92zrj1h1j4"; + name = "libkipi-15.11.90.tar.xz"; }; }; libkmahjongg = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkmahjongg-15.11.80.tar.xz"; - sha256 = "192az0z4hwqcn8j02g17fxc44blv615vn345svrxbmxinr1cc18q"; - name = "libkmahjongg-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkmahjongg-15.11.90.tar.xz"; + sha256 = "1lmdjcmx495c8f6idwxjjqdyzq4xlfdij6dmxqbnbjx4l398116r"; + name = "libkmahjongg-15.11.90.tar.xz"; }; }; libkomparediff2 = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkomparediff2-15.11.80.tar.xz"; - sha256 = "1zv6y7j4dna6m51xqs0i3sjd3xxy7bqb8jwrqpjls2fy4x55cnv2"; - name = "libkomparediff2-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libkomparediff2-15.11.90.tar.xz"; + sha256 = "0xdbxzvfbn84gd70zabyvpq63szjxh1zbrdr46ahnh29m2cdk4x2"; + name = "libkomparediff2-15.11.90.tar.xz"; }; }; libksane = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libksane-15.11.80.tar.xz"; - sha256 = "1ljqv14x29pqzm7nd7rg3p447q188m1266b2sgvyrpvgg340ynrp"; - name = "libksane-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/libksane-15.11.90.tar.xz"; + sha256 = "013h5lx93lz2n9il53dxaxx31n62vlmc884wfi40igkksbg5hm3v"; + name = "libksane-15.11.90.tar.xz"; }; }; lokalize = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/lokalize-15.11.80.tar.xz"; - sha256 = "0n6mg6r3hlm9m19kbw2nrfimjhvf23l33wcfwdb66hq05z5fqacz"; - name = "lokalize-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/lokalize-15.11.90.tar.xz"; + sha256 = "0aw9j7fhni6wrkffjrv8biwsc85mzmcyx7fsm96whwf8xhcs8whp"; + name = "lokalize-15.11.90.tar.xz"; }; }; lskat = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/lskat-15.11.80.tar.xz"; - sha256 = "0c30dcsydvzc469gxbv0y0g1v9mg745ajng18sv9jrsgrc9594vv"; - name = "lskat-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/lskat-15.11.90.tar.xz"; + sha256 = "1n6dmc7vlq9n6wix9fbfnbixjikzpg4hzcqiz8q28qs3lv9kcmxs"; + name = "lskat-15.11.90.tar.xz"; }; }; marble = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/marble-15.11.80.tar.xz"; - sha256 = "1ks031ypb4himg0jiw1vql0isli1hyaz7kmagvby4il7cw4gdgf3"; - name = "marble-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/marble-15.11.90.tar.xz"; + sha256 = "0xxf7s36m5p88y0xs44j4fn867dfj0qzvhfaqp9drhwc604f4l2i"; + name = "marble-15.11.90.tar.xz"; }; }; mplayerthumbs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/mplayerthumbs-15.11.80.tar.xz"; - sha256 = "0snn5jmpsyczxxyfp5ka5mkymldy7pjb2jqjc092aci6w1mmkvsd"; - name = "mplayerthumbs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/mplayerthumbs-15.11.90.tar.xz"; + sha256 = "181brlsn21wyzjhb7krf6dx23n8fc2vbzxjz42v13lpvidzw85dk"; + name = "mplayerthumbs-15.11.90.tar.xz"; }; }; okteta = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/okteta-15.11.80.tar.xz"; - sha256 = "06334p934fyajaqg7pz8wqyzcmghymhanfnyz6y1cqaqrkf16n0s"; - name = "okteta-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/okteta-15.11.90.tar.xz"; + sha256 = "1l0bpv2xv4l0ccddwg751lg91d9d4bsx3ri1ljp248rw1phgzhjl"; + name = "okteta-15.11.90.tar.xz"; }; }; okular = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/okular-15.11.80.tar.xz"; - sha256 = "0ny8r7shnl7qjdzb0m9rmcq3y7scpfycxz7rcxv8x52v0vqkqgh8"; - name = "okular-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/okular-15.11.90.tar.xz"; + sha256 = "0cismifga8difq4s5xxh05cjwfck6a2v3qmijrndy4s442cyhlr6"; + name = "okular-15.11.90.tar.xz"; }; }; palapeli = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/palapeli-15.11.80.tar.xz"; - sha256 = "02w0m3piw15x0bmkh6ap6il13yj5r0kszwrq47k6ildl96a0zbdd"; - name = "palapeli-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/palapeli-15.11.90.tar.xz"; + sha256 = "09vihdgm05kd61mgwdy50l6ir7s3knngfm3ywf6l6q40bsv3caz4"; + name = "palapeli-15.11.90.tar.xz"; }; }; parley = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/parley-15.11.80.tar.xz"; - sha256 = "06na0w14f5r322ybn38qal57arrjv3brlbmlb4bw196467cw773i"; - name = "parley-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/parley-15.11.90.tar.xz"; + sha256 = "08wzvdkhrj8mp38dl0r2n56xi4vcgbsxsfbislfk1b5c5dkzm00d"; + name = "parley-15.11.90.tar.xz"; }; }; picmi = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/picmi-15.11.80.tar.xz"; - sha256 = "1m5b0ziz0pa7j5awis78brx1dsp8rwpg08lbkjvr09l20xb0n0mj"; - name = "picmi-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/picmi-15.11.90.tar.xz"; + sha256 = "1w19b3c566p8gsz94gl9ld2f0ck6izaq84rcirmkiah5yg2hjxvi"; + name = "picmi-15.11.90.tar.xz"; }; }; poxml = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/poxml-15.11.80.tar.xz"; - sha256 = "1p7h7q0dgynyd1187bgavfbpgn2g8km8rf8gzwya7wn8nz152xff"; - name = "poxml-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/poxml-15.11.90.tar.xz"; + sha256 = "1gcih023rdjabx061vqc0hrjnbyqpwx8wrcjaznwdl42kmkjbdjn"; + name = "poxml-15.11.90.tar.xz"; }; }; print-manager = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/print-manager-15.11.80.tar.xz"; - sha256 = "102h4h4qk0hnkak1sh5bmbvhnrr2bhrsqs45j1zyql0na63b5gy1"; - name = "print-manager-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/print-manager-15.11.90.tar.xz"; + sha256 = "0ayl181d507yfgr1cqb49ih5394hjqm3kda59217jg0q9cjnfclc"; + name = "print-manager-15.11.90.tar.xz"; }; }; rocs = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/rocs-15.11.80.tar.xz"; - sha256 = "0i05lsvzbcsxqr70a2xsdgq6j5xcbm54g4jw0ifh3jvpr0yrmgb4"; - name = "rocs-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/rocs-15.11.90.tar.xz"; + sha256 = "1mpnk6bazn3255fi0q5licq5gggwb8vgwnq35l16h6fl8v92fd43"; + name = "rocs-15.11.90.tar.xz"; }; }; signon-kwallet-extension = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/signon-kwallet-extension-15.11.80.tar.xz"; - sha256 = "0crq69px0gbcw7h6bgbjad35djh3lm9jniblj6avkz8plj0j16z5"; - name = "signon-kwallet-extension-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/signon-kwallet-extension-15.11.90.tar.xz"; + sha256 = "0l532904s209r9667vb566gm64z4ij7pzkr9m4x8hgk0cj72pygx"; + name = "signon-kwallet-extension-15.11.90.tar.xz"; }; }; spectacle = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/spectacle-15.11.80.tar.xz"; - sha256 = "1p39qxr67iy6lda2j9ar0aq1sg29gp9ds29aqbs3rx9m56rn8h6q"; - name = "spectacle-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/spectacle-15.11.90.tar.xz"; + sha256 = "16d6rg6fi5myb8hndj6xdcpwk8km4dnwqz2i5mfxzs29v2lgwmwl"; + name = "spectacle-15.11.90.tar.xz"; }; }; step = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/step-15.11.80.tar.xz"; - sha256 = "0ggm9rqzjw1aljhmxnc6n428zkp0c1ik3lldaxi576z5ipvvgwnd"; - name = "step-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/step-15.11.90.tar.xz"; + sha256 = "05dik7s4g0amw4bxk3kmfc19yfvd24qd1yxvs9w68bwdsikwwxix"; + name = "step-15.11.90.tar.xz"; }; }; svgpart = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/svgpart-15.11.80.tar.xz"; - sha256 = "0fq69li2z2nqj0xrsd010d9gfpc39r8k5fxbzlfravi12big0yhk"; - name = "svgpart-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/svgpart-15.11.90.tar.xz"; + sha256 = "0pcb32bpp97iwa3cg4m0wcgsw6zvh00mgl5bmp7kildlsj5nal0c"; + name = "svgpart-15.11.90.tar.xz"; }; }; sweeper = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/sweeper-15.11.80.tar.xz"; - sha256 = "1yw1f1j2qzzpqzr3iz0fyi8kmd369i94gx0njv2iqm1jakk1hqfc"; - name = "sweeper-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/sweeper-15.11.90.tar.xz"; + sha256 = "1w3s7j0djggmlwgh5874n58ni8sx8dc348qm792p068d661mn1qz"; + name = "sweeper-15.11.90.tar.xz"; }; }; syndication = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/syndication-15.11.80.tar.xz"; - sha256 = "06y5wz7asa4f1a7j7arhggwyv5cikn52d0h38ybxa9vjcmkn5nw5"; - name = "syndication-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/syndication-15.11.90.tar.xz"; + sha256 = "0f4bp5clqkl5kylz7agr85xazpvs83vmhk4qrkjz0brwfy9k9n8s"; + name = "syndication-15.11.90.tar.xz"; }; }; umbrello = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/umbrello-15.11.80.tar.xz"; - sha256 = "1kpag8f6r3cfp77z8lb8hbpq2djqg718bs6hs8wi99y2zy85xwr6"; - name = "umbrello-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/umbrello-15.11.90.tar.xz"; + sha256 = "02byr3977hdckjps8460rjgaz7fs2rbbfki1mds0h6b1ih2nwwmf"; + name = "umbrello-15.11.90.tar.xz"; }; }; zeroconf-ioslave = { - version = "15.11.80"; + version = "15.11.90"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/zeroconf-ioslave-15.11.80.tar.xz"; - sha256 = "1kpahrs8p9l52hgkm3whryvwcbw9fzn4l4yxq93ijzac0m8gpqwr"; - name = "zeroconf-ioslave-15.11.80.tar.xz"; + url = "${mirror}/unstable/applications/15.11.90/src/zeroconf-ioslave-15.11.90.tar.xz"; + sha256 = "0ldbdfhmzf58is7ygs10if2kjajw77ngaiq7qgvz7b97ssvl8xm3"; + name = "zeroconf-ioslave-15.11.90.tar.xz"; }; }; } From 623a117bdd6491cb81ca7504c19d0fa2fd785af3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 17:25:56 -0600 Subject: [PATCH 079/707] makeDesktopItem: add StartupNotify key --- pkgs/build-support/make-desktopitem/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/make-desktopitem/default.nix b/pkgs/build-support/make-desktopitem/default.nix index 1a03faae54c..d4baf17adf1 100644 --- a/pkgs/build-support/make-desktopitem/default.nix +++ b/pkgs/build-support/make-desktopitem/default.nix @@ -9,6 +9,7 @@ , genericName , mimeType ? "" , categories ? "Application;Other;" +, startupNotify ? null }: stdenv.mkDerivation { @@ -26,6 +27,8 @@ stdenv.mkDerivation { GenericName=${genericName} MimeType=${mimeType} Categories=${categories} - EOF + ${if startupNotify == null then ''EOF'' else '' + StartupNotify=${startupNotify} + EOF''} ''; } From 7cdedaaf728ead99294ad6995133e380d8e453fc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 17:26:41 -0600 Subject: [PATCH 080/707] dropbox: use fields from upstream's desktop item --- pkgs/applications/networking/dropbox/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 7a615277d2c..69ebdb429ff 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -45,10 +45,11 @@ let desktopItem = makeDesktopItem { name = "dropbox"; exec = "dropbox"; - comment = "Online directories"; + comment = "Sync your files across computers and to the web"; desktopName = "Dropbox"; - genericName = "Online storage"; - categories = "Application;Internet;"; + genericName = "File Synchronizer"; + categories = "Network;FileTransfer;"; + startupNotify = "false"; }; in stdenv.mkDerivation { From 02b568414d509b5d06dbd95bcc0868d487ed359e Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 12 Dec 2015 23:40:11 +0100 Subject: [PATCH 081/707] nixos/test-instrumentation: Set vm.min_free_kbytes We hit page allocation failures a lot at random for VM tests, in case of my own Hydra when it comes to the installer tests. The reason for this is that once the memory of the VM gets heavily fragmented the kernel is unable to allocate new pages. Setting vm.min_free_kbytes to 16MB forces the kernel to keep a minimum of 16 MB free. I've done some testing accross repeated runs of the installer tests with and without vm.min_free_kbytes set. So accross 30 test runs for each settings, all of the tests with the option being set passed while 14 tests without that sysctl option triggered page allocation failures. Sure, running 30 tests is not a guarantee that 16MB is enough, but we'll see how it turns out in the long run across all VM tests. Signed-off-by: aszlig --- nixos/modules/testing/test-instrumentation.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix index f37bbd0246d..c1dbfe305dd 100644 --- a/nixos/modules/testing/test-instrumentation.nix +++ b/nixos/modules/testing/test-instrumentation.nix @@ -88,6 +88,10 @@ let kernel = config.boot.kernelPackages.kernel; in boot.consoleLogLevel = 7; + # Make sure we don't hit page allocation failures if the VM's memory is + # heavily fragmented. + boot.kernel.sysctl."vm.min_free_kbytes" = 16384; + # Prevent tests from accessing the Internet. networking.defaultGateway = mkOverride 150 ""; networking.nameservers = mkOverride 150 [ ]; From fb37fc631ae299ed5f2d515b420cef13bb0e2a26 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 13 Dec 2015 05:36:10 +0100 Subject: [PATCH 082/707] systemd: Apply VirtualBox fix for detect-virt. The update is basically just one additional commit, which was an upstream cherry-pick pushed at NixOS/systemd#3 and it fixes systemd-detect-virt with VirtualBox so that services with ConditionVirtualization set to "oracle" will work properly. I've tested this with the "virtualbox" NixOS VM test, which was failing since the update to version 228. Signed-off-by: aszlig --- pkgs/os-specific/linux/systemd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 35bd117f0bb..54c04a8b3f2 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "NixOS"; repo = "systemd"; - rev = "17c30663f79499ad0163c7ffe2c79e5c28525a6f"; - sha256 = "0jyqwqyh7l2qp7k4h83gzzp9bgijz0bx02jhd0063jcl1s2amlnh"; + rev = "e9a321e25fe31f0fd2ec0cc28088172ebf819c7e"; + sha256 = "0cgdnzq60ji7kk27xk4scsjkghgzcms7qlqkz3k1cx3r9c8gszz9"; }; outputs = [ "out" "man" "doc" ]; From f01c56f109fee28b282f7eb71ad0398157986865 Mon Sep 17 00:00:00 2001 From: Echo Nolan Date: Sat, 12 Dec 2015 05:57:38 -0800 Subject: [PATCH 083/707] Remove Echo Nolan from maintainers I'm not using Nix anymore. --- lib/maintainers.nix | 1 - .../browsers/mozilla-plugins/flashplayer-11/default.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 596b8a49a10..d1e2b100ab8 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -93,7 +93,6 @@ elasticdog = "Aaron Bull Schaefer "; ellis = "Ellis Whitehead "; ehmry = "Emery Hemingway "; - enolan = "Echo Nolan "; epitrochoid = "Mabry Cervin "; ericbmerritt = "Eric Merritt "; ericsagnes = "Eric Sagnes "; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index fbf8f95a388..7148764b223 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -91,6 +91,6 @@ stdenv.mkDerivation { description = "Adobe Flash Player browser plugin"; homepage = http://www.adobe.com/products/flashplayer/; license = stdenv.lib.licenses.unfree; - maintainers = [ stdenv.lib.maintainers.enolan ]; + maintainers = []; }; } From 116c230e82427750637e60fe7128c2140fa96a63 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 11:20:57 +0100 Subject: [PATCH 084/707] uritemplate.py: init at 0.3.0 --- pkgs/top-level/python-packages.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6c45c0c4061..dcd31693d03 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18711,6 +18711,23 @@ in modules // { }; }; + uritemplate_py = buildPythonPackage rec { + name = "uritemplate.py-${version}"; + version = "0.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/u/uritemplate.py/${name}.tar.gz"; + sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx"; + }; + + meta = with stdenv.lib; { + homepage = https://github.com/uri-templates/uritemplate-py; + description = "Python implementation of URI Template"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + traceback2 = buildPythonPackage rec { version = "1.4.0"; name = "traceback2-${version}"; From c0b0cab968afed9fd5d9a986c4b7c9ab07b6a357 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 11:30:13 +0100 Subject: [PATCH 085/707] Revert "Merge branch 'master' of github.com:NixOS/nixpkgs" This reverts commit a7f91d751b440c1fbe169379e63e998bc7e2b384, reversing changes made to 54e0a9b7aca6794f5ce66c28f056761961d3d7d9. --- pkgs/top-level/python-packages.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cac9b0ab6b0..0f76a13d6f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19048,23 +19048,6 @@ in modules // { }; }; - uritemplate_py = buildPythonPackage rec { - name = "uritemplate.py-${version}"; - version = "0.3.0"; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/uritemplate.py/${name}.tar.gz"; - sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx"; - }; - - meta = with stdenv.lib; { - homepage = https://github.com/uri-templates/uritemplate-py; - description = "Python implementation of URI Template"; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; - }; - }; - traceback2 = buildPythonPackage rec { version = "1.4.0"; name = "traceback2-${version}"; From 88f9ce0feda8d621dc9e98fbd2aed59c5b7464ee Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 11:44:48 +0100 Subject: [PATCH 086/707] uritemplate.py: init at 0.3.0 --- pkgs/top-level/python-packages.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c79a04b4f36..e4c1920acc9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19073,6 +19073,23 @@ in modules // { }; }; + uritemplate_py = buildPythonPackage rec { + name = "uritemplate.py-${version}"; + version = "0.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/u/uritemplate.py/${name}.tar.gz"; + sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx"; + }; + + meta = with stdenv.lib; { + homepage = https://github.com/uri-templates/uritemplate-py; + description = "Python implementation of URI Template"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + traceback2 = buildPythonPackage rec { version = "1.4.0"; name = "traceback2-${version}"; From dc7d09f6a49ff93738b0ee5dd4af9609202e02ee Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 13 Dec 2015 11:00:21 +0000 Subject: [PATCH 087/707] openssl -> openssl_1_0_1 This renames the current openssl to openssl_1_0_1 and defaults openssl back to openssl_1_0_1 essentially changing nothing currently, but allowing people to explicitly select openssl_1_0_1 for some software which needs ABI compatibility to a specific libssl implementation like binaries (spotify amongst others) and at the same time overriding openssl to another implementation like libressl. --- pkgs/top-level/all-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c728843286b..0f1e5712631 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8025,7 +8025,8 @@ let wolfssl = callPackage ../development/libraries/wolfssl { }; - openssl = callPackage ../development/libraries/openssl { + openssl = openssl_1_0_1; + openssl_1_0_1 = callPackage ../development/libraries/openssl { fetchurl = fetchurlBoot; cryptodevHeaders = linuxPackages.cryptodev.override { fetchurl = fetchurlBoot; From 7d71dda6dee4570064b3f5f8d226280b2755adf5 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 13 Dec 2015 11:59:23 +0000 Subject: [PATCH 088/707] fzf: 1.11.0 -> 1.11.1 --- 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 d20f4ae7549..17da59b353e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -686,10 +686,10 @@ let }; fzf = buildFromGitHub { - rev = "0.11.0"; + rev = "0.11.1"; owner = "junegunn"; repo = "fzf"; - sha256 = "1jcvfdglmrsh7z6lasj2i7l3cwqd0ijhv5ywafmr7m1rn90nj1pf"; + sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text From a4e8b8ef066fed51e2f87ff67e7d46f9f6926e35 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Dec 2015 01:36:52 +0300 Subject: [PATCH 089/707] cdrtools: 3.00 -> 3.02a03 --- .../misc/cdrtools/cdrtools-2.01-install.patch | 13 -------- pkgs/applications/misc/cdrtools/default.nix | 23 ++++++++----- .../misc/cdrtools/fix-paths.patch | 32 +++++++++++++++++++ 3 files changed, 47 insertions(+), 21 deletions(-) delete mode 100644 pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch create mode 100644 pkgs/applications/misc/cdrtools/fix-paths.patch diff --git a/pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch b/pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch deleted file mode 100644 index a8d93d36998..00000000000 --- a/pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ruN cdrtools-2.01/DEFAULTS/Defaults.linux cdrtools-2.01.new/DEFAULTS/Defaults.linux ---- cdrtools-2.01/DEFAULTS/Defaults.linux 2003-02-16 01:01:48.000000000 +0100 -+++ cdrtools-2.01.new/DEFAULTS/Defaults.linux 2005-08-30 21:13:55.000000000 +0200 -@@ -27,7 +27,8 @@ - # Installation config stuff - # - ########################################################################### --INS_BASE= /opt/schily -+#INS_BASE= /opt/schily -+INS_BASE= $(out) - INS_KBASE= / - # - DEFUMASK= 002 diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index 14ab69ebd2f..b83857b6045 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -1,23 +1,30 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, acl, libcap }: stdenv.mkDerivation rec { - name = "cdrtools-3.00"; - - configurePhase = "true"; + name = "cdrtools-3.02a03"; src = fetchurl { url = "mirror://sourceforge/cdrtools/${name}.tar.bz2"; - sha256 = "0ga2fdwn3898jas5mabb6cc2al9acqb2yyzph2w76m85414bd73z"; + sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996"; }; - patches = [ ./cdrtools-2.01-install.patch ]; + patches = [ ./fix-paths.patch ]; - meta = { + buildInputs = [ acl libcap ]; + + configurePhase = "true"; + + GMAKE_NOWARN = true; + + makeFlags = [ "INS_BASE=/" "INS_RBASE=/" "DESTDIR=$(out)" ]; + + meta = with stdenv.lib; { homepage = http://sourceforge.net/projects/cdrtools/; description = "Highly portable CD/DVD/BluRay command line recording software"; # Licensing issues: This package contains code licensed under CDDL, GPL2 # and LGPL2. There is debate regarding the legality of this licensing. # Marked as unfree to avoid any possible legal issues. - license = stdenv.lib.licenses.unfree; + license = licenses.unfree; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/cdrtools/fix-paths.patch b/pkgs/applications/misc/cdrtools/fix-paths.patch new file mode 100644 index 00000000000..f4a54121088 --- /dev/null +++ b/pkgs/applications/misc/cdrtools/fix-paths.patch @@ -0,0 +1,32 @@ +diff -ru3 cdrtools-3.01-old/DEFAULTS/Defaults.linux cdrtools-3.01/DEFAULTS/Defaults.linux +--- cdrtools-3.01-old/DEFAULTS/Defaults.linux 2015-12-11 17:37:21.505848835 +0300 ++++ cdrtools-3.01/DEFAULTS/Defaults.linux 2015-12-11 17:37:32.155828925 +0300 +@@ -57,7 +57,8 @@ + # Installation config stuff + # + ########################################################################### +-INS_BASE= /opt/schily ++#INS_BASE= /opt/schily ++INS_BASE= $(out) + INS_KBASE= / + INS_RBASE= / + # +Only in cdrtools-3.01/DEFAULTS: Defaults.linux.orig +diff -ru3 cdrtools-3.01-old/RULES/rules.prg cdrtools-3.01/RULES/rules.prg +--- cdrtools-3.01-old/RULES/rules.prg 2015-12-11 17:37:21.500848844 +0300 ++++ cdrtools-3.01/RULES/rules.prg 2015-12-11 17:38:29.890720987 +0300 +@@ -43,10 +43,10 @@ + # + #SHELL= /bin/sh + +-LN= /bin/ln +-SYMLINK= /bin/ln -s +-RM= /bin/rm +-MV= /bin/mv ++LN= ln ++SYMLINK= ln -s ++RM= rm ++MV= mv + LORDER= lorder + TSORT= tsort + CTAGS= vctags From 28f8ec1df6aaa8dfdfe736da5fce35bcce92ee79 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Dec 2015 02:53:47 +0300 Subject: [PATCH 090/707] brasero: cleanup --- pkgs/tools/cd-dvd/brasero/default.nix | 33 +++++++++------------------ 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/pkgs/tools/cd-dvd/brasero/default.nix b/pkgs/tools/cd-dvd/brasero/default.nix index d7773b0ba0c..3185242f5ce 100644 --- a/pkgs/tools/cd-dvd/brasero/default.nix +++ b/pkgs/tools/cd-dvd/brasero/default.nix @@ -1,15 +1,11 @@ { stdenv, fetchurl, pkgconfig, gtk3, itstool, gst_all_1, libxml2, libnotify -, libcanberra_gtk3, intltool, gnome3, makeWrapper, dvdauthor, cdrdao -, dvdplusrwtools, cdrtools, libdvdcss }: +, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, cdrdao +, dvdplusrwtools, cdrtools, libdvdcss, wrapGAppsHook }: let major = "3.12"; minor = "0"; - GST_PLUGIN_PATH = stdenv.lib.makeSearchPath "lib/gstreamer-1.0" [ - gst_all_1.gst-plugins-base - gst_all_1.gst-plugins-good - gst_all_1.gst-plugins-bad - gst_all_1.gst-libav ]; + binpath = stdenv.lib.makeSearchPath "bin" [ dvdauthor cdrdao dvdplusrwtools cdrtools ]; in stdenv.mkDerivation rec { version = "${major}.${minor}"; @@ -20,13 +16,12 @@ in stdenv.mkDerivation rec { sha256 = "68fef2699b772fa262d855dac682100dbfea05563a7e4056eff8fe6447aec2fc"; }; - propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard dvdauthor - cdrdao dvdplusrwtools cdrtools ]; + nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook ]; - buildInputs = [ pkgconfig gtk3 itstool libxml2 libnotify libcanberra_gtk3 - intltool gnome3.gsettings_desktop_schemas makeWrapper libdvdcss - gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.dconf - gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad ]; + buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3 libdvdcss + gst_all_1.gstreamer gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-ugly gst_all_1.gst-libav ]; # brasero checks that the applications it uses aren't symlinks, but this # will obviously not work on nix @@ -36,16 +31,10 @@ in stdenv.mkDerivation rec { "--with-girdir=$out/share/gir-1.0" "--with-typelibdir=$out/lib/girepository-1.0" ]; + NIX_CFLAGS_LINK = [ "-ldvdcss" ]; + preFixup = '' - for f in $out/bin/* $out/libexec/*; do - wrapProgram "$f" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ - --prefix GST_PLUGIN_PATH : "${GST_PLUGIN_PATH}" \ - --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" \ - --prefix LD_LIBRARY_PATH : ${libdvdcss}/lib - done - rm $out/share/icons/hicolor/icon-theme.cache + gappsWrapperArgs+=(--prefix PATH : "${binpath}") ''; meta = with stdenv.lib; { From 94a07ab3aebd2677a84b6f1ebfb25b4d5fc2199a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Dec 2015 20:29:18 +0300 Subject: [PATCH 091/707] fmod42416: fix upstream url, use provided Makefile --- pkgs/development/libraries/fmod/4.24.16.nix | 29 ++++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/pkgs/development/libraries/fmod/4.24.16.nix b/pkgs/development/libraries/fmod/4.24.16.nix index d1768d656b4..b78b1a46e25 100644 --- a/pkgs/development/libraries/fmod/4.24.16.nix +++ b/pkgs/development/libraries/fmod/4.24.16.nix @@ -11,12 +11,12 @@ let src = (if (bits == "64") then fetchurl { - url = "http://www.fmod.org/download/fmodex/api/Linux/fmodapi42416linux64.tar.gz"; + url = "http://zandronum.com/essentials/fmod/fmodapi42416linux64.tar.gz"; sha256 = "0hkwlzchzzgd7fanqznbv5bs53z2qy8iiv9l2y77l4sg1jwmlm6y"; } else fetchurl { - url = "http://www.fmod.org/download/fmodex/api/Linux/fmodapi42416linux.tar.gz"; + url = "http://zandronum.com/essentials/fmod/fmodapi42416linux.tar.gz"; sha256 = "13diw3ax2slkr99mwyjyc62b8awc30k0z08cvkpk2p3i1j6f85m5"; } ); @@ -28,23 +28,26 @@ stdenv.mkDerivation rec { version = "4.24.16"; dontStrip = true; + dontPatchELF = true; + + makeFlags = [ "DESTLIBDIR=$(out)/lib" "DESTHDRDIR=$(out)/include" ]; + buildPhase = "true"; - installPhase = '' - mkdir -p $out/lib $out/include/fmodex - cd api/inc && cp * $out/include/fmodex && cd ../lib - cp libfmodex${bits}-${version}.so $out/lib/libfmodex.so - cp libfmodex${bits}L-${version}.so $out/lib/libfmodexL.so - - ${patchLib "$out/lib/libfmodex.so"} - ${patchLib "$out/lib/libfmodexL.so"} + preInstall = '' + mkdir -p $out/lib ''; - meta = { + postInstall = '' + mv $out/lib/libfmodex${bits}-${version}.so $out/lib/libfmodex.so + mv $out/lib/libfmodexp${bits}-${version}.so $out/lib/libfmodexp.so + ''; + + meta = with stdenv.lib; { description = "Programming library and toolkit for the creation and playback of interactive audio"; homepage = "http://www.fmod.org/"; - license = stdenv.lib.licenses.unfreeRedistributable; - platforms = stdenv.lib.platforms.linux; + license = licenses.unfreeRedistributable; + platforms = platforms.linux; maintainers = [ stdenv.lib.maintainers.lassulus ]; }; } From 2678e0ce022f3ee357c2d4b9f08303b6e210b39b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Dec 2015 20:29:39 +0300 Subject: [PATCH 092/707] zandronum: unify packages, fix building, cleanup --- pkgs/games/zandronum/bin.nix | 39 ++++++++------------- pkgs/games/zandronum/default.nix | 60 +++++++++++++++++++++----------- pkgs/games/zandronum/server.nix | 44 ----------------------- pkgs/top-level/all-packages.nix | 11 ++++-- 4 files changed, 63 insertions(+), 91 deletions(-) delete mode 100644 pkgs/games/zandronum/server.nix diff --git a/pkgs/games/zandronum/bin.nix b/pkgs/games/zandronum/bin.nix index 453f7dc1c1d..cf46877ef71 100644 --- a/pkgs/games/zandronum/bin.nix +++ b/pkgs/games/zandronum/bin.nix @@ -18,10 +18,9 @@ , zlib }: -assert stdenv.system == "x86_64-linux"; - stdenv.mkDerivation rec { name = "zandronum-2.1.2"; + src = fetchurl { url = "http://zandronum.com/downloads/zandronum2.1.2-linux-x86_64.tar.bz2"; sha256 = "1f5aw2m8c0bl3lrvi2k3rrzq3q9x1ikxnxxjgh3k9qvanfn7ykbk"; @@ -49,38 +48,30 @@ stdenv.mkDerivation rec { phases = [ "unpackPhase" "installPhase" ]; - unpackPhase = '' - tar xf $src - ''; + sourceRoot = "."; installPhase = '' mkdir -p $out/bin - mkdir -p $out/share - cp * $out/share + mkdir -p $out/share/zandronum + cp *.so *.pk3 zandronum zandronum-server $out/share/zandronum - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/share/zandronum - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/share/zandronum-server + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath $libPath:$out/share/zandronum \ + $out/share/zandronum/zandronum + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath $libPath \ + $out/share/zandronum/zandronum-server - cat > $out/bin/zandronum << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$libPath:$out/share $out/share/zandronum "\$@" - EOF - - cat > $out/bin/zandronum-server << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$libPath:$out/share $out/share/zandronum-server "\$@" - EOF - - chmod +x "$out/bin/zandronum" - chmod +x "$out/bin/zandronum-server" + ln -s $out/share/zandronum/zandronum $out/bin/zandronum + ln -s $out/share/zandronum/zandronum-server $out/bin/zandronum-server ''; meta = { homepage = http://zandronum.com/; description = "multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software. Binary version for online play."; maintainer = [ stdenv.lib.maintainers.lassulus ]; + platforms = [ "x86_64-linux" ]; }; } - diff --git a/pkgs/games/zandronum/default.nix b/pkgs/games/zandronum/default.nix index b92551a78bf..ecdf8cfdbd2 100644 --- a/pkgs/games/zandronum/default.nix +++ b/pkgs/games/zandronum/default.nix @@ -1,43 +1,61 @@ -{ stdenv, fetchhg, cmake, SDL, mesa, fmod42416, openssl, sqlite, sqlite-amalgamation }: +{ stdenv, lib, fetchhg, cmake, pkgconfig, makeWrapper +, SDL, mesa, bzip2, zlib, fmod, libjpeg, fluidsynth, openssl, sqlite-amalgamation +, serverOnly ? false +}: + +let suffix = lib.optionalString serverOnly "-server"; + +# FIXME: drop binary package when upstream fixes their protocol versioning +in stdenv.mkDerivation { + name = "zandronum${suffix}-2.1.2"; -stdenv.mkDerivation { - name = "zandronum-2.1.2"; src = fetchhg { url = "https://bitbucket.org/Torr_Samaho/zandronum-stable"; rev = "a3663b0061d5"; sha256 = "0qwsnbwhcldwrirfk6hpiklmcj3a7dzh6pn36nizci6pcza07p56"; }; - phases = [ "unpackPhase" "configurePhase" "buildPhase" "installPhase" ]; + # I have no idea why would SDL and libjpeg be needed for the server part! + # But they are. + buildInputs = [ openssl bzip2 zlib SDL libjpeg ] + ++ lib.optionals (!serverOnly) [ mesa fmod fluidsynth ]; - buildInputs = [ cmake SDL mesa fmod42416 openssl sqlite sqlite-amalgamation ]; + nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; preConfigure = '' - cp ${sqlite-amalgamation}/* sqlite/ + ln -s ${sqlite-amalgamation}/* sqlite/ ''; - cmakeFlags = [ - "-DFMOD_LIBRARY=${fmod42416}/lib/libfmodex.so" - ]; + cmakeFlags = + lib.optional (!serverOnly) "-DFMOD_LIBRARY=${fmod}/lib/libfmodex.so" + ++ lib.optional serverOnly "-DSERVERONLY=ON" + ; + + enableParallelBuilding = true; installPhase = '' mkdir -p $out/bin - mkdir -p $out/share - cp zandronum zandronum.pk3 skulltag_actors.pk3 liboutput_sdl.so $out/share + mkdir -p $out/share/zandronum + cp zandronum${suffix} \ + zandronum.pk3 \ + skulltag_actors.pk3 \ + ${lib.optionalString (!serverOnly) "liboutput_sdl.so"} \ + $out/share/zandronum - cat > $out/bin/zandronum << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$out/share $out/share/zandronum "\$@" - EOF - - chmod +x "$out/bin/zandronum" + # For some reason, while symlinks work for binary version, they don't for source one. + makeWrapper $out/share/zandronum/zandronum${suffix} $out/bin/zandronum${suffix} ''; - meta = { + postFixup = lib.optionalString (!serverOnly) '' + patchelf --set-rpath $(patchelf --print-rpath $out/share/zandronum/zandronum):$out/share/zandronum \ + $out/share/zandronum/zandronum + ''; + + meta = with stdenv.lib; { homepage = http://zandronum.com/; description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software."; - maintainer = [ stdenv.lib.maintainers.lassulus ]; + maintainer = with maintainers; [ lassulus ]; + platforms = platforms.linux; + license = licenses.bsdOriginal; }; } - diff --git a/pkgs/games/zandronum/server.nix b/pkgs/games/zandronum/server.nix deleted file mode 100644 index eec2c3acc9c..00000000000 --- a/pkgs/games/zandronum/server.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ stdenv, fetchhg, cmake, openssl, sqlite, sqlite-amalgamation, SDL }: - -stdenv.mkDerivation { - name = "zandronum-server-2.1.2"; - src = fetchhg { - url = "https://bitbucket.org/Torr_Samaho/zandronum-stable"; - rev = "a3663b0061d5"; - sha256 = "0qwsnbwhcldwrirfk6hpiklmcj3a7dzh6pn36nizci6pcza07p56"; - }; - - phases = [ "unpackPhase" "configurePhase" "buildPhase" "installPhase" ]; - - buildInputs = [ cmake openssl sqlite sqlite-amalgamation SDL ]; - - preConfigure = '' - cp ${sqlite-amalgamation}/* sqlite/ - ''; - - cmakeFlags = [ - "-DSERVERONLY=ON" - ]; - - installPhase = '' - find - mkdir -p $out/bin - mkdir -p $out/share - cp zandronum-server zandronum.pk3 skulltag_actors.pk3 $out/share - - cat > $out/bin/zandronum-server << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$out/share $out/share/zandronum-server "\$@" - EOF - - chmod +x "$out/bin/zandronum-server" - ''; - - meta = { - homepage = http://zandronum.com/; - description = "Server of the multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software"; - maintainer = [ stdenv.lib.maintainers.lassulus ]; - }; -} - diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c728843286b..a62db7cd727 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14421,8 +14421,15 @@ let xsokoban = callPackage ../games/xsokoban { }; - zandronum = callPackage ../games/zandronum { }; - zandronum-server = callPackage ../games/zandronum/server.nix { }; + zandronum = callPackage ../games/zandronum { + fmod = fmod42416; + cmake = cmake-2_8; + }; + + zandronum-server = zandronum.override { + serverOnly = true; + }; + zandronum-bin = callPackage ../games/zandronum/bin.nix { }; zangband = builderDefsPackage (callPackage ../games/zangband) {}; From 427d00ee366d75faec99e644c52013aa82a8726b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 13 Dec 2015 13:46:09 +0300 Subject: [PATCH 093/707] doomseeker: cleanup --- pkgs/applications/misc/doomseeker/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/doomseeker/default.nix b/pkgs/applications/misc/doomseeker/default.nix index 8ceb7f41c4e..3e76f6c36e7 100644 --- a/pkgs/applications/misc/doomseeker/default.nix +++ b/pkgs/applications/misc/doomseeker/default.nix @@ -2,16 +2,17 @@ stdenv.mkDerivation rec { name = "doomseeker-1.0"; + src = fetchurl { url = "http://doomseeker.drdteam.org/files/${name}_src.tar.bz2"; sha256 = "172ybxg720r64hp6aah0hqvxklqv1cf8v7kwx0ng5ap0h20jydbw"; }; - cmakeFlags = '' - -DCMAKE_BUILD_TYPE=Release - ''; + cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]; - buildInputs = [ cmake pkgconfig qt4 zlib bzip2 ]; + buildInputs = [ qt4 zlib bzip2 ]; + + nativeBuildInputs = [ cmake pkgconfig ]; enableParallelBuilding = true; @@ -27,4 +28,3 @@ stdenv.mkDerivation rec { maintainers = with stdenv.lib.maintainers; [ MP2E ]; }; } - From 26e738206c6d172e35493f8e4e166775bc15e44e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 13 Dec 2015 16:25:35 +0300 Subject: [PATCH 094/707] flashplayer: cleanup, use archive as a source Most work done by ericsagnes --- .../mozilla-plugins/flashplayer-11/builder.sh | 23 ------- .../flashplayer-11/default.nix | 63 +++++++++---------- 2 files changed, 29 insertions(+), 57 deletions(-) delete mode 100644 pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh deleted file mode 100644 index b0f8a2638c1..00000000000 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh +++ /dev/null @@ -1,23 +0,0 @@ -source $stdenv/setup - -dontStrip=1 -dontPatchELF=1 -sourceRoot=$TMPDIR - -unpackPhase() { - tar xvzf $src; - for a in *; do - if [ -d $a ]; then - cd $a - break - fi - done -} - -installPhase() { - mkdir -p $out/lib/mozilla/plugins - cp -pv libflashplayer.so $out/lib/mozilla/plugins - patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so -} - -genericBuild diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 7148764b223..34a06967ed8 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -20,6 +20,7 @@ , atk , gdk_pixbuf , nss +, unzip , debug ? false /* you have to add ~/mm.cfg : @@ -35,45 +36,41 @@ }: let - # -> http://get.adobe.com/flashplayer/ + arch = + if stdenv.system == "x86_64-linux" then + if debug then throw "no x86_64 debugging version available" + else "64bit" + else if stdenv.system == "i686-linux" then + if debug then "32bit_debug" + else "32bit" + else throw "Flash Player is not supported on this platform"; +in +stdenv.mkDerivation rec { + name = "flashplayer-${version}"; version = "11.2.202.554"; - src = - if stdenv.system == "x86_64-linux" then - if debug then - # no plans to provide a x86_64 version: - # http://labs.adobe.com/technologies/flashplayer10/faq.html - throw "no x86_64 debugging version available" - else rec { - inherit version; - url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; - sha256 = "15zziclffvsa0wpygkwzbh3v367n73pmzwsnkanhg75rv28dgl3x"; - } - else if stdenv.system == "i686-linux" then - if debug then - throw "flash debugging version is outdated and probably broken" /* { - # The debug version also contains a player - version = "11.1"; - url = http://fpdownload.adobe.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz; - sha256 = "0jn7klq2cyqasj6nxfka2l8nsf7sn7hi6443nv6dd2sb3g7m6x92"; - }*/ - else rec { - inherit version; - url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; - sha256 = "1a26l6lz5l6qbx4lm7266pzk0zr77h6issbnayr6df9qj99bppyz"; - } - else throw "Flash Player is not supported on this platform"; + src = fetchurl { + url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; + sha256 = "0pjan07k419pk3lmfdl5vww0ipf5b76cxqhxwjrikb1fc4x993fi"; + }; -in + buildInputs = [ unzip ]; -stdenv.mkDerivation { - name = "flashplayer-${src.version}"; + postUnpack = '' + cd */*${arch} + tar -xvzf flash-plugin*.tar.gz + ''; - builder = ./builder.sh; + sourceRoot = "."; - src = fetchurl { inherit (src) url sha256; }; + dontStrip = true; + dontPatchELF = true; - inherit zlib alsaLib; + installPhase = '' + mkdir -p $out/lib/mozilla/plugins + cp -pv libflashplayer.so $out/lib/mozilla/plugins + patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so + ''; passthru = { mozillaPlugin = "/lib/mozilla/plugins"; @@ -85,8 +82,6 @@ stdenv.mkDerivation { libvdpau nss ]; - buildPhase = ":"; - meta = { description = "Adobe Flash Player browser plugin"; homepage = http://www.adobe.com/products/flashplayer/; From 52505823969c9f7462fbb7efd5f36e32ca92b581 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 13 Dec 2015 16:53:59 +0300 Subject: [PATCH 095/707] nixos/acme: fix timer unit --- nixos/modules/security/acme.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 8f3a2ee073b..2de57dd68cb 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -188,7 +188,7 @@ in wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = cfg.renewInterval; - Unit = "acme-simp_le-${cert}.service"; + Unit = "acme-${cert}.service"; }; }) ); From 5482aa908405dc91867fa6e49eb2eda5c158de52 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 13 Dec 2015 14:43:26 +0000 Subject: [PATCH 096/707] sabnzbd: 0.7.17 -> 0.7.20 --- pkgs/servers/sabnzbd/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/sabnzbd/default.nix b/pkgs/servers/sabnzbd/default.nix index 09c0de9c74f..952d3b1196f 100644 --- a/pkgs/servers/sabnzbd/default.nix +++ b/pkgs/servers/sabnzbd/default.nix @@ -1,11 +1,12 @@ {stdenv, fetchurl, python, pythonPackages, cheetahTemplate, makeWrapper, par2cmdline, unzip, unrar}: stdenv.mkDerivation rec { - name = "sabnzbd-0.7.17"; + version = "0.7.20"; + name = "sabnzbd-${version}"; src = fetchurl { - url = mirror://sourceforge/sabnzbdplus/SABnzbd-0.7.17-src.tar.gz; - sha256 = "02gbh3q3qnbwy4xn1hw4i4fyw4j5nkrqy4ak46mxwqgip9ym20d5"; + url = "mirror://sourceforge/sabnzbdplus/SABnzbd-${version}-src.tar.gz"; + sha256 = "0hl7mwgyvm4d68346s7vlv0qlibfh2p2idpyzpjfvk8f79hs9cr0"; }; buildInputs = [makeWrapper python sqlite3 cheetahTemplate]; From b4766c3d43e9192e9e4c4b08a7fbf3483592bf6a Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 13 Dec 2015 14:45:14 +0000 Subject: [PATCH 097/707] sabnzbd: Fix OpenSSL wrapping. - Add SSL support by adding pyopenssl to PYTHONPATH - Update build script to use wrapPythonProgramsIn - Update the meta info --- pkgs/servers/sabnzbd/builder.sh | 7 ++----- pkgs/servers/sabnzbd/default.nix | 17 ++++++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/servers/sabnzbd/builder.sh b/pkgs/servers/sabnzbd/builder.sh index 3a5c8adb421..c446891d8dc 100644 --- a/pkgs/servers/sabnzbd/builder.sh +++ b/pkgs/servers/sabnzbd/builder.sh @@ -3,14 +3,11 @@ source $stdenv/setup tar xvfz $src mv SABnzbd-* $out -# Create a start script and let wrapProgram with toPythonPath wrap it so that python is started with cheetahTemplate in its importpath (classpath) mkdir $out/bin echo "$python/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd chmod +x $out/bin/sabnzbd -for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i --prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $out):$(toPythonPath $cheetahTemplate):$(toPythonPath $sqlite3)" \ - --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin" -done +wrapPythonProgramsIn $out/bin "$pythonPath" +wrapProgram $out/bin/.sabnzbd-wrapped --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin" echo $out diff --git a/pkgs/servers/sabnzbd/default.nix b/pkgs/servers/sabnzbd/default.nix index 952d3b1196f..ee2176ae49a 100644 --- a/pkgs/servers/sabnzbd/default.nix +++ b/pkgs/servers/sabnzbd/default.nix @@ -1,21 +1,24 @@ -{stdenv, fetchurl, python, pythonPackages, cheetahTemplate, makeWrapper, par2cmdline, unzip, unrar}: +{stdenv, fetchurl, python, pythonPackages, par2cmdline, unzip, unrar}: stdenv.mkDerivation rec { version = "0.7.20"; name = "sabnzbd-${version}"; - + src = fetchurl { url = "mirror://sourceforge/sabnzbdplus/SABnzbd-${version}-src.tar.gz"; sha256 = "0hl7mwgyvm4d68346s7vlv0qlibfh2p2idpyzpjfvk8f79hs9cr0"; }; - buildInputs = [makeWrapper python sqlite3 cheetahTemplate]; - inherit stdenv python cheetahTemplate par2cmdline unzip unrar; - inherit (pythonPackages) sqlite3; + pythonPath = with pythonPackages; [ pyopenssl sqlite3 cheetah ]; + buildInputs = with pythonPackages; [wrapPython]; + inherit python par2cmdline unzip unrar; builder = ./builder.sh; - - meta = { + + meta = with stdenv.lib; { description = "Usenet NZB downloader, par2 repairer and auto extracting server"; + homepage = http://sabnzbd.org; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } From e7757c47b73fe84ff63ec84ee90b6bb7dcd2ef05 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 15:55:12 +0100 Subject: [PATCH 098/707] betamax: init at 0.5.1 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e4c1920acc9..0c38cc760d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1287,6 +1287,24 @@ in modules // { }; }; + betamax = buildPythonPackage rec { + name = "betamax-0.5.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/betamax/${name}.tar.gz"; + sha256 = "1glzigrbip9w2jr2gcmwa96rffhi9x9l1455dhbcx2gh3pmcykl6"; + }; + + propagatedBuildInputs = [ self.requests2 ]; + + meta = with stdenv.lib; { + homepage = https://betamax.readthedocs.org/en/latest/; + description = "A VCR imitation for requests"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + caldavclientlibrary-asynk = buildPythonPackage rec { version = "asynkdev"; name = "caldavclientlibrary-asynk-${version}"; From 8443067e44cac135ff59abde4bdc2b4445f73c61 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 16:07:48 +0100 Subject: [PATCH 099/707] betamax-matchers: init at 0.2.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0c38cc760d9..de3d3dbea3a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1305,6 +1305,25 @@ in modules // { }; }; + betamax-matchers = buildPythonPackage rec { + name = "betamax-matchers-${version}"; + version = "0.2.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz"; + sha256 = "13n2dy8s2jx8x8bbx684bff3444584bnmg0zhkfxhxndpy18p4is"; + }; + + buildInputs = with self; [ betamax requests_toolbelt ]; + + meta = with stdenv.lib; { + homepage = https://github.com/sigmavirus24/betamax_matchers; + description = "A group of experimental matchers for Betamax"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + caldavclientlibrary-asynk = buildPythonPackage rec { version = "asynkdev"; name = "caldavclientlibrary-asynk-${version}"; From 36e1e3a8a692e414e02cc08322476f921429dc23 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sat, 12 Dec 2015 12:06:14 +0000 Subject: [PATCH 100/707] clamav: Fixed indentation. --- nixos/modules/services/security/clamav.nix | 52 +++++++++++----------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/nixos/modules/services/security/clamav.nix b/nixos/modules/services/security/clamav.nix index a4d54301fc1..583fadb9d10 100644 --- a/nixos/modules/services/security/clamav.nix +++ b/nixos/modules/services/security/clamav.nix @@ -13,27 +13,27 @@ in services.clamav = { updater = { - enable = mkOption { - default = false; - description = '' - Whether to enable automatic ClamAV virus definitions database updates. - ''; - }; + enable = mkOption { + default = false; + description = '' + Whether to enable automatic ClamAV virus definitions database updates. + ''; + }; - frequency = mkOption { - default = 12; - description = '' - Number of database checks per day. - ''; - }; + frequency = mkOption { + default = 12; + description = '' + Number of database checks per day. + ''; + }; - config = mkOption { - default = ""; - description = '' - Extra configuration for freshclam. Contents will be added verbatim to the - configuration file. - ''; - }; + config = mkOption { + default = ""; + description = '' + Extra configuration for freshclam. Contents will be added verbatim to the + configuration file. + ''; + }; }; }; }; @@ -63,15 +63,15 @@ in jobs = { clamav_updater = { - name = "clamav-updater"; - startOn = "started network-interfaces"; - stopOn = "stopping network-interfaces"; + name = "clamav-updater"; + startOn = "started network-interfaces"; + stopOn = "stopping network-interfaces"; - preStart = '' - mkdir -m 0755 -p ${stateDir} - chown ${clamavUser}:${clamavGroup} ${stateDir} + preStart = '' + mkdir -m 0755 -p ${stateDir} + chown ${clamavUser}:${clamavGroup} ${stateDir} ''; - exec = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; + exec = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; }; }; From 3eab158fb8007d03e9ed295068140bbe25306bef Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 16:27:04 +0100 Subject: [PATCH 101/707] github3.py: init at 1.0.0a2 --- 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 de3d3dbea3a..3ce3eadfe1c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8225,6 +8225,36 @@ in modules // { }; }; + github3_py = buildPythonPackage rec { + name = "github3.py-${version}"; + version = "1.0.0a2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/github3.py/${name}.tar.gz"; + sha256 = "11xvwbzfy04vwbjnpc8wcrjjzghbrbdzffrdfk70v0zdnxqg8hc5"; + }; + + buildInputs = with self; [ unittest2 pytest mock betamax betamax-matchers ]; + + propagatedBuildInputs = with self; [ requests2 pyopenssl uritemplate_py + ndg-httpsclient requests_toolbelt pyasn1 ]; + + postPatch = '' + sed -i -e 's/mock ==1.0.1/mock>=1.0.1/' setup.py + sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py + ''; + + # TODO: only disable the tests that require network + doCheck = false; + + meta = with stdenv.lib; { + homepage = http://github3py.readthedocs.org/en/master/; + description = "A wrapper for the GitHub API written in python"; + license = licenses.bsd3; + maintainers = with maintainers; [ pSub ]; + }; + }; + goobook = buildPythonPackage rec { name = "goobook-1.9"; disabled = isPy3k; From 0f1de2ea9fd7f92e745a1ace6f24e73ae750d14f Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sun, 13 Dec 2015 16:43:31 +0100 Subject: [PATCH 102/707] miniupnpd: firewall config --- .../modules/services/networking/miniupnpd.nix | 35 +++++++++++++++++-- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/miniupnpd.nix b/nixos/modules/services/networking/miniupnpd.nix index e654eb80b17..19400edb68f 100644 --- a/nixos/modules/services/networking/miniupnpd.nix +++ b/nixos/modules/services/networking/miniupnpd.nix @@ -30,7 +30,7 @@ in internalIPs = mkOption { type = types.listOf types.str; - example = [ "192.168.1.0/24" ]; + example = [ "192.168.1.1/24" "enp1s0" ]; description = '' The IP address ranges to listen on. ''; @@ -57,13 +57,42 @@ in }; config = mkIf cfg.enable { + # from miniupnpd/netfilter/iptables_init.sh + networking.firewall.extraCommands = '' + iptables -t nat -N MINIUPNPD + iptables -t nat -A PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t mangle -N MINIUPNPD + iptables -t mangle -A PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t filter -N MINIUPNPD + iptables -t filter -A FORWARD -i ${cfg.externalInterface} ! -o ${cfg.externalInterface} -j MINIUPNPD + iptables -t nat -N MINIUPNPD-PCP-PEER + iptables -t nat -A POSTROUTING -o ${cfg.externalInterface} -j MINIUPNPD-PCP-PEER + ''; + + # from miniupnpd/netfilter/iptables_removeall.sh + networking.firewall.extraStopCommands = '' + iptables -t nat -F MINIUPNPD + iptables -t nat -D PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t nat -X MINIUPNPD + iptables -t mangle -F MINIUPNPD + iptables -t mangle -D PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t mangle -X MINIUPNPD + iptables -t filter -F MINIUPNPD + iptables -t filter -D FORWARD -i ${cfg.externalInterface} ! -o ${cfg.externalInterface} -j MINIUPNPD + iptables -t filter -X MINIUPNPD + iptables -t nat -F MINIUPNPD-PCP-PEER + iptables -t nat -D POSTROUTING -o ${cfg.externalInterface} -j MINIUPNPD-PCP-PEER + iptables -t nat -X MINIUPNPD-PCP-PEER + ''; + systemd.services.miniupnpd = { description = "MiniUPnP daemon"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = [ pkgs.miniupnpd ]; serviceConfig = { - ExecStart = "${pkgs.miniupnpd}/bin/miniupnpd -d -f ${configFile}"; + ExecStart = "${pkgs.miniupnpd}/bin/miniupnpd -f ${configFile}"; + PIDFile = "/var/run/miniupnpd.pid"; + Type = "forking"; }; }; }; From b5b9b0351880b051f68f04be9857c6d7f935309c Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sat, 12 Dec 2015 12:45:48 +0000 Subject: [PATCH 103/707] clamav: improvements - Add new service for `clamd`, the ClamAV daemon. - Replace the old upstart "jobs" section with systemd.services - Remove unnecessary config options. - Use `mkEnableOption` --- nixos/modules/services/security/clamav.nix | 107 ++++++++++++++------- 1 file changed, 72 insertions(+), 35 deletions(-) diff --git a/nixos/modules/services/security/clamav.nix b/nixos/modules/services/security/clamav.nix index 583fadb9d10..548aee29b26 100644 --- a/nixos/modules/services/security/clamav.nix +++ b/nixos/modules/services/security/clamav.nix @@ -3,22 +3,37 @@ with lib; let clamavUser = "clamav"; stateDir = "/var/lib/clamav"; + runDir = "/var/run/clamav"; + logDir = "/var/log/clamav"; clamavGroup = clamavUser; cfg = config.services.clamav; + clamdConfigFile = pkgs.writeText "clamd.conf" '' + DatabaseDirectory ${stateDir} + LocalSocket ${runDir}/clamd.ctl + LogFile ${logDir}/clamav.log + PidFile ${runDir}/clamd.pid + User clamav + + ${cfg.daemon.extraConfig} + ''; in { - ###### interface - options = { - services.clamav = { - updater = { - enable = mkOption { - default = false; - description = '' - Whether to enable automatic ClamAV virus definitions database updates. + daemon = { + enable = mkEnableOption "clamd daemon"; + + extraConfig = mkOption { + type = types.lines; + default = ""; + description = '' + Extra configuration for clamd. Contents will be added verbatim to the + configuration file. ''; }; + }; + updater = { + enable = mkEnableOption "freshclam updater"; frequency = mkOption { default = 12; @@ -38,43 +53,65 @@ in }; }; - ###### implementation - - config = mkIf cfg.updater.enable { + config = mkIf cfg.updater.enable or cfg.daemon.enable { environment.systemPackages = [ pkgs.clamav ]; - users.extraUsers = singleton - { name = clamavUser; - uid = config.ids.uids.clamav; - description = "ClamAV daemon user"; - home = stateDir; - }; + users.extraUsers = singleton { + name = clamavUser; + uid = config.ids.uids.clamav; + description = "ClamAV daemon user"; + home = stateDir; + }; - users.extraGroups = singleton - { name = clamavGroup; - gid = config.ids.gids.clamav; - }; + users.extraGroups = singleton { + name = clamavGroup; + gid = config.ids.gids.clamav; + }; - services.clamav.updater.config = '' + services.clamav.updater.config = mkIf cfg.updater.enable '' DatabaseDirectory ${stateDir} Foreground yes Checks ${toString cfg.updater.frequency} DatabaseMirror database.clamav.net ''; - jobs = { - clamav_updater = { - name = "clamav-updater"; - startOn = "started network-interfaces"; - stopOn = "stopping network-interfaces"; - - preStart = '' - mkdir -m 0755 -p ${stateDir} - chown ${clamavUser}:${clamavGroup} ${stateDir} - ''; - exec = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; - }; + systemd.services.clamd = mkIf cfg.daemon.enable { + description = "ClamAV daemon (clamd)"; + path = [ pkgs.clamav ]; + after = [ "network.target" "freshclam.service" ]; + requires = [ "freshclam.service" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + mkdir -m 0755 -p ${logDir} + mkdir -m 0755 -p ${runDir} + chown ${clamavUser}:${clamavGroup} ${logDir} + chown ${clamavUser}:${clamavGroup} ${runDir} + ''; + serviceConfig = { + ExecStart = "${pkgs.clamav}/bin/clamd --config-file=${clamdConfigFile}"; + Type = "forking"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + Restart = "on-failure"; + RestartSec = "10s"; + StartLimitInterval = "1min"; + }; }; + systemd.services.freshclam = mkIf cfg.updater.enable { + description = "ClamAV updater (freshclam)"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + path = [ pkgs.clamav ]; + preStart = '' + mkdir -m 0755 -p ${stateDir} + chown ${clamavUser}:${clamavGroup} ${stateDir} + ''; + serviceConfig = { + ExecStart = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + Restart = "on-failure"; + RestartSec = "10s"; + StartLimitInterval = "1min"; + }; + }; }; - } From 03cf5e662746ce00a09c8b050b433357728b14be Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Sun, 13 Dec 2015 17:00:13 +0100 Subject: [PATCH 104/707] chromium: Updates. - dev: 48.0.2564.22 -> 49.0.2587.3 - beta: 48.0.2564.23 -> 48.0.2564.41 - stable: 47.0.2526.73 -> 47.0.2526.80 --- .../browsers/chromium/source/sources.nix | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 55facf55438..04ab0c95b16 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,21 +1,21 @@ # This file is autogenerated from update.sh in the parent directory. { dev = { - version = "48.0.2564.22"; - sha256 = "18kk8vmv7c8dsxdghvrjl90davm0gc4wdvs5zmsgiymlw1c6qpaj"; - sha256bin32 = "1b10bb83npnn24fxl7jqkrhjzhk211cgf1f2ykx50z3cc41v4rvp"; - sha256bin64 = "0a3w22blkpnk1wdg201ixm8jm7lrn4md64wcllmm69z433flrg1b"; + version = "49.0.2587.3"; + sha256 = "05mhd6z833w1r4v7jz8rbm06j29h0l4ix45v29l5npv41sqr4lj2"; + sha256bin32 = "1lrf3zfzy3yif854nkrl6acdfwc93xhry9ykfjjr1a4mpnlqbp1v"; + sha256bin64 = "1sn1p5jh2gy463np99xw7jhcl9hd28b4gm2wqv19z0a67k84jdpd"; }; beta = { - version = "48.0.2564.23"; - sha256 = "0rhjrvxsxv84jahnph26lbivfa6g48qmv1mw6wysjx8rvfpfx9g9"; - sha256bin32 = "17330cv6zv25z5y6pbfc9hb7vk77yggvcdggknkvvbfd0p6mrf4z"; - sha256bin64 = "0d3r64ipgigjqgnr57lklk5icv2snd2gq9w6aw7apfx61qlbnxly"; + version = "48.0.2564.41"; + sha256 = "06k5vjv1argvxssjrlvyxn5gi93gx8r8dqanv3cpvwpw8nwyqrdj"; + sha256bin32 = "0k77hpacnz0plh67wd2p6dxbpkcb8930p08inxy3mzjlralq9fyj"; + sha256bin64 = "1zdisb36s5nh7h7swfyjb2shxpapp1anpil4prfd3jkf6bv64k1i"; }; stable = { - version = "47.0.2526.73"; - sha256 = "1xgl2pmvfxnm2pk4p4p4v642ip0cxxjysc1xy4pmdxnzilfd0rkd"; - sha256bin32 = "1y9g14s81xanp70l0s6grszn4q0acn4rgm46i5kigf37s1cbwagy"; - sha256bin64 = "1y00znk5cfd1nvh4dx92b0m8q38849i25a18zg2lhvjqrpq097za"; + version = "47.0.2526.80"; + sha256 = "01adc5fh2agk2d5a15pg230x3h43h4lxmzlvwbm43dm34f1i81xi"; + sha256bin32 = "0779z35snwc3qnh5fzf9gm4mmw8vj0j8k3w3vlksn532hclyl6b6"; + sha256bin64 = "0xj9i06xdsarfl1jfw6ra3j1ri0iqnjafqw2p2r4kaqsgf1a2fdv"; }; } From 65d8af5af257ba635113740bf0a1820df9827ab4 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 13 Dec 2015 16:34:31 +0100 Subject: [PATCH 105/707] claws-mail: Fix fancy plugin, fixes #10421 This fixes the fancy plugin displaying HTML mails as text as suggested by @wedens. --- .../networking/mailreaders/claws-mail/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index beb21546c0c..8f2c5cf8c46 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -95,6 +95,10 @@ stdenv.mkDerivation { wrapPrefixVariables = [ "GIO_EXTRA_MODULES" ]; GIO_EXTRA_MODULES = "${glib_networking}/lib/gio/modules"; + preFixup = '' + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") + ''; + postInstall = '' mkdir -p $out/share/applications cp claws-mail.desktop $out/share/applications From cabd3effdad6ffddeb4ebe661dde1262cf6d84ac Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 13 Dec 2015 17:08:24 +0100 Subject: [PATCH 106/707] claws-mail: Remove extra GIO_EXTRA_MODULES wrapping --- .../networking/mailreaders/claws-mail/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index 8f2c5cf8c46..831fb97ab91 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation { buildInputs = [ curl dbus dbus_glib gtk gnutls gsettings_desktop_schemas hicolor_icon_theme - libetpan perl pkgconfig python wrapGAppsHook + libetpan perl pkgconfig python wrapGAppsHook glib_networking ] ++ optional enableSpellcheck enchant ++ optionals (enablePgp || enablePluginSmime) [ gnupg gpgme ] @@ -92,9 +92,6 @@ stdenv.mkDerivation { enableParallelBuilding = true; - wrapPrefixVariables = [ "GIO_EXTRA_MODULES" ]; - GIO_EXTRA_MODULES = "${glib_networking}/lib/gio/modules"; - preFixup = '' gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") ''; From ab9bf1e4fae4fd4bda490eb7bbcf79f8593de5af Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Sun, 13 Dec 2015 13:56:15 +0000 Subject: [PATCH 107/707] {lib-}mediainfo{-gui}: 0.7.79 -> 0.7.80 From the changelog: ``` Version 0.7.80, 2015-11-30 + Matroska: support of MKVMerge statistics tags (duration frame count, stream size, bit rate) per track, thanks to ndjamena + FLAC: Channel positions, thanks to ndjamena + FLAC: difference between detected bit depth and stored bit depth + MPEG-TS: if DTVCC transport stream is present and no DTVCC service descriptor, scan also in the middle of the file in order to detect more caption services + Subtitle frame rate computing if frame count and duration are available (hidden by default) + Subtitles in Matroska: count of elements + Matroska, MXF and MP4/MOV: detection of truncated files + DTS: difference between ES Matrix and ES Discrete + DTS: display ES Matrix or ES Discrete even if HRA or MA is present + DTS: difference between DTS-HRA with 96k option and pure DTS-96/24 + DTS: detection of DTS:X + Samples per frame info + AC-3: detection of Atmos inside TrueHD + Video frame rate: showing precision of 1/1.001 frame rates (e.g. "23.976 (24000/1001) fps" and "23.976 (23976/1000) fps") + MPEG-4/MOV: showing the complete list of compatible brands in the CodecID field + MPEG-4/MOV: Alternate groups + MPEG-4/MOV: "Disabled" tag + MPEG-4/MOV: "Forced" tag + MPEG-4/MOV: showing links between tracks (chapters for, subtitles for, fallback for) + MXF: handling of more acquisition metadata items + MXF: Package name + AVC: Store method of interlaced content (Interleaved Fields or Separated Fields) + EBUCore: acquisition metadata (Proof of concept, for feedback only) x Matroska: frame rate detection algorithm revisited, less wrong numbers are expected x SDP/Teletext: some pages were sometimes (when present in 2 different SDP lines) displayed several times x MPEG-4/MOV: some hint tracks were not displayed + Hongkongese language added + Option "Full parsing" ``` --- pkgs/applications/misc/mediainfo-gui/default.nix | 4 ++-- pkgs/applications/misc/mediainfo/default.nix | 4 ++-- pkgs/development/libraries/libmediainfo/default.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index a7dfac1eb0d..9bed20c0c73 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 560e0ef1433..40531ea58a1 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index d9619fd2712..5fbc6bb1dbf 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0lanhx1zg7s36wgi9ndv4zz7dbhkqz4dc99mva6x9rcj2p5p8c6d"; + sha256 = "0v9px37qx0dkx67gqwi1rd9x4m7zm1ml8sdj5fx0isj6qymbd1z5"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; From e470d15423f7c202d33ee7cb11891542e298dfa3 Mon Sep 17 00:00:00 2001 From: goibhniu Date: Sun, 13 Dec 2015 18:16:49 +0100 Subject: [PATCH 108/707] zam-plugins: update hash (uses git submodules) --- pkgs/applications/audio/zam-plugins/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 7492e8e0a37..48f559dfd86 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; - sha256 = "17slpywjs04xbcylyqjg6kqbpqwqbigf843y437yfvj1ar6ir1jp"; + sha256 = "0n29zxg4l2m3jsnfw6q2alyzaw7ibbv9nvk57k07sv3lh2yy3f30"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; From 86038283244629400bebd38432ffe298b95842ef Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 18:53:50 +0100 Subject: [PATCH 109/707] flask: add missing dependencies and fix license --- 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 3ce3eadfe1c..b2d8099858a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7534,12 +7534,12 @@ in modules // { md5 = "378670fe456957eb3c27ddaef60b2b24"; }; - propagatedBuildInputs = with self; [ werkzeug jinja2 ]; + propagatedBuildInputs = with self; [ itsdangerous click werkzeug jinja2 ]; meta = { homepage = http://flask.pocoo.org/; description = "A microframework based on Werkzeug, Jinja 2, and good intentions"; - license = "BSD"; + license = licenses.bsd3; }; }; From 3fca941aeb2ed76f28f5815cde1af0610871ab1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 12 Dec 2015 19:01:08 +0100 Subject: [PATCH 110/707] virtualisation.qemu.options: specify type --- nixos/modules/virtualisation/qemu-vm.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 15b0da3bab7..b1f36cf3264 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -297,6 +297,7 @@ in virtualisation.qemu = { options = mkOption { + type = types.listOf types.unspecified; default = []; example = [ "-vga std" ]; description = "Options passed to QEMU."; From 128e635d8a608bc33b34f4caafb27f3d6fe1c402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 13 Dec 2015 18:51:54 +0100 Subject: [PATCH 111/707] pythonPackages.monothonic: address #7307 --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b2d8099858a..1b673629b36 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10570,6 +10570,11 @@ in modules // { url = "http://pypi.python.org/packages/source/m/monotonic/${name}.tar.gz"; sha256 = "1diab6hfh3jpa1f0scpqaqrawk4g97ss4v7gkn2yw8znvdm6abw5"; }; + + patchPhase = optionalString stdenv.isLinux '' + substituteInPlace monotonic.py --replace \ + "ctypes.util.find_library('c')" "'${stdenv.glibc}/lib/libc.so.6'" + ''; }; MySQL_python = buildPythonPackage rec { From 020a09adbbc53301c45514c76dd8489a5175bce0 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Sun, 13 Dec 2015 22:52:35 +0300 Subject: [PATCH 112/707] fish: Use /bin/hostname on darwin. Fixes #11012. --- pkgs/shells/fish/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index c4386b1a9fb..ef3794d5144 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -23,7 +23,6 @@ stdenv.mkDerivation rec { -i "$out/share/fish/functions/seq.fish" \ "$out/share/fish/functions/math.fish" sed -i "s|which |${which}/bin/which |" "$out/share/fish/functions/type.fish" - sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" sed -i "s|nroff |${groff}/bin/nroff |" "$out/share/fish/functions/__fish_print_help.fish" sed -e "s|gettext |${gettext}/bin/gettext |" \ -e "s|which |${which}/bin/which |" \ @@ -31,6 +30,7 @@ stdenv.mkDerivation rec { substituteInPlace "$out/share/fish/functions/fish_default_key_bindings.fish" \ --replace "clear;" "${ncurses}/bin/clear;" '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' + sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py" '' + '' sed -i "s|/sbin /usr/sbin||" \ From 000fe587692e2db8829ebd0894e7204f12a86859 Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Sun, 13 Dec 2015 12:02:42 -0800 Subject: [PATCH 113/707] adv_cmds: fix typo in file name adv_cmds archive actually contains BSDmakefile, not BSDMakefile. While that probably doesn't matter in default installations, it does matter for case-sensitive filesystems. --- .../darwin/apple-source-releases/adv_cmds/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix index a0261875c10..d72afac88fe 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix @@ -19,7 +19,7 @@ in appleDerivation { buildInputs = [ bsdmake perl yacc flex ]; patchPhase = '' - substituteInPlace BSDMakefile \ + substituteInPlace BSDmakefile \ --replace chgrp true \ --replace /Developer/Makefiles/bin/compress-man-pages.pl true \ --replace "ps.tproj" "" --replace "gencat.tproj" "" --replace "md.tproj" "" \ From 9a40af11c320ec49d5d1a5542a27bc0a9dbe1dea Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Sun, 13 Dec 2015 14:31:00 -0800 Subject: [PATCH 114/707] corkscrew: fix darwin build corkscrew ships outdated versions of config.{sub,guess}. Point to automake version instead. --- pkgs/tools/networking/corkscrew/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/corkscrew/default.nix b/pkgs/tools/networking/corkscrew/default.nix index 96747e82cee..d66a4890afe 100644 --- a/pkgs/tools/networking/corkscrew/default.nix +++ b/pkgs/tools/networking/corkscrew/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, automake }: stdenv.mkDerivation rec { name = "corkscrew-2.0"; @@ -8,6 +8,11 @@ stdenv.mkDerivation rec { sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be"; }; + preConfigure = '' + ln -sf ${automake}/share/automake-*/config.sub config.sub + ln -sf ${automake}/share/automake-*/config.guess config.guess + ''; + meta = with stdenv.lib; { homepage = http://agroman.net/corkscrew/; description = "A tool for tunneling SSH through HTTP proxies"; From 38161e837237cb483d1081ebf53b942d1818173f Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Sat, 28 Nov 2015 00:45:36 -0800 Subject: [PATCH 115/707] zile: build on unix zile works fine on non-linux unix systems --- pkgs/applications/editors/zile/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix index 48839246600..7282dc0ba20 100644 --- a/pkgs/applications/editors/zile/default.nix +++ b/pkgs/applications/editors/zile/default.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } From 7349f406ff3cb6c61456c58e0a20b9f8a1535eb3 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 14 Dec 2015 02:05:01 +0100 Subject: [PATCH 116/707] khal: update 0.6.0->0.7.0 --- pkgs/applications/misc/khal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix index cbc728bc1f5..22610c853e3 100644 --- a/pkgs/applications/misc/khal/default.nix +++ b/pkgs/applications/misc/khal/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgs, pythonPackages }: pythonPackages.buildPythonPackage rec { - version = "0.6.0"; + version = "0.7.0"; name = "khal-${version}"; src = fetchurl { url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz"; - sha256 = "16nsib70rczln0hrh93bas58lr8crvq8yipj7qnfs4hbs9b8sbhs"; + sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66"; }; propagatedBuildInputs = with pythonPackages; [ From 618414ff46c69bdd29294f2db79a890648b9fdb2 Mon Sep 17 00:00:00 2001 From: Badi' Abdul-Wahid Date: Sun, 13 Dec 2015 19:33:47 -0500 Subject: [PATCH 117/707] super-user-spark: 0.1.0.0 -> 0.2.0.3 --- .../misc/super_user_spark/default.nix | 44 +++++++++---------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/pkgs/applications/misc/super_user_spark/default.nix b/pkgs/applications/misc/super_user_spark/default.nix index 73a9e343df9..0b89e6a6152 100644 --- a/pkgs/applications/misc/super_user_spark/default.nix +++ b/pkgs/applications/misc/super_user_spark/default.nix @@ -1,33 +1,31 @@ -{ mkDerivation, fetchurl, ghc, aeson, aeson-pretty, base, binary, bytestring -, directory, filepath, HTF, HUnit, mtl, parsec, process, shelly -, stdenv, text, transformers, unix, xdg-basedir -, happy +{ mkDerivation, aeson, aeson-pretty, base, binary, bytestring +, directory, fetchgit, filepath, HTF, HUnit, mtl +, optparse-applicative, parsec, process, shelly, stdenv, text +, transformers, unix, zlib }: - -mkDerivation rec { +mkDerivation { pname = "super-user-spark"; - version = "0.1.0.0"; - - src = fetchurl { - url = "https://github.com/NorfairKing/super-user-spark/archive/v0.1.tar.gz"; - sha256 = "90258cb2d38f35b03867fdf82dbd49500cdec04f3cf05d0eaa18592cb44fe13f"; + version = "0.2.0.3"; + src = fetchgit { + url = "https://github.com/NorfairKing/super-user-spark"; + sha256 = "718b6760e76377aa37b145d0dff690b293325b510ce05d239c4fa28538420931"; + rev = "a7d132f7631649c3a093ede286e66f78e9793fba"; }; - isLibrary = false; isExecutable = true; + executableHaskellDepends = [ + aeson aeson-pretty base binary bytestring directory filepath HTF + mtl optparse-applicative parsec process shelly text transformers + unix zlib + ]; + testHaskellDepends = [ + aeson aeson-pretty base binary bytestring directory filepath HTF + HUnit mtl optparse-applicative parsec process shelly text + transformers unix zlib + ]; jailbreak = true; - - buildDepends = [ - aeson aeson-pretty base binary bytestring directory filepath HTF - mtl parsec process shelly text transformers unix xdg-basedir happy - ]; - testDepends = [ - aeson aeson-pretty base binary bytestring directory filepath HTF - HUnit mtl parsec process shelly text transformers unix xdg-basedir - ]; + description = "Configure your dotfile deployment with a DSL"; license = stdenv.lib.licenses.mit; homepage = "https://github.com/NorfairKing/super-user-spark"; - description = "A safe way to never worry about your beautifully configured system again"; - platforms = ghc.meta.platforms; maintainers = [ stdenv.lib.maintainers.badi ]; } From a8d43d6950b6f0c80436e905d4946e1371cf6e1e Mon Sep 17 00:00:00 2001 From: Badi' Abdul-Wahid Date: Sun, 13 Dec 2015 20:45:11 -0500 Subject: [PATCH 118/707] google-musicmanager: beta_1.0.221.5230-r0 -> beta_1.0.243.1116-r0 --- pkgs/applications/audio/google-musicmanager/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/google-musicmanager/default.nix b/pkgs/applications/audio/google-musicmanager/default.nix index 7c69a25eb04..f86513659b6 100644 --- a/pkgs/applications/audio/google-musicmanager/default.nix +++ b/pkgs/applications/audio/google-musicmanager/default.nix @@ -6,23 +6,24 @@ let archUrl = name: arch: "http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/${name}_${arch}.deb"; in stdenv.mkDerivation rec { - version = "beta_1.0.221.5230-r0"; # friendly to nix-env version sorting algo + version = "beta_1.0.243.1116-r0"; # friendly to nix-env version sorting algo product = "google-musicmanager"; name = "${product}-${version}"; # When looking for newer versions, since google doesn't let you list their repo dirs, # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/Release - # fetch an appropriate packages file eg main/binary-amd64/Packages + # fetch an appropriate packages file such as main/binary-amd64/Packages: + # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/main/binary-amd64/Packages # which will contain the links to all available *.debs for the arch. src = if stdenv.system == "x86_64-linux" then fetchurl { url = archUrl name "amd64"; - sha256 = "1h0ssbz6y9xi2szalgb5wcxi8m1ylg4qf2za6zgvi908hpan7q37"; + sha256 = "54f97f449136e173492d36084f2c01244b84f02d6e223fb8a40661093e0bec7c"; } else fetchurl { url = archUrl name "i386"; - sha256 = "0q8cnzx7s25bpqlbp40d43mwd6m8kvhvdifkqlgc9phpydnqpd1i"; + sha256 = "121a7939015e2270afa3f1c73554102e2b4f2e6a31482ff7be5e7c28dd101d3c"; }; unpackPhase = '' From f076a0867feb51fb87c527389c48fb90ac5fd25f Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Mon, 16 Nov 2015 15:36:10 -0600 Subject: [PATCH 119/707] geda: refdes_renum called /usr/bin/perl --- pkgs/applications/science/electronics/geda/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/electronics/geda/default.nix b/pkgs/applications/science/electronics/geda/default.nix index 03ddf835343..25934c71e8e 100644 --- a/pkgs/applications/science/electronics/geda/default.nix +++ b/pkgs/applications/science/electronics/geda/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk }: +{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk, perl }: stdenv.mkDerivation rec { name = "geda-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; configureFlags = "--disable-update-xdg-database"; - buildInputs = [ pkgconfig guile gtk flex gawk ]; + buildInputs = [ pkgconfig guile gtk flex gawk perl ]; meta = with stdenv.lib; { description = "Full GPL'd suite of Electronic Design Automation tools"; From cbe786a53062cd6f0f9f5ebe4cc607d7a44fe3ca Mon Sep 17 00:00:00 2001 From: Anton Fedotov Date: Wed, 9 Dec 2015 08:43:38 +0300 Subject: [PATCH 120/707] ccache: create symlinks to gcc lib & include in ccache-links directory This patch fixes compilation errors when using ccache wrapper: ``` cc1: error: /nix/store/19vvbsjs6l6j0r22albzhysxfvr94imf-ccache-links/lib/gcc/*/*/include-fixed: No such file or directory ``` --- pkgs/development/tools/misc/ccache/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index fb6d03c6e85..ed87428f98d 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -49,6 +49,9 @@ stdenv.mkDerivation { ln -s ${gcc.cc}/bin/$executable $out/bin/$executable fi done + for file in $(ls ${gcc.cc} | grep -vw bin); do + ln -s ${gcc.cc}/$file $out/$file + done ''); }; From 5ff41b047a7a9a4a99c5373c5b75bf0e1d639203 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sat, 12 Dec 2015 21:29:28 +0100 Subject: [PATCH 121/707] python.imread: init at 0.5.1 This is a package to read image files into numpy arrays. --- lib/maintainers.nix | 1 + pkgs/top-level/python-packages.nix | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 596b8a49a10..c78a3e61a98 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -174,6 +174,7 @@ lsix = "Lancelot SIX "; ludo = "Ludovic Courtès "; lukego = "Luke Gorrie "; + luispedro = "Luis Pedro Coelho "; lw = "Sergey Sofeychuk "; madjar = "Georges Dubus "; magnetophon = "Bart Brouns "; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0f76a13d6f5..22c2fd6c1d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4940,6 +4940,33 @@ in modules // { }; }; + imread = buildPythonPackage rec { + name = "python-imread-${version}"; + version = "0.5.1"; + + src = pkgs.fetchurl { + url = "https://github.com/luispedro/imread/archive/release-${version}.tar.gz"; + sha256 = "12d7ba3523ba50d67d526e9797e041021dd9cd4acf9567a9bf73c8ae0b689d4a"; + }; + + buildInputs = with self; [ + nose + pkgs.libjpeg + pkgs.libpng + pkgs.libtiff + pkgs.libwebp + ]; + propagatedBuildInputs = with self; [ numpy ]; + + meta = with stdenv.lib; { + description = "Python package to load images as numpy arrays"; + homepage = https://readthedocs.org/projects/imread/; + maintainers = with maintainers; [ luispedro ]; + license = licenses.mit; + platforms = platforms.linux; + }; + }; + itsdangerous = buildPythonPackage rec { name = "itsdangerous-0.24"; From a77a8e3ca668c53854fbe0558f1642949040ace6 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sat, 12 Dec 2015 23:30:16 +0100 Subject: [PATCH 122/707] python.mahotas: init at 1.4.0 This is a computer vision package for Python based on numpy --- pkgs/top-level/python-packages.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 22c2fd6c1d3..7a64f43c14b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3097,6 +3097,34 @@ in modules // { }; }; + mahotas = buildPythonPackage rec { + name = "python-mahotas-${version}"; + version = "1.4.0"; + + src = pkgs.fetchurl { + url = "https://github.com/luispedro/mahotas/archive/release-${version}.tar.gz"; + sha256 = "30c4b979e0d5f4c013860321766a79ffcabe56c1ad9088e5d0c6b36aec5f0415"; + }; + + buildInputs = with self; [ + nose + pillow + scipy + ]; + propagatedBuildInputs = with self; [ + numpy + imread + ]; + + meta = with stdenv.lib; { + description = "Computer vision package based on numpy"; + homepage = https://readthedocs.org/projects/mahotas/; + maintainers = with maintainers; [ luispedro ]; + license = licenses.mit; + platforms = platforms.linux; + }; + }; + mixpanel = buildPythonPackage rec { version = "4.0.2"; name = "mixpanel-${version}"; From b22725847def45ff717c1e9b8ceae0ac62f7ce63 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Mon, 14 Dec 2015 20:49:14 +0900 Subject: [PATCH 123/707] udevil: added patch --- pkgs/applications/misc/udevil/default.nix | 1 + .../misc/udevil/device-info-sys-stat.patch | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/applications/misc/udevil/device-info-sys-stat.patch diff --git a/pkgs/applications/misc/udevil/default.nix b/pkgs/applications/misc/udevil/default.nix index 5ba80348d1f..75c02d3ba6d 100644 --- a/pkgs/applications/misc/udevil/default.nix +++ b/pkgs/applications/misc/udevil/default.nix @@ -21,6 +21,7 @@ stdenv.mkDerivation { cat src/Makefile.am exit 2 ''; + patches = [ ./device-info-sys-stat.patch ]; meta = { description = "A command line Linux program which mounts and unmounts removable devices without a password, shows device info, and monitors device changes"; homepage = https://ignorantguru.github.io/udevil/; diff --git a/pkgs/applications/misc/udevil/device-info-sys-stat.patch b/pkgs/applications/misc/udevil/device-info-sys-stat.patch new file mode 100644 index 00000000000..554682108e3 --- /dev/null +++ b/pkgs/applications/misc/udevil/device-info-sys-stat.patch @@ -0,0 +1,14 @@ +diff --git a/src/device-info.h b/src/device-info.h +index 6cb3683..ddac24c 100644 +--- a/src/device-info.h ++++ b/src/device-info.h +@@ -18,7 +18,8 @@ + // intltool + #include + +- ++// stat ++#include + + typedef struct device_t { + struct udev_device *udevice; From b6199833547a08e550b9111b7f09fa856e144c26 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Mon, 14 Dec 2015 21:05:25 +0900 Subject: [PATCH 124/707] signing-party: 2.0 -> 2.1 --- pkgs/tools/security/signing-party/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/signing-party/default.nix b/pkgs/tools/security/signing-party/default.nix index 21e0bb4c4a9..dfd5cd6c7d7 100644 --- a/pkgs/tools/security/signing-party/default.nix +++ b/pkgs/tools/security/signing-party/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, gnupg, perl, automake111x, autoconf}: stdenv.mkDerivation rec { - version = "2.0"; + version = "2.1"; basename = "signing-party"; name = "${basename}-${version}"; src = fetchurl { url = "mirror://debian/pool/main/s/${basename}/${basename}_${version}.orig.tar.gz"; - sha256 = "0vn15sb2yyzd57xdblw48p5hi6fnpvgy83mqyz5ygph65y5y88yc"; + sha256 = "0pcni3mf92503bqknwlsvv1f5gz23dmzwas2j8g2fk7afjd891ya"; }; sourceRoot = "."; From 686f1ff9245617bf311062fc9ef044217ff8e2c3 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 5 Dec 2015 03:49:17 +0100 Subject: [PATCH 125/707] python-packages: MechanicalSoup: init at 0.4.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3ce3eadfe1c..33cad1540c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9866,6 +9866,25 @@ in modules // { }; }); + MechanicalSoup = buildPythonPackage rec { + name = "MechanicalSoup-${version}"; + version = "0.4.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/M/MechanicalSoup/${name}.zip"; + sha256 = "02jkwly4gw1jqm55l4wwn0j0ggnysx55inw9j96bif5l49z5cacd"; + }; + + propagatedBuildInputs = with self; [ requests2 beautifulsoup4 six ]; + + meta = { + description = "A Python library for automating interaction with websites"; + homepage = https://github.com/hickford/MechanicalSoup; + license = licenses.mit; + maintainers = with maintainers; [ jgillich ]; + }; + }; + meld3 = buildPythonPackage rec { name = "meld3-1.0.0"; From 2f41c41f95ec751bbb44bf57e9828b3f7a9df9e2 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 5 Dec 2015 03:49:58 +0100 Subject: [PATCH 126/707] python-packages: gspoauth: init at 0.0.4 --- pkgs/top-level/python-packages.nix | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 33cad1540c3..bde4c28ab6d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4848,6 +4848,38 @@ in modules // { }; }; + gpsoauth = buildPythonPackage rec { + version = "0.0.4"; + name = "gpsoauth-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/gpsoauth/${name}.tar.gz"; + sha256 = "1mhd2lkl1f4fmia1cwxwik8gvqr5q16scjip7kfwzadh9a11n9kw"; + }; + + propagatedBuildInputs = with self; [ + cffi + cryptography + enum34 + idna + ipaddress + ndg-httpsclient + pyopenssl + pyasn1 + pycparser + pycrypto + requests2 + six + ]; + + meta = { + description = "A python client library for Google Play Services OAuth."; + homepage = "https://github.com/simon-weber/gpsoauth"; + license = licenses.mit; + maintainers = with maintainers; [ jgillich ]; + }; + }; + gst-python = callPackage ../development/libraries/gstreamer/python { gst-plugins-base = pkgs.gst_all_1.gst-plugins-base; }; From 9571740b1b49c4079824bf6fb768e2c4269855a7 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 5 Dec 2015 03:51:57 +0100 Subject: [PATCH 127/707] python-packages: gmusicapi: 4.0.0 -> 7.0.0 --- pkgs/top-level/python-packages.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bde4c28ab6d..1283263c0be 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4667,11 +4667,11 @@ in modules // { }; gmusicapi = with pkgs; buildPythonPackage rec { - name = "gmusicapi-4.0.0"; + name = "gmusicapi-7.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gmusicapi/gmusicapi-4.0.0.tar.gz"; - md5 = "12ba66607531978b349c7035c9bab311"; + url = "https://pypi.python.org/packages/source/g/gmusicapi/gmusicapi-7.0.0.tar.gz"; + sha256 = "1zji4cgylyzz97cz69lywkbsn5nvvzrhk7iaqnpqpfvj9gwdchwn"; }; propagatedBuildInputs = with self; [ @@ -4680,14 +4680,16 @@ in modules // { mutagen protobuf setuptools - requests + requests2 dateutil proboscis mock appdirs oauth2client + pyopenssl + gpsoauth + MechanicalSoup ]; - doCheck = false; meta = { description = "An unofficial API for Google Play Music"; From 872d0be1a0441d3e1071bc00feb109654a00f211 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 5 Dec 2015 03:53:01 +0100 Subject: [PATCH 128/707] mopidy-gmusic: init at 1.0.0 --- lib/maintainers.nix | 1 + .../audio/mopidy-gmusic/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-gmusic/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index d1e2b100ab8..8b3694f9a3d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -141,6 +141,7 @@ jefdaj = "Jeffrey David Johnson "; jfb = "James Felix Black "; jgeerds = "Jascha Geerds "; + jgillich = "Jakob Gillich "; jirkamarsik = "Jirka Marsik "; joachifm = "Joachim Fasting "; joamaki = "Jussi Maki "; diff --git a/pkgs/applications/audio/mopidy-gmusic/default.nix b/pkgs/applications/audio/mopidy-gmusic/default.nix new file mode 100644 index 00000000000..00468db767a --- /dev/null +++ b/pkgs/applications/audio/mopidy-gmusic/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-gmusic-${version}"; + version = "1.0.0"; + + src = fetchurl { + url = "https://github.com/mopidy/mopidy-gmusic/archive/v${version}.tar.gz"; + sha256 = "0yfilzfamy1bxnmgb1xk56jrk4sz0i7vcnc0a8klrm9sc7agnm9i"; + }; + + propagatedBuildInputs = [ mopidy pythonPackages.requests2 pythonPackages.gmusicapi ]; + + doCheck = false; + + meta = with stdenv.lib; { + homepage = http://www.mopidy.com/; + description = "Mopidy extension for playing music from Google Play Music"; + license = licenses.asl20; + maintainers = [ maintainers.jgillich ]; + hydraPlatforms = []; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 142ea8d114c..e9f6847d34f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12489,6 +12489,8 @@ let mopidy = callPackage ../applications/audio/mopidy { }; + mopidy-gmusic = callPackage ../applications/audio/mopidy-gmusic { }; + mopidy-spotify = callPackage ../applications/audio/mopidy-spotify { }; mopidy-moped = callPackage ../applications/audio/mopidy-moped { }; From d241354dcdaee5329f78e1039ebcdd7ef05dc379 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 5 Dec 2015 14:28:56 +0100 Subject: [PATCH 129/707] mopidy: 1.0.5 -> 1.1.1 --- pkgs/applications/audio/mopidy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index 7c236944892..39889973430 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -5,15 +5,15 @@ pythonPackages.buildPythonPackage rec { name = "mopidy-${version}"; - version = "1.0.5"; + version = "1.1.1"; src = fetchurl { url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz"; - sha256 = "0lhmm2w2djf6mb3acw1yq1k4j74v1lf4kgx24dsdnpkgsycrv5q6"; + sha256 = "1xfyg8xqgnrb98wx7a4fzr4vlzkffjhkc1s36ka63rwmx86vqhyw"; }; propagatedBuildInputs = with pythonPackages; [ - gst_python pygobject pykka tornado gst_plugins_base gst_plugins_good + gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good ]; # There are no tests From 75d292f173ced7124ac3b2124863ec1b99e9ce9d Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Mon, 14 Dec 2015 15:33:51 +0000 Subject: [PATCH 130/707] gosmore: once more fix broken hash and disable externals for now to prevent further breakage --- pkgs/applications/misc/gosmore/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix index 67c21aea9e6..e894ace0d45 100644 --- a/pkgs/applications/misc/gosmore/default.nix +++ b/pkgs/applications/misc/gosmore/default.nix @@ -5,10 +5,14 @@ let in stdenv.mkDerivation { name = "gosmore-r${version}"; + # the gosmore svn repository does not lock revision numbers of its externals + # so we explicitly disable them to avoid breaking the hash + # especially as the externals appear to be unused src = fetchsvn { url = http://svn.openstreetmap.org/applications/rendering/gosmore; - sha256 = "0i6m3ikavsaqhfy18sykzq0cflw978nr4fhg18hawndcmr45v5zj"; + sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi"; rev = "${version}"; + ignoreExternals = true; }; buildInputs = [ libxml2 gtk curl ]; From 2f26b82411ea93349d375ea3b5d833b04a455972 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Mon, 14 Dec 2015 11:14:53 -0500 Subject: [PATCH 131/707] Remove PATH assumption from fhs-userenv. Previously is was assumed that bash was in the path when calling the environment setup script. This changes all of the references of bash to be absolute paths so that the user doesn't have to worry about the environment they call it with. --- pkgs/build-support/build-fhs-userenv/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix index aa95080ac52..54ce3e76897 100644 --- a/pkgs/build-support/build-fhs-userenv/default.nix +++ b/pkgs/build-support/build-fhs-userenv/default.nix @@ -1,8 +1,9 @@ -{ runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : -{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "" } : +{ runCommand, lib, writeText, writeScriptBin, stdenv, bash, ruby } : +{ env, runScript ? "${bash}/bin/bash", extraBindMounts ? [], extraInstallCommands ? "" } : let name = env.pname; + bash' = "${bash}/bin/bash"; # Sandboxing script chroot-user = writeScriptBin "chroot-user" '' @@ -29,7 +30,7 @@ in runCommand name { runCommand "${name}-shell-env" { shellHook = '' export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)" + exec ${chroot-user}/bin/chroot-user ${env} ${bash'} -l ${init bash'} "$(pwd)" ''; } '' echo >&2 "" @@ -42,7 +43,7 @@ in runCommand name { cat <$out/bin/${name} #! ${stdenv.shell} export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:\$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" + exec ${chroot-user}/bin/chroot-user ${env} ${bash'} -l ${init runScript} "\$(pwd)" "\$@" EOF chmod +x $out/bin/${name} ${extraInstallCommands} From a5bc11f9eb70482daf559019f9b775c285defb63 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 14 Dec 2015 17:26:24 +0100 Subject: [PATCH 132/707] nixos/vm-tests: Remove msize mount option This seems to be the root cause of the random page allocation failures and @wizeman did a very good job on not only finding the root problem but also giving a detailed explanation of it in #10828. Here is an excerpt: The problem here is that the kernel is trying to allocate a contiguous section of 2^7=128 pages, which is 512 KB. This is way too much: kernel pages tend to get fragmented over time and kernel developers often go to great lengths to try allocating at most only 1 contiguous page at a time whenever they can. From the error message, it looks like the culprit is unionfs, but this is misleading: unionfs is the name of the userspace process that was running when the system ran out of memory, but it wasn't unionfs who was allocating the memory: it was the kernel; specifically it was the v9fs_dir_readdir_dotl() function, which is the code for handling the readdir() function in the 9p filesystem (the filesystem that is used to share a directory structure between a qemu host and its VM). If you look at the code, here's what it's doing at the moment it tries to allocate memory: buflen = fid->clnt->msize - P9_IOHDRSZ; rdir = v9fs_alloc_rdir_buf(file, buflen); If you look into v9fs_alloc_rdir_buf(), you will see that it will try to allocate a contiguous buffer of memory (using kzalloc(), which is a wrapper around kmalloc()) of size buflen + 8 bytes or so. So in reality, this code actually allocates a buffer of size proportional to fid->clnt->msize. What is this msize? If you follow the definition of the structures, you will see that it's the negotiated buffer transfer size between 9p client and 9p server. On the client side, it can be controlled with the msize mount option. What this all means is that, the reason for running out of memory is that the code (which we can't easily change) tries to allocate a contiguous buffer of size more or less equal to "negotiated 9p protocol buffer size", which seems to be way too big (in our NixOS tests, at least). After that initial finding, @lethalman tested the gnome3 gdm test without setting the msize parameter at all and it seems to have resolved the problem. The reason why I'm committing this without testing against all of the NixOS VM test is basically that I think we can only go better but not worse than the current state. Signed-off-by: aszlig --- nixos/modules/virtualisation/qemu-vm.nix | 6 +++--- pkgs/build-support/vm/default.nix | 4 ++-- pkgs/build-support/vm/windows/controller/default.nix | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index b1f36cf3264..0cefd618075 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -426,19 +426,19 @@ in ${if cfg.writableStore then "/nix/.ro-store" else "/nix/store"} = { device = "store"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576,cache=loose"; + options = "trans=virtio,version=9p2000.L,cache=loose"; neededForBoot = true; }; "/tmp/xchg" = { device = "xchg"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576,cache=loose"; + options = "trans=virtio,version=9p2000.L,cache=loose"; neededForBoot = true; }; "/tmp/shared" = { device = "shared"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576"; + options = "trans=virtio,version=9p2000.L"; neededForBoot = true; }; } // optionalAttrs cfg.writableStore diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 250f2b0fbce..ebcbf8c87b5 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -118,7 +118,7 @@ rec { echo "mounting Nix store..." mkdir -p /fs/nix/store - mount -t 9p store /fs/nix/store -o trans=virtio,version=9p2000.L,msize=262144,cache=loose + mount -t 9p store /fs/nix/store -o trans=virtio,version=9p2000.L,cache=loose mkdir -p /fs/tmp /fs/run /fs/var mount -t tmpfs -o "mode=1777" none /fs/tmp @@ -127,7 +127,7 @@ rec { echo "mounting host's temporary directory..." mkdir -p /fs/tmp/xchg - mount -t 9p xchg /fs/tmp/xchg -o trans=virtio,version=9p2000.L,msize=262144,cache=loose + mount -t 9p xchg /fs/tmp/xchg -o trans=virtio,version=9p2000.L,cache=loose mkdir -p /fs/proc mount -t proc none /fs/proc diff --git a/pkgs/build-support/vm/windows/controller/default.nix b/pkgs/build-support/vm/windows/controller/default.nix index 0beaf401758..1c8e6af83b8 100644 --- a/pkgs/build-support/vm/windows/controller/default.nix +++ b/pkgs/build-support/vm/windows/controller/default.nix @@ -48,11 +48,11 @@ let mount -t proc none /fs/proc mount -t 9p \ - -o trans=virtio,version=9p2000.L,msize=262144,cache=loose \ + -o trans=virtio,version=9p2000.L,cache=loose \ store /fs/nix/store mount -t 9p \ - -o trans=virtio,version=9p2000.L,msize=262144,cache=loose \ + -o trans=virtio,version=9p2000.L,cache=loose \ xchg /fs/xchg echo root:x:0:0::/root:/bin/false > /fs/etc/passwd From 6353f580f90c0fdd2b418fa853a78ec508bda2a5 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 14 Dec 2015 17:36:22 +0100 Subject: [PATCH 133/707] nixos/qemu-vm: Disable cache for $NIX_DISK_IMAGE As @domenkozar noted in #10828, cache=writeback seems to do more harm than good: https://github.com/NixOS/nixpkgs/issues/10828#issuecomment-164426821 He has tested it using the openstack NixOS tests and found that cache=none significantly improves startup performance. Signed-off-by: aszlig --- nixos/modules/virtualisation/qemu-vm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 0cefd618075..e90e319a36b 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -76,14 +76,14 @@ let -virtfs local,path=$TMPDIR/xchg,security_model=none,mount_tag=xchg \ -virtfs local,path=''${SHARED_DIR:-$TMPDIR/xchg},security_model=none,mount_tag=shared \ ${if cfg.useBootLoader then '' - -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=writeback,werror=report \ + -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=none,werror=report \ -drive index=1,id=drive2,file=$TMPDIR/disk.img,media=disk \ ${if cfg.useEFIBoot then '' -pflash $TMPDIR/bios.bin \ '' else '' ''} '' else '' - -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=writeback,werror=report \ + -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=none,werror=report \ -kernel ${config.system.build.toplevel}/kernel \ -initrd ${config.system.build.toplevel}/initrd \ -append "$(cat ${config.system.build.toplevel}/kernel-params) init=${config.system.build.toplevel}/init regInfo=${regInfo} ${kernelConsole} $QEMU_KERNEL_PARAMS" \ From e6a4acb241a17724935b30dba65d396ca4fd40a7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:36:43 +0100 Subject: [PATCH 134/707] python sqlalchemy: 1.0.9 -> 1.1.10 --- 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 fab1d41bcc7..e60fae44b73 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17929,12 +17929,12 @@ in modules // { }; sqlalchemy_1_0 = self.sqlalchemy9.override rec { - name = "SQLAlchemy-1.0.9"; + name = "SQLAlchemy-1.0.10"; doCheck = !isPyPy; # lots of tests fail src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "03mi79s8dcsqpwql98mlvaf6mf4xf5j3fjkv5m6dgibfwc0pbly3"; + sha256 = "963415bf4ea4fa13698893464bc6917d291331e0e8202dddd0ebfed2864ef7e3"; }; }; From 1298fa443d07f121f2af90ef743c9e6758dad43a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:37:13 +0100 Subject: [PATCH 135/707] python pandas: use sqlalchemy_1_0 --- 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 e60fae44b73..c787de88cbe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12834,7 +12834,7 @@ in modules // { pytz xlrd bottleneck - sqlalchemy9 + sqlalchemy_1_0 lxml # Disabling this because an upstream dependency, pep8, is broken on v3.5. (if isPy35 then null else html5lib) From 556e968924fee9ecc8751ea70a1a0bd7ac02a8f5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:38:08 +0100 Subject: [PATCH 136/707] python blaze: update inputs and fix tests --- pkgs/top-level/python-packages.nix | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c787de88cbe..7bc85683cf3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1695,19 +1695,28 @@ in modules // { buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ - numpy - pandas - datashape - odo - toolz cytoolz - multipledispatch - sqlalchemy9 # sqlalchemy8 should also work - psutil - numba + datashape + flask h5py + multipledispatch + numba + numpy + odo + pandas + psutil + pymongo + pyyaml + requests2 + sqlalchemy_1_0 + tables + toolz ]; + checkPhase = '' + py.test blaze/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/blaze; description = "Allows Python users a familiar interface to query data living in other data storage systems"; From 5e3d2b83a2f0245f1b53177c36be5d51fa6db94b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:38:33 +0100 Subject: [PATCH 137/707] python odo: 0.3.3 -> 0.3.4 and fix tests --- pkgs/top-level/python-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bc85683cf3..4d8634dff6c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11427,15 +11427,20 @@ in modules // { odo = buildPythonPackage rec { name = "odo-${version}"; - version= "0.3.3"; + version= "0.3.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz"; - sha256 = "2499ee86c26c74daa28f21ed235ca331911065950deea5169ebdb7d5dae6ebef"; + sha256 = "77bdb372999ac0d9ef272927d7867a668108a4193e11eb8646bf770370a30725"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ datashape numpy pandas toolz multipledispatch networkx ]; + checkPhase = '' + py.test odo/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/odo; description = "Data migration utilities"; From 00934bb90865b6ccd3b226c7d495adbf4dabc9da Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 14 Dec 2015 17:39:55 +0100 Subject: [PATCH 138/707] nixos/tests: Revert setting min_free_kbytes This reverts commit 02b568414d509b5d06dbd95bcc0868d487ed359e. With a5bc11f and 6353f58 in place, we really don't need this anymore. After running about 500 VM tests on my Hydra, it still didn't improve very much. Signed-off-by: aszlig --- nixos/modules/testing/test-instrumentation.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix index c1dbfe305dd..f37bbd0246d 100644 --- a/nixos/modules/testing/test-instrumentation.nix +++ b/nixos/modules/testing/test-instrumentation.nix @@ -88,10 +88,6 @@ let kernel = config.boot.kernelPackages.kernel; in boot.consoleLogLevel = 7; - # Make sure we don't hit page allocation failures if the VM's memory is - # heavily fragmented. - boot.kernel.sysctl."vm.min_free_kbytes" = 16384; - # Prevent tests from accessing the Internet. networking.defaultGateway = mkOverride 150 ""; networking.nameservers = mkOverride 150 [ ]; From f7e2f8844defc5608baad8c1c8b2c807c46bd750 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Mon, 14 Dec 2015 18:01:59 +0100 Subject: [PATCH 139/707] sundtek: 2015-09-07 -> 2015-12-12 --- pkgs/misc/drivers/sundtek/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/drivers/sundtek/default.nix b/pkgs/misc/drivers/sundtek/default.nix index b3a3252a4a2..2587765da68 100644 --- a/pkgs/misc/drivers/sundtek/default.nix +++ b/pkgs/misc/drivers/sundtek/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; let - version = "2015-09-07"; + version = "2015-12-12"; rpath = makeLibraryPath [ "$out/lib" "$out/bin" ]; platform = with stdenv; if isx86_64 then "64bit" @@ -15,7 +15,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://www.sundtek.de/media/netinst/${platform}/installer.tar.gz"; - sha256 = "159221lxxs5a37akamp8jc3b5ny36451mgjljajvck0c6qb6fkpr"; + sha256 = "0pjg4xww25z36dp64az4gdc0fxhz51f5kb8zvj03hqc774fxzpbq"; }; name = "sundtek-${version}"; From 268102ce2a810a80e2b4da7ecbf241672f03fcc6 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 14 Dec 2015 18:27:31 +0100 Subject: [PATCH 140/707] units: add readline dependency The dependency on `readline` is for tab-completion support. This commit also enables tests and adds meta information. --- pkgs/tools/misc/units/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/units/default.nix b/pkgs/tools/misc/units/default.nix index 6a7c3b130bd..3fc015c7704 100644 --- a/pkgs/tools/misc/units/default.nix +++ b/pkgs/tools/misc/units/default.nix @@ -1,4 +1,5 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl, readline }: + stdenv.mkDerivation rec { name = "units-${version}"; version = "2.12"; @@ -8,8 +9,14 @@ stdenv.mkDerivation rec { sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q"; }; - meta = { + buildInputs = [ readline ]; + + doCheck = true; + + meta = with stdenv.lib; { description = "Unit conversion tool"; - platforms = stdenv.lib.platforms.linux; + homepage = https://www.gnu.org/software/units/; + license = [ licenses.gpl3Plus ]; + platforms = stdenv.lib.platforms.all; }; } From a77569fd972d0afc2bfb1da9f37bd5e2a6781e50 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 02:46:04 +0900 Subject: [PATCH 141/707] jumanji: fixed source --- pkgs/applications/networking/browsers/jumanji/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix index 1969a1f502f..0e962f5fc1f 100644 --- a/pkgs/applications/networking/browsers/jumanji/default.nix +++ b/pkgs/applications/networking/browsers/jumanji/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { version = "20150107"; src = fetchgit { - url = git://pwmt.org/jumanji.git; + url = https://git.pwmt.org/pwmt/jumanji.git; rev = "f8e04e5b5a9fec47d49ca63a096e5d35be281151"; sha256 = "1xq06iabr4y76faf4w1cx6fhwdksfsxggz1ndny7icniwjzk98h9"; }; From 7e1ce60869c0056e6ca2b121f886feea68474fc7 Mon Sep 17 00:00:00 2001 From: Mate Kovacs Date: Mon, 14 Dec 2015 10:00:24 -0800 Subject: [PATCH 142/707] pythonPackages.pyrr: init at 0.7.0 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1b673629b36..b99133f39d7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14788,6 +14788,27 @@ in modules // { }; }; + pyrr = buildPythonPackage rec { + name = "pyrr-${version}"; + version = "0.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pyrr/pyrr-${version}.tar.gz"; + sha256 = "ddfcd83394e9703138a3c668747df3548a81238d8ab36d4bf6a84d25ea90b2cd"; + }; + + # ImportError: No module named tests + doCheck = false; + + propagatedBuildInputs = with self; [ multipledispatch numpy ]; + + meta = { + description = "3D mathematical functions using NumPy"; + homepage = https://github.com/adamlwgriffiths/Pyrr/; + license = licenses.bsd2; + }; + }; + pyx = buildPythonPackage rec { name = "pyx-${version}"; version = "0.14.1"; From f22aefbba0117c84ce72a67a57d33d2f69bbbd3e Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 03:41:14 +0900 Subject: [PATCH 143/707] vips: 8.0.2 -> 8.1.1 --- pkgs/tools/graphics/vips/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/vips/default.nix b/pkgs/tools/graphics/vips/default.nix index a411080c390..153611e0587 100644 --- a/pkgs/tools/graphics/vips/default.nix +++ b/pkgs/tools/graphics/vips/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "vips-8.0.2"; + name = "vips-8.1.1"; src = fetchurl { url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz"; - sha256 = "0fpshv71sxbkbycxgd2hvwn7fyq9rm0rsgq0b1zld1an88mi0v8y"; + sha256 = "014sgpqj832vl5k212jv25sjakrsifnspjfclywpmn7cwaqwjlvx"; }; buildInputs = From 45e335aabdde8e8b8488801c0736442c8fe9aeb6 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 14 Dec 2015 20:29:10 +0100 Subject: [PATCH 144/707] linux-testing: 4.4.0-rc4 -> 4.4.0-rc5 Upstream changes can be found at: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=v4.4-rc5 Signed-off-by: aszlig --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 54ad2183382..5cc5b2e8bca 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4-rc4"; - modDirVersion = "4.4.0-rc4"; + version = "4.4-rc5"; + modDirVersion = "4.4.0-rc5"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "040ddm61rifscssnycd1lq9bfni3yrsdrrgg172rb9h5d7ya6981"; + sha256 = "0qr1a8nmq6csbsw4cbqnn3m37a0fapj7a7cm9vj7fy7kq1rgxkpb"; }; features.iwlwifi = true; From 7d02a16aecae08050e12c6a64017afdc905e72ca Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Sun, 13 Dec 2015 17:07:10 +0300 Subject: [PATCH 145/707] gettext: fix absolute path --- pkgs/development/libraries/gettext/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 874c767046b..3d7cfc0ca31 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -28,6 +28,12 @@ stdenv.mkDerivation (rec { "gt_cv_func_CFLocaleCopyCurrent=no" ]); + patchPhase = '' + substituteInPlace gettext-tools/projects/KDE/trigger --replace "/bin/pwd" pwd + substituteInPlace gettext-tools/projects/GNOME/trigger --replace "/bin/pwd" pwd + substituteInPlace gettext-tools/src/project-id --replace "/bin/pwd" pwd + ''; + # On cross building, gettext supposes that the wchar.h from libc # does not fulfill gettext needs, so it tries to work with its # own wchar.h file, which does not cope well with the system's @@ -90,8 +96,8 @@ stdenv.mkDerivation (rec { # Make sure `error.c' gets compiled and is part of `libgettextlib.la'. # This fixes: # gettext-0.18.1.1/gettext-tools/src/msgcmp.c:371: undefined reference to `_error_message_count' - - '' sed -i gettext-tools/gnulib-lib/Makefile.in \ + '' + sed -i gettext-tools/gnulib-lib/Makefile.in \ -e 's/am_libgettextlib_la_OBJECTS =/am_libgettextlib_la_OBJECTS = error.lo/g' ''; }) From 60df14b4b1ae40b726b68e91c5a45f823d4a7e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 14 Dec 2015 21:12:51 +0100 Subject: [PATCH 146/707] fix eval --- pkgs/applications/misc/playonlinux/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix index c79d9c037d1..731cf5a6ba9 100644 --- a/pkgs/applications/misc/playonlinux/default.nix +++ b/pkgs/applications/misc/playonlinux/default.nix @@ -19,6 +19,8 @@ , pkgsi686Linux }: +assert stdenv.isLinux; + let version = "4.2.9"; From a900bf6e158f930917cdcab51ca7cbae6b2295c8 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Sat, 12 Dec 2015 11:46:43 -0800 Subject: [PATCH 147/707] vmtouch: git-20150310 -> 1.0.2 --- pkgs/tools/misc/vmtouch/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/vmtouch/default.nix b/pkgs/tools/misc/vmtouch/default.nix index 767a61c2bb5..34328b339fc 100644 --- a/pkgs/tools/misc/vmtouch/default.nix +++ b/pkgs/tools/misc/vmtouch/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "vmtouch"; - version = "git-20150310"; - name = "${pname}-${version}"; + version = "1.0.2"; + name = "${pname}-git-${version}"; src = fetchFromGitHub { owner = "hoytech"; repo = "vmtouch"; - rev = "4e1b106e59942678c1e6e490e2c7ca7df50eb7a3"; - sha256 = "1m37gvlypyfizd33mfyfha4hhwiyfzsj8gb2h5im6wzis4j15d0y"; + rev = "vmtouch-${version}"; + sha256 = "0m4s1am1r3qp8si3rnc8j2qc7sbf1k3gxvxr6fnpbf8fcfhh6cay"; }; buildInputs = [perl]; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { meta = { description = "Portable file system cache diagnostics and control"; longDescription = "vmtouch is a tool for learning about and controlling the file system cache of unix and unix-like systems."; - homepage = "http://hoytech.com/vmtouch/vmtouch.html"; + homepage = "http://hoytech.com/vmtouch/"; license = stdenv.lib.licenses.bsd3; maintainers = [ stdenv.lib.maintainers.garrison ]; platforms = stdenv.lib.platforms.all; From 8f7561dba2e5e475440f5e6accfa790ef070987f Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 14 Dec 2015 13:22:15 -0800 Subject: [PATCH 148/707] emacsPackagesNg: update various packages, add seq.el - circe, lcs, lui, shorten, tracking: 1.5 -> 2.1 - expand-region: 20141012 -> 20150902 - flycheck: 0.23 -> 0.25.1 - haskell-mode: 13.14 -> 13.16 - magit: 2.3.0 -> 2.3.1 - projectile: 0.12.0 -> 0.13.0 - seq: init at 1.11 - smartparens: 1.6.2 -> 20151025 - swiper: 0.6.0 -> 0.7.0 --- pkgs/top-level/emacs-packages.nix | 100 ++++++++++++++---------------- 1 file changed, 48 insertions(+), 52 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3882153d8e0..2acb4cbbe0b 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -392,15 +392,15 @@ let packagesFun = super: self: with self; { circe = melpaBuild rec { pname = "circe"; - version = "1.5"; + version = "2.1"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; + sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; }; packageRequires = [ lcs lui ]; - fileSpecs = [ "lisp/circe*.el" ]; + fileSpecs = [ "circe*.el" "irc.el" "make-tls-process.el" ]; meta = { description = "IRC client for Emacs"; license = gpl3Plus; @@ -676,12 +676,12 @@ let packagesFun = super: self: with self; { expand-region = melpaBuild rec { pname = "expand-region"; - version = "20141012"; + version = "20150902"; src = fetchFromGitHub { owner = "magnars"; repo = "${pname}.el"; - rev = "fa413e07c97997d950c92d6012f5442b5c3cee78"; - sha256 = "04k0518wfy72wpzsswmncnhd372fxa0r8nbfhmbyfmns8n7sr045"; + rev = "59f67115263676de5345581216640019975c4fda"; + sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; meta = { description = "Increases the selected region by semantic units in Emacs"; @@ -744,14 +744,14 @@ let packagesFun = super: self: with self; { flycheck = melpaBuild rec { pname = "flycheck"; - version = "0.23"; + version = "0.25.1"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1ydk1wa7h7z9qw7prfvszxrmy2dyzsdij3xdy10rq197xnrw94wz"; + sha256 = "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi"; }; - packageRequires = [ dash let-alist pkg-info ]; + packageRequires = [ dash let-alist pkg-info seq ]; meta = { description = "On-the-fly syntax checking, intended as replacement for the older Flymake which is part of Emacs"; license = gpl3Plus; @@ -1016,12 +1016,12 @@ let packagesFun = super: self: with self; { haskell-mode = melpaBuild rec { pname = "haskell-mode"; - version = "13.14"; + version = "13.16"; src = fetchFromGitHub { owner = "haskell"; repo = pname; rev = "v${version}"; - sha256 = "1mxr2cflgafcr8wkvgbq8l3wmc9qhhb7bn9zl1bkf10zspw9m58z"; + sha256 = "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv"; }; meta = { description = "Haskell language support for Emacs"; @@ -1077,6 +1077,7 @@ let packagesFun = super: self: with self; { }; }; + # deprecated, part of haskell-mode now hi2 = melpaBuild rec { pname = "hi2"; version = "1.0"; @@ -1179,14 +1180,9 @@ let packagesFun = super: self: with self; { lcs = melpaBuild rec { pname = "lcs"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; - fileSpecs = [ "lisp/lcs*.el" ]; + version = circe.version; + src = circe.src; + fileSpecs = [ "lcs.el" ]; meta = { description = "Longest Common Sequence (LCS) library for Emacs"; license = gpl3Plus; @@ -1227,15 +1223,10 @@ let packagesFun = super: self: with self; { lui = melpaBuild rec { pname = "lui"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; + version = circe.version; + src = circe.src; packageRequires = [ tracking ]; - fileSpecs = [ "lisp/lui*.el" ]; + fileSpecs = [ "lui*.el" ]; meta = { description = "User interface library for Emacs"; license = gpl3Plus; @@ -1244,12 +1235,12 @@ let packagesFun = super: self: with self; { magit = melpaBuild rec { pname = "magit"; - version = "2.3.0"; + version = "2.3.1"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1zbx1ky1481lkvfjr4k23q7jdrk9ji9v5ghj88qib36vbmzfwww8"; + sha256 = "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd"; }; packageRequires = [ dash git-commit magit-popup with-editor ]; fileSpecs = [ "lisp/magit-utils.el" @@ -1538,12 +1529,12 @@ let packagesFun = super: self: with self; { projectile = melpaBuild rec { pname = "projectile"; - version = "0.12.0"; + version = "0.13.0"; src = fetchFromGitHub { owner = "bbatsov"; repo = pname; rev = "v${version}"; - sha256 = "1bl5wpkyv9xlf5v5hzkj8si1z4hjn3yywrjs1mx0g4irmq3mk29m"; + sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; fileSpecs = [ "projectile.el" ]; packageRequires = [ dash helm pkg-info ]; @@ -1717,16 +1708,26 @@ let packagesFun = super: self: with self; { }; }; + seq = melpaBuild rec { + pname = "seq"; + version = "1.11"; + src = fetchFromGitHub { + owner = "NicolasPetton"; + repo = "${pname}.el"; + rev = version; + sha256 = "18ydaz2y5n7h4wr0dx2k9qbxl0mc50qfwk52ma4amk8nmm1bjwgc"; + }; + meta = { + description = "Sequence manipulation library for Emacs"; + license = gpl3Plus; # probably + }; + }; + shorten = melpaBuild rec { pname = "shorten"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; - fileSpecs = [ "lisp/shorten*.el" ]; + version = circe.version; + src = circe.src; + fileSpecs = [ "shorten.el" ]; meta = { description = "String shortening to unique prefix library for Emacs"; license = gpl3Plus; @@ -1751,12 +1752,12 @@ let packagesFun = super: self: with self; { smartparens = melpaBuild rec { pname = "smartparens"; - version = "1.6.2"; + version = "20151025"; src = fetchFromGitHub { owner = "Fuco1"; repo = pname; - rev = version; - sha256 = "16pzd740vd1r3qfmxia2ibiarinm6xpja0mjv3nni5dis5s4r9gc"; + rev = "85583f9570be58f17ccd68388d9d4e58234d8ae9"; + sha256 = "1pvzcrnzvksx1rzrr19256x1qhidr2acz6yipijlfx2zfjx2gxa7"; }; packageRequires = [ dash ]; meta = { @@ -1803,12 +1804,12 @@ let packagesFun = super: self: with self; { swiper = melpaBuild rec { pname = "swiper"; - version = "0.6.0"; + version = "0.7.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = pname; rev = version; - sha256 = "18madh4hvrk8sxrll84ry13n1l3ad1gnp3prj828sszrbbdp20ly"; + sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; }; fileSpecs = [ "swiper.el" "ivy.el" "colir.el" "counsel.el" ]; meta = { @@ -1837,15 +1838,10 @@ let packagesFun = super: self: with self; { tracking = melpaBuild rec { pname = "tracking"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; + version = circe.version; + src = circe.src; packageRequires = [ shorten ]; - fileSpecs = [ "lisp/tracking*.el" ]; + fileSpecs = [ "tracking.el" ]; meta = { description = "Register buffers for user review library for Emacs"; license = gpl3Plus; From 0a35ffaacee8b5d6f7f97139bc4eff88384171ec Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 13 Dec 2015 02:12:14 +0100 Subject: [PATCH 149/707] ms-sys: deprecate mssys attribute name --- pkgs/tools/misc/{mssys => ms-sys}/default.nix | 0 pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename pkgs/tools/misc/{mssys => ms-sys}/default.nix (100%) diff --git a/pkgs/tools/misc/mssys/default.nix b/pkgs/tools/misc/ms-sys/default.nix similarity index 100% rename from pkgs/tools/misc/mssys/default.nix rename to pkgs/tools/misc/ms-sys/default.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 142ea8d114c..8ae54685bc7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2317,7 +2317,7 @@ let msf = callPackage ../tools/security/metasploit { }; - mssys = callPackage ../tools/misc/mssys { }; + ms-sys = callPackage ../tools/misc/ms-sys { }; mtdutils = callPackage ../tools/filesystems/mtdutils { }; @@ -15770,6 +15770,7 @@ aliases = with self; rec { pidginlatexSF = pidginlatex; # added 2014-11-02 tftp_hpa = tftp-hpa; # added 2015-04-03 manpages = man-pages; # added 2015-12-06 + mssys = ms-sys; # added 2015-12-13 }; tweakAlias = _n: alias: with lib; From 04728887e1adaa67b41c8f52eb3fc3476442518c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 13 Dec 2015 03:09:21 +0100 Subject: [PATCH 150/707] ms-sys: 2.4.1 -> 2.5.1 --- pkgs/tools/misc/ms-sys/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/misc/ms-sys/default.nix b/pkgs/tools/misc/ms-sys/default.nix index d1f76a10130..376d0ea6ad5 100644 --- a/pkgs/tools/misc/ms-sys/default.nix +++ b/pkgs/tools/misc/ms-sys/default.nix @@ -1,21 +1,20 @@ -{stdenv, fetchurl, gettext}: +{ stdenv, fetchurl, gettext }: +let version = "2.5.1"; in stdenv.mkDerivation rec { name = "ms-sys-${version}"; - version = "2.4.1"; - + src = fetchurl { url = "mirror://sourceforge/ms-sys/${name}.tar.gz"; - sha256 = "0qccv67fc2q97218b9wm6qpmx0nc0ssca391i0q15351y1na78nc"; + sha256 = "1vw8yvcqb6iccs4x7rgk09mqrazkalmpxxxsxmvxn32jzdzl5b26"; }; - buildInputs = [gettext]; + buildInputs = [ gettext ]; - preBuild = '' - makeFlags=(PREFIX=$out) - ''; + makeFlags = [ "PREFIX=$(out)" ]; meta = { + inherit version; homepage = http://ms-sys.sourceforge.net/; license = stdenv.lib.licenses.gpl2; description = "A program for writing Microsoft compatible boot records"; From d0323d406a66d28fd0def44bae9d4a3b0c28f2f2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 13 Dec 2015 23:24:32 +0100 Subject: [PATCH 151/707] mksh: 51 -> 52 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘This release has a nonzero chance to break existing scripts that use some extension features – I had to quote some tildes in dot.mkshrc and a variable expansion in ${x/y"$z"} in MirWebseite (the $z) – twice!. As usual, test!’ -- https://www.mirbsd.org/permalinks/news_e20151212-tg.htm --- pkgs/shells/mksh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index 397b38180eb..f55a7cd5d84 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, groff }: -let version = "51"; in +let version = "52"; in stdenv.mkDerivation { name = "mksh-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { "http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" "http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" ]; - sha256 = "1pyscl3w4aw067a5hb8mczy3z545jz1dwx9n2b09k09xydgsmvlz"; + sha256 = "13vnncwfx4zq3yi7llw3p6miw0px1bm5rrps3y1nlfn6sb6zbhj5"; }; buildInputs = [ groff ]; From 75df6e05c3be5cfeae2231bad77b3d07a083b390 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 13 Dec 2015 23:34:47 +0100 Subject: [PATCH 152/707] mksh: maintainers += nckx --- pkgs/shells/mksh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index f55a7cd5d84..4e1570a3838 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { ''; homepage = "https://www.mirbsd.org/mksh.htm"; license = licenses.free; - maintainers = [ maintainers.AndersonTorres ]; + maintainers = with maintainers; [ AndersonTorres nckx ]; platforms = platforms.unix; }; } From 29ab5c3b9c176bef496d33510499622f445783bf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Dec 2015 00:20:59 +0100 Subject: [PATCH 153/707] simple-scan: 3.19.2 -> 3.19.3 --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index 4dd30697f0b..c205c2a3f1c 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool , libusb, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }: -let version = "3.19.2"; in +let version = "3.19.3"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "08454ky855iaiq5wn9rdbfal3i4fjss5fn5mg6cmags50wy9spsg"; + sha256 = "0il7ikd5hj9mgzrivm01g572g9101w8la58h3hjyakwcfw3jp976"; url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; }; From bcc4ca029adfbb0e21803cfcf50c8ee8000c422d Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sun, 6 Dec 2015 20:36:05 +0100 Subject: [PATCH 154/707] Add rebar3 package --- lib/maintainers.nix | 1 + .../tools/build-managers/rebar3/default.nix | 41 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 43 insertions(+) create mode 100644 pkgs/development/tools/build-managers/rebar3/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 596b8a49a10..2776f5837f3 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -119,6 +119,7 @@ gebner = "Gabriel Ebner "; gfxmonk = "Tim Cuthbertson "; giogadi = "Luis G. Torres "; + gleber = "Gleb Peregud "; globin = "Robin Gloster "; goibhniu = "Cillian de Róiste "; gridaphobe = "Eric Seidel "; diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix new file mode 100644 index 00000000000..2e75a12bbfc --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, erlang }: + + +let + version = "3.0.0-beta.4"; +in +stdenv.mkDerivation { + name = "rebar3-${version}"; + + src = fetchurl { + url = "https://github.com/rebar/rebar3/archive/${version}.tar.gz"; + sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; + }; + + buildInputs = [ erlang ]; + + buildPhase = '' + HOME=. escript bootstrap + ''; + installPhase = '' + mkdir -p $out/bin + cp rebar3 $out/bin/rebar3 + ''; + + meta = { + homepage = "https://github.com/rebar/rebar3"; + description = "rebar 3.0 is an Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases."; + + longDescription = '' + rebar is a self-contained Erlang script, so it's easy to distribute or + even embed directly in a project. Where possible, rebar uses standard + Erlang/OTP conventions for project structures, thus minimizing the amount + of build configuration work. rebar also provides dependency management, + enabling application writers to easily re-use common libraries from a + variety of locations (hex.pm, git, hg, and so on). + ''; + + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.gleber ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a88ed84b3fc..23dcf0c3b24 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5019,6 +5019,7 @@ let erlang_odbc_javac = erlangR18_odbc_javac; rebar = callPackage ../development/tools/build-managers/rebar { }; + rebar3 = callPackage ../development/tools/build-managers/rebar3 { }; elixir = callPackage ../development/interpreters/elixir { }; From 2c36e9cf5ff9171bf5619c088a2f875ec3af0ad1 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 10:22:00 +0900 Subject: [PATCH 155/707] slurm-llnl: 14.11.5 -> 14-11-5-1 --- pkgs/servers/computing/slurm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index a1a1a2ea1f2..57263d04723 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "slurm-llnl-${version}"; - version = "14.11.5"; + version = "14-11-5-1"; src = fetchurl { - url = "http://www.schedmd.com/download/latest/slurm-${version}.tar.bz2"; - sha256 = "0xx1q9ximsyyipl0xbj8r7ajsz4xrxik8xmhcb1z9nv0aza1rff2"; + url = "https://github.com/SchedMD/slurm/archive/slurm-${version}.tar.gz"; + sha256 = "0vn2jkj83zgc4j656vm24lihapg3w3sfnzpsmynlk4r0v9cy2vcw"; }; buildInputs = [ python munge perl pam openssl mysql.lib ]; From c393711b4320c8939a44dc5af73e9e8c83dc0cff Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 11:56:28 +0900 Subject: [PATCH 156/707] praat: 5417 -> 5.4.17 --- pkgs/applications/audio/praat/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/praat/default.nix b/pkgs/applications/audio/praat/default.nix index 03ba33b4834..883d49682ce 100644 --- a/pkgs/applications/audio/praat/default.nix +++ b/pkgs/applications/audio/praat/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, alsaLib, gtk, pkgconfig }: -let version = "5417"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "praat-${version}"; + version = "5.4.17"; src = fetchurl { - url = "http://www.fon.hum.uva.nl/praat/praat${version}_sources.tar.gz"; - sha256 = "1bspl963pb1s6k3cd9p3g5j518pxg6hkrann945lqsrvbzaa20kl"; + url = "https://github.com/praat/praat/archive/v${version}.tar.gz"; + sha256 = "0s2hrksghg686059vc90h3ywhd2702pqcvy99icw27q5mdk6dqsx"; }; configurePhase = '' From 7f0080ac321672bc85084ccc2516e68a13f8fb8e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 15 Dec 2015 09:03:08 +0100 Subject: [PATCH 157/707] python ansible, ansible2, mygpoclient: fix platforms --- 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 cabd4e81e1f..958cd90faab 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -607,7 +607,7 @@ in modules // { description = "A simple automation tool"; license = with licenses; [ gpl3] ; maintainers = with maintainers; [ joamaki ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; }; }; @@ -639,7 +639,7 @@ in modules // { description = "A simple automation tool"; license = with licenses; [ gpl3 ]; maintainers = with maintainers; [ copumpkin ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; }; }; @@ -10539,7 +10539,7 @@ in modules // { ''; homepage = https://thp.io/2010/mygpoclient/; license = with licenses; [ gpl3 ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; maintainers = with maintainers; [ skeidel ]; }; }; From c087ea5f812ccb18994992d67085da6a4ad231ca Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Tue, 15 Dec 2015 09:37:57 +0000 Subject: [PATCH 158/707] zip: fixed build phase (i.e. unicode support) The build did not use the current build infrastructure correctly. As a consequence zip lacked support for unicode and 64bit files. --- pkgs/tools/archivers/zip/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/archivers/zip/default.nix b/pkgs/tools/archivers/zip/default.nix index e4da0236cdf..585bc72ad96 100644 --- a/pkgs/tools/archivers/zip/default.nix +++ b/pkgs/tools/archivers/zip/default.nix @@ -13,11 +13,9 @@ stdenv.mkDerivation { sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h"; }; - # should be makeFlags on all archs, not changed yet to prevent rebuild - buildFlags="-f unix/Makefile generic"; - makeFlags = if stdenv.isCygwin then "-f unix/Makefile ${if stdenv.isCygwin then "cygwin" else "generic"}" else null; - - installFlags="-f unix/Makefile prefix=$(out) INSTALL=cp"; + makefile = "unix/Makefile"; + buildFlags = if stdenv.isCygwin then "cygwin" else "generic"; + installFlags = "prefix=$(out) INSTALL=cp"; patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else []; From 903803a1f379951c68224f847ccdf717fcf2d36c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Dec 2015 10:10:59 +0000 Subject: [PATCH 159/707] Allow uploading multiple files --- maintainers/scripts/copy-tarballs.pl | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index 6be1300e513..ad626e4bd8d 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -69,15 +69,24 @@ sub uploadFile { redirect "sha512/$sha512_32", $mainKey; } -my $op = $ARGV[0] // ""; +my $op = shift @ARGV; if ($op eq "--file") { - my $fn = $ARGV[1] // die "$0: --file requires a file name\n"; - if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { - print STDERR "$fn is already mirrored\n"; - } else { - uploadFile($fn, basename $fn); + my $res = 0; + foreach my $fn (@ARGV) { + eval { + if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { + print STDERR "$fn is already mirrored\n"; + } else { + uploadFile($fn, basename $fn); + } + }; + if ($@) { + warn "$@\n"; + $res = 1; + } } + exit $res; } elsif ($op eq "--expr") { @@ -138,5 +147,5 @@ elsif ($op eq "--expr") { } else { - die "Syntax: $0 --file FILENAME | --expr EXPR\n"; + die "Syntax: $0 --file FILENAMES... | --expr EXPR\n"; } From a6ca6bbed95c1f29ef71b6005645e454f76e6080 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Dec 2015 10:47:31 +0000 Subject: [PATCH 160/707] copy-tarballs.pl: Fix --expr --- maintainers/scripts/copy-tarballs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index ad626e4bd8d..d0b4afd8774 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -92,7 +92,7 @@ if ($op eq "--file") { elsif ($op eq "--expr") { # Evaluate find-tarballs.nix. - my $expr = $ARGV[1] // die "$0: --expr requires a Nix expression\n"; + my $expr = $ARGV[0] // die "$0: --expr requires a Nix expression\n"; my $pid = open(JSON, "-|", "nix-instantiate", "--eval-only", "--json", "--strict", "", "--arg", "expr", $expr); From 64a2b7f11cbcef841b32384a0be1a3c56740efa5 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 10:47:20 +0900 Subject: [PATCH 161/707] logkeys: 5ef6b0dcb9e3 -> 2015-11-10 --- pkgs/tools/security/logkeys/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/logkeys/default.nix b/pkgs/tools/security/logkeys/default.nix index ba875c04e2b..b856308712f 100644 --- a/pkgs/tools/security/logkeys/default.nix +++ b/pkgs/tools/security/logkeys/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "logkeys-${version}"; - version = "5ef6b0dcb9e3"; + version = "2015-11-10"; src = fetchgit { url = https://github.com/kernc/logkeys; - rev = "5ef6b0dcb9e38e6137ad1579d624ec12107c56c3"; - sha256 = "02p0l92l0fq069g31ks6xbqavzxa9njj9460vw2jsa7livcn2z9d"; + rev = "78321c6e70f61c1e7e672fa82daa664017c9e69d"; + sha256 = "1b1fa1rblyfsg6avqyls03y0rq0favipn5fha770rsirzg4r637q"; }; buildInputs = [ which procps kbd ]; From 6d3a89f6dac5a3eedbe70ff2e2993f0cba242a93 Mon Sep 17 00:00:00 2001 From: System administrator Date: Tue, 15 Dec 2015 10:19:29 +0100 Subject: [PATCH 162/707] terraria-server: add dedicated server version 1308 for Linux x86_64 fix fix limit to 64bit linux --- pkgs/games/terraria-server/default.nix | 39 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 41 insertions(+) create mode 100644 pkgs/games/terraria-server/default.nix diff --git a/pkgs/games/terraria-server/default.nix b/pkgs/games/terraria-server/default.nix new file mode 100644 index 00000000000..4eeefc2801b --- /dev/null +++ b/pkgs/games/terraria-server/default.nix @@ -0,0 +1,39 @@ +{ stdenv, lib, file, fetchurl }: +assert stdenv.system == "x86_64-linux"; + +stdenv.mkDerivation rec { + name = "terraria-server-${version}"; + version = "1308"; + + src = fetchurl { + url = http://terraria.org/server/terraria-server-linux-1308.tar.gz; + sha256 = "0cx3nx7wmzcw9l0nz9zm4amccl8nrd09hlb3jc1yrqcaswbyxc8a"; + }; + + buildInputs = [ file ]; + + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/bin + cp -r * $out/ + ln -s $out/terraria-server-linux-${version}/TerrariaServer.bin.x86_64 $out/bin/TerrariaServer + + # Fix "/lib64/ld-linux-x86-64.so.2" like references in ELF executables. + echo "running patchelf on prebuilt binaries:" + find "$out" | while read filepath; do + if file "$filepath" | grep -q "ELF.*executable"; then + echo "setting interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) in $filepath" + patchelf --set-interpreter "$(cat "$NIX_CC"/nix-support/dynamic-linker)" "$filepath" + test $? -eq 0 || { echo "patchelf failed to process $filepath"; exit 1; } + fi + done + ''; + + meta = with lib; { + homepage = http://terraria.org; + description = "Dedicated server for the main game"; + platforms = platforms.linux; + license = licenses.unfree; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..aa00cf443e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14266,6 +14266,8 @@ let tennix = callPackage ../games/tennix { }; + terraria-server = callPackage ../games/terraria-server/default.nix { }; + tibia = callPackage_i686 ../games/tibia { }; tintin = callPackage ../games/tintin { }; From 88bccd83feffe9643169303c333bfc57f0f5dfec Mon Sep 17 00:00:00 2001 From: michael bishop Date: Tue, 15 Dec 2015 08:45:58 -0400 Subject: [PATCH 163/707] net-snmp: fix mnttab path when built under chroot --- pkgs/servers/monitoring/net-snmp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index efc61b9fd6b..c53f52422cf 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-logfile=/var/log/net-snmpd.log" "--with-persistent-directory=/var/lib/net-snmp" "--with-openssl=${openssl}" - ]; + ] ++ stdenv.lib.optional stdenv.isLinux [ "--with-mnttab=/proc/mounts" ]; buildInputs = [ autoreconfHook file perl unzip openssl ]; From a05e2dbe6507820439ea647f4079790dae32f8d5 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 00:12:37 +0100 Subject: [PATCH 164/707] Add few erlang modules --- .../erlang-modules/build-erlang.nix | 60 ++++++++++++++ pkgs/development/erlang-modules/build-hex.nix | 79 +++++++++++++++++++ pkgs/development/erlang-modules/default.nix | 38 +++++++++ .../erlang-modules/hex/goldrush.nix | 11 +++ .../erlang-modules/hex/ibrowse.nix | 10 +++ pkgs/development/erlang-modules/hex/jiffy.nix | 10 +++ pkgs/development/erlang-modules/hex/lager.nix | 12 +++ pkgs/development/erlang-modules/hex/meck.nix | 10 +++ pkgs/top-level/all-packages.nix | 2 + 9 files changed, 232 insertions(+) create mode 100644 pkgs/development/erlang-modules/build-erlang.nix create mode 100644 pkgs/development/erlang-modules/build-hex.nix create mode 100644 pkgs/development/erlang-modules/default.nix create mode 100644 pkgs/development/erlang-modules/hex/goldrush.nix create mode 100644 pkgs/development/erlang-modules/hex/ibrowse.nix create mode 100644 pkgs/development/erlang-modules/hex/jiffy.nix create mode 100644 pkgs/development/erlang-modules/hex/lager.nix create mode 100644 pkgs/development/erlang-modules/hex/meck.nix diff --git a/pkgs/development/erlang-modules/build-erlang.nix b/pkgs/development/erlang-modules/build-erlang.nix new file mode 100644 index 00000000000..fcb22a40193 --- /dev/null +++ b/pkgs/development/erlang-modules/build-erlang.nix @@ -0,0 +1,60 @@ +{ stdenv, erlang, rebar, openssl, libyaml }: + +{ name, version +, buildInputs ? [], erlangDeps ? [] +, postPatch ? "" +, ... }@attrs: + +with stdenv.lib; + +stdenv.mkDerivation (attrs // { + name = "${name}-${version}"; + + buildInputs = buildInputs ++ [ erlang rebar openssl libyaml ]; + + postPatch = '' + rm -f rebar + if [ -e "src/${name}.app.src" ]; then + sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" + fi + ${postPatch} + ''; + + configurePhase = let + getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); + recursiveDeps = uniqList { + inputList = flatten (map getDeps erlangDeps); + }; + in '' + runHook preConfigure + ${concatMapStrings (dep: '' + header "linking erlang dependency ${dep}" + mkdir deps + ln -s "${dep}" "deps/${dep.packageName}" + stopNest + '') recursiveDeps} + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + rebar compile + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + for reldir in src ebin priv include; do + [ -e "$reldir" ] || continue + mkdir "$out" + cp -rt "$out" "$reldir" + success=1 + done + runHook postInstall + ''; + + passthru = { + packageName = name; + inherit erlangDeps; + }; +}) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix new file mode 100644 index 00000000000..03edaaf481c --- /dev/null +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -0,0 +1,79 @@ +{ stdenv, erlang, rebar3, openssl, libyaml }: + +{ name, version +, buildInputs ? [], erlangDeps ? [] +, postPatch ? "" +, ... }@attrs: + +with stdenv.lib; + +stdenv.mkDerivation (attrs // { + name = "${name}-${version}"; + + buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; + + postPatch = '' + rm -f rebar rebar3 + if [ -e "src/${name}.app.src" ]; then + sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" + fi + ${postPatch} + ''; + + # unpackCmd = "(mkdir cron && cd cron && sh $curSrc)"; + unpackCmd = '' + tar -xf $curSrc contents.tar.gz + mkdir contents + tar -C contents -xzf contents.tar.gz + # rm -rf CHECKSUM contents.tar.gz metadata.config VERSION + ''; + + configurePhase = let + getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); + recursiveDeps = uniqList { + inputList = flatten (map getDeps erlangDeps); + }; + in '' + runHook preConfigure + mkdir -p _build/default/lib/ + ${concatMapStrings (dep: '' + header "linking erlang dependency ${dep}" + ln -s "${dep}" "_build/default/lib/${dep.packageName}" + stopNest + '') recursiveDeps} + ls -laR + cat rebar.config || true + cat rebar.lock || true + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + DEBUG=1 HOME=. rebar3 update + DEBUG=1 HOME=. rebar3 compile + runHook postBuild + ''; + + installPhase = '' + ls -laR + runHook preInstall + mkdir "$out" + for reldir in src ebin priv include; do + fd="_build/default/lib/${name}/$reldir" + [ -d "$fd" ] || continue + cp -Hrt "$out" "$fd" + success=1 + done + runHook postInstall + ''; + + # src = fetchurl { + # url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${name}-${version}.tar"; + # sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; + # }; + + passthru = { + packageName = name; + inherit erlangDeps; + }; +}) diff --git a/pkgs/development/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix new file mode 100644 index 00000000000..0dfe2472c38 --- /dev/null +++ b/pkgs/development/erlang-modules/default.nix @@ -0,0 +1,38 @@ +{ pkgs }: #? import {} }: + +let + callPackage = pkgs.lib.callPackageWith (pkgs // self); + + self = rec { + buildErlang = callPackage ./build-erlang.nix {}; + buildHex = callPackage ./build-hex.nix {}; + + # dependencies for ejabberd + p1_utils = callPackage ./hex/p1_utils.nix {}; + cache_tab = callPackage ./hex/cache_tab.nix {}; + stringprep = callPackage ./hex/stringprep.nix {}; + p1_xml = callPackage ./hex/p1_xml.nix {}; + p1_tls = callPackage ./hex/p1_tls.nix {}; + p1_stun = callPackage ./hex/p1_stun.nix {}; + esip = callPackage ./hex/esip.nix {}; + p1_yaml = callPackage ./hex/p1_yaml.nix {}; + xmlrpc = callPackage ./hex/xmlrpc.nix {}; + jiffy = callPackage ./hex/jiffy.nix {}; + sync = callPackage ./hex/sync.nix {}; + erlang-katana = callPackage ./hex/erlang-katana.nix {}; + eper = callPackage ./hex/eper.nix {}; + + goldrush = callPackage ./hex/goldrush.nix {}; + lager = callPackage ./hex/lager.nix {}; + getopt = callPackage ./hex/getopt.nix {}; + meck = callPackage ./hex/meck.nix {}; + ibrowse = callPackage ./hex/ibrowse.nix {}; + aleppo = callPackage ./hex/aleppo.nix {}; + zipper = callPackage ./hex/zipper.nix {}; + erlang-github = callPackage ./hex/erlang-github.nix {}; + + elvis = callPackage ./hex/elvis.nix {}; + apns = callPackage ./hex/apns.nix {}; + appmon = callPackage ./hex/appmon.nix {}; + }; +in self diff --git a/pkgs/development/erlang-modules/hex/goldrush.nix b/pkgs/development/erlang-modules/hex/goldrush.nix new file mode 100644 index 00000000000..ff4c5892ee9 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/goldrush.nix @@ -0,0 +1,11 @@ +{ buildHex, fetchurl }: + +buildHex { + name = "goldrush"; + version = "0.1.7"; + src = fetchurl { + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/goldrush-0.1.7.tar"; + sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; + }; + +} diff --git a/pkgs/development/erlang-modules/hex/ibrowse.nix b/pkgs/development/erlang-modules/hex/ibrowse.nix new file mode 100644 index 00000000000..d742a8904ce --- /dev/null +++ b/pkgs/development/erlang-modules/hex/ibrowse.nix @@ -0,0 +1,10 @@ +{ buildErlang, fetchgit }: + +buildErlang { + name = "ibrowse"; + version = "0.1"; + src = fetchgit { + url = "git://github.com/cmullaparthi/ibrowse.git"; + sha256 = "1qvz4bmh307avjsxmhhdf35dd5wzmii0cbf6jyvvlhhkq4y0nmnj"; + }; +} \ No newline at end of file diff --git a/pkgs/development/erlang-modules/hex/jiffy.nix b/pkgs/development/erlang-modules/hex/jiffy.nix new file mode 100644 index 00000000000..762086da23f --- /dev/null +++ b/pkgs/development/erlang-modules/hex/jiffy.nix @@ -0,0 +1,10 @@ +{ buildErlang, fetchgit }: + +buildErlang { + name = "jiffy"; + version = "0.1"; + src = fetchgit { + url = "git://github.com/davisp/jiffy.git"; + sha256 = "02qb8m4s2p51m5f882ifsaph9fwx0bih37q5q90ba8cvsak65isx"; + }; +} \ No newline at end of file diff --git a/pkgs/development/erlang-modules/hex/lager.nix b/pkgs/development/erlang-modules/hex/lager.nix new file mode 100644 index 00000000000..c46c759b948 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/lager.nix @@ -0,0 +1,12 @@ +{ buildHex, fetchurl, goldrush }: + +buildHex { + name = "lager"; + version = "3.0.2"; + src = fetchurl { + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/lager-3.0.2.tar"; + sha256 = "0051zj6wfmmvxjn9q0nw8wic13nhbrkyy50cg1lcpdh17qiknzsj"; + }; + + erlangDeps = [ goldrush ]; +} diff --git a/pkgs/development/erlang-modules/hex/meck.nix b/pkgs/development/erlang-modules/hex/meck.nix new file mode 100644 index 00000000000..a361147aab4 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/meck.nix @@ -0,0 +1,10 @@ +{ buildErlang, fetchgit }: + +buildErlang { + name = "meck"; + version = "0.1"; + src = fetchgit { + url = "git://github.com/eproxus/meck.git"; + sha256 = "077p3v81mspy69247bz4apln3gp567m4xpmzxmdjd6pyh6m5ahpk"; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 23dcf0c3b24..4f24112cf54 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5021,6 +5021,8 @@ let rebar = callPackage ../development/tools/build-managers/rebar { }; rebar3 = callPackage ../development/tools/build-managers/rebar3 { }; + erlangPackages = callPackage ../development/erlang-modules { }; + elixir = callPackage ../development/interpreters/elixir { }; groovy = callPackage ../development/interpreters/groovy { }; From 6dcbe059e15c7d17da9f57e67c9fddc74b836230 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 21:21:05 +0100 Subject: [PATCH 165/707] Automagically download files from hex.pm tarball S3 repo --- pkgs/development/erlang-modules/build-hex.nix | 18 ++++++------------ .../erlang-modules/hex/goldrush.nix | 6 +----- pkgs/development/erlang-modules/hex/lager.nix | 8 ++------ 3 files changed, 9 insertions(+), 23 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 03edaaf481c..f7fc4d8836d 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,6 +1,6 @@ -{ stdenv, erlang, rebar3, openssl, libyaml }: +{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl }: -{ name, version +{ name, version, sha256 , buildInputs ? [], erlangDeps ? [] , postPatch ? "" , ... }@attrs: @@ -20,12 +20,10 @@ stdenv.mkDerivation (attrs // { ${postPatch} ''; - # unpackCmd = "(mkdir cron && cd cron && sh $curSrc)"; unpackCmd = '' tar -xf $curSrc contents.tar.gz mkdir contents tar -C contents -xzf contents.tar.gz - # rm -rf CHECKSUM contents.tar.gz metadata.config VERSION ''; configurePhase = let @@ -41,9 +39,6 @@ stdenv.mkDerivation (attrs // { ln -s "${dep}" "_build/default/lib/${dep.packageName}" stopNest '') recursiveDeps} - ls -laR - cat rebar.config || true - cat rebar.lock || true runHook postConfigure ''; @@ -55,7 +50,6 @@ stdenv.mkDerivation (attrs // { ''; installPhase = '' - ls -laR runHook preInstall mkdir "$out" for reldir in src ebin priv include; do @@ -67,10 +61,10 @@ stdenv.mkDerivation (attrs // { runHook postInstall ''; - # src = fetchurl { - # url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${name}-${version}.tar"; - # sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; - # }; + src = fetchurl { + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${name}-${version}.tar"; + sha256 = sha256; + }; passthru = { packageName = name; diff --git a/pkgs/development/erlang-modules/hex/goldrush.nix b/pkgs/development/erlang-modules/hex/goldrush.nix index ff4c5892ee9..ddff7f6cc56 100644 --- a/pkgs/development/erlang-modules/hex/goldrush.nix +++ b/pkgs/development/erlang-modules/hex/goldrush.nix @@ -3,9 +3,5 @@ buildHex { name = "goldrush"; version = "0.1.7"; - src = fetchurl { - url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/goldrush-0.1.7.tar"; - sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; - }; - + sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; } diff --git a/pkgs/development/erlang-modules/hex/lager.nix b/pkgs/development/erlang-modules/hex/lager.nix index c46c759b948..acfefd5757c 100644 --- a/pkgs/development/erlang-modules/hex/lager.nix +++ b/pkgs/development/erlang-modules/hex/lager.nix @@ -1,12 +1,8 @@ -{ buildHex, fetchurl, goldrush }: +{ buildHex, goldrush }: buildHex { name = "lager"; version = "3.0.2"; - src = fetchurl { - url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/lager-3.0.2.tar"; - sha256 = "0051zj6wfmmvxjn9q0nw8wic13nhbrkyy50cg1lcpdh17qiknzsj"; - }; - + sha256 = "0051zj6wfmmvxjn9q0nw8wic13nhbrkyy50cg1lcpdh17qiknzsj"; erlangDeps = [ goldrush ]; } From 2251a942fce820b77ee03bdfd659e03c5711f578 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 21:39:13 +0100 Subject: [PATCH 166/707] Add support for Hex package name There are some packages on Hex which have custom hex-specific names, but inside there's a base project name. Remove most packages andadd ibrowse, meck, jiffy --- pkgs/development/erlang-modules/build-hex.nix | 7 +++-- pkgs/development/erlang-modules/default.nix | 28 ++----------------- .../erlang-modules/hex/ibrowse.nix | 14 ++++------ pkgs/development/erlang-modules/hex/jiffy.nix | 14 ++++------ pkgs/development/erlang-modules/hex/meck.nix | 13 ++++----- 5 files changed, 24 insertions(+), 52 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index f7fc4d8836d..d9191baeb81 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,6 +1,7 @@ { stdenv, erlang, rebar3, openssl, libyaml, fetchurl }: { name, version, sha256 +, hexPkg ? name , buildInputs ? [], erlangDeps ? [] , postPatch ? "" , ... }@attrs: @@ -44,8 +45,8 @@ stdenv.mkDerivation (attrs // { buildPhase = '' runHook preBuild - DEBUG=1 HOME=. rebar3 update - DEBUG=1 HOME=. rebar3 compile + HOME=. rebar3 update + HOME=. rebar3 compile runHook postBuild ''; @@ -62,7 +63,7 @@ stdenv.mkDerivation (attrs // { ''; src = fetchurl { - url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${name}-${version}.tar"; + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${hexPkg}-${version}.tar"; sha256 = sha256; }; diff --git a/pkgs/development/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix index 0dfe2472c38..87447220bb7 100644 --- a/pkgs/development/erlang-modules/default.nix +++ b/pkgs/development/erlang-modules/default.nix @@ -7,32 +7,10 @@ let buildErlang = callPackage ./build-erlang.nix {}; buildHex = callPackage ./build-hex.nix {}; - # dependencies for ejabberd - p1_utils = callPackage ./hex/p1_utils.nix {}; - cache_tab = callPackage ./hex/cache_tab.nix {}; - stringprep = callPackage ./hex/stringprep.nix {}; - p1_xml = callPackage ./hex/p1_xml.nix {}; - p1_tls = callPackage ./hex/p1_tls.nix {}; - p1_stun = callPackage ./hex/p1_stun.nix {}; - esip = callPackage ./hex/esip.nix {}; - p1_yaml = callPackage ./hex/p1_yaml.nix {}; - xmlrpc = callPackage ./hex/xmlrpc.nix {}; - jiffy = callPackage ./hex/jiffy.nix {}; - sync = callPackage ./hex/sync.nix {}; - erlang-katana = callPackage ./hex/erlang-katana.nix {}; - eper = callPackage ./hex/eper.nix {}; - goldrush = callPackage ./hex/goldrush.nix {}; - lager = callPackage ./hex/lager.nix {}; - getopt = callPackage ./hex/getopt.nix {}; - meck = callPackage ./hex/meck.nix {}; ibrowse = callPackage ./hex/ibrowse.nix {}; - aleppo = callPackage ./hex/aleppo.nix {}; - zipper = callPackage ./hex/zipper.nix {}; - erlang-github = callPackage ./hex/erlang-github.nix {}; - - elvis = callPackage ./hex/elvis.nix {}; - apns = callPackage ./hex/apns.nix {}; - appmon = callPackage ./hex/appmon.nix {}; + jiffy = callPackage ./hex/jiffy.nix {}; + lager = callPackage ./hex/lager.nix {}; + meck = callPackage ./hex/meck.nix {}; }; in self diff --git a/pkgs/development/erlang-modules/hex/ibrowse.nix b/pkgs/development/erlang-modules/hex/ibrowse.nix index d742a8904ce..6ed189eb39d 100644 --- a/pkgs/development/erlang-modules/hex/ibrowse.nix +++ b/pkgs/development/erlang-modules/hex/ibrowse.nix @@ -1,10 +1,8 @@ -{ buildErlang, fetchgit }: +{ buildHex }: -buildErlang { +buildHex { name = "ibrowse"; - version = "0.1"; - src = fetchgit { - url = "git://github.com/cmullaparthi/ibrowse.git"; - sha256 = "1qvz4bmh307avjsxmhhdf35dd5wzmii0cbf6jyvvlhhkq4y0nmnj"; - }; -} \ No newline at end of file + version = "4.2.2"; + sha256 = "1bn0645n95j5zypdsns1w4kgd3q9lz8fj898hg355j5w89scn05q"; +} + diff --git a/pkgs/development/erlang-modules/hex/jiffy.nix b/pkgs/development/erlang-modules/hex/jiffy.nix index 762086da23f..b9f92c888a4 100644 --- a/pkgs/development/erlang-modules/hex/jiffy.nix +++ b/pkgs/development/erlang-modules/hex/jiffy.nix @@ -1,10 +1,8 @@ -{ buildErlang, fetchgit }: +{ buildHex }: -buildErlang { +buildHex { name = "jiffy"; - version = "0.1"; - src = fetchgit { - url = "git://github.com/davisp/jiffy.git"; - sha256 = "02qb8m4s2p51m5f882ifsaph9fwx0bih37q5q90ba8cvsak65isx"; - }; -} \ No newline at end of file + version = "0.14.5"; + hexPkg = "barrel_jiffy"; + sha256 = "0iqz8bp0f672c5rfy5dpw9agv2708wzldd00ngbsffglpinlr1wa"; +} diff --git a/pkgs/development/erlang-modules/hex/meck.nix b/pkgs/development/erlang-modules/hex/meck.nix index a361147aab4..f0a4da5392c 100644 --- a/pkgs/development/erlang-modules/hex/meck.nix +++ b/pkgs/development/erlang-modules/hex/meck.nix @@ -1,10 +1,7 @@ -{ buildErlang, fetchgit }: +{ buildHex }: -buildErlang { +buildHex { name = "meck"; - version = "0.1"; - src = fetchgit { - url = "git://github.com/eproxus/meck.git"; - sha256 = "077p3v81mspy69247bz4apln3gp567m4xpmzxmdjd6pyh6m5ahpk"; - }; -} \ No newline at end of file + version = "0.8.3"; + sha256 = "1dh2rhks1xly4f49x89vbhsk8fgwkx5zqp0n98mnng8rs1rkigak"; +} From 406b974420a4faec0b2fb819b1be8344c02b76c8 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 22:39:42 +0100 Subject: [PATCH 167/707] Add "compilePorts" enabling rebar3 "pc" plugin If compilePorts is enabled plugin "pc" is added to the rebar.config during postPatch. This makes rebar3 compile download the plugin, hence added TODO. --- pkgs/development/erlang-modules/build-hex.nix | 13 +++++++++++++ pkgs/development/erlang-modules/default.nix | 1 + pkgs/development/erlang-modules/hex/esqlite.nix | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 pkgs/development/erlang-modules/hex/esqlite.nix diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index d9191baeb81..d5c71f882ff 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -4,6 +4,7 @@ , hexPkg ? name , buildInputs ? [], erlangDeps ? [] , postPatch ? "" +, compilePorts ? false , ... }@attrs: with stdenv.lib; @@ -18,6 +19,16 @@ stdenv.mkDerivation (attrs // { if [ -e "src/${name}.app.src" ]; then sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" fi + + # TODO: figure out how to provide 'pc' plugin hermetically + ${if compilePorts then '' + echo "{plugins, [pc]}. + {provider_hooks, + [{post, + [{compile, {pc, compile}}, + {clean, {pc, clean}}]}]}." >> rebar.config + '' else ''''} + ${postPatch} ''; @@ -43,6 +54,8 @@ stdenv.mkDerivation (attrs // { runHook postConfigure ''; + # TODO: figure out how to provide rebar3 a static registry snapshot to make + # this hermetic buildPhase = '' runHook preBuild HOME=. rebar3 update diff --git a/pkgs/development/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix index 87447220bb7..8bcf0ddb6a1 100644 --- a/pkgs/development/erlang-modules/default.nix +++ b/pkgs/development/erlang-modules/default.nix @@ -7,6 +7,7 @@ let buildErlang = callPackage ./build-erlang.nix {}; buildHex = callPackage ./build-hex.nix {}; + esqlite = callPackage ./hex/esqlite.nix {}; goldrush = callPackage ./hex/goldrush.nix {}; ibrowse = callPackage ./hex/ibrowse.nix {}; jiffy = callPackage ./hex/jiffy.nix {}; diff --git a/pkgs/development/erlang-modules/hex/esqlite.nix b/pkgs/development/erlang-modules/hex/esqlite.nix new file mode 100644 index 00000000000..af7a1266712 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/esqlite.nix @@ -0,0 +1,8 @@ +{ buildHex }: + +buildHex { + name = "esqlite"; + version = "0.2.1"; + sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr"; + compilePorts = true; +} From eac25eaf69b8df9da28b1f94cb009320671ce32a Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 22:50:19 +0100 Subject: [PATCH 168/707] Simplify patch and move pc compile call into buildPhase --- pkgs/development/erlang-modules/build-hex.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index d5c71f882ff..f6b873f433a 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -22,11 +22,7 @@ stdenv.mkDerivation (attrs // { # TODO: figure out how to provide 'pc' plugin hermetically ${if compilePorts then '' - echo "{plugins, [pc]}. - {provider_hooks, - [{post, - [{compile, {pc, compile}}, - {clean, {pc, clean}}]}]}." >> rebar.config + echo "{plugins, [pc]}." >> rebar.config '' else ''''} ${postPatch} @@ -58,8 +54,8 @@ stdenv.mkDerivation (attrs // { # this hermetic buildPhase = '' runHook preBuild - HOME=. rebar3 update - HOME=. rebar3 compile + HOME=. rebar3 do update, compile + HOME=. rebar3 pc compile runHook postBuild ''; From 3a9110b15ccd0ab33e07147f443a63ac567a7681 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Thu, 10 Dec 2015 23:11:25 +0100 Subject: [PATCH 169/707] Add support for rebar3 plugins to buildHex. Allow specifying pluginDeps for buildHex listing rebar3 plugins which are required for given package to be built by rebar3. --- pkgs/development/erlang-modules/build-hex.nix | 14 ++++++++++++-- pkgs/development/erlang-modules/default.nix | 1 + pkgs/development/erlang-modules/hex/esqlite.nix | 3 ++- pkgs/development/erlang-modules/hex/rebar3-pc.nix | 7 +++++++ 4 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/erlang-modules/hex/rebar3-pc.nix diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index f6b873f433a..e664d357d85 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -2,7 +2,7 @@ { name, version, sha256 , hexPkg ? name -, buildInputs ? [], erlangDeps ? [] +, buildInputs ? [], erlangDeps ? [], pluginDeps ? [] , postPatch ? "" , compilePorts ? false , ... }@attrs: @@ -39,14 +39,22 @@ stdenv.mkDerivation (attrs // { recursiveDeps = uniqList { inputList = flatten (map getDeps erlangDeps); }; + recursivePluginsDeps = uniqList { + inputList = flatten (map getDeps pluginDeps); + }; in '' runHook preConfigure - mkdir -p _build/default/lib/ + mkdir -p _build/default/{lib,plugins}/ ${concatMapStrings (dep: '' header "linking erlang dependency ${dep}" ln -s "${dep}" "_build/default/lib/${dep.packageName}" stopNest '') recursiveDeps} + ${concatMapStrings (dep: '' + header "linking rebar3 plugins ${dep}" + ln -s "${dep}" "_build/default/plugins/${dep.packageName}" + stopNest + '') recursivePluginsDeps} runHook postConfigure ''; @@ -55,7 +63,9 @@ stdenv.mkDerivation (attrs // { buildPhase = '' runHook preBuild HOME=. rebar3 do update, compile + ${if compilePorts then '' HOME=. rebar3 pc compile + '' else ''''} runHook postBuild ''; diff --git a/pkgs/development/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix index 8bcf0ddb6a1..84590e12a1c 100644 --- a/pkgs/development/erlang-modules/default.nix +++ b/pkgs/development/erlang-modules/default.nix @@ -7,6 +7,7 @@ let buildErlang = callPackage ./build-erlang.nix {}; buildHex = callPackage ./build-hex.nix {}; + rebar3-pc = callPackage ./hex/rebar3-pc.nix {}; esqlite = callPackage ./hex/esqlite.nix {}; goldrush = callPackage ./hex/goldrush.nix {}; ibrowse = callPackage ./hex/ibrowse.nix {}; diff --git a/pkgs/development/erlang-modules/hex/esqlite.nix b/pkgs/development/erlang-modules/hex/esqlite.nix index af7a1266712..7bcd69c0555 100644 --- a/pkgs/development/erlang-modules/hex/esqlite.nix +++ b/pkgs/development/erlang-modules/hex/esqlite.nix @@ -1,8 +1,9 @@ -{ buildHex }: +{ buildHex, rebar3-pc }: buildHex { name = "esqlite"; version = "0.2.1"; sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr"; compilePorts = true; + pluginDeps = [ rebar3-pc ]; } diff --git a/pkgs/development/erlang-modules/hex/rebar3-pc.nix b/pkgs/development/erlang-modules/hex/rebar3-pc.nix new file mode 100644 index 00000000000..5bc45d3e3ab --- /dev/null +++ b/pkgs/development/erlang-modules/hex/rebar3-pc.nix @@ -0,0 +1,7 @@ +{ buildHex, goldrush }: + +buildHex { + name = "pc"; + version = "1.1.0"; + sha256 = "1br5xfl4b2z70b6a2ccxppn64jvkqgpmy4y9v81kxzb91z0ss9ma"; +} From 5d3680d26516b35a04cd02b6e95122c46bd243a5 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Fri, 11 Dec 2015 00:00:33 +0100 Subject: [PATCH 170/707] Fetch hex.pm registry snapshot with external github repo. This allows to avoid fetching registry file from S3 at build time, making the build hermetic and much faster. Automatic tools will be used to update said external repo content when Hex packages are imported/update. --- pkgs/development/erlang-modules/build-hex.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index e664d357d85..efeda1c6373 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,4 +1,4 @@ -{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl }: +{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl, fetchFromGitHub }: { name, version, sha256 , hexPkg ? name @@ -14,7 +14,14 @@ stdenv.mkDerivation (attrs // { buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; - postPatch = '' + postPatch = let + registrySnapshot = fetchFromGitHub { + owner = "gleber"; + repo = "hex-pm-registry-snapshots"; + rev = "48147b0"; + sha256 = "0ibfnhrhbka4n6wkhs99fpy3sjab54ip37jgvx2hcfhfr4pxhbxw"; + }; + in '' rm -f rebar rebar3 if [ -e "src/${name}.app.src" ]; then sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" @@ -25,6 +32,9 @@ stdenv.mkDerivation (attrs // { echo "{plugins, [pc]}." >> rebar.config '' else ''''} + mkdir -p _build/default/{lib,plugins}/ ./.cache/rebar3/hex/default/ + zcat ${registrySnapshot}/registry.ets.gz > .cache/rebar3/hex/default/registry + ${postPatch} ''; @@ -44,7 +54,6 @@ stdenv.mkDerivation (attrs // { }; in '' runHook preConfigure - mkdir -p _build/default/{lib,plugins}/ ${concatMapStrings (dep: '' header "linking erlang dependency ${dep}" ln -s "${dep}" "_build/default/lib/${dep.packageName}" @@ -62,7 +71,7 @@ stdenv.mkDerivation (attrs // { # this hermetic buildPhase = '' runHook preBuild - HOME=. rebar3 do update, compile + HOME=. rebar3 compile ${if compilePorts then '' HOME=. rebar3 pc compile '' else ''''} From 13a1ab440c6a1d6b16dd927339f305d3a53139fe Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sat, 12 Dec 2015 08:23:33 +0100 Subject: [PATCH 171/707] Replace deprecated uniqList with unique function --- pkgs/development/erlang-modules/build-hex.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index efeda1c6373..777a5c5047f 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -46,12 +46,8 @@ stdenv.mkDerivation (attrs // { configurePhase = let getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); - recursiveDeps = uniqList { - inputList = flatten (map getDeps erlangDeps); - }; - recursivePluginsDeps = uniqList { - inputList = flatten (map getDeps pluginDeps); - }; + recursiveDeps = unique (flatten (map getDeps erlangDeps)); + recursivePluginsDeps = unique (flatten (map getDeps pluginDeps)); in '' runHook preConfigure ${concatMapStrings (dep: '' From 7e57b20abc0f23c27eb7b315cb4bf0596160ab67 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sat, 12 Dec 2015 08:54:57 +0100 Subject: [PATCH 172/707] Add rebar3-pc to plugin deps automatically if compilePorts is enabled --- pkgs/development/erlang-modules/build-hex.nix | 6 ++++-- pkgs/development/erlang-modules/hex/esqlite.nix | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 777a5c5047f..6a1f4172bbd 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,4 +1,5 @@ -{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl, fetchFromGitHub }: +{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl, fetchFromGitHub, + rebar3-pc }: { name, version, sha256 , hexPkg ? name @@ -45,9 +46,10 @@ stdenv.mkDerivation (attrs // { ''; configurePhase = let + plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); recursiveDeps = unique (flatten (map getDeps erlangDeps)); - recursivePluginsDeps = unique (flatten (map getDeps pluginDeps)); + recursivePluginsDeps = unique (flatten (map getDeps plugins)); in '' runHook preConfigure ${concatMapStrings (dep: '' diff --git a/pkgs/development/erlang-modules/hex/esqlite.nix b/pkgs/development/erlang-modules/hex/esqlite.nix index 7bcd69c0555..1fc3a2e91dc 100644 --- a/pkgs/development/erlang-modules/hex/esqlite.nix +++ b/pkgs/development/erlang-modules/hex/esqlite.nix @@ -5,5 +5,4 @@ buildHex { version = "0.2.1"; sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr"; compilePorts = true; - pluginDeps = [ rebar3-pc ]; } From 2a7e77cac5497450eaf1712d906a2ac0a15c2d9b Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sat, 12 Dec 2015 14:36:45 +0100 Subject: [PATCH 173/707] Move registrySnapshot into it's own file for easier automation. --- pkgs/development/erlang-modules/build-hex.nix | 7 +------ pkgs/development/erlang-modules/registrySnapshot.nix | 8 ++++++++ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 pkgs/development/erlang-modules/registrySnapshot.nix diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 6a1f4172bbd..6fd8983d411 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -16,12 +16,7 @@ stdenv.mkDerivation (attrs // { buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; postPatch = let - registrySnapshot = fetchFromGitHub { - owner = "gleber"; - repo = "hex-pm-registry-snapshots"; - rev = "48147b0"; - sha256 = "0ibfnhrhbka4n6wkhs99fpy3sjab54ip37jgvx2hcfhfr4pxhbxw"; - }; + registrySnapshot = import ./registrySnapshot.nix { inherit fetchFromGitHub; }; in '' rm -f rebar rebar3 if [ -e "src/${name}.app.src" ]; then diff --git a/pkgs/development/erlang-modules/registrySnapshot.nix b/pkgs/development/erlang-modules/registrySnapshot.nix new file mode 100644 index 00000000000..cca3dd0c56b --- /dev/null +++ b/pkgs/development/erlang-modules/registrySnapshot.nix @@ -0,0 +1,8 @@ +{ fetchFromGitHub }: + +fetchFromGitHub { + owner = "gleber"; + repo = "hex-pm-registry-snapshots"; + rev = "48147b0"; + sha256 = "0ibfnhrhbka4n6wkhs99fpy3sjab54ip37jgvx2hcfhfr4pxhbxw"; +} From acaf2c179ee5884f330ad6acd5362377319cce87 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sun, 13 Dec 2015 00:03:42 +0100 Subject: [PATCH 174/707] Allow specifying meta for buildHex and buildErlang. Adds "meta" for meck package as a test. --- pkgs/development/erlang-modules/build-erlang.nix | 5 +++++ pkgs/development/erlang-modules/build-hex.nix | 5 +++++ pkgs/development/erlang-modules/hex/meck.nix | 8 +++++++- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/pkgs/development/erlang-modules/build-erlang.nix b/pkgs/development/erlang-modules/build-erlang.nix index fcb22a40193..19320f0394c 100644 --- a/pkgs/development/erlang-modules/build-erlang.nix +++ b/pkgs/development/erlang-modules/build-erlang.nix @@ -3,6 +3,7 @@ { name, version , buildInputs ? [], erlangDeps ? [] , postPatch ? "" +, meta ? {} , ... }@attrs: with stdenv.lib; @@ -53,6 +54,10 @@ stdenv.mkDerivation (attrs // { runHook postInstall ''; + meta = { + inherit (erlang.meta) platforms; + } // meta; + passthru = { packageName = name; inherit erlangDeps; diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 6fd8983d411..a14cd3add55 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -6,6 +6,7 @@ , buildInputs ? [], erlangDeps ? [], pluginDeps ? [] , postPatch ? "" , compilePorts ? false +, meta ? {} , ... }@attrs: with stdenv.lib; @@ -88,6 +89,10 @@ stdenv.mkDerivation (attrs // { sha256 = sha256; }; + meta = { + inherit (erlang.meta) platforms; + } // meta; + passthru = { packageName = name; inherit erlangDeps; diff --git a/pkgs/development/erlang-modules/hex/meck.nix b/pkgs/development/erlang-modules/hex/meck.nix index f0a4da5392c..5af8a15a908 100644 --- a/pkgs/development/erlang-modules/hex/meck.nix +++ b/pkgs/development/erlang-modules/hex/meck.nix @@ -1,7 +1,13 @@ -{ buildHex }: +{ stdenv, buildHex }: buildHex { name = "meck"; version = "0.8.3"; sha256 = "1dh2rhks1xly4f49x89vbhsk8fgwkx5zqp0n98mnng8rs1rkigak"; + + meta = { + description = "A mocking framework for Erlang"; + homepage = "https://github.com/eproxus/meck"; + license = stdenv.lib.licenses.apsl20; + }; } From 033902d2694f957fee66b16c815869b187969e91 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sun, 13 Dec 2015 23:12:08 +0100 Subject: [PATCH 175/707] Refactor fetchHex out of buildHex. This will allow to reuse this code to fetch rebar3's dependencies to ensure it's hermetic build. --- pkgs/development/erlang-modules/build-hex.nix | 19 ++++------- .../tools/build-managers/rebar3/fetch-hex.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 42 insertions(+), 12 deletions(-) create mode 100644 pkgs/development/tools/build-managers/rebar3/fetch-hex.nix diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index a14cd3add55..bb01c3fb505 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,4 +1,4 @@ -{ stdenv, erlang, rebar3, openssl, libyaml, fetchurl, fetchFromGitHub, +{ stdenv, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub, rebar3-pc }: { name, version, sha256 @@ -16,6 +16,12 @@ stdenv.mkDerivation (attrs // { buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; + src = fetchHex { + pkg = hexPkg; + inherit version; + inherit sha256; + }; + postPatch = let registrySnapshot = import ./registrySnapshot.nix { inherit fetchFromGitHub; }; in '' @@ -35,12 +41,6 @@ stdenv.mkDerivation (attrs // { ${postPatch} ''; - unpackCmd = '' - tar -xf $curSrc contents.tar.gz - mkdir contents - tar -C contents -xzf contents.tar.gz - ''; - configurePhase = let plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); @@ -84,11 +84,6 @@ stdenv.mkDerivation (attrs // { runHook postInstall ''; - src = fetchurl { - url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${hexPkg}-${version}.tar"; - sha256 = sha256; - }; - meta = { inherit (erlang.meta) platforms; } // meta; diff --git a/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix b/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix new file mode 100644 index 00000000000..1b1378c10cb --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl }: + +{ pkg, version, sha256 +, meta ? {} +}: + +with stdenv.lib; + +stdenv.mkDerivation ({ + name = "hex-source-${pkg}-${version}"; + + src = fetchurl { + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${pkg}-${version}.tar"; + inherit sha256; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + unpackCmd = '' + tar -xf $curSrc contents.tar.gz + mkdir contents + tar -C contents -xzf contents.tar.gz + ''; + + installPhase = '' + runHook preInstall + mkdir "$out" + cp -Hrt "$out" . + success=1 + runHook postInstall + ''; + + inherit meta; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4f24112cf54..82a148bedcf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5020,6 +5020,7 @@ let rebar = callPackage ../development/tools/build-managers/rebar { }; rebar3 = callPackage ../development/tools/build-managers/rebar3 { }; + fetchHex = callPackage ../development/tools/build-managers/rebar3/fetch-hex.nix { }; erlangPackages = callPackage ../development/erlang-modules { }; From 4ba1a51b7ff8162a92f624e3ddc7ada21bd8289e Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sun, 13 Dec 2015 14:06:35 +0100 Subject: [PATCH 176/707] Move registry to rebar3, since it needs it itself to be bootstrapped. This makes rebar3 build a bit more hermetic. Next stage is to pull in rebar3 plugins dependencies for bootstrap to pick up. --- pkgs/development/erlang-modules/build-hex.nix | 10 ++-------- .../tools/build-managers/rebar3/default.nix | 10 +++++++++- .../build-managers/rebar3}/registrySnapshot.nix | 0 3 files changed, 11 insertions(+), 9 deletions(-) rename pkgs/development/{erlang-modules => tools/build-managers/rebar3}/registrySnapshot.nix (100%) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index bb01c3fb505..041a7db48a9 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -22,21 +22,17 @@ stdenv.mkDerivation (attrs // { inherit sha256; }; - postPatch = let - registrySnapshot = import ./registrySnapshot.nix { inherit fetchFromGitHub; }; - in '' + postPatch = '' rm -f rebar rebar3 if [ -e "src/${name}.app.src" ]; then sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" fi - # TODO: figure out how to provide 'pc' plugin hermetically ${if compilePorts then '' echo "{plugins, [pc]}." >> rebar.config '' else ''''} - mkdir -p _build/default/{lib,plugins}/ ./.cache/rebar3/hex/default/ - zcat ${registrySnapshot}/registry.ets.gz > .cache/rebar3/hex/default/registry + ${rebar3.setupRegistry} ${postPatch} ''; @@ -61,8 +57,6 @@ stdenv.mkDerivation (attrs // { runHook postConfigure ''; - # TODO: figure out how to provide rebar3 a static registry snapshot to make - # this hermetic buildPhase = '' runHook preBuild HOME=. rebar3 compile diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index 2e75a12bbfc..f905622413a 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -1,8 +1,13 @@ -{ stdenv, fetchurl, erlang }: +{ stdenv, fetchurl, erlang, tree, fetchFromGitHub }: let version = "3.0.0-beta.4"; + registrySnapshot = import ./registrySnapshot.nix { inherit fetchFromGitHub; }; + setupRegistry = '' + mkdir -p _build/default/{lib,plugins,packages}/ ./.cache/rebar3/hex/default/ + zcat ${registrySnapshot}/registry.ets.gz > .cache/rebar3/hex/default/registry + ''; in stdenv.mkDerivation { name = "rebar3-${version}"; @@ -13,8 +18,11 @@ stdenv.mkDerivation { }; buildInputs = [ erlang ]; + inherit setupRegistry; + buildPhase = '' + ${setupRegistry} HOME=. escript bootstrap ''; installPhase = '' diff --git a/pkgs/development/erlang-modules/registrySnapshot.nix b/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix similarity index 100% rename from pkgs/development/erlang-modules/registrySnapshot.nix rename to pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix From 108f3cf67fee2a7c8fd52710b65f386f773499e0 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Sun, 13 Dec 2015 14:07:53 +0100 Subject: [PATCH 177/707] Add patch which makes rebar compilation hermetic --- .../tools/build-managers/rebar3/default.nix | 2 + .../rebar3/hermetic-bootstrap.patch | 78 +++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index f905622413a..841e0b71f42 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation { sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; }; + patches = [ ./hermetic-bootstrap.patch ]; + buildInputs = [ erlang ]; inherit setupRegistry; diff --git a/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch new file mode 100644 index 00000000000..13d60fdcc91 --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch @@ -0,0 +1,78 @@ +diff --git a/bootstrap b/bootstrap +index 25bd658..b2a986b 100755 +--- a/bootstrap ++++ b/bootstrap +@@ -8,9 +8,6 @@ main(_Args) -> + application:start(asn1), + application:start(public_key), + application:start(ssl), +- inets:start(), +- inets:start(httpc, [{profile, rebar}]), +- set_httpc_options(), + + %% Fetch and build deps required to build rebar3 + BaseDeps = [{providers, []} +@@ -33,7 +30,6 @@ main(_Args) -> + + setup_env(), + os:putenv("REBAR_PROFILE", "bootstrap"), +- rebar3:run(["update"]), + {ok, State} = rebar3:run(["compile"]), + reset_env(), + os:putenv("REBAR_PROFILE", ""), +@@ -71,33 +67,7 @@ fetch_and_compile({Name, ErlFirstFiles}, Deps) -> + compile(Name, ErlFirstFiles). + + fetch({pkg, Name, Vsn}, App) -> +- Dir = filename:join([filename:absname("_build/default/lib/"), App]), +- CDN = "https://s3.amazonaws.com/s3.hex.pm/tarballs", +- Package = binary_to_list(<>), +- Url = string:join([CDN, Package], "/"), +- case request(Url) of +- {ok, Binary} -> +- {ok, Contents} = extract(Binary), +- ok = erl_tar:extract({binary, Contents}, [{cwd, Dir}, compressed]); +- _ -> +- io:format("Error: Unable to fetch package ~p ~p~n", [Name, Vsn]) +- end. +- +-extract(Binary) -> +- {ok, Files} = erl_tar:extract({binary, Binary}, [memory]), +- {"contents.tar.gz", Contents} = lists:keyfind("contents.tar.gz", 1, Files), +- {ok, Contents}. +- +-request(Url) -> +- case httpc:request(get, {Url, []}, +- [{relaxed, true}], +- [{body_format, binary}], +- rebar) of +- {ok, {{_Version, 200, _Reason}, _Headers, Body}} -> +- {ok, Body}; +- Error -> +- Error +- end. ++ ok. + + get_rebar_config() -> + {ok, [[Home]]} = init:get_argument(home), +@@ -109,20 +79,6 @@ get_rebar_config() -> + [] + end. + +-get_http_vars(Scheme) -> +- proplists:get_value(Scheme, get_rebar_config(), []). +- +-set_httpc_options() -> +- set_httpc_options(https_proxy, get_http_vars(https_proxy)), +- set_httpc_options(proxy, get_http_vars(http_proxy)). +- +-set_httpc_options(_, []) -> +- ok; +- +-set_httpc_options(Scheme, Proxy) -> +- {ok, {_, _, Host, Port, _, _}} = http_uri:parse(Proxy), +- httpc:set_options([{Scheme, {{Host, Port}, []}}], rebar). +- + compile(App, FirstFiles) -> + Dir = filename:join(filename:absname("_build/default/lib/"), App), + filelib:ensure_dir(filename:join([Dir, "ebin", "dummy.beam"])), From 074dfbe5165f7709de863ca152464fcfc762ebcd Mon Sep 17 00:00:00 2001 From: obadz Date: Fri, 27 Nov 2015 02:51:31 +0000 Subject: [PATCH 178/707] go/pup: init at 0.3.9 (also required go/color: init at 9aae6aa) --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..792e66ee6e6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1671,6 +1671,8 @@ let go-mtpfs = goPackages.mtpfs.bin // { outputs = [ "bin" ]; }; + go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 70dda19bc8e..d631a7b4950 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3230,4 +3230,27 @@ let ''; }; + color = buildFromGitHub { + rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; + owner = "fatih"; + repo = "color"; + sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp"; + propagatedBuildInputs = [ net go-isatty ]; + buildInputs = [ ansicolor go-colorable ]; + }; + + pup = buildFromGitHub { + rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831"; + owner = "EricChiang"; + repo = "pup"; + sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0"; + propagatedBuildInputs = [ net ]; + buildInputs = [ go-colorable color ]; + postPatch = '' + grep -sr github.com/ericchiang/pup/Godeps/_workspace/src/ | + cut -f 1 -d : | + sort -u | + xargs -d '\n' sed -i -e s,github.com/ericchiang/pup/Godeps/_workspace/src/,,g + ''; + }; }; in self From f579307cfe0c443e31185e940fa93db2ddb7448c Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 12:31:37 -0500 Subject: [PATCH 179/707] .mention-bot: remove illegal comment (close #11488) --- .mention-bot | 1 - 1 file changed, 1 deletion(-) diff --git a/.mention-bot b/.mention-bot index 36e38ed82b9..4c200e30279 100644 --- a/.mention-bot +++ b/.mention-bot @@ -1,5 +1,4 @@ { - // users in this list will never be mentioned by mention-bot "userBlacklist": [ "civodul" ] From 474da3bf244603d3ad51fb460a9cd07cdbd53b46 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Tue, 15 Dec 2015 00:03:05 +0100 Subject: [PATCH 180/707] Add sources of specific rebar bootstrap deps via new fetchHex derivation. --- .../tools/build-managers/rebar3/default.nix | 84 ++++++++++++++++++- 1 file changed, 81 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index 841e0b71f42..c4e256d5873 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, erlang, tree, fetchFromGitHub }: +{ stdenv, fetchurl, fetchHex, erlang, tree, fetchFromGitHub }: let @@ -8,6 +8,68 @@ let mkdir -p _build/default/{lib,plugins,packages}/ ./.cache/rebar3/hex/default/ zcat ${registrySnapshot}/registry.ets.gz > .cache/rebar3/hex/default/registry ''; + # TODO: all these below probably should go into nixpkgs.erlangModules.sources.* + # {erlware_commons, "0.16.0"}, + erlware_commons = fetchHex { + pkg = "erlware_commons"; + version = "0.16.0"; + sha256 = "0kh24d0001390wfx28d0xa874vrsfvjgj41g315vg4hac632krxx"; + }; + # {ssl_verify_hostname, "1.0.5"}, + ssl_verify_hostname = fetchHex { + pkg = "ssl_verify_hostname"; + version = "1.0.5"; + sha256 = "1gzavzqzljywx4l59gvhkjbr1dip4kxzjjz1s4wsn42f2kk13jzj"; + }; + # {certifi, "0.1.1"}, + certifi = fetchHex { + pkg = "certifi"; + version = "0.1.1"; + sha256 = "0afylwqg74gprbg116asz0my2nipmki0512c8mdiq6xdiyjdvlg6"; + }; + # {providers, "1.5.0"}, + providers = fetchHex { + pkg = "providers"; + version = "1.5.0"; + sha256 = "1hc8sp2l1mmx9dfpmh1f8j9hayfg7541rmx05wb9cmvxvih7zyvf"; + }; + # {getopt, "0.8.2"}, + getopt = fetchHex { + pkg = "getopt"; + version = "0.8.2"; + sha256 = "1xw30h59zbw957cyjd8n50hf9y09jnv9dyry6x3avfwzcyrnsvkk"; + }; + # {bbmustache, "1.0.4"}, + bbmustache = fetchHex { + pkg = "bbmustache"; + version = "1.0.4"; + sha256 = "04lvwm7f78x8bys0js33higswjkyimbygp4n72cxz1kfnryx9c03"; + }; + # {relx, "3.8.0"}, + relx = fetchHex { + pkg = "relx"; + version = "3.8.0"; + sha256 = "0y89iirjz3kc1rzkdvc6p3ssmwcm2hqgkklhgm4pkbc14fcz57hq"; + }; + # {cf, "0.2.1"}, + cf = fetchHex { + pkg = "cf"; + version = "0.2.1"; + sha256 = "19d0yvg8wwa57cqhn3vqfvw978nafw8j2rvb92s3ryidxjkrmvms"; + }; + # {cth_readable, "1.1.0"}, + cth_readable = fetchHex { + pkg = "cth_readable"; + version = "1.0.1"; + sha256 = "1cnc4fbypckqllfi5h73rdb24dz576k3177gzvp1kbymwkp1xcz1"; + }; + # {eunit_formatters, "0.2.0"} + eunit_formatters = fetchHex { + pkg = "eunit_formatters"; + version = "0.2.0"; + sha256 = "03kiszlbgzscfd2ns7na6bzbfzmcqdb5cx3p6qy3657jk2fai332"; + }; + in stdenv.mkDerivation { name = "rebar3-${version}"; @@ -19,12 +81,28 @@ stdenv.mkDerivation { patches = [ ./hermetic-bootstrap.patch ]; - buildInputs = [ erlang ]; + buildInputs = [ erlang + tree + ]; inherit setupRegistry; + postPatch = '' + echo postPatch + ${setupRegistry} + mkdir -p _build/default/lib/ + cp --no-preserve=mode -R ${erlware_commons} _build/default/lib/erlware_commons + cp --no-preserve=mode -R ${providers} _build/default/lib/providers + cp --no-preserve=mode -R ${getopt} _build/default/lib/getopt + cp --no-preserve=mode -R ${bbmustache} _build/default/lib/bbmustache + cp --no-preserve=mode -R ${certifi} _build/default/lib/certifi + cp --no-preserve=mode -R ${cf} _build/default/lib/cf + cp --no-preserve=mode -R ${cth_readable} _build/default/lib/cth_readable + cp --no-preserve=mode -R ${eunit_formatters} _build/default/lib/eunit_formatters + cp --no-preserve=mode -R ${relx} _build/default/lib/relx + cp --no-preserve=mode -R ${ssl_verify_hostname} _build/default/lib/ssl_verify_hostname + ''; buildPhase = '' - ${setupRegistry} HOME=. escript bootstrap ''; installPhase = '' From bb1b5c71948e32c8cd64bfa5ca6d497602dce516 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Tue, 15 Dec 2015 00:53:41 +0100 Subject: [PATCH 181/707] Update hex.pm registry --- .../tools/build-managers/rebar3/registrySnapshot.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix b/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix index cca3dd0c56b..8e9c2a292fd 100644 --- a/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix +++ b/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix @@ -3,6 +3,6 @@ fetchFromGitHub { owner = "gleber"; repo = "hex-pm-registry-snapshots"; - rev = "48147b0"; - sha256 = "0ibfnhrhbka4n6wkhs99fpy3sjab54ip37jgvx2hcfhfr4pxhbxw"; + rev = "329ae2b"; + sha256 = "1rs3z8psfvy10mzlfvkdzbflgikcnq08r38kfi0f8p5wvi8f8hmh"; } From c7738364b5e4520469b9adcc4c32bcf7c2db8348 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 20 Aug 2015 07:56:32 +0100 Subject: [PATCH 182/707] light-locker: init at 1.7.0 --- .../screensavers/light-locker/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/misc/screensavers/light-locker/default.nix diff --git a/pkgs/misc/screensavers/light-locker/default.nix b/pkgs/misc/screensavers/light-locker/default.nix new file mode 100644 index 00000000000..48b30bccbdd --- /dev/null +++ b/pkgs/misc/screensavers/light-locker/default.nix @@ -0,0 +1,43 @@ +{ stdenv +, fetchFromGitHub +, which +, xfce +, glib +, pkgconfig +, libX11 +, gtk3 +, dbus_glib +, systemd +, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + name = "${basename}-${version}"; + basename = "light-locker"; + version = "1.7.0"; + + src = fetchFromGitHub { + owner = "the-cavalry"; + repo = basename; + rev = "v${version}"; + sha256 = "0ygkp5vgkx2nfhfql6j2jsfay394gda23ir3sx4f72j4agsirjvj"; + }; + + buildInputs = [ which xfce.xfce4_dev_tools glib pkgconfig libX11 gtk3 dbus_glib systemd wrapGAppsHook ]; + + preConfigure = '' + ./autogen.sh + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/the-cavalry/light-locker; + description = "light-locker is a simple locker"; + longDescription = '' + light-locker is a simple locker (forked from gnome-screensaver) that aims to have simple, sane, secure defaults and be well integrated with the desktop while not carrying any desktop-specific dependencies. + It relies on lightdm for locking and unlocking your session via ConsoleKit/UPower or logind/systemd. + ''; + license = licenses.gpl2; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..a530e3fa1c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7707,6 +7707,8 @@ let lightning = callPackage ../development/libraries/lightning { }; + lightlocker = callPackage ../misc/screensavers/light-locker { }; + lirc = callPackage ../development/libraries/lirc { }; liquidfun = callPackage ../development/libraries/liquidfun { }; From 9be012f0d4d9b6bca35416ec89d5a40be4556896 Mon Sep 17 00:00:00 2001 From: obadz Date: Sun, 29 Nov 2015 00:18:59 +0000 Subject: [PATCH 183/707] lightdm & xserver service: add ability to spawn more than one X server - if xserver.tty and/or display are set to null, then don't specify them, or the -logfile argument in the xserverArgs - For lightdm, we set default tty and display to null and we determine those at runtime based on arguments passed. This is necessary because we run multiple X servers so they can't all be on the same display --- .../services/x11/display-managers/default.nix | 2 +- .../services/x11/display-managers/lightdm.nix | 15 +++++++++++---- nixos/modules/services/x11/xserver.nix | 11 ++++++----- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index ca0832e5b0c..bad99ccd869 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -37,7 +37,7 @@ let # file provided by services.xserver.displayManager.session.script xsession = wm: dm: pkgs.writeScript "xsession" '' - #! /bin/sh + #! ${pkgs.bash}/bin/bash . /etc/profile cd "$HOME" diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix index c8ccf43029d..ded694d90d5 100644 --- a/nixos/modules/services/x11/display-managers/lightdm.nix +++ b/nixos/modules/services/x11/display-managers/lightdm.nix @@ -13,9 +13,16 @@ let # lightdm runs with clearenv(), but we need a few things in the enviornment for X to startup xserverWrapper = writeScript "xserver-wrapper" '' - #! /bin/sh + #! ${pkgs.bash}/bin/bash ${concatMapStrings (n: "export ${n}=\"${getAttr n xEnv}\"\n") (attrNames xEnv)} - exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} + + display=$(echo "$@" | xargs -n 1 | grep -P ^:\\d\$ | head -n 1 | sed s/^://) + if [ -z "$display" ] + then additionalArgs=":0 -logfile /var/log/X.0.log" + else additionalArgs="-logfile /var/log/X.$display.log" + fi + + exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} $additionalArgs "$@" ''; usersConf = writeText "users.conf" @@ -39,7 +46,6 @@ let greeter-session = ${cfg.greeter.name} ${cfg.extraSeatDefaults} ''; - in { # Note: the order in which lightdm greeter modules are imported @@ -98,7 +104,6 @@ in }; config = mkIf cfg.enable { - services.xserver.displayManager.slim.enable = false; services.xserver.displayManager.job = { @@ -149,5 +154,7 @@ in services.xserver.displayManager.lightdm.background = mkDefault "${pkgs.nixos-artwork}/share/artwork/gnome/Gnome_Dark.png"; + services.xserver.tty = null; # We might start multiple X servers so let the tty increment themselves.. + services.xserver.display = null; # We specify our own display (and logfile) in xserver-wrapper up there }; } diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 3348e8d0582..8fcca70bc79 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -381,13 +381,13 @@ in }; tty = mkOption { - type = types.int; + type = types.nullOr types.int; default = 7; description = "Virtual console for the X server."; }; display = mkOption { - type = types.int; + type = types.nullOr types.int; default = 0; description = "Display number for the X server."; }; @@ -517,11 +517,12 @@ in services.xserver.displayManager.xserverArgs = [ "-ac" "-terminate" - "-logfile" "/var/log/X.${toString cfg.display}.log" "-config ${configFile}" - ":${toString cfg.display}" "vt${toString cfg.tty}" "-xkbdir" "${pkgs.xkeyboard_config}/etc/X11/xkb" - ] ++ optional (!cfg.enableTCP) "-nolisten tcp"; + ] ++ optional (cfg.display != null) ":${tostring cfg.display}" + ++ optional (cfg.tty != null) "vt${toString cfg.tty}" + ++ optional (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] + ++ optional (!cfg.enableTCP) "-nolisten tcp"; services.xserver.modules = concatLists (catAttrs "modules" cfg.drivers) ++ From 83a8e8e4ef535c10e5e1059bcb5a5498e68ecc3c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Dec 2015 17:04:20 +0300 Subject: [PATCH 184/707] polkit_gnome: cleanup, add platforms --- pkgs/tools/security/polkit-gnome/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/polkit-gnome/default.nix b/pkgs/tools/security/polkit-gnome/default.nix index c06aac204a1..38d47e742a2 100644 --- a/pkgs/tools/security/polkit-gnome/default.nix +++ b/pkgs/tools/security/polkit-gnome/default.nix @@ -1,17 +1,20 @@ { stdenv, fetchurl, polkit, gtk3, pkgconfig, intltool }: -stdenv.mkDerivation { - name = "polkit-gnome-0.105"; +let + version = "0.105"; + +in stdenv.mkDerivation rec { + name = "polkit-gnome-${version}"; src = fetchurl { - url = mirror://gnome/sources/polkit-gnome/0.105/polkit-gnome-0.105.tar.xz; + url = "mirror://gnome/sources/polkit-gnome/${version}/${name}.tar.xz"; sha256 = "0sckmcbxyj6sbrnfc5p5lnw27ccghsid6v6wxq09mgxqcd4lk10p"; }; buildInputs = [ polkit gtk3 ]; nativeBuildInputs = [ pkgconfig intltool ]; - configureFlags = "--disable-introspection"; + configureFlags = [ "--disable-introspection" ]; # Desktop file from Debian postInstall = '' @@ -24,5 +27,6 @@ stdenv.mkDerivation { description = "A dbus session bus service that is used to bring up authentication dialogs"; license = stdenv.lib.licenses.gpl2; maintainers = with stdenv.lib.maintainers; [ urkud phreedom ]; + platforms = stdenv.lib.platforms.linux; }; } From b566f73f383c5a0e81a5655384ce27d2a85f667c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Dec 2015 19:14:00 +0100 Subject: [PATCH 185/707] linuxPackages.phc-intel: 0.4.0-rev{18 -> 19} Fixes #11733. Minimum Linux kernel version is now 4.3.x. --- pkgs/os-specific/linux/phc-intel/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index dd5a2741267..c3c62dbf5eb 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -2,20 +2,20 @@ assert stdenv.isLinux; # Don't bother with older versions, though some would probably work: -assert stdenv.lib.versionAtLeast kernel.version "4.2"; +assert stdenv.lib.versionAtLeast kernel.version "4.3"; # Disable on grsecurity kernels, which break module building: assert !kernel.features ? grsecurity; let release = "0.4.0"; - revbump = "rev18"; # don't forget to change forum download id... + revbump = "rev19"; # don't forget to change forum download id... version = "${release}-${revbump}"; in stdenv.mkDerivation { name = "linux-phc-intel-${version}-${kernel.version}"; src = fetchurl { - sha256 = "1480y75yid4nw7dhzm97yb10dykinzjz34abvavsrqpq7qclhv27"; - url = "http://www.linux-phc.org/forum/download/file.php?id=167"; + sha256 = "1apvjp2rpaf3acjvsxgk6xiwrx4n9p565gxvra05pvicwikfiqa8"; + url = "http://www.linux-phc.org/forum/download/file.php?id=168"; name = "phc-intel-pack-${revbump}.tar.bz2"; }; From 36ab097c6ca9a8b46d56e51504a9e55abe067ec1 Mon Sep 17 00:00:00 2001 From: Rene Donner Date: Tue, 15 Dec 2015 18:42:48 +0100 Subject: [PATCH 186/707] julia: 0.4.0 -> 0.4.2 --- pkgs/development/compilers/julia/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 5df0a35aae8..81781868b02 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -43,12 +43,12 @@ in stdenv.mkDerivation rec { pname = "julia"; - version = "0.4.0"; + version = "0.4.2"; name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz"; - sha256 = "00k53hzbawpqvmkkyzcvbmf1d0ycshzdqk19nwsifv1rmiwjj7ss"; + sha256 = "04i5kjji5553lkdxz3wgflg1mav5ivwy2dascjy8jprqpq33aknk"; }; prePatch = '' From db9a93f9921c2253a9935970c709012b58b109bc Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 20:58:22 +0100 Subject: [PATCH 187/707] ocaml-batteries: 2.3.1 -> 2.4.0 --- pkgs/development/ocaml-modules/batteries/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index e83ea743263..06618fff819 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchzip, ocaml, findlib, qtest }: -let version = "2.3.1"; in +let version = "2.4.0"; in stdenv.mkDerivation { name = "ocaml-batteries-${version}"; src = fetchzip { url = "https://github.com/ocaml-batteries-team/batteries-included/archive/v${version}.tar.gz"; - sha256 = "1hjbzczchqnnxbn4ck84j5pi6prgfjfjg14kg26fzqz3gql427rl"; + sha256 = "0bxp5d05w1igwh9vcgvhd8sd6swf2ddsjphw0mkakdck9afnimmd"; }; buildInputs = [ ocaml findlib qtest ]; From 680d909c97afa3348a032b6a3e70b9ad2cc46274 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 21:07:33 +0100 Subject: [PATCH 188/707] ocaml-easy-format: 1.1.0 -> 1.2.0 --- pkgs/development/ocaml-modules/easy-format/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/easy-format/default.nix b/pkgs/development/ocaml-modules/easy-format/default.nix index bac558cc50a..bbf4d82b519 100644 --- a/pkgs/development/ocaml-modules/easy-format/default.nix +++ b/pkgs/development/ocaml-modules/easy-format/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchzip, ocaml, findlib }: let pname = "easy-format"; - version = "1.1.0"; + version = "1.2.0"; in stdenv.mkDerivation { @@ -9,7 +9,7 @@ stdenv.mkDerivation { src = fetchzip { url = "https://github.com/mjambon/${pname}/archive/v${version}.tar.gz"; - sha256 = "084blm13k5lakl5wq3qfxbd0l0bwblvk928v75xcxpaqwv426w5a"; + sha256 = "00ga7mrlycjc99gzp3bgx6iwhf7i6j8856f8xzrf1yas7zwzgzm9"; }; buildInputs = [ ocaml findlib ]; From 038f4ce1d18d6fe3a2796a5a6cfc09d799958601 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 21:36:57 +0100 Subject: [PATCH 189/707] menhir: 20151110 -> 20151112 --- pkgs/development/ocaml-modules/menhir/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/menhir/default.nix b/pkgs/development/ocaml-modules/menhir/default.nix index c8243f32671..3841027b896 100644 --- a/pkgs/development/ocaml-modules/menhir/default.nix +++ b/pkgs/development/ocaml-modules/menhir/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ocaml, findlib -, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151110" else "20140422" +, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151112" else "20140422" }@args: let sha256 = if version == "20140422" then "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d" - else if version == "20151110" then "12ijr1gd808f79d7k7ji9zg23xr4szayfgvm6njqamh0jnspq70r" + else if version == "20151112" then "0fhfs96gxnj920h5ydsg7c1qypsbrlzqfn2cqzrg9rfj1qq6wq86" else throw ("menhir: unknown version " ++ version); in From 4a00e1793b26046c4513198306e91018d2597011 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 21:57:54 +0100 Subject: [PATCH 190/707] ocaml-tuntap: init at 1.3.0 --- .../ocaml-modules/tuntap/default.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/ocaml-modules/tuntap/default.nix diff --git a/pkgs/development/ocaml-modules/tuntap/default.nix b/pkgs/development/ocaml-modules/tuntap/default.nix new file mode 100644 index 00000000000..de520c643fe --- /dev/null +++ b/pkgs/development/ocaml-modules/tuntap/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchzip, ocaml, findlib, ipaddr }: + +assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"; + +stdenv.mkDerivation { + name = "ocaml-tuntap-1.3.0"; + + src = fetchzip { + url = https://github.com/mirage/ocaml-tuntap/archive/v1.3.0.tar.gz; + sha256 = "1cmd4kky875ks02gm2nb8yr80hmlfcnjdfyc63hvkh49acssy3d5"; + }; + + buildInputs = [ ocaml findlib ]; + propagatedBuildInputs = [ ipaddr ]; + + createFindlibDestdir = true; + + meta = { + description = "Bindings to the UNIX tuntap facility"; + license = stdenv.lib.licenses.isc; + homepage = https://github.com/mirage/ocaml-tuntap; + inherit (ocaml.meta) platforms; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a6e5918bbf9..3107318c7dc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4667,6 +4667,8 @@ let re2 = callPackage ../development/ocaml-modules/re2 { }; + tuntap = callPackage ../development/ocaml-modules/tuntap { }; + tyxml = callPackage ../development/ocaml-modules/tyxml { }; ulex = callPackage ../development/ocaml-modules/ulex { }; From 23efd0e6179e9166c64d5bddc78e63d7117284bc Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 22:02:15 +0100 Subject: [PATCH 191/707] ocaml-hex: 0.2.0 -> 1.0.0 --- pkgs/development/ocaml-modules/hex/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix index 7a060bd795a..a9d30f1a9e7 100644 --- a/pkgs/development/ocaml-modules/hex/default.nix +++ b/pkgs/development/ocaml-modules/hex/default.nix @@ -1,17 +1,20 @@ { stdenv, fetchzip, ocaml, findlib, cstruct }: -let version = "0.2.0"; in +let version = "1.0.0"; in stdenv.mkDerivation { name = "ocaml-hex-${version}"; src = fetchzip { url = "https://github.com/mirage/ocaml-hex/archive/${version}.tar.gz"; - sha256 = "13vmpxwg5vb2qvkdqz37rx1ya19r9cp4dwylx8jj15mn77hpy7xg"; + sha256 = "0g4cq4bsksga15fa5ln083gkglawknbnhi2s4k8yk0yi5xngvwm4"; }; buildInputs = [ ocaml findlib ]; propagatedBuildInputs = [ cstruct ]; + configureFlags = "--enable-tests"; + doCheck = true; + checkTarget = "test"; createFindlibDestdir = true; meta = { From 48e7eb65f2ecf12b1399395cd11e248e9c676e8f Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 15 Dec 2015 22:43:25 +0100 Subject: [PATCH 192/707] ocaml-iso8601: init at 0.2.4 OCaml library for ISO 8601 and RFC 3999 date parsing. Homepage: http://sagotch.github.io/ISO8601.ml/ --- .../ocaml-modules/iso8601/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/ocaml-modules/iso8601/default.nix diff --git a/pkgs/development/ocaml-modules/iso8601/default.nix b/pkgs/development/ocaml-modules/iso8601/default.nix new file mode 100644 index 00000000000..4b194332d08 --- /dev/null +++ b/pkgs/development/ocaml-modules/iso8601/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchzip, ocaml, findlib }: + +let version = "0.2.4"; in + +stdenv.mkDerivation { + name = "ocaml-iso8601-${version}"; + src = fetchzip { + url = "https://github.com/sagotch/ISO8601.ml/archive/${version}.tar.gz"; + sha256 = "0ypdd1p04xdjxxx3b61wp7abswfrq3vcvwwaxvywxwqljw0dhydi"; + }; + + buildInputs = [ ocaml findlib ]; + createFindlibDestdir = true; + + meta = { + homepage = http://sagotch.github.io/ISO8601.ml/; + description = "ISO 8601 and RFC 3999 date parsing for OCaml"; + license = stdenv.lib.licenses.mit; + platforms = ocaml.meta.platforms; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3107318c7dc..a6da7cf68ff 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4522,6 +4522,8 @@ let ipaddr = callPackage ../development/ocaml-modules/ipaddr { }; + iso8601 = callPackage ../development/ocaml-modules/iso8601 { }; + javalib = callPackage ../development/ocaml-modules/javalib { extlib = ocaml_extlib_maximal; }; From 8638952ededa073720052c612d4154a0b0c3cc3f Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 15 Dec 2015 22:54:05 +0100 Subject: [PATCH 193/707] pkgs.slurm-llnl: 14-11-5-1 -> 15-08-5-1 --- pkgs/servers/computing/slurm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index 57263d04723..5e55724a290 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "slurm-llnl-${version}"; - version = "14-11-5-1"; + version = "15-08-5-1"; src = fetchurl { url = "https://github.com/SchedMD/slurm/archive/slurm-${version}.tar.gz"; - sha256 = "0vn2jkj83zgc4j656vm24lihapg3w3sfnzpsmynlk4r0v9cy2vcw"; + sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1"; }; buildInputs = [ python munge perl pam openssl mysql.lib ]; From a4cd9f771a372af8860529b7ae9667cc2f1d1923 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 15 Dec 2015 23:03:28 +0100 Subject: [PATCH 194/707] rkt: bump version 0.12.0 -> 0.13.0 --- pkgs/applications/virtualization/rkt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 6b3eb079f98..c95ccaaf0a8 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -9,7 +9,7 @@ let stage1Flavours = [ "coreos" ]; in stdenv.mkDerivation rec { - version = "0.12.0"; + version = "0.13.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,7 +17,7 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1qwj3a4780lqra2c6ncw86lskzqnh59fxk577hgqym4jgxxk4bbv"; + sha256 = "1qx8bzcm5xifr9x2wa83mqz15bk2rpjqabm00wzbqixcyxra9bka"; }; stage1BaseImage = fetchurl { From a2f8812096ac738e039104223d1d5b1eb9adb322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 15 Dec 2015 18:52:13 +0100 Subject: [PATCH 195/707] add numad: daemon that manages application locality --- pkgs/os-specific/linux/numad/default.nix | 27 +++++++++++++++ .../linux/numad/numad-linker-flags.patch | 33 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 62 insertions(+) create mode 100644 pkgs/os-specific/linux/numad/default.nix create mode 100644 pkgs/os-specific/linux/numad/numad-linker-flags.patch diff --git a/pkgs/os-specific/linux/numad/default.nix b/pkgs/os-specific/linux/numad/default.nix new file mode 100644 index 00000000000..2e88e2c794e --- /dev/null +++ b/pkgs/os-specific/linux/numad/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "numad-0.5"; + + src = fetchurl { + url = "https://git.fedorahosted.org/cgit/numad.git/snapshot/${name}.tar.xz"; + sha256 = "08zd1yc3w00yv4mvvz5sq1gf91f6p2s9ljcd72m33xgnkglj60v4"; + }; + + patches = [ + ./numad-linker-flags.patch + ]; + postPatch = '' + substituteInPlace Makefile --replace "install -m" "install -Dm" + ''; + + makeFlags = "prefix=$(out)"; + + meta = with stdenv.lib; { + description = "A user-level daemon that monitors NUMA topology and processes resource consumption to facilitate good NUMA resource access"; + homepage = https://fedoraproject.org/wiki/Features/numad; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = with maintainers; [ iElectric ]; + }; +} diff --git a/pkgs/os-specific/linux/numad/numad-linker-flags.patch b/pkgs/os-specific/linux/numad/numad-linker-flags.patch new file mode 100644 index 00000000000..97f3dc8b6cf --- /dev/null +++ b/pkgs/os-specific/linux/numad/numad-linker-flags.patch @@ -0,0 +1,33 @@ +From 9eb3cc5c51d846c8c8b750a4eb55545d7b5fea6c Mon Sep 17 00:00:00 2001 +From: Mike Frysinger +Date: Wed, 23 Apr 2014 15:41:26 -0400 +Subject: [PATCH] use LDLIBS for linker flags + +When you put -lfoo into the dependency line of make, it forces it to +search /lib and /usr/lib for files to link against. This can cause +problems when trying to cross-compile or build for different ABIs. +Use the standard LDLIBS variable instead. + +URL: https://bugs.gentoo.org/505760 +Reported-by: Georgi Georgiev +Signed-off-by: Mike Frysinger +--- + Makefile | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index f3838b4..f2e9a6e 100644 +--- a/Makefile ++++ b/Makefile +@@ -31,7 +31,8 @@ docdir := ${prefix}/share/doc + + all: numad + +-numad: numad.o -lpthread ++LDLIBS := -lpthread ++numad: numad.o + + AR ?= ar + RANLIB ?= ranlib +-- +1.9.2 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a6da7cf68ff..5917e715c14 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10353,6 +10353,8 @@ let numactl = callPackage ../os-specific/linux/numactl { }; + numad = callPackage ../os-specific/linux/numad { }; + open-vm-tools = callPackage ../applications/virtualization/open-vm-tools { inherit (gnome) gtk gtkmm; }; From caa9c53d6eefb9c3df0f929df0eb5cb809649e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 15 Dec 2015 19:17:47 +0100 Subject: [PATCH 196/707] qemu: enable numa --- pkgs/applications/virtualization/qemu/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 13cb7df3479..77903aa9589 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman , attr, libcap, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy -, libseccomp, libaio, libcap_ng, gnutls, nettle +, libseccomp, libaio, libcap_ng, gnutls, nettle, numactl , makeWrapper , pulseSupport ? true, libpulseaudio , sdlSupport ? true, SDL @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { buildInputs = [ python zlib pkgconfig glib ncurses perl pixman attr libcap vde2 texinfo libuuid flex bison makeWrapper lzo snappy libseccomp - libcap_ng gnutls nettle + libcap_ng gnutls nettle numactl ] ++ optionals pulseSupport [ libpulseaudio ] ++ optionals sdlSupport [ SDL ] @@ -42,6 +42,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-seccomp" + "--enable-numa" "--smbd=smbd" # use `smbd' from $PATH "--audio-drv-list=${audio}" "--sysconfdir=/etc" From 0acc32e8369f55e6a6f68c59cd5187d6cac20112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 15 Dec 2015 19:55:39 +0100 Subject: [PATCH 197/707] libvirt: add numa support --- pkgs/development/libraries/libvirt/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index e946f27791b..27e67866fe3 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python , iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng -, dnsmasq, libnl, libpcap, libxslt, xhtml1 +, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl , pythonPackages, perlPackages }: @@ -20,11 +20,12 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2 utillinux udev libpciaccess gettext libtasn1 libgcrypt yajl makeWrapper - libcap_ng libnl libxslt xhtml1 perlPackages.XMLXPath + libcap_ng libnl libxslt xhtml1 perlPackages.XMLXPath numad numactl ]; preConfigure = '' PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:${dnsmasq}/bin:$PATH + substituteInPlace configure --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' patchShebangs . # fixes /usr/bin/python references ''; @@ -35,6 +36,7 @@ stdenv.mkDerivation rec { "--with-macvtap" "--with-virtualport" "--with-libpcap" + "--with-numad" ]; installFlags = [ @@ -47,7 +49,7 @@ stdenv.mkDerivation rec { substituteInPlace $out/libexec/libvirt-guests.sh \ --replace "$out/bin" "${gettext}/bin" wrapProgram $out/sbin/libvirtd \ - --prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin + --prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin:${numad}/bin:${numactl}/bin ''; enableParallelBuilding = true; From d66a1a46e6f1f82ad8305d669db5c3a8cca147c3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 16 Dec 2015 00:49:43 +0100 Subject: [PATCH 198/707] colordiff: add archive URL When a new version of colordiff is released the old tarball is moved to the archive directory. This breaks builds until the derivation is updated to the new version. This commit lets fetchurl know about the archive URL. --- pkgs/tools/text/colordiff/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/text/colordiff/default.nix b/pkgs/tools/text/colordiff/default.nix index 9b041ae4b2b..53e683561fb 100644 --- a/pkgs/tools/text/colordiff/default.nix +++ b/pkgs/tools/text/colordiff/default.nix @@ -4,7 +4,10 @@ stdenv.mkDerivation rec { name = "colordiff-1.0.16"; src = fetchurl { - url = "http://www.colordiff.org/${name}.tar.gz"; + urls = [ + "http://www.colordiff.org/${name}.tar.gz" + "http://www.colordiff.org/archive/${name}.tar.gz" + ]; sha256 = "12qkkw13261dra8pg7mzx4r8p9pb0ajb090bib9j1s6hgphwzwga"; }; From df02ed5696193dde5ba3c09aa20cd1d512802373 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 16 Dec 2015 09:55:39 +0900 Subject: [PATCH 199/707] firefox-bin: 42.0 -> 43.0 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index acbcd075797..5f409d32799 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_sources.rb > sources.nix { - version = "42.0"; + version = "43.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "f45ceba774989f09e6adb226f0e189c69092d9eccf67722b1876695d94b6a988"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "78f64d02e5a1548e0b9b9f9c36f1eb151dbc0212805f09658d61a35c8ef94380"; } - { locale = "af"; arch = "linux-i686"; sha256 = "a3cb08c2d3879d46a2fe6b9567664d4c4a996bf10560079936d221e9588c5b76"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c580f19ac9909d28e5f3d55c3347893e088471a0fc7f4cb2e42fb1481218a1d3"; } - { locale = "an"; arch = "linux-i686"; sha256 = "61a4fa6a4c3a8c814d3d81bf51e1780c148e366fe1355e621523f419d5e4c583"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "2bbc6591669258fbc46944577ce6a4a091772b1cb8a4430d88d3f1b911da770c"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "1aa9e3e21c3d678135f009f8541999a18ea38ade9ae3d21b8da07a60d22eab91"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "eef01a5315eab457073ff01a51382a46200e84a6e87a91a3e38ab865b3304430"; } - { locale = "as"; arch = "linux-i686"; sha256 = "e3949cd85c439f72e8051ece5c22b18f6802e29311b84c5e88b124ea72ced52f"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "59178756fcd409765ff88324133bccdd0e43d2961a0fa15e2e53f7ed4fea3bac"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "88440f3f572421c0a7c2e95f3517289a33de474766185bacc0b93ef09673f1df"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "ce6fec215b11ecc2e5bd74d2dc47a09de9bcbf3df18e8f270c83967e605985a7"; } - { locale = "az"; arch = "linux-i686"; sha256 = "1b0e3ce4799e4cf3bf6129298895e8aa48c38b6b138c5ebfdd694ae8811e51af"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "6e0b73fc25a68d57117259043fd5bbd6dfbc8e32ba4090233303c5bf57d858b4"; } - { locale = "be"; arch = "linux-i686"; sha256 = "c50492edb43b2d306c664bb174f89392e68a530eec4fef2aa39335b9d12b0e32"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "2057d21e45538be260d723cf11bb36e32c79d87530fc19852a2f342d825d75cc"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "f87522d234e50d50509ead2800a804131b769235006aada0a379e46d290b6cc1"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "8793acfd7bbcc47e9ee19cfc2cb265a71f7dea5e98222fc541ae66c29bd8c39d"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d55de132e4d6c49053d2c843f91f7410188f62ee3e4bb56ac8b4370f55475274"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "a5798d40795689f2c92cfd8cc3605c4a30e23e39d8db43a8e7415cb9e4c75a55"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "28fd24e8e3069de9d1f81aff9e3671a806470e56f17ab0193566c8709eb1c268"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "dd5b97f1b3acdb2ab1a2f75b4c236ce2b68365840ea6b3703969e57b2eaaf927"; } - { locale = "br"; arch = "linux-i686"; sha256 = "5dd3132f6543c7dd5bf062d1222782b4bfd38b3f95088e2881c0b6f4362f1e3d"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "69ff22dc400cbaa75e9799929fd2496e8e2db6c5549d848abf642f58e73ad825"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "bfe4feb86124cde6ebd0e2449b5301657f1d62a073e98c888e81307832441b45"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "878712c2ff34e27181f8477440b2489c8c4c8b1cd2f6a03724ee4b9b5eabd031"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "a5fd111a60b81a11b233bc2720ca58a307d883a84cb2212644dc07a0acd8ed88"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "c8df6e52d22907615c0198a9c061d5836e43427e66964d9235662d1673ec0573"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "6f0ad2a1ec219a8aef9c762235fafc8113a06754aaab2c141812f9f062c1a0c4"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "d4a1c8becbeb05da17ffb6d1ba8625b7286a1591fc5f141202542ce769c29c13"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "4bae504ae202fbc75244fd476de80857dc33fe6a7dd3da2555e7efba279a5089"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2133795258e00be82219dbd5f288ab76e5b218a4d298224fedcaf02ddc049b07"; } - { locale = "da"; arch = "linux-i686"; sha256 = "64fbcfa9c645dd0986b85de286347eb223c81db45e405b2e29df47527edfe55a"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "58af00c544e5a2c9a98cc2cb896db80052ee12e31d4215ae4b08862ac3d3caa3"; } - { locale = "de"; arch = "linux-i686"; sha256 = "b8a48b676494ec7c9af8d24678dd1c719871c297887431b9360dea67d9bafb48"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "8d6bc67c1db287c00c8782cb33b03ba0076f1b89064cdd0ddefcb37bffddbc68"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "955968db11698942a86b79a9f5258c4636121e9c3350dfad70eab375f87c08e3"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "f34efb2d427e23ea34a1f24cbbe32d6ce384e1e4055a83afc1d336bb31481095"; } - { locale = "el"; arch = "linux-i686"; sha256 = "bff3a1efcaed403d2e465b92a88076fc0525534593d977423811c30a4abc757a"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "0d83d214eb61c3d248291141fa6b5e29d72f62a030be39dc4ee7c1781424c421"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "593041d5b07665134bd61866b706e11f10168df72c9a033034e95fdecaa6f65c"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "eab33978a3cd15ad3ed86efd72eda53e65f6addfd352f1f372d8133fea7edc6b"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "2c44f8ef07896f3e4c4ee555e35ebe5658f2721fdbdee4c70b153387472b781e"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e3077ca9aa246154acad2a264489e7cc68864035873e6c6d54b7fb3f9b832fd7"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8b78e83769d468dd7d5e9964ca99fd745f82341f8a426e7af82671c4515c8e70"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "631da5975f08807bfa4519c1265d082bb6de8ba6b39bbf6c903e08cf5c85b2a3"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "16556716bb0cfcfade4c705bc641317c423dda976f68a1a78bf1b1df08883725"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "cb21a5ea8cb9ded9eb729864d20a538275b8f29e9b7a10ea9d9dcb2b7a2368b3"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "3b830fc45a2ad62253d51eb53ae2cf6345bcc2a348e43e5aa19a001506fe3f6e"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "9ede597d11d798c4369b74e74a67564152a793f4d2a655f422176a1e03d0f6f9"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "1384df5e31f49f8f647e21f1d5d4f3a2229dce389857219745d2e2e325c894b4"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "e1a56a69687e9fe0979602b9256b5f8f3e05596e8af23fc78b0459ad66950158"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "258a3ded204f66d20370f4ca34d668da38921302ba6844bb6b49525a911ef1f5"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6563107eaadfad91f29b5d3084068ddf2b2959723f0bf38f8287e9b71dfafe68"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "00253b3a1c28f55199c74d1cce9fa1aff5cf6a7b3f77385f18836b36c961cbd1"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "897bfc04b17334ac1499a50c0fede1dda4dd9f667801d50a3c7221409158a39a"; } - { locale = "et"; arch = "linux-i686"; sha256 = "fb4c11f82c492d02f15817c19d4450049ce8532741d6c2733302e06a77ed768a"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "9e4c22e0e430bab1a85d83f8e77245390ecadc2af9c6fc6d408a1ccb388b5c5c"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "4be07916499253dee47572b0fe03318050f601ecd34a2578e3daaa2423ea0223"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "414366c5de7bd58f620a86d69b3fc618b4f2a41103e073197ed6f6326cb34173"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "84dd27e9f3f3736c2364f995b460a401ceccb5df88b9420fc5c4e10bed714ebd"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "e1e19b3a13e48ae5db809d781ed94a079dfcc23fef7b084e18589863fdda1e16"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "7de7ded84b96c8208796336b079294cb163e5a1717e7f0263fdbdf061bbd77a2"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "0c57b47227db17ec0b5cf05b2c839d01ef09e85e062af145cb063e9b431201a0"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "7bd42dd0dc3f3a9328f41f06f5f4409b611d17e1f3c71dc68b4f87aa1a5403ef"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "32aed7d397353791d0eeb4d64003ddc0206f43308020e4e003877741bbc4246a"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "274fb64798147b96c49117444a55b0d27da1ce58c64d0c72a8f4f2445ef8dcfa"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "17f3af176ce83481678ba5b496a6c576af1ad01a858714cec0c613219ef78105"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "ef2a32e783456b8be56cc2fe16c4c9f80e174f5cbea5fcb0ffaa9dccc498c1bc"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "76742465bfb95935e3f5531ef52f0d13021454887f20b5c60d903142e8bf29b7"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "e23cd7c54f08fd952c40d88811ac0a8be7c54b8c44e8e948961c063bd833d720"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "5f37a8add1753e41a75a1cd8f1edeeae0da89987939684e4f7ef46e139c0f2b6"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "1f65eeaa2e213a9a1bd48e12b978faf21a5cbc4db4e6257edd373c7f08fc63a6"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "25398b31be953a54107a38ea9476047e0ad6de8083d1330594522d261ef4f5de"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "13ec763f279c39b0a0082fde0331cde9cc3d9a3aa5155b8853c7acb92bd18d0b"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "46208cc319062483f85c5d801bc4822869bce916f78d2dd36670592794a266c3"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fad30f5fdcf5622b80f391bf2e957466e8955f23b91be2022ab5cc550b993d08"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "4ef6713e394c72b5d9a5d49899ef952a4587a2f1e0b52307b5062d6807de8ba0"; } - { locale = "he"; arch = "linux-i686"; sha256 = "211cafe7a39b45ca1cf471b2029f8981a26517114fcad3b40f0c5cd702988ee5"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "ad85f5b69ff0d15f0eb17e81e5976635b3319f583938e0c2dcf59badcea71cc2"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "8ec9ccd458b231d873e4272968be09b50d1629280014deacb2a74a754123208e"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "1c78e8adb1047be3be2bb6bae776d1fb3e32b6bd888877d33abcbd56b858f70b"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "64436c22be8c7a873634de4d7677c93427c9307be40a95fa73dc509d32900a20"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "4485174c761aa49bebc7bbdd5d50ceb2ca70477560406b880181ee4ab5f51b26"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "d5e6eb225d04124a9582e31de8c996512b9816bcaa72c4ef8d373f3cb77536be"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "65642995943763d35a9816a02d95d3ad7c26f388a731749c96446308bad0d13d"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "2e4a1602fe3dc83f99b60df358e809cfc831d0c173d0fb1a0b5d0bcc8d5fd0be"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "39592f757f6066e060446cf9ac051cad58ae5e457dea5d28be8e6573a7712b3b"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e11c1f746e472855c99706d597107426e4f411ed6ab8f3066417a4bf788f6db7"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "34fb58fc187a4afafe45f8b9463f725404bfc9fbb8374bbccd95fbe6a6127cfa"; } - { locale = "id"; arch = "linux-i686"; sha256 = "33c1870c5be769d051ff52d0512253316357925c4074c9760ffdd7ae5eb38680"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "f10a83c55a7164a88c387cff02d5fbca483901b8bface790fd064dc456637004"; } - { locale = "is"; arch = "linux-i686"; sha256 = "312eb8e2613e6723182f1392b0d654488facd31866922241ec7366be3259b42c"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "d850e5c4e18b1f3daeec9508f3d1a19771109a449a8b40106e20154c3128a43a"; } - { locale = "it"; arch = "linux-i686"; sha256 = "782d2e791c1c241e068a7041244def8d3983c7d65372b8297f54010ed2723db5"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "dcec427d3c22e7081d4657ea336aa3a2d1b728cc2ae917aadd89f1021fa53e44"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "8f36b884b8480a225a68a1f3583408132b58511bd3666a04c21a88d8ab9e1387"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "2727864ae1ebc4e0186214297d59cc531a06306059ccfd4a59d83a084cef81c0"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "50d46466bd31723f3116db503dba0b5d095679233ded63173b8b31740afa8ecc"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "5ae23bb07acdbfb45e49eb4afdbb6c84a00331f8c5c9824b9756e2e87f927934"; } - { locale = "km"; arch = "linux-i686"; sha256 = "13e32146820f31f0c87f38b3cb636a6a25c5bdb2dbf3befc909f459b33c0ac71"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "f81eebb081309200f2cec0cf742ac3aebe06ac09948a05af0961a572bc06b0a1"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "8db58576cbd2cb8f8c61d4278dcd0594c92fa707770255f1397272dacfb420c6"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "3a2002a54057c062ef720894147486c68b60e21c4bc57435b2ab1fe0f03f11e7"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "0e0f221ec6917635ea8519473a447ee8a572a439cfd2f5de1e1b4d63cfb1e1a8"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "ea4dfbad71d63702377b6a1641667b88ffa270cf37f77e223a88ed2ed6385f3f"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "92af63912444d8ccc43f4b0fa1ec25ad988db4117dc15e58a31c2b783e2922dd"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "c93f0e90125fb58b6f9d3281ac580bf46ce7481bbcb5d0162661c7049e7116e8"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "ff6a933c13e5d0bcab3e09915c09489d441f191f06a915ac5953334ae2a613bb"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "d82c44370c3b86230c86933a91e533e51c1ff6c6e515ee6a2b53d7aca105694c"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "7595254788ecc0845cd98f9524e20ef0dc2ec01c6efc3e8289b7c930b37fc604"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "a349ae40d4bd2bc0be0517bcd2f3149796687a1a3bf31527e92d7bae3020e839"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "4ef3e22d7bea09ccf7a75759725cd3db5ffec1b486026f3d0afee06293e01c3f"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "2a6c645773c6ec3230ae66f850d151fd8ccbe4d65e5d3b241948341b003c2fe8"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "d50d81cb4eab09166d6636c2964143b5fa7cdf909b5eb2eddb2103679f86ba71"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "51a4c986a7b85ad140d0fc0e952426d103307013bce72e395873171afa8d0a8f"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "57d9e6ec5ddbf3eea9e07d85d5d84998e70a764260d73f38d32fe71a55ac3720"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "50cf19e1b07ea43dffe37a59fdc969d8e8d46df100c15455e4ac2d4b202a00d7"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "98b4d4ac2148e37b741842386333707d8789b2cfacf7ecd7adab3162c43307d8"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "77e825a071f826c5668475e33a6a06f3fe3e49306e045fbc9a0a76843e66eb7d"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "a8c2c8db2ecb76070d54a5cc8cf6c31027a843490a54875e4b66e8e3dd212fa4"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "54d387432363074ff79a72f6a517b86b7fd76637caa5389a09f7e3ec11965512"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "a2f14933978e45ab472a85bf6278879617b61273f3358c67e6180171d6e9ab5c"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "578da776b395c07ccf7525f7f7c2a807daf994807a30f2a0c2bee9d2ea6b977c"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "49e079241dcea98a08d27708d918dcc9e530f30368b9b67006f16fc5e24ab29d"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "b165e97cf3408ef9c7d04f25b7b15924954ed65c78e25c853fb33bd98c751bda"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "aad675288be4c1c6e4751b3c32f3e5e569e8348a580e7c2497ab61cbd2fe733b"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "c1128bde1d7030d367cf14833c8a775f1a8790a6a159171cfe55ab369f803b84"; } - { locale = "or"; arch = "linux-i686"; sha256 = "28fc9d508d0f86da87060080bea805fc089cb297a82849d7b75fde1d7c35dea8"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "f3879c6bc8b24d4cccbd559b4ee480ee42008187aac403c35a82fa3aa67cf733"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "262a496547689093ee22ce31b056cc1727cba9a690ea2fd5729e0694e710e6b5"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "67c9a3db932ee1e890f2b0373b160f7a1db2481263919179f34d24e1bb73869d"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "6b561482f0289c085cccd3d331bf7135cec47bf4e56d5a23c86341191e175484"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "c47b600afa999bc38eaf964def0d8e3e64a6f8dc2ebee14b125885773be37527"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "df1f14d353406d367f7c9a3fbec66544ad8ae8f70cd8cf2b8dedcea40f3acd04"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "fe07b106b9783d3b91f31deb55ddf006cbe51e485d6bbf181025edadce7e587f"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "6a4e39b78336f07463887a712a3b5a11f9d9f3be4d2e1be36970d17a554b9d39"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "1df70f54c4e59625740635c99a900738f25ae67707536c86511d98253a1b7207"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "9e56b6a6831877bf5cf9c3299ab305ec06014044285dc635dc4951403024e1c4"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "2d89a4dc8590db8a54c7f2d9d126222ce152eff831170b497b657b64df1cbef3"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "f7006e2dc8a99c47bafcaae9138f752fd9ee014969ee6db5e440724cf124ce9c"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "6b42002b7ba893675ab6da994c0e43129ab2cb4bd3ed361c0f2a116167960ace"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "b7eef5ad76fdc48894be4b20ccd19d42c966235905c8362b2e262c9da729fac7"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "efde30e2e473b667b134487c2e16459e72eb41a63c916a660cba847ee9c5ee7b"; } - { locale = "si"; arch = "linux-i686"; sha256 = "365eeb713360303af2880362aca5edb62a3370ec0a65eebb1fd72cf11a509543"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "43338a5a36278e07d76316eee4b7e0aa07a99123f1ea124650ea5357288b6daa"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "c552413717efe35a1b70d4745c9ed3ecf50eead210225daf1b922d25022026ee"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "fb92a066a27de4328dd4aa5ae4091513ee021a94167ca7f2174cd1809f311799"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "5ede91c27358d812a7fe0f4cfc4516d5802e516c0c4c3ede44f5535dff04ca87"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "f301a92ea7d165d20c23af0d4004a679f6dc1f7574cd34bd92be4cae7d36eaa6"; } - { locale = "son"; arch = "linux-i686"; sha256 = "816ef59d8ab566967c38944df4884a75e1d15f5906bef59c534e80f1f4d31d1b"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "0bf5149fdffd060773b82c575dbc981e420deb0719a8f4fff9a03c6ba571d5db"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "3e43a60388d2cceb306d7a70e984ded6dacb0a968b78ed8a4032ac60d7c1cc6c"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "6c0fa8dcf9359e8aa1244512f1d264b8684191f4bfb062c802f21009862c26e6"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "1df63b2753dd55d69d0990f3f34f9574dd34289cb64726da45fcc891b6a83088"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "01dec866a74a56fe8652e5b75731c7f508637e875c62a84805fcc0e4636c9e67"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "6f3f5b62e475ce4128e11f62a556505e00d5b8dfbd374ae747a16d6f161059dd"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0b3cfbb77d291a7fbb14b61c1bb1936dcec5f66af55c3c0b92e9dd4299c9b897"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "357f182c2df19bdd97834bb714f979253bb4a16029d115a12e66bb7c20ff5a1a"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "013d771a256e84d6faf97c84edd5ed25bd5d700712f9aa4aef54ff257b530c21"; } - { locale = "te"; arch = "linux-i686"; sha256 = "59ba28b5c3aefa5455af1f1b549018dda9d544aca4829190af4e361b2eb164f0"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "e181876679ef2c5a289d5697fefde0acc64c936237b907fab7e6d000cbaee5a4"; } - { locale = "th"; arch = "linux-i686"; sha256 = "57545f48f6c1ff7a5ba2aa43d61446aca4d9e8f5f6f1bf70cdbb75d72d4b9713"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "e2c70247a333447f100bfb87be9f9f7e6f3398ac22623627b016e046afcd7a26"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "f0d6f1053ffc9396657485f58c3bd33ee616a1b474b72a78e0b14960a0818646"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "101763b31f615b301b1e040df7a0219456446695f9edf75580ce6fbcf061142b"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "d0c5854b736bfc7f263f7a515a477e209c90fe7d5ed0ca64dd7d16f3d68a6671"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "3b78c94708d5b5798e30bbf9956619b694c3484672d0e3f473dbbd8898f3c8c4"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "0870ba372c7abfa95bc9da5d5b7f501b3137208d084f25a3ca88a09c8395ec6b"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "87f6ea282450521a786944d516c26ff8cbe14a2f24df11fa80c343aca5dcbd3f"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "088be2a9815914a8637163493636acaae40c0348e1b7f064b1ea5181c114a77e"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "b68fc3fc98ecba457ffac3e191b1ef6c1512b826a9dd1b9a301858b8051453c2"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "83095d26d9a73c3113a98c902f31565a3e358ee1aa4ec37976fb72cbc8470845"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "642026251591bc1eb1ca1200db1b232981d019d8664cfa216777e12b591606d4"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "a3289ad36a1a3b5affc721a7a2b509d9151049e50209f62c92592d7cd17c96d8"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f53e14f1ce29b172acba3d58b5ca6da3ff03a121aaf224949a88a2fed96aaa9d"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "a471944312b7f2a04a0f1df4a897f63c41cd74c0645d890d95bce6d725a2ae2d"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "d0d201cff0b8dcc59224645d4f4ab15fa14fe131a30897242e5692729894abed"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "982ba19766fd7d4a1f795ce6737f87be6b990d2272fce4f867cf3dfddd3a21cb"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "d2f09953fa7abd561a660d57ce9b7e8e44537119d09eb0161edd0acd9c9a6e9b"; } + { locale = "af"; arch = "linux-i686"; sha256 = "45fa84f6ee80c781268ae665f8510b00fff7faa77fb52e620e2337d660a24e25"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "c18a542f753299a192acf70b221b07d7146e0e25b4c417d5af315f6f447b8080"; } + { locale = "an"; arch = "linux-i686"; sha256 = "7552d4f6dd4cf1fb3541ab991b85e76877d038eeaee480d8e4a036c289732877"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "5493af457fe9ec4a5c4265814610d3227dd491221dbf407f39428b7c6d876d30"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "e543731d752c5b24b1247e8088dae8423d957b199da57f57e02d545885d20083"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "e8bd2be14e44ac51848090ca3f024a4a948742cbf8c5cf3ef46ef91fc3141bf5"; } + { locale = "as"; arch = "linux-i686"; sha256 = "a536eb962a704c63072bca9da947d3b8908dec1c635a7c28e634ed086c116b6f"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "e69ebae4c9a85a3c6a7c3a0d89361c17ae31330db294e2407363c2c2f9ce0698"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "bcd1139f78453f9bf36d1476e66025301f52122a7e93816abec0c7a8c798a25a"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "7462ce0b7481ca65fc29972c5601862386be5b60ae1da55b955b3bd4b2383286"; } + { locale = "az"; arch = "linux-i686"; sha256 = "75860f86e7f7b558c9ae0de86efc6e4ec26abaf097fccea7d2e220849c76f90d"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "d3499b08d94980f89aa92a444023014f15f327180171984eb30198bc312b39c3"; } + { locale = "be"; arch = "linux-i686"; sha256 = "125d6fe56fffeec2d13ff4d222552249573490b621f4c4b891f9741e54f4b97f"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "d29b2645fdf3ada8ad1cac6ad72a0184c850d17e0ad13d8495c22185d49d2cc1"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "9f484b9ef919f5e62f5762f46ebba098d87270f263dfffeb1671e4badeb7ce4c"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "4ca360eee75a93ecff0ca75ffc533802b5acdff225c8d494792d57b5a5822674"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "6270cb85d1b11e36a38933d1dd2b1592302844220530bc099cc06ccb9632bf2e"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "7547142fac57bb305c159e9ec63b42e7d47e399418de9ca98ad0e44c189bb13a"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "e17b2c5930666d9a6f7b523dbbbd118e74665b351a1002f92cb979b7e95ff695"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "6e689634aface136ff1ca4af4e51f54b2f116a48aec7b738ca7bb8e7ad0ae714"; } + { locale = "br"; arch = "linux-i686"; sha256 = "e9045c2bfe041eb9e6d69562ebaf170a93d164cc15ea99f6cd4ddc70614b82e4"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "bc9e9bf595aa4f27b275b913756c952dd2d9f6079022b22355ef6f76b67b8b3c"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "2ba45e18275193d0d693fa195e8ccaa7e171dd5d155b4943f6e0aeb1f4ce1664"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "d1e39ade01b628df66c1bf106c81a7d7c2f3ed8f81cf21610a78d767f7bd5309"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "32ba458dadb02eddf7b54989bf00bd3484143625b601866a0b1560eeffcd3934"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "3ff4b423e3b524e80c2275a064f35c96612fc8e0d95ec18233941313c1f43305"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "73fd0275d55e396f7c2ae88baa0d6d163ccda3d6ba6a5d9f371058bc7142ff5b"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "cafedf882d49e5f91ab3f31a99b65474a8c9044bc21db7f8a1cd6ce8fd7e9ada"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "1544de88d5388142e256521c268a9aa6c694c0abec483833b889a0a91d13bb19"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "2fffc929b935961eab53eb41bf74af80a152863c87b15f651bc9b63ee287c602"; } + { locale = "da"; arch = "linux-i686"; sha256 = "eb3ae8ddc10da4b6b4d3d0449577db8025d728f17447ea0d75b2538a6de01cc7"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "29670adf7370200052ebfe37457859568e4246e9bebf19424d22aa08bd209b23"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ca070f4a12756f7f524ef286375561239229150d55e418c9911dc0f13a82a8aa"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "3186bae10e7ccd49b2d92f61ac34ff05de88aac497f3823216b119102bcb6505"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "3488156b5c0c1d0832d65e7fe3d9ecfb858cb6bfccaf4eb849b55391be750472"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "73ae802fcef1bce7ee360eebddee7f21624e3949c81f4ca0e5a14234398654f9"; } + { locale = "el"; arch = "linux-i686"; sha256 = "baf75fd4b6bb45e8e2be9a685b38858edaef26fae2e761f11dfa09c0623fbfef"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "eef57f4ff6fd1dc43d80aaf5e20d064dcb53d50031f363901cd249593c6023c6"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "93fd10d7a97b817b94924db0a16eea6932c1858c3bc113231354ff9e1183da49"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6f6c8d1985b224bf3d6e1c5b5bf7f2b209f3bf4a7c676f9a5d12c97872e9106b"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "e01575f0145514c814c3d9a607a6d633de0fd0782e7e6758405bb745ffe73c35"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "54c84a972c53de4bfc75f126435cf7d7c07710235e6556d1e8214302da6349bc"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8290bd4d9d22a46240d9c3e7a573a0a79613bfdf6de20a463ccee9cd5630d69c"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "3d639e60082922c330ed45d2caeb0706425e2722d137c18841c9cbce3a1a0360"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "4db791125c5856fb191434df45ee95dc2909525911ca8a503546b6176d80e935"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "6feb494c6b1d822084ebc021de6bde1e13263da75cd7a93d7050b727656edf51"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "62c5043ddff9a4f53a98f0be119dbaecc1a67fa6aa2437c7e0d129f152dc4649"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "2f073e925474eff6c323529eec0796ba88d4df118d9f660044af72a7598a115d"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "ba865758213094e1bfff0450d464fd8cc04234636889cc3b61aefe5e2ec991d0"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "c4d6201ab240e9448e427ff0c99454d91d85bf83442ed1fbe1b1540921fe299e"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "f9a569785dd6dea163c3218f9f5cbf8ab257aa4e2f54f85ba94cff735ffd3888"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6895fdc030d92521e157279f07a0f4f45aa09638d6306f3dd14de497ad28ff25"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "323eaec354645ed5bcc89dbde31c68024af86c048e09fec8928009fd63c540ff"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "16b44182b8340f55456c101501284237b564a7f8ec7904a747a77812ea36e26e"; } + { locale = "et"; arch = "linux-i686"; sha256 = "93796e0c0998dbdbbeb9774abfde33ffecb2120747de35bdf9a4fe716b5c5c26"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "6959270bbc217a4e6ed574690a1350796601076b66fc5a2d399199fb361724a7"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "b902d0ffa5a8f470258ac32f0d044206353348609b5f7058fb9c919d04dde4d9"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "19144f8b85e1c95a1651e5284ae2bf306dfc0cc44a0479e96e8f8eeb024210b6"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "c2555942a22d4b98b300dc59103c909bf87cff72004fde3898b37a0159c27b1d"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "da9c4471ad0ee6d7e251b66cb16c28a17c1eeffb8e5ffc3ba3671b50abb54ba8"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "bff3ed957cd63e9c563fcd9c3d22656ac6ad0249ce1b508ca6c2e2bd704b33ff"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "aaff9be56db81c295d979a70bff85d7f714ce2f0cc7c0e6b16641ee2da98e053"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "47fa1bbf54704447f2beb1561895a0c564bf29dd260d6517763d2bc7646a81f5"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "c49d524dd277da165dfe267367b3a05e007e5ce0a71ce68d5d2ee6365307dbf3"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "61c974883e7a6ceedf9c500763db6ea805538389991b1741e34033d7f5a1d803"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "e9afcc65a47aad3c287c9dfa3885c2c64340dc53a95f2cc6f2dc78da71876fe3"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "32cc4754a5415edc0c8ac2a081560ee0b783c4101fce31c63d83489459008748"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "3d5947f09ca893f28d9cb5d5fcc9b052c6e9dfca4af791084ca3ff4480205882"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "8924881fa49579ace5c1421b4c51ee6aff0489d15a2b70d53372af8c10f1d788"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ca643791c3611b9a266907d03082d51b9b363556cc044f638c8551f523c505fd"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "9fc96c7c11b9a0faf3e19f910a0af03ddfa66f64adbae4a4bef3dec9d9cbcfb2"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "bc129515675937c1db6b90721ce12cb832024f2234d48d8750ff8b78e7d8b48f"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "972dc9dfbc81fe0d541103c17791f3e101c7d5caa4b7fac9f6c6021f2292eb23"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "903aaa2c69984b6270e73c6d64fb9d78e70bbef18fa8abae1c13eb39d5016000"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fa7e415da478db2431676fdce4f12c1f751644a2e30cf544ddc3222a3b6d2927"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "1373df42590573aabae82990da82f529b9809f7b5221077af4c0f6e2c4f60bf8"; } + { locale = "he"; arch = "linux-i686"; sha256 = "19fd9098441adfd0956c20d5b188e3e621718c9ec7a7d8f45d999c5d216c1008"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "49bef59a55547c3b633a1bf4b60e48d0a28fe0a320218835462086da8d352010"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "af57e15c754c805a90fb0712784f1632dadb59d05e414ec0507e997a7f5e2fb8"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "3fd560f148816ca2d7926eabea8d786fd6e7602266b4620c78cc6515bd307168"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "e955e7d6d97ae6ebec3df7a079ce1f81e007711548dc294ee7372a730411f9ed"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "a49eb1c665736fa48f3411833ebcadf209e316be020e04e0b0cbba194c041de3"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "443be07db7e46c182aef031d96505698cf66db97b5e6537b7b1c4f3d76da7a6f"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "c4ecf15c893bb5d284782daf4ff1f732e8a3d56d21907c8496bb8ed36e9dc36d"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "f8b994f5a243d5c43ffb57911080b88aaf1d2ec453a614aa34c441ea6e432e12"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "a18897a597551eef6976a2c920dbad32c69d8467d21b3a194c56b7234d99c13e"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "6772f390516c4315e434cb4d191282c3f4604e935ab7fa9be9c20251af8feafc"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "4cdfdab611336f2bd2bddfd5d7f3c268321f8837777307f1cbef312857cdba23"; } + { locale = "id"; arch = "linux-i686"; sha256 = "f65a4cd2b3abb198fc1fe911814c1ac6660723740c20b6d3c7db9edc462c5bf7"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "502090306fce236ffa979ed762fbca37fc9fe088bb576d9ad64e96b0814b97a7"; } + { locale = "is"; arch = "linux-i686"; sha256 = "f7a91b3fe7d7ec8f2e06d2c1aa2c018f60e79f0b62cadb09b65be78ee72110db"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "13d183ff7e2944b4ed86013d6f3e9f7016e5ef2bc24bce853ca91e15da4a89c0"; } + { locale = "it"; arch = "linux-i686"; sha256 = "097d8d24721f01c4891c12fe36058b68b37febcd44e29ca7669a5a4939c8d6b7"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "59d045ee4ce4823ce031f870f1f9c4864143bf5dcd49355d0bae3af541d50c65"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "be055054270cdb6487f48355a41e81414a4f4467ee4c057f204ebb854e3c53f5"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "bc69790970be93c0d6eac9f3d9c8f6ba714f398bd0b35313a5ba04b584c18c3e"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "a1450ef10e3901d0a3b10e15cb5b4b53e6500b62342ad9008ef69df0bb3b133c"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "175b5326133c4243d0141a892346db1f573ee6be6260fbf79ee16a76c073f3f3"; } + { locale = "km"; arch = "linux-i686"; sha256 = "f75d50c214ae66007dc3a31567f7fd527a4a9753b0bee320883b7e3d7c7585ce"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "5be1306bcb56a3af227de5fabe2e80bf29403e9fefe6e12c36f9ca16070a341a"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "16676e0d00bc33d15222a56c3bd426708c265c2ac64bb31198c0f75417b917ec"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "6002d7dcdb2d927a8dccb035c87b452604d8e284752fdac0766f0a2fd11b9b06"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "e01319a0e2f08c0c7d610696b8820049d22c43efb1a434574d46c52ce69ef5ce"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "f539ab8f0f9d1edbd3d85985f369cc9824d8a19ac8888739f95195b63869239b"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "1afd8f5d8ba61aaf659106f096ab35588e04d7b72f8b159ffc00dec604d3f3ec"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "30f1bca8be807a3e12a7caf37da9e0f41d0268e98feb02ea5b58357e8ffc5eaf"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "bfd0e553b91750d42541e0832ee4b3a1e82e4d98691518c4b88fe8307186f1eb"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "64c36d2b1f856fd8c2d980007895d0680ad5193791fb4a40b1791b00418551dc"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "3893e87f6e3f3ced6bcbb05a2fcf35f00c2720bc5c15a6ecbae9e2294e274739"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "37b2494ae6ce999d7aa30b44f2d558a7e38465d08add4bd428882886623fe80a"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "a350cab87ee54f2be47897787648cc5f489383b32441966bc9e908d4324d72af"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "9e9fe30e4e096b35be58225fe666715954891b685744f3ca1f4a1ef264f15876"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "3675909d4168548f29ece3e5f7612214da8b82715244b7e99adcd3c514ff1638"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "8abeb1a0c0a35dac15b4213ffdab7d5c9f6c2e053be96f0cdfa30fc3bef88877"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "52366a36b292d24d5a226119ccb703085a129c9ff8db05cbce45a51d40d062d7"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "88ca8b418251df0a862917dfc2e129bc563f5e6f9812cc470460aec745dd7d57"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "af94fb37ecb6aaabba88a987d509b2049a74dff741243608d5126c2a95df17a1"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "4f99abcc53d92677c4b0ac59141b5e499d74fc850316ea4a4ffe085b7e7e5259"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "79b6fee1cac2dba877b849f2850fe030995d2b805b1717ffa968979ffb487f89"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "6f4b381f5d5d0b99bb3ace8e29fa60289abcffcc0abc2aa2b006b344a5747385"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "182632c120fb86fb0a6b7ab1aa294ae4afb31b886dbc2876257b050fbf625de6"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "41acd3dff5ce040c3efcb7a52910f7332ddc603fafb3e1c4c3a306676d7307cb"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "f04b2f1ee8352293910f99efc27d0bfc1d419844059073d72ba2e807c1006a1d"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "823d167ef1ad2006fdcc460d6212a3d5c1296658445b061b874c548671641acd"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "eb98445046c7a8f47edfab5731b0b11813883afdd9b0254505d24254cf92138e"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "7e649da6fa32382fe8211ca42d0ec182b140672d4666c5b7efc819fd3ccdf669"; } + { locale = "or"; arch = "linux-i686"; sha256 = "b7ed61ccf3c5894b7867389cc1ae7a7d0412f90ce1c0e9a30ce5a15fc6e9a42d"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "9f704141d9d9f15b043e0dea43b7e916506e654631ca1ef4e17a35aeb7e9bcc6"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "0e18759ce39decd72fe6e61bfa731867ce882cebc4825b8635f5a11a7cc1d1d8"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "da7ce2cccc02524514cebb7829efd5f9be827464d0a481389c3d7dbe706fd19e"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "0a6d86210cd4db00f1d841ee505ca15eca4cd88c99fc1172fcc4ddb1c58b787c"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "24d7c14626243859b3e69733d39566e0f4ab12bd7b92cff84abc74dc22470809"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82f9d5e5dd7b4898b43f0e7cf02128a985c2b7c320683c088310608eed9d5612"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "ff27814b5b4eccca0d038feb2dfa85c7e88cd8cabd8575fa36d9eabf1a66f518"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "330ce0315724345c94ed58fa6c1c5a6aae5616014c1ffc4713094a26559cf2a5"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "fe0c98295399b31f96b2caf873d72874fbd088679b13c1d01153ad257f8175b4"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "681430fda3ce3ca1da2b12069b7f6062c97a57144667f72f515d2b3e0ac9e97f"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "09d7676c37f46e6668302f36c6435158a8a518220fce3137313f858faf10f9eb"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "43dead80097cb96988f10945c0545714ddccb28ccfb795028807f1c80888f0e5"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "31f4acde5c7173760d9dd242c851cbc7ba36cd420c107d80bd1008cdcc4572ba"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "252151abbcb3af9e9eb7ba7d973903ffd377d06b9211ec267d1a79b71290f803"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "117040737bf87263c0f476871adb2cbd3a35e63aff4e3f4e51c9e587bccec8a4"; } + { locale = "si"; arch = "linux-i686"; sha256 = "1a77467ca7f830dec897fac26f6ca0ababa05b5dbe953bcacc7474be20245841"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "7508411a21b32572f33acca6ba898d43806fe15cbe55759617d1cc5a3cdbd8ff"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "5bb1c4bb6cce5250427cb5aa21a14397d80ca9f7a883b0107c15427015337646"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "1bbec6fe4aee6114b3c26a1b7b2dd51c4110426ef05c03d6d635bf7238fdbb3a"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "a2d2d3c63c7992a06b5860c29d2d1d8dafd4f45379f96d749cfb1b841f392dbc"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "4db1e2b45a8ea66b13dab359034ebacdfa15fcef753eaeb4969271e911c8782f"; } + { locale = "son"; arch = "linux-i686"; sha256 = "bce8f2cff7c86479ae0c60428a4c6fdb228467edeaee95b0fdac6968b1e89f38"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "2a799848da011fb14eb401e32876afcc8c3fb443008bf4cec9b058925c930777"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "0e6f9bb41ee9bd9898f09f8c71f1c93c646e01a3bf5e8f221673ad1fa102971b"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "feb0d974833e5a51505a25edc6cc20d70e23663b1b1b83f6897f24c42e08ca5a"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "b2cf68237c0508809ee5364fc3b8c9fdf6e3ecade6425af3bbdbdadcaaef05f2"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "ada2a925357962c7a3a65f1dd5d5bc219bd6e34a24c695f3b1d8a51821e9bda0"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "b6354dc50b354a51c6ca71b24ca4d4c382b04f1e45b12669c70a170531c382bd"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d1141b2e01f58aab45d79ecf18b9116b79e1338e7a06524cf7ec85b6be5234b1"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "bdfede4d8b5594838d5cafc66f7f4895b0e0ca0c9b9c6d2cafc677cd26dbd943"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "7e277836132360a58b048ded166e74d5b8f4ea41f8aea3f2c9d2e73f7202808c"; } + { locale = "te"; arch = "linux-i686"; sha256 = "8bd3ce91d690b7f93c409aac981513175b72d291c9d6e0cede3448d8c4a66687"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "2395676f9e4dcbe6dc09add685190f106c2299fd78fdee747898b85379715e24"; } + { locale = "th"; arch = "linux-i686"; sha256 = "52505a11229622bb2f65c0f8da9a27b0c5c33b6078c89163e65f6ee0b879211f"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "23cc6ffd71b2efa6f330addf1c901843b3e18569a375571be502c0c16b32e785"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "9bc4e40737e63a57906378f60b5f14720ee212878f13f370565d54047e81a769"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "5c16aa2c664c78e9b11f23fa466e23d99ee35da93b44b1315c37055b2a447233"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "54a46561dc3f10dc15a16f644383026d51369e61e573cc0d63e98549bf6afcd9"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "953a40460342a0e7ebf8e3236e853503042278ba89347c58929b3e7b75c27a54"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "88ac21648110aedd354c9c3ecd66017543cf55bfcb9c1939bc45af984d9bafed"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "f25374c2ea2b874a081e1e18618c4cd95f3b47f2242780b476f24550868d54b4"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "edc208611860bceddfa56239793f566375a45c4e56d5e2d366b0f9c9860efb7d"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "0fb1a8b32e9a923e56278001ca515b49e17bcd1455819cabe5d432ed97ef9e09"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "36f88783ff39d9a22708fcec5f442c953061004552052388a54f71ed775b7900"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "047897075676154b56134389adc81bc3192e0b61206914aaab9fc744572eb895"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "f91ef1bb954412ad75ae1a17bddc080897f70994a20cca3647ee2e7814f076af"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "87114eaf80a0b9666db5aec0ac13467a1104267436c6c73ee8d6e4b89e799e5d"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "29be9c6dcea74c18f668d6b3535cf8fb642115c2f9f5d41cc136b26fc914e301"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "93af78e3a309a381e352acaa2ebf218c99f858d3fd9ddc40ed15b032745a4ac6"; } ]; } From 9c5cd4990362ca41fe294851fa850f30ab669c3c Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sun, 13 Dec 2015 01:26:38 +0100 Subject: [PATCH 200/707] cutegram: init at 2.7.0-stable --- lib/maintainers.nix | 1 + .../telegram/cutegram/default.nix | 31 ++++++++++++++++ .../libqtelegram-aseman-edition/default.nix | 34 ++++++++++++++++++ .../telegram/telegram-qml/default.nix | 35 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 +++++ 5 files changed, 109 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix create mode 100644 pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix create mode 100644 pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 596b8a49a10..3d2144b0e31 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -239,6 +239,7 @@ pmahoney = "Patrick Mahoney "; pmiddend = "Philipp Middendorf "; prikhi = "Pavan Rikhi "; + profpatsch = "Profpatsch "; psibi = "Sibi "; pSub = "Pascal Wittmann "; puffnfresh = "Brian McKenna "; diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix new file mode 100644 index 00000000000..0a1e79365c3 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub +, qt5Libs, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper +, telegram-qml, libqtelegram-aseman-edition }: + +stdenv.mkDerivation rec { + name = "cutegram-v${version}"; + version = "2.7.0-stable"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "Cutegram"; + rev = "v${version}"; + sha256 = "0qhy30gb8zdrphz1b7zcnv8hmm5fd5qwlvrg7wpsh3hk5niz3zxk"; + }; + # TODO appindicator, for system tray plugin + buildInputs = [ qtbase qtquick1 qtmultimedia qtquickcontrols qtgraphicaleffects telegram-qml libqtelegram-aseman-edition ]; + nativeBuildInputs = [ makeQtWrapper ]; + enableParallelBuild = true; + + fixupPhase = "wrapQtProgram $out/bin/cutegram"; + + configurePhase = "qmake -r PREFIX=$out"; + + meta = with stdenv.lib; { + description = "Telegram client forked from sigram"; + homepage = "http://aseman.co/en/products/cutegram/"; + license = licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix new file mode 100644 index 00000000000..31e0a0dc399 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub +, qtbase, qtmultimedia, qtquick1 }: + +stdenv.mkDerivation rec { + name = "libqtelegram-aseman-edition-v${version}"; + version = "6.0"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "libqtelegram-aseman-edition"; + rev = "v${version}"; + sha256 = "17hlxf43xwic8m06q3gwbxjpvz31ks6laffjw6ny98d45zfnfwra"; + }; + + buildInputs = [ qtbase qtmultimedia qtquick1 ]; + enableParallelBuild = true; + + patchPhase = '' + substituteInPlace libqtelegram-ae.pro --replace "/libqtelegram-ae" "" + substituteInPlace libqtelegram-ae.pro --replace "/\$\$LIB_PATH" "" + ''; + + configurePhase = '' + qmake -r PREFIX=$out + ''; + + meta = with stdenv.lib; { + description = "A fork of libqtelegram by Aseman, using qmake"; + homepage = src.meta.homepage; + license = stdenv.lib.licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix new file mode 100644 index 00000000000..709dce5e755 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub +, qt5Libs, qtbase, qtmultimedia, qtquick1 +, libqtelegram-aseman-edition }: + +stdenv.mkDerivation rec { + name = "telegram-qml-v${version}"; + version = "0.9.1-stable"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "TelegramQML"; + rev = "v${version}"; + sha256 = "077j06lfr6qccqv664hn0ln023xlh5cfm50kapjc2inapxj2yqmn"; + }; + + buildInputs = [ qtbase qtmultimedia qtquick1 libqtelegram-aseman-edition ]; + enableParallelBuild = true; + + patchPhase = '' + substituteInPlace telegramqml.pro --replace "/\$\$LIB_PATH" "" + substituteInPlace telegramqml.pro --replace "INSTALL_HEADERS_PREFIX/telegramqml" "INSTALL_HEADERS_PREFIX" + ''; + + configurePhase = '' + qmake -r PREFIX=$out BUILD_MODE+=lib + ''; + + meta = with stdenv.lib; { + description = "Telegram API tools for QtQml and Qml"; + homepage = src.meta.homepage; + license = stdenv.lib.licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 11f433b7b06..9be86ed7a77 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11298,6 +11298,14 @@ let cutecom = callPackage ../tools/misc/cutecom { }; + cutegram = + let f = ../applications/networking/instant-messengers/telegram; + cp = qt5Libs.callPackage; + in cp "${f}/cutegram" rec { + libqtelegram-aseman-edition = cp "${f}/libqtelegram-aseman-edition" { }; + telegram-qml = cp "${f}/telegram-qml" { inherit libqtelegram-aseman-edition; }; + }; + cvs = callPackage ../applications/version-management/cvs { }; cvsps = callPackage ../applications/version-management/cvsps { }; From 28dd9e8a6c6b86f7793e0267aab227c0bbc65b29 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Tue, 15 Dec 2015 23:29:31 -0200 Subject: [PATCH 201/707] mgba: 0.3.0 -> 0.3.1 --- pkgs/misc/emulators/mgba/default.nix | 36 ++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix index 82f10688948..edf4c6a060d 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -1,24 +1,40 @@ -{ stdenv, fetchurl, cmake, ffmpeg, imagemagick, libzip, pkgconfig, qt5, SDL2 }: +{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2, qt5 }: stdenv.mkDerivation rec { - name = "mgba-0.3.0"; + name = "mgba-${meta.version}"; src = fetchurl { - url = https://github.com/mgba-emu/mgba/archive/0.3.0.tar.gz; - sha256 = "02zz6bdcwr1fx7i7dacff0s8mwp0pvabycp282qvhhx44x44q7fm"; + url = "https://github.com/mgba-emu/mgba/archive/${meta.version}.tar.gz"; + sha256 = "0z52w4dkgjjviwi6w13gls082zclljgx1sa8nlyb1xcnnrn6980l"; }; buildInputs = [ - cmake ffmpeg imagemagick libzip pkgconfig qt5.base qt5.multimedia - SDL2 + pkgconfig cmake ffmpeg imagemagick libzip SDL2 + qt5.base qt5.multimedia ]; enableParallelBuilding = true; - meta = { - homepage = https://endrist.com/mgba/; + meta = with stdenv.lib; { + version = "0.3.1"; + homepage = https://mgba.io; description = "A modern GBA emulator with a focus on accuracy"; - license = stdenv.lib.licenses.mpl20; - maintainers = with stdenv.lib.maintainers; [ MP2E ]; + longDescription = '' + mGBA is a new Game Boy Advance emulator written in C. + + The project started in April 2013 with the goal of being fast + enough to run on lower end hardware than other emulators + support, without sacrificing accuracy or portability. Even in + the initial version, games generally play without problems. It + is loosely based on the previous GBA.js emulator, although very + little of GBA.js can still be seen in mGBA. + + Other goals include accurate enough emulation to provide a + development environment for homebrew software, a good workflow + for tool-assist runners, and a modern feature set for emulators + that older emulators may not support. + ''; + license = licenses.mpl20; + maintainers = with maintainers; [ MP2E AndersonTorres ]; }; } From a76241c6cb3431e9517750db642760baee626187 Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Mon, 16 Nov 2015 15:40:36 -0600 Subject: [PATCH 202/707] gerbv: init at git-2015-10-07 --- .../science/electronics/gerbv/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/science/electronics/gerbv/default.nix diff --git a/pkgs/applications/science/electronics/gerbv/default.nix b/pkgs/applications/science/electronics/gerbv/default.nix new file mode 100644 index 00000000000..5a86ff3e5f8 --- /dev/null +++ b/pkgs/applications/science/electronics/gerbv/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchgit, pkgconfig, gettext, libtool, automake, autoconf, cairo, gtk, autoreconfHook }: + +stdenv.mkDerivation rec { + name = "gerbv-${version}"; + version = "2015-10-08"; + + src = fetchgit { + url = git://git.geda-project.org/gerbv.git; + rev = "76b8b67bfa10823ce98f1c4c3b49a2afcadf7659"; + sha256 = "1l2x8sb1c3gq00i71fdndkqwa7148mrranayafqw9pq63869l92w"; + }; + + buildInputs = [ pkgconfig gettext libtool automake autoconf cairo gtk autoreconfHook ]; + + configureFlags = ["--disable-update-desktop-database"]; + + meta = with stdenv.lib; { + description = "A Gerber (RS-274X) viewer"; + homepage = http://gerbv.geda-project.org/; + maintainers = with maintainers; [ mog ]; + platforms = platforms.linux; + license = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b217170baab..22855384d94 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14837,6 +14837,8 @@ let geda = callPackage ../applications/science/electronics/geda { }; + gerbv = callPackage ../applications/science/electronics/gerbv { }; + gtkwave = callPackage ../applications/science/electronics/gtkwave { }; kicad = callPackage ../applications/science/electronics/kicad { From ee8b2dc427aed12c5896c5dde6bb1428627cc56e Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Wed, 16 Dec 2015 05:01:42 +0200 Subject: [PATCH 203/707] pythonPackages.azure-*: package some of the 1.* branch modules --- pkgs/top-level/python-packages.nix | 74 +++++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 433fb88ee2b..fd8590e3e91 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1084,7 +1084,7 @@ in modules // { md5 = "5499efd85c54c757c0e757b5407ee47f"; }; - propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests ]; + propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests2 ]; meta = { description = "Microsoft Azure SDK for Python"; @@ -1094,6 +1094,78 @@ in modules // { }; }; + azure-nspkg = buildPythonPackage rec { + version = "1.0.0"; + name = "azure-nspkg-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-nspkg/azure-nspkg-1.0.0.zip; + sha256 = "1xqvc8by1lbd7j9dxyly03jz3rgbmnsiqnqgydhkf4pa2mn2hgr9"; + }; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-common = buildPythonPackage rec { + version = "1.0.0"; + name = "azure-common-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-common/azure-common-1.0.0.zip; + sha256 = "074rwwy8zzs7zw3nww5q2wg5lxgdc4rmypp2gfc9mwsz0gb70491"; + }; + propagatedBuildInputs = with self; [ azure-nspkg ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-storage = buildPythonPackage rec { + version = "0.20.3"; + name = "azure-storage-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-storage/azure-storage-0.20.3.zip; + sha256 = "06bmw6k2000kln5jwk5r9bgcalqbyvqirmdh9gq4s6nb4fv3c0jb"; + }; + propagatedBuildInputs = with self; [ azure-common futures dateutil requests2 ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-servicemanagement-legacy = buildPythonPackage rec { + version = "0.20.1"; + name = "azure-servicemanagement-legacy-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-servicemanagement-legacy/azure-servicemanagement-legacy-0.20.1.zip; + sha256 = "17dwrp99sx5x9cm4vldkaxhki9gbd6dlafa0lpr2n92xhh2838zs"; + }; + propagatedBuildInputs = with self; [ azure-common requests2 ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + backports_ssl_match_hostname_3_4_0_2 = self.buildPythonPackage rec { name = "backports.ssl_match_hostname-3.4.0.2"; From 99816323f9c475d8dc67af85af85ba7269c15cf7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Dec 2015 19:57:08 +0100 Subject: [PATCH 204/707] saneBackendsGit 1.0.25.{177-g753d123 -> 180-g6d8b8d5} --- pkgs/applications/graphics/sane/backends-git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix index 3de7057916a..66e496557a8 100644 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ b/pkgs/applications/graphics/sane/backends-git.nix @@ -7,12 +7,12 @@ in assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); stdenv.mkDerivation { - name = "sane-backends-1.0.25.177-g753d123"; + name = "sane-backends-1.0.25-180-g6d8b8d5"; src = fetchgit { url = "git://alioth.debian.org/git/sane/sane-backends.git"; - rev = "753d123f36d08cdb8047adac7c89a9fe015c4b25"; - sha256 = "1f5b4606f9b1b65a312794726e8d5d06056510b7426f86845ebeb8ca1a9b2f1f"; + rev = "6d8b8d5aa6e8da2b24e1caa42b9ea75e9624b45d"; + sha256 = "b5b2786eef835550e4a4522db05c8c81075b1a7aff5a66f1d4a498f6efe0ef03"; }; udevSupport = hotplugSupport; From 95d62e78e3730404c79805411f5bc6917fd1ef05 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:07:22 -0500 Subject: [PATCH 205/707] mopidy: improve gstreamer plugin support --- pkgs/applications/audio/mopidy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index 39889973430..91fc9d6f3fc 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pythonPackages, pygobject, gst_python -, gst_plugins_good, gst_plugins_base +, gst_plugins_good, gst_plugins_base, gst_plugins_ugly }: pythonPackages.buildPythonPackage rec { @@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec { }; propagatedBuildInputs = with pythonPackages; [ - gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good + gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good gst_plugins_ugly ]; # There are no tests From d6def2620162703a4a2c95dffb07316a0f500beb Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:10:07 -0500 Subject: [PATCH 206/707] gst-plugins-good: add icecast support --- .../libraries/gstreamer/legacy/gst-plugins-good/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix index deca854008a..dc39bddc232 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo , flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx , libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc -, glib, gstreamer, bzip2, libsoup, libintlOrEmpty +, glib, gstreamer, bzip2, libsoup, libshout, libintlOrEmpty , # Whether to build no plugins that have external dependencies # (except the PulseAudio plugin). minimalDeps ? false @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ++ libintlOrEmpty ++ stdenv.lib.optionals (!minimalDeps) [ aalib libcaca cairo libdv flac libjpeg libpng speex - taglib bzip2 libvpx gdk_pixbuf orc libsoup ]; + taglib bzip2 libvpx gdk_pixbuf orc libsoup libshout ]; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; From 89c690039a950ae1fa63d41263dab048270cdebc Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:12:52 -0500 Subject: [PATCH 207/707] gst-plugins-ugly: add LAME mp3 encoder support --- .../libraries/gstreamer/legacy/gst-plugins-ugly/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix index 99ac5a5ec54..8e4e662dc3b 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base -, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, libintlOrEmpty }: +, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, lame, libintlOrEmpty }: stdenv.mkDerivation rec { name = "gst-plugins-ugly-0.10.19"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = - [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc ] ++ libintlOrEmpty; + [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; From 514b7b932808223d0e99adc1ca4f6461b105272c Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:13:52 -0500 Subject: [PATCH 208/707] mopidy-mopify: 1.5.1->1.5.8 --- pkgs/applications/audio/mopidy-mopify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy-mopify/default.nix b/pkgs/applications/audio/mopidy-mopify/default.nix index 4792a02f341..b7a1fbf2f08 100644 --- a/pkgs/applications/audio/mopidy-mopify/default.nix +++ b/pkgs/applications/audio/mopidy-mopify/default.nix @@ -3,11 +3,11 @@ pythonPackages.buildPythonPackage rec { name = "mopidy-mopify-${version}"; - version = "1.5.1"; + version = "1.5.8"; src = fetchurl { url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz"; - sha256 = "0hhdss4i5436dj37pndxk81a4g3g8f6zqjyv04lhpqcww01290as"; + sha256 = "1gq88i5hbyskwhqf51myndqgmrndkyy6gs022sc387fy3dwxmvn0"; }; propagatedBuildInputs = with pythonPackages; [ mopidy configobj ]; From 47cbbc3abe73b0e30ba89c88e484dccf9601b5a6 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:19:58 -0500 Subject: [PATCH 209/707] mopidy-youtube: init at 2.0.1 --- .../audio/mopidy-youtube/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-youtube/default.nix diff --git a/pkgs/applications/audio/mopidy-youtube/default.nix b/pkgs/applications/audio/mopidy-youtube/default.nix new file mode 100644 index 00000000000..efd1425e255 --- /dev/null +++ b/pkgs/applications/audio/mopidy-youtube/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-youtube-${version}"; + + version = "2.0.1"; + + src = fetchFromGitHub { + owner = "mopidy"; + repo = "mopidy-youtube"; + rev = "v${version}"; + sha256 = "1si7j7m5kg0cxlhkw8s2mbnpmc9mb3l69n5sgklb1yv1s55iia6z"; + }; + + propagatedBuildInputs = with pythonPackages; [ mopidy pafy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from YouTube"; + license = licenses.asl20; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5917e715c14..802385fff48 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12507,6 +12507,8 @@ let mopidy-mopify = callPackage ../applications/audio/mopidy-mopify { }; + mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From 7e7106851086577cc0109bc734a755ec520fb8cd Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:20:41 -0500 Subject: [PATCH 210/707] mopidy-soundcloud: init at 2.0.1 --- .../audio/mopidy-soundcloud/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-soundcloud/default.nix diff --git a/pkgs/applications/audio/mopidy-soundcloud/default.nix b/pkgs/applications/audio/mopidy-soundcloud/default.nix new file mode 100644 index 00000000000..c10bb00909a --- /dev/null +++ b/pkgs/applications/audio/mopidy-soundcloud/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-soundcloud-${version}"; + + version = "2.0.1"; + + src = fetchFromGitHub { + owner = "mopidy"; + repo = "mopidy-soundcloud"; + rev = "v${version}"; + sha256 = "05yvjnivj26wjish7x1xrd9l5z8i14b610a8pbifnq3cq7y2m22r"; + }; + + propagatedBuildInputs = [ mopidy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from SoundCloud"; + license = licenses.mit; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 802385fff48..45bbd5927aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12509,6 +12509,8 @@ let mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; + mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From a03b98271a7c1ac8e7f82d6808e739d7afe80df3 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:21:26 -0500 Subject: [PATCH 211/707] mopidy-musicbox-webclient: init at 2.0.0 --- .../mopidy-musicbox-webclient/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-musicbox-webclient/default.nix diff --git a/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix new file mode 100644 index 00000000000..e13a1a978fd --- /dev/null +++ b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-musicbox-webclient-${version}"; + + version = "2.0.0"; + + src = fetchFromGitHub { + owner = "pimusicbox"; + repo = "mopidy-musicbox-webclient"; + rev = "v${version}"; + sha256 = "0gnw6jn55jr6q7bdp70mk3cm5f6jy8lm3s7ayfmisihhjbl3rnaq"; + }; + + propagatedBuildInputs = [ mopidy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from SoundCloud"; + license = licenses.mit; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 45bbd5927aa..3b584491b4f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12511,6 +12511,8 @@ let mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; + mopidy-musicbox-webclient = callPackage ../applications/audio/mopidy-musicbox-webclient { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From 1f644d127a50553c55d06399280d65a976f28ca7 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Tue, 15 Dec 2015 22:29:02 -0500 Subject: [PATCH 212/707] tunigo: init at 0.1.3 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fd8590e3e91..972d0d59493 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20824,6 +20824,25 @@ in modules // { }; }; + tunigo = buildPythonPackage rec { + name = "tunigo-${version}"; + version = "0.1.3"; + propagatedBuildInputs = with self; [ requests2 ]; + + src = pkgs.fetchFromGitHub { + owner = "trygveaa"; + repo = "python-tunigo"; + rev = "v${version}"; + sha256 = "02ili37dbs5mk5f6v3fmi1sji39ymc4zyq44x0abxzr88nc8nh97"; + }; + + meta = { + description = "Python API for the browse feature of Spotify"; + homepage = https://github.com/trygveaa/python-tunigo; + license = licenses.asl20; + }; + }; + screenkey = buildPythonPackage rec { version = "0.2-b3634a2c6eb6d6936c3b2c1ef5078bf3a84c40c6"; name = "screenkey-${version}"; From 4446b078fcb75d6cae991350d8c8008c2b92251e Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:22:04 -0500 Subject: [PATCH 213/707] mopidy-spotify-tunigo: init at 0.2.1 --- .../audio/mopidy-spotify-tunigo/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-spotify-tunigo/default.nix diff --git a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix new file mode 100644 index 00000000000..ab07b0f1f68 --- /dev/null +++ b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-spotify-tunigo-${version}"; + + version = "0.2.1"; + + src = fetchFromGitHub { + owner = "trygveaa"; + repo = "mopidy-spotify-tunigo"; + rev = "v${version}"; + sha256 = "0827wghbgrscncnshz30l97hgg0g5bsnm0ad8596zh7cai0ibss0"; + }; + + propagatedBuildInputs = [ mopidy mopidy-spotify pythonPackages.tunigo ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for providing the browse feature of Spotify"; + license = licenses.asl20; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3b584491b4f..b729d6ef2a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12507,6 +12507,8 @@ let mopidy-mopify = callPackage ../applications/audio/mopidy-mopify { }; + mopidy-spotify-tunigo = callPackage ../applications/audio/mopidy-spotify-tunigo { }; + mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; From 3bc477e2f2c608dcc623690e378aa588a15b4c5c Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Tue, 15 Dec 2015 22:31:42 -0500 Subject: [PATCH 214/707] mopidy module: use buildEnv fixes #11706 --- nixos/modules/services/audio/mopidy.nix | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/audio/mopidy.nix b/nixos/modules/services/audio/mopidy.nix index a7a7e8ae688..9981b065f28 100644 --- a/nixos/modules/services/audio/mopidy.nix +++ b/nixos/modules/services/audio/mopidy.nix @@ -11,17 +11,8 @@ let mopidyConf = writeText "mopidy.conf" cfg.configuration; - mopidyLauncher = stdenv.mkDerivation { - name = "mopidy-launcher"; - phases = [ "installPhase" ]; - buildInputs = [ makeWrapper python ]; - installPhase = '' - mkdir -p $out/bin - ln -s ${mopidy}/bin/mopidy $out/bin/mopidy - wrapProgram $out/bin/mopidy \ - --prefix PYTHONPATH : \ - "${concatStringsSep ":" (map (p: "$(toPythonPath ${p})") cfg.extensionPackages)}" - ''; + mopidyEnv = python.buildEnv.override { + extraLibs = [ mopidy ] ++ cfg.extensionPackages; }; in { @@ -86,7 +77,7 @@ in { description = "mopidy music player daemon"; preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}"; serviceConfig = { - ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}"; + ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}"; User = "mopidy"; PermissionsStartOnly = true; }; @@ -96,7 +87,7 @@ in { description = "mopidy local files scanner"; preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}"; serviceConfig = { - ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan"; + ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan"; User = "mopidy"; PermissionsStartOnly = true; Type = "oneshot"; From 394ef397ecc252b0d0173f28b3cc92169f686774 Mon Sep 17 00:00:00 2001 From: Mate Kovacs Date: Tue, 15 Dec 2015 21:56:03 -0800 Subject: [PATCH 215/707] pythonPackages.pyrr: 0.7.0 to 0.7.2, enable tests --- pkgs/top-level/python-packages.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 433fb88ee2b..827107cb95b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14898,16 +14898,14 @@ in modules // { pyrr = buildPythonPackage rec { name = "pyrr-${version}"; - version = "0.7.0"; + version = "0.7.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyrr/pyrr-${version}.tar.gz"; - sha256 = "ddfcd83394e9703138a3c668747df3548a81238d8ab36d4bf6a84d25ea90b2cd"; + sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa"; }; - # ImportError: No module named tests - doCheck = false; - + buildInputs = with self; [ setuptools ]; propagatedBuildInputs = with self; [ multipledispatch numpy ]; meta = { From fe29df4db0405e9379fa23b0538bb95427264b8e Mon Sep 17 00:00:00 2001 From: VIZGIX Date: Tue, 15 Dec 2015 15:37:34 -0600 Subject: [PATCH 216/707] qxt: url fix updated to the correct url for downloading the libqxt tar.gz file --- pkgs/development/libraries/qxt/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qxt/default.nix b/pkgs/development/libraries/qxt/default.nix index 98619854c1e..78dbe136672 100644 --- a/pkgs/development/libraries/qxt/default.nix +++ b/pkgs/development/libraries/qxt/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "0.6.2"; src = fetchzip { - url = "http://dev.libqxt.org/libqxt/get/v${version}.tar.gz"; + url = "https://bitbucket.org/libqxt/libqxt/get/v${version}.tar.gz"; sha256 = "0zmqfn0h8cpky7wgaaxlfh0l89r9r0isi87587kaicyap7a6kxwz"; }; @@ -27,6 +27,7 @@ stdenv.mkDerivation rec { Development Frameworks, Nokia. ''; license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ forkk ]; }; } From 0944d05e2e7ea4754cff9658afdc186208ae4004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 16 Dec 2015 11:07:08 +0100 Subject: [PATCH 217/707] libvirt-glib: add numa support --- pkgs/development/libraries/libvirt-glib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libvirt-glib/default.nix b/pkgs/development/libraries/libvirt-glib/default.nix index ae1f0e41448..39b05380472 100644 --- a/pkgs/development/libraries/libvirt-glib/default.nix +++ b/pkgs/development/libraries/libvirt-glib/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl -, nettle, libgcrypt, python, pygobject, gobjectIntrospection, libcap_ng +, nettle, libgcrypt, python, pygobject, gobjectIntrospection, libcap_ng, numactl }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libvirt glib libxml2 intltool libtool yajl nettle libgcrypt - python pygobject gobjectIntrospection libcap_ng + python pygobject gobjectIntrospection libcap_ng numactl ]; # Compiler flag -fstack-protector-all fixes this build error: From 98151e0691f6281965f5d54612d05822198607fb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 12:05:35 +0100 Subject: [PATCH 218/707] ratox: Fix broken URL However, the URL still gives a hash mismatch. @ehmry --- .../networking/instant-messengers/ratox/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/ratox/default.nix b/pkgs/applications/networking/instant-messengers/ratox/default.nix index 9f107559551..238b7209799 100644 --- a/pkgs/applications/networking/instant-messengers/ratox/default.nix +++ b/pkgs/applications/networking/instant-messengers/ratox/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { name = "ratox-0.2.1"; src = fetchurl { - url = "nix-prefetch-url http://git.2f30.org/ratox/snapshot/${name}.tar.gz"; + url = "http://git.2f30.org/ratox/snapshot/${name}.tar.gz"; sha256 = "1fm9b3clvnc2nf0pd1z8g08kfszwhk1ij1lyx57wl8vd51z4xsi5"; }; From 64792ffdaa753ebf35efd06bc843a8a9c90a400f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 15:17:00 +0100 Subject: [PATCH 219/707] subversion: Use callPackages --- .../version-management/subversion/default.nix | 145 +++++++++--------- pkgs/top-level/all-packages.nix | 31 ++-- 2 files changed, 93 insertions(+), 83 deletions(-) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index f563bebd9db..050d3d72b0f 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -8,7 +8,6 @@ , stdenv, fetchurl, apr, aprutil, zlib, sqlite , apacheHttpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null , sasl ? null, serf ? null -, branch ? "1.9" }: assert bdbSupport -> aprutil.bdbSupport; @@ -17,81 +16,85 @@ assert pythonBindings -> swig != null && python != null; assert javahlBindings -> jdk != null && perl != null; let - config = { - "1.9".ver_min = "2"; - "1.9".sha1 = "fb9db3b7ddf48ae37aa8785872301b59bfcc7017"; - "1.8".ver_min = "14"; - "1.8".sha1 = "0698efc58373e7657f6dd3ce13cab7b002ffb497"; - }; -in -assert builtins.hasAttr branch config; + common = { version, sha1 }: stdenv.mkDerivation (rec { + inherit version; + name = "subversion-${version}"; -stdenv.mkDerivation (rec { + src = fetchurl { + url = "mirror://apache/subversion/${name}.tar.bz2"; + inherit sha1; + }; - version = "${branch}." + config.${branch}.ver_min; + buildInputs = [ zlib apr aprutil sqlite ] + ++ stdenv.lib.optional httpSupport serf + ++ stdenv.lib.optional pythonBindings python + ++ stdenv.lib.optional perlBindings perl + ++ stdenv.lib.optional saslSupport sasl; - name = "subversion-${version}"; + configureFlags = '' + ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} + ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} + ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"} + ${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""} + --disable-keychain + ${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"} + ${if httpSupport then "--with-serf=${serf}" else "--without-serf"} + --with-zlib=${zlib} + --with-sqlite=${sqlite} + ''; - src = fetchurl { - url = "mirror://apache/subversion/${name}.tar.bz2"; - inherit (config.${branch}) sha1; + preBuild = '' + makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules) + ''; + + postInstall = '' + if test -n "$pythonBindings"; then + make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn + make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn + fi + + if test -n "$perlBindings"; then + make swig-pl-lib + make install-swig-pl-lib + cd subversion/bindings/swig/perl/native + perl Makefile.PL PREFIX=$out + make install + cd - + fi + + mkdir -p $out/share/bash-completion/completions + cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion + ''; + + inherit perlBindings pythonBindings; + + enableParallelBuilding = true; + + meta = { + description = "A version control system intended to be a compelling replacement for CVS in the open source community"; + homepage = http://subversion.apache.org/; + maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; + hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + }; + + } // stdenv.lib.optionalAttrs stdenv.isDarwin { + CXX = "clang++"; + CC = "clang"; + CPP = "clang -E"; + CXXCPP = "clang++ -E"; + }); + +in { + + subversion18 = common { + version = "1.8.14"; + sha1 = "0698efc58373e7657f6dd3ce13cab7b002ffb497"; }; - buildInputs = [ zlib apr aprutil sqlite ] - ++ stdenv.lib.optional httpSupport serf - ++ stdenv.lib.optional pythonBindings python - ++ stdenv.lib.optional perlBindings perl - ++ stdenv.lib.optional saslSupport sasl; - - configureFlags = '' - ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} - ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} - ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"} - ${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""} - --disable-keychain - ${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"} - ${if httpSupport then "--with-serf=${serf}" else "--without-serf"} - --with-zlib=${zlib} - --with-sqlite=${sqlite} - ''; - - preBuild = '' - makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules) - ''; - - postInstall = '' - if test -n "$pythonBindings"; then - make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn - make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn - fi - - if test -n "$perlBindings"; then - make swig-pl-lib - make install-swig-pl-lib - cd subversion/bindings/swig/perl/native - perl Makefile.PL PREFIX=$out - make install - cd - - fi - - mkdir -p $out/share/bash-completion/completions - cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion - ''; - - inherit perlBindings pythonBindings; - - enableParallelBuilding = true; - - meta = { - description = "A version control system intended to be a compelling replacement for CVS in the open source community"; - homepage = http://subversion.apache.org/; - maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + subversion19 = common { + version = "1.9.2"; + sha1 = "fb9db3b7ddf48ae37aa8785872301b59bfcc7017"; }; -} // stdenv.lib.optionalAttrs stdenv.isDarwin { - CXX = "clang++"; - CC = "clang"; - CPP = "clang -E"; - CXXCPP = "clang++ -E"; -}) + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 674a3ea639e..5fa7ca1ad0e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13217,18 +13217,21 @@ let sublime3 = lowPrio (callPackage ../applications/editors/sublime3 { }); - subversion = callPackage ../applications/version-management/subversion/default.nix { - bdbSupport = true; - httpServer = false; - httpSupport = true; - pythonBindings = false; - perlBindings = false; - javahlBindings = false; - saslSupport = false; - sasl = cyrus_sasl; - }; + inherit (callPackages ../applications/version-management/subversion/default.nix { + bdbSupport = true; + httpServer = false; + httpSupport = true; + pythonBindings = false; + perlBindings = false; + javahlBindings = false; + saslSupport = false; + sasl = cyrus_sasl; + }) + subversion18 subversion19; - subversionClient = appendToName "client" (subversion.override { + subversion = pkgs.subversion19; + + subversionClient = appendToName "client" (pkgs.subversion.override { bdbSupport = false; perlBindings = true; pythonBindings = true; @@ -14527,7 +14530,11 @@ let libcanberra = libcanberra_kde; boost = boost155; kdelibs = kdeApps_15_08.kdelibs; - subversionClient = subversionClient.override { branch = "1.8"; }; + subversionClient = pkgs.subversion18.override { + bdbSupport = false; + perlBindings = true; + pythonBindings = true; + }; } ../desktops/kde-4.14; From e7ae72cfb120fa1b92c45d044933b92e780ec0c1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 15:18:13 +0100 Subject: [PATCH 220/707] subversion: 1.8.14 -> 1.8.15, 1.9.2 -> 1.9.3 CVE-2015-5343, CVE-2015-5259. --- .../version-management/subversion/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 050d3d72b0f..219dd0babb7 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -88,13 +88,13 @@ let in { subversion18 = common { - version = "1.8.14"; - sha1 = "0698efc58373e7657f6dd3ce13cab7b002ffb497"; + version = "1.8.15"; + sha1 = "680acf88f0db978fbbeac89ed63776d805b918ef"; }; subversion19 = common { - version = "1.9.2"; - sha1 = "fb9db3b7ddf48ae37aa8785872301b59bfcc7017"; + version = "1.9.3"; + sha1 = "27e8df191c92095f48314a415194ec37c682cbcf"; }; } From 493f633002e4044752a4384e765e41bd850b22ff Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 11:37:22 +0100 Subject: [PATCH 221/707] Die tabs die --- maintainers/scripts/copy-tarballs.pl | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index d0b4afd8774..08a8638e25a 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -74,17 +74,17 @@ my $op = shift @ARGV; if ($op eq "--file") { my $res = 0; foreach my $fn (@ARGV) { - eval { - if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { - print STDERR "$fn is already mirrored\n"; - } else { - uploadFile($fn, basename $fn); - } - }; - if ($@) { - warn "$@\n"; - $res = 1; - } + eval { + if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { + print STDERR "$fn is already mirrored\n"; + } else { + uploadFile($fn, basename $fn); + } + }; + if ($@) { + warn "$@\n"; + $res = 1; + } } exit $res; } From 7cd3d502bb19a95bca0137e6d81f65da29ed4092 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 13:59:02 +0100 Subject: [PATCH 222/707] copy-tarballs.pl: Revive extracting all tarballs from release.nix --- maintainers/scripts/all-tarballs.nix | 18 ++++++++++++++++++ maintainers/scripts/copy-tarballs.pl | 7 ++++++- maintainers/scripts/find-tarballs.nix | 5 ++--- pkgs/top-level/make-tarball.nix | 12 ++++++++++-- pkgs/top-level/release-lib.nix | 11 +++++++++-- pkgs/top-level/release.nix | 3 ++- 6 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 maintainers/scripts/all-tarballs.nix diff --git a/maintainers/scripts/all-tarballs.nix b/maintainers/scripts/all-tarballs.nix new file mode 100644 index 00000000000..552f8802296 --- /dev/null +++ b/maintainers/scripts/all-tarballs.nix @@ -0,0 +1,18 @@ +/* Helper expression for copy-tarballs. This returns (nearly) all + tarballs used the free packages in Nixpkgs. + + Typical usage: + + $ copy-tarballs.pl --expr 'import ' +*/ + +removeAttrs (import ../../pkgs/top-level/release.nix + { # Don't apply ‘hydraJob’ to jobs, because then we can't get to the + # dependency graph. + scrubJobs = false; + # No need to evaluate on i686. + supportedSystems = [ "x86_64-linux" ]; + }) + [ # Remove jobs whose evaluation depends on a writable Nix store. + "tarball" "unstable" + ] diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index 08a8638e25a..8ce982122c3 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -93,7 +93,7 @@ elsif ($op eq "--expr") { # Evaluate find-tarballs.nix. my $expr = $ARGV[0] // die "$0: --expr requires a Nix expression\n"; - my $pid = open(JSON, "-|", "nix-instantiate", "--eval-only", "--json", "--strict", + my $pid = open(JSON, "-|", "nix-instantiate", "--eval", "--json", "--strict", "", "--arg", "expr", $expr); my $stdout = ; @@ -113,6 +113,11 @@ elsif ($op eq "--expr") { my $algo = $fetch->{type}; my $hash = $fetch->{hash}; + if (defined $ENV{DEBUG}) { + print "$url $algo $hash\n"; + next; + } + if ($url !~ /^http:/ && $url !~ /^https:/ && $url !~ /^ftp:/ && $url !~ /^mirror:/) { print STDERR "skipping $url (unsupported scheme)\n"; next; diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index 2dd17d9df88..e989c0e2a9e 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -1,10 +1,9 @@ -# This expression returns a list of all fetchurl calls used by all -# packages reachable from release.nix. +# This expression returns a list of all fetchurl calls used by ‘expr’. with import ../.. { }; with lib; -{ expr ? removeAttrs (import ../../pkgs/top-level/release.nix { }) [ "tarball" "unstable" ] }: +{ expr }: let diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index fdd8fb0ef7d..c14f94d95fd 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -14,7 +14,7 @@ releaseTools.sourceTarball rec { version = builtins.readFile ../../.version; versionSuffix = "pre${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; - buildInputs = [ nix ]; + buildInputs = [ nix jq ]; configurePhase = '' eval "$preConfigure" @@ -83,7 +83,15 @@ releaseTools.sourceTarball rec { stopNest header "checking find-tarballs.nix" - nix-instantiate --eval --strict --show-trace ./maintainers/scripts/find-tarballs.nix > /dev/null + nix-instantiate --eval --strict --show-trace --json \ + ./maintainers/scripts/find-tarballs.nix \ + --arg expr 'import ./maintainers/scripts/all-tarballs.nix' > $TMPDIR/tarballs.json + nrUrls=$(jq -r '.[].url' < $TMPDIR/tarballs.json | wc -l) + echo "found $nrUrls URLs" + if [ "$nrUrls" -lt 10000 ]; then + echo "suspiciously low number of URLs" + exit 1 + fi stopNest ''; diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index 15380ea43c8..2f0296223a0 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,4 +1,8 @@ -{ supportedSystems, packageSet ? (import ./all-packages.nix), allowTexliveBuilds ? false }: +{ supportedSystems +, packageSet ? (import ./all-packages.nix) +, allowTexliveBuilds ? false +, scrubJobs ? true +}: with import ../../lib; @@ -14,6 +18,9 @@ rec { pkgs = pkgsFor "x86_64-linux"; + hydraJob' = if scrubJobs then hydraJob else id; + + /* !!! Hack: poor man's memoisation function. Necessary to prevent Nixpkgs from being evaluated again and again for every job/platform pair. */ @@ -48,7 +55,7 @@ rec { a derivation for each supported platform, i.e. ‘{ x86_64-linux = f pkgs_x86_64_linux; i686-linux = f pkgs_i686_linux; ... }’. */ testOn = systems: f: genAttrs - (filter (x: elem x supportedSystems) systems) (system: hydraJob (f (pkgsFor system))); + (filter (x: elem x supportedSystems) systems) (system: hydraJob' (f (pkgsFor system))); /* Similar to the testOn function, but with an additional diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index d0c5faf823a..c55f8f0825f 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -13,9 +13,10 @@ , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] +, scrubJobs ? true }: -with import ./release-lib.nix { inherit supportedSystems; }; +with import ./release-lib.nix { inherit supportedSystems scrubJobs; }; let From d5371eb0295229a5949b795e7df59ebd2e16c67e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 14:17:33 +0100 Subject: [PATCH 223/707] copy-tarballs: Cache S3 lookups --- maintainers/scripts/copy-tarballs.pl | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index 8ce982122c3..0098061d0f8 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i perl -p perl perlPackages.NetAmazonS3 nixUnstable +#! nix-shell -i perl -p perl perlPackages.NetAmazonS3 perlPackages.FileSlurp nixUnstable # This command uploads tarballs to tarballs.nixos.org, the # content-addressed cache used by fetchurl as a fallback for when @@ -17,6 +17,7 @@ use strict; use warnings; use File::Basename; use File::Path; +use File::Slurp; use JSON; use Net::Amazon::S3; use Nix::Store; @@ -33,9 +34,21 @@ my $s3 = Net::Amazon::S3->new( my $bucket = $s3->bucket("nixpkgs-tarballs") or die; +my $cacheFile = "/tmp/copy-tarballs-cache"; +my %cache; +$cache{$_} = 1 foreach read_file($cacheFile, err_mode => 'quiet', chomp => 1); + +END() { + write_file($cacheFile, map { "$_\n" } keys %cache); +} + sub alreadyMirrored { my ($algo, $hash) = @_; - return defined $bucket->get_key("$algo/$hash"); + my $key = "$algo/$hash"; + return 1 if defined $cache{$key}; + my $res = defined $bucket->get_key($key); + $cache{$key} = 1 if $res; + return $res; } sub uploadFile { @@ -54,6 +67,7 @@ sub uploadFile { print STDERR "uploading $fn to $mainKey...\n"; $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name }) or die "failed to upload $fn to $mainKey\n"; + $cache{$mainKey} = 1; # Create redirects from the other hash types. sub redirect { @@ -61,6 +75,7 @@ sub uploadFile { #print STDERR "linking $name to $dest...\n"; $bucket->add_key($name, "", { 'x-amz-website-redirect-location' => "/" . $dest }) or die "failed to create redirect from $name to $dest\n"; + $cache{$name} = 1; } redirect "md5/$md5_16", $mainKey; redirect "sha1/$sha1_16", $mainKey; From 5eb2804cdbc5d288bebc534066577e7e1bff2409 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 14:28:22 +0100 Subject: [PATCH 224/707] copy-tarballs.pl: Create redirects before uploading file This makes the script more robust to interruption. --- maintainers/scripts/copy-tarballs.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index 0098061d0f8..b1233827ad8 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -63,12 +63,6 @@ sub uploadFile { my $mainKey = "sha512/$sha512_16"; - # Upload the file as sha512/. - print STDERR "uploading $fn to $mainKey...\n"; - $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name }) - or die "failed to upload $fn to $mainKey\n"; - $cache{$mainKey} = 1; - # Create redirects from the other hash types. sub redirect { my ($name, $dest) = @_; @@ -82,6 +76,12 @@ sub uploadFile { redirect "sha256/$sha256_32", $mainKey; redirect "sha256/$sha256_16", $mainKey; redirect "sha512/$sha512_32", $mainKey; + + # Upload the file as sha512/. + print STDERR "uploading $fn to $mainKey...\n"; + $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name }) + or die "failed to upload $fn to $mainKey\n"; + $cache{$mainKey} = 1; } my $op = shift @ARGV; From 72014cade68674d478d155234c42e6b6fb52b74f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:41:09 -0600 Subject: [PATCH 225/707] cutegram: fix evaluation error See discussion on #11684. --- pkgs/top-level/all-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5fa7ca1ad0e..efc59b70340 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11347,11 +11347,12 @@ let cutecom = callPackage ../tools/misc/cutecom { }; cutegram = - let f = ../applications/networking/instant-messengers/telegram; - cp = qt5Libs.callPackage; - in cp "${f}/cutegram" rec { - libqtelegram-aseman-edition = cp "${f}/libqtelegram-aseman-edition" { }; - telegram-qml = cp "${f}/telegram-qml" { inherit libqtelegram-aseman-edition; }; + let cp = qt5Libs.callPackage; + in cp ../applications/networking/instant-messengers/telegram/cutegram rec { + libqtelegram-aseman-edition = cp ../applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition { }; + telegram-qml = cp ../applications/networking/instant-messengers/telegram/telegram-qml { + inherit libqtelegram-aseman-edition; + }; }; cvs = callPackage ../applications/version-management/cvs { }; From 19f9e46d5708f1b0f8f532fc9c2fcee9b1868b62 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:34:33 +0100 Subject: [PATCH 226/707] pythonPackages.check-manifest: init at 0.30 --- lib/maintainers.nix | 1 + pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 93bd8098f45..f1dce94bf8c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -165,6 +165,7 @@ lebastr = "Alexander Lebedev "; leonardoce = "Leonardo Cecchi "; lethalman = "Luca Bruno "; + lewo = "Antoine Eiche "; lhvwb = "Nathaniel Baxter "; lihop = "Leroy Hopson "; linquize = "Linquize "; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 802ea500c00..312ede771a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2199,6 +2199,25 @@ in modules // { buildout = self.zc_buildout; buildout152 = self.zc_buildout152; + check-manifest = buildPythonPackage rec { + name = "check-manifest"; + version = "0.30"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz"; + md5 = "b18f7f0bcd02f52d40148c388ace9290"; + }; + + doCheck = false; + + meta = { + homepage = https://github.com/mgedmin/check-manifest; + description = "Check MANIFEST.in in a Python source package for completeness"; + license = licenses.mit; + maintainers = with maintainers; [ lewo ]; + }; + }; + # A patched version of buildout, useful for buildout based development on Nix zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { }; From e1ff5eb7daf15262b2bf9e0e590939835d3dd95f Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:44:33 +0100 Subject: [PATCH 227/707] pythonPackages.devpi-common: init at 2.0.8 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 312ede771a8..db3d915b981 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2218,6 +2218,25 @@ in modules // { }; }; + devpi-common = buildPythonPackage rec { + name = "devpi-common"; + version = "2.0.8"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz"; + md5 = "3739af0f59151d1aaa67035fec8f97c6"; + }; + + propagatedBuildInputs = [ self.requests2 self.py ]; + + meta = { + homepage = https://bitbucket.org/hpk42/devpi; + description = "Utilities jointly used by devpi-server and devpi-client"; + license = licenses.mit; + maintainers = with maintainers; [ lewo ]; + }; + }; + # A patched version of buildout, useful for buildout based development on Nix zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { }; From d8d04c8cf375048a0a516d59443fb3382fcbe7fc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 16:01:53 +0100 Subject: [PATCH 228/707] firefox-esr: 38.4.0 -> 38.5.0 --- pkgs/applications/networking/browsers/firefox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 168223f1a7e..b7bd07d01e1 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -139,8 +139,8 @@ in { firefox-esr = common { pname = "firefox-esr"; - version = "38.4.0esr"; - sha256 = "1izj0zi4dhp3957ya1nlh0mp6gyb7gvmwnlfv6q1cc3bw5y1z2h2"; + version = "38.5.0esr"; + sha256 = "086vkhrls9g0cxf50izfzcf2h60syswqrlzyi2z21awhwg7r07ra"; }; } From f8c6ced63644c7e7232a8fa2a7eabfcc86a9a8d8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 16:04:36 +0100 Subject: [PATCH 229/707] nspr: 4.10.10 -> 4.11 --- pkgs/development/libraries/nspr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index e1b7a01c4cd..e8d3fb3cdf2 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl }: -let version = "4.10.10"; in +let version = "4.11"; in stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; - sha256 = "343614971c30520d0fa55f4af0a72578e2d8674bb71caf7187490c3379523107"; + sha256 = "cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2"; }; preConfigure = '' From af5015fa8078af7a23a78c510b1500c18ff4d009 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:07:59 -0600 Subject: [PATCH 230/707] kdeApps_15_12: 15.11.90 -> 15.12.0 --- pkgs/applications/kde-apps-15.12/fetchsrcs.sh | 2 +- pkgs/applications/kde-apps-15.12/srcs.nix | 1928 +++++++++-------- 2 files changed, 969 insertions(+), 961 deletions(-) diff --git a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh index 334d94a5e47..1a8c17d4ab5 100755 --- a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh +++ b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/unstable/applications/15.11.90/ -A *.tar.xz' +WGET_ARGS='http://download.kde.org/stable/applications/15.12.0/ -A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/applications/kde-apps-15.12/srcs.nix b/pkgs/applications/kde-apps-15.12/srcs.nix index d6eaf208b4b..a6f6c110731 100644 --- a/pkgs/applications/kde-apps-15.12/srcs.nix +++ b/pkgs/applications/kde-apps-15.12/srcs.nix @@ -3,1923 +3,1931 @@ { akonadi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/akonadi-15.11.90.tar.xz"; - sha256 = "09frr1chl0lh135lh43i8fnjjw4d06npafwnvzbd0rv0gzvl89sv"; - name = "akonadi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-15.12.0.tar.xz"; + sha256 = "0xqas8nbqvs4bvsqi234rwsbi06h5i7a07cjmd3ggrrg9p0nk2i8"; + name = "akonadi-15.12.0.tar.xz"; }; }; akonadi-calendar = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/akonadi-calendar-15.11.90.tar.xz"; - sha256 = "0wh6f9pxl23jqgjsx0gglk4vfqy9qi9572jggqwl80j0jbzr8686"; - name = "akonadi-calendar-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-calendar-15.12.0.tar.xz"; + sha256 = "1cxz2vrd1b96azs5pkhs6agdamqxya4xsaalfqgl3ii65gm5s6gf"; + name = "akonadi-calendar-15.12.0.tar.xz"; }; }; akonadi-search = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/akonadi-search-15.11.90.tar.xz"; - sha256 = "16l9v2g2ll5dsg2skhdgprdmk57696py6llm4i1r4hj7v2xz9k9g"; - name = "akonadi-search-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-search-15.12.0.tar.xz"; + sha256 = "180d1591k1c6l0ky6x0clmif1fw7pwikz2pzrh9c7kzmmdrfr3xf"; + name = "akonadi-search-15.12.0.tar.xz"; }; }; analitza = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/analitza-15.11.90.tar.xz"; - sha256 = "101kbgw8rg5ic8033pch5z4fcirb1vzyqxa4rwflh9w3i5bkgy2c"; - name = "analitza-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/analitza-15.12.0.tar.xz"; + sha256 = "1z2km469f7s3mfvrgsszvffnbnihd0cbs8hp15vrd9jpsl4p7kws"; + name = "analitza-15.12.0.tar.xz"; }; }; ark = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ark-15.11.90.tar.xz"; - sha256 = "1mccm69rqzcl9zw632fgkyb248r9c9d915yyl2lv28f873m2awai"; - name = "ark-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ark-15.12.0.tar.xz"; + sha256 = "0z5xhyyhs3gl7133qpa029b4gp44nql0576wczaqjy9p3hx7r9n3"; + name = "ark-15.12.0.tar.xz"; }; }; artikulate = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/artikulate-15.11.90.tar.xz"; - sha256 = "16c6a7cm22nqnjjs1py6h031nkca7axnq1ipv14fwdwanz5mra6r"; - name = "artikulate-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/artikulate-15.12.0.tar.xz"; + sha256 = "0w9bbkznxxiriml4kqmswdn02ygassx8rq87k6bhvrbqziwgb8as"; + name = "artikulate-15.12.0.tar.xz"; }; }; audiocd-kio = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/audiocd-kio-15.11.90.tar.xz"; - sha256 = "0vkb03hc4p3h60w138xi44jsw35hji27lkm9isi544375kcimd6b"; - name = "audiocd-kio-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/audiocd-kio-15.12.0.tar.xz"; + sha256 = "016bv43b3bfyx15npps7wm1zpkrfzbiyqv48p9wd32fg5blmxnd5"; + name = "audiocd-kio-15.12.0.tar.xz"; }; }; baloo-widgets = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/baloo-widgets-15.11.90.tar.xz"; - sha256 = "168ld1376fh4q2g3fg1mc22j3bnsw5pc644lffcl1rsfkk6gnigi"; - name = "baloo-widgets-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/baloo-widgets-15.12.0.tar.xz"; + sha256 = "0lbjnwb5k5rwz4jwig7b4cm9di0b6kdr7c35ib3cy34vk2jrfzp1"; + name = "baloo-widgets-15.12.0.tar.xz"; }; }; blinken = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/blinken-15.11.90.tar.xz"; - sha256 = "1y26azmasnx9430iflwmafzyjn9z1q1fqrd2hyy42chkgfgzzf08"; - name = "blinken-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz"; + sha256 = "1r7wk11gqz1zklpcqb33vkqywad356g7py5967mi21nsflz00a6c"; + name = "blinken-15.12.0.tar.xz"; }; }; bomber = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/bomber-15.11.90.tar.xz"; - sha256 = "13h65alwrnq7g7d1fhh49rixlkpyffbgxzkxdf789lc1kfpjg456"; - name = "bomber-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/bomber-15.12.0.tar.xz"; + sha256 = "1rcp2qmazzdsvxzy1zky4jp0vygpab6z9pmpzbjdpki5smkmpdv4"; + name = "bomber-15.12.0.tar.xz"; }; }; bovo = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/bovo-15.11.90.tar.xz"; - sha256 = "1yrlrdakn98vlgcrv71n5gqm9w0h7hxsdn1zz44292kklky0960f"; - name = "bovo-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/bovo-15.12.0.tar.xz"; + sha256 = "026sxcdbvpdq07miw5z107cjaclhsphr7i3w19kw7hx911chaipk"; + name = "bovo-15.12.0.tar.xz"; }; }; cantor = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/cantor-15.11.90.tar.xz"; - sha256 = "17dg35303mfz91mhgzysxifddwrlc69p9k0mhzasq64i5vmhz8pk"; - name = "cantor-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/cantor-15.12.0.tar.xz"; + sha256 = "09cyf50la3v91vqwiciq7i9c5mcjqlmq9hjrm717bcr9029abqma"; + name = "cantor-15.12.0.tar.xz"; }; }; cervisia = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/cervisia-15.11.90.tar.xz"; - sha256 = "0ksxahl6lv3lqqdvkir9b1lkqg3j3y0yfr08ac0ib5v61cb6lfgp"; - name = "cervisia-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/cervisia-15.12.0.tar.xz"; + sha256 = "1gx196x33k4nb3knrfzzksxhcy1vdcgnzx3pwqmz2w7bvsdcl1vx"; + name = "cervisia-15.12.0.tar.xz"; }; }; dolphin = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/dolphin-15.11.90.tar.xz"; - sha256 = "1w05cb1kc29f48p5spwwxx6fksd3mn6mc43n7hp8r0abkybibpgk"; - name = "dolphin-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dolphin-15.12.0.tar.xz"; + sha256 = "19bkrwn842qygv2a0kwf76d5aqfw7wa1348x8vny2hmmbwk7laha"; + name = "dolphin-15.12.0.tar.xz"; }; }; dolphin-plugins = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/dolphin-plugins-15.11.90.tar.xz"; - sha256 = "0940mhj9v0g8b0rbkp70x6vrxk1pdhj67hv73dab63m3i2yfn4hh"; - name = "dolphin-plugins-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dolphin-plugins-15.12.0.tar.xz"; + sha256 = "0l74z0v55qki1xnwsdzq68i4qyxb16xw2g1fhlp069c975jlmakv"; + name = "dolphin-plugins-15.12.0.tar.xz"; }; }; dragon = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/dragon-15.11.90.tar.xz"; - sha256 = "1znj06dkcgqs66z9magc2i5shrv9zvsw6lrvva3sh0pvv7mw3v76"; - name = "dragon-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dragon-15.12.0.tar.xz"; + sha256 = "0afjl9758hb32hmiacx5bwg9paaxpxh1y4nh2r97wzb5krny3ghr"; + name = "dragon-15.12.0.tar.xz"; }; }; ffmpegthumbs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ffmpegthumbs-15.11.90.tar.xz"; - sha256 = "1q2iqk6pkv8whk82q8rvpd5dknjki0dnmg72q147pgrvi5aajrvi"; - name = "ffmpegthumbs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ffmpegthumbs-15.12.0.tar.xz"; + sha256 = "1i5sci7q4d9dflkgn8h2gsnah6snhlajydlgpknjb5l4dxdqbcg4"; + name = "ffmpegthumbs-15.12.0.tar.xz"; }; }; filelight = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/filelight-15.11.90.tar.xz"; - sha256 = "0xkrd92a26rd5s471s451dwr71rw9dyzp305h2lmg9ay6bhhjf9g"; - name = "filelight-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/filelight-15.12.0.tar.xz"; + sha256 = "0q4xwi2nbap5f4fn5ym0azk0knp053qq3ix4vbyg2mkh9r268wd6"; + name = "filelight-15.12.0.tar.xz"; }; }; gpgmepp = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/gpgmepp-15.11.90.tar.xz"; - sha256 = "1ygxa6miynlvc4ig08dqnrmwrv0jwl18yxa3v6i20xy1qjnpbw9w"; - name = "gpgmepp-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/gpgmepp-15.12.0.tar.xz"; + sha256 = "1480kx5n14ipk7sxpqpwgf2dq6jyp2b3rf7rblkis0jwqrzy61k4"; + name = "gpgmepp-15.12.0.tar.xz"; }; }; granatier = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/granatier-15.11.90.tar.xz"; - sha256 = "1vxf9qw8y1gxjs5lpjk4439qxglgdb8wx3hlygx6a71p2vg0qgdx"; - name = "granatier-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/granatier-15.12.0.tar.xz"; + sha256 = "07l4aq2qfk7blmmkpc8w6xkgj7zz6qs4vv2ifpdvkjv621475bcp"; + name = "granatier-15.12.0.tar.xz"; }; }; gwenview = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/gwenview-15.11.90.tar.xz"; - sha256 = "0n29iz2pdi848fwsz0xllylwh7mcdjrq8xwn51ysjrwf7vxc004y"; - name = "gwenview-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/gwenview-15.12.0.tar.xz"; + sha256 = "00rsw57ivicx4j9kyvx92nppxv7m2kr3p2skp5qlidpgygwig4n5"; + name = "gwenview-15.12.0.tar.xz"; }; }; jovie = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/jovie-15.11.90.tar.xz"; - sha256 = "1zvx54vch6xdsig9s2nkdxs129fvcv2lbbvy18l68q1i9wn4ksnq"; - name = "jovie-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/jovie-15.12.0.tar.xz"; + sha256 = "107ga496j0li1bqmppc96r25iq40yby63qi4hxzr6rvql0sk4vq3"; + name = "jovie-15.12.0.tar.xz"; }; }; juk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/juk-15.11.90.tar.xz"; - sha256 = "1q9pzj9j5qhi70vbkcqylfpqxiclx3j0x71axn1v5svc8wrr1hv1"; - name = "juk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/juk-15.12.0.tar.xz"; + sha256 = "0l0l72r6l2xpn7ym3zdvrpjl0qbn3jb4hdy371qn14s1gk1clai5"; + name = "juk-15.12.0.tar.xz"; }; }; kaccessible = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kaccessible-15.11.90.tar.xz"; - sha256 = "03mpqp83m8m3f4kyr55v26k64sfx8nfsn4l0wcmmi166m8kdl4c2"; - name = "kaccessible-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccessible-15.12.0.tar.xz"; + sha256 = "0gg90sy5a8kmllcryj7xncbyn4w6rd0f19vnn5vgsdrhgh8b8kf8"; + name = "kaccessible-15.12.0.tar.xz"; }; }; kaccounts-integration = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kaccounts-integration-15.11.90.tar.xz"; - sha256 = "192ic4f9cm3w658cbmw967jx0d0w9x8jh3j1gg18lg7yfla3hmfm"; - name = "kaccounts-integration-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccounts-integration-15.12.0.tar.xz"; + sha256 = "1g5rbnhl7vfhh9ni2clrkszlns9iiibdpfxgpsjfjlljr8ai8fn8"; + name = "kaccounts-integration-15.12.0.tar.xz"; }; }; kaccounts-providers = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kaccounts-providers-15.11.90.tar.xz"; - sha256 = "1sc2krffspxn3lvx7jjwdqc46j628nk5x47sjwp8wpkwmawjnpy9"; - name = "kaccounts-providers-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccounts-providers-15.12.0.tar.xz"; + sha256 = "12hq0rwlqz8pjnm4p0p44q4m4vj4z1r79z5pc5glv3r0rvmn05xk"; + name = "kaccounts-providers-15.12.0.tar.xz"; }; }; kajongg = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kajongg-15.11.90.tar.xz"; - sha256 = "1xyy3jfixbmbkzhb5lqhjd8yk4wlcc601ay5v6j24rngr3hnjmv9"; - name = "kajongg-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kajongg-15.12.0.tar.xz"; + sha256 = "0qbyqixvcpn5z07cwv9jzvf0dawlcsgzq776lhh49ds6hh4xgdcw"; + name = "kajongg-15.12.0.tar.xz"; }; }; kalarmcal = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kalarmcal-15.11.90.tar.xz"; - sha256 = "0dssjcdgrzxpadl5nh1v2fz4ncjf73yngjz92w4j1i6cpfkw5lrj"; - name = "kalarmcal-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalarmcal-15.12.0.tar.xz"; + sha256 = "10lj01gsg2mr2kq39nih4cv1i48mp8b5i5s01kvaf2mwhwrj2hb5"; + name = "kalarmcal-15.12.0.tar.xz"; }; }; kalgebra = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kalgebra-15.11.90.tar.xz"; - sha256 = "1lpi4kj6vdvlh2lkxsckfz6qx868v4li8zhvqs060qxmy2w0zw58"; - name = "kalgebra-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalgebra-15.12.0.tar.xz"; + sha256 = "11d5yzwv9p5fa9rz06gv3b773kcqmxd9hmkraz6i3ph2z2xdyfmc"; + name = "kalgebra-15.12.0.tar.xz"; }; }; kalzium = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kalzium-15.11.90.tar.xz"; - sha256 = "13grbk9y1nqh4ir9764fac3hx8gxn9bya2nxqn296x7z1wibgr4m"; - name = "kalzium-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalzium-15.12.0.tar.xz"; + sha256 = "1p26pz900yl8ig9vh3aa1xkxap4962477rgiysckzvil1b3z9jn4"; + name = "kalzium-15.12.0.tar.xz"; }; }; kamera = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kamera-15.11.90.tar.xz"; - sha256 = "1nmsqrglaxgp7bg21x45lyplpz5bc7pqh3afkqd3p5mnmzpa38qi"; - name = "kamera-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kamera-15.12.0.tar.xz"; + sha256 = "1wa6ihbbxrdc3axj9g7ayizka2h5hv7890c8s23mrrnigf911s21"; + name = "kamera-15.12.0.tar.xz"; }; }; kanagram = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kanagram-15.11.90.tar.xz"; - sha256 = "0lyr873l68jajqhd2bairrv6f2pgfnjsx5j0hgssgl6v32c37727"; - name = "kanagram-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kanagram-15.12.0.tar.xz"; + sha256 = "03faj636jaf4r7sdp4zlkl0l4v66pdphw4yzw6lp8pg2mp6ydnjl"; + name = "kanagram-15.12.0.tar.xz"; }; }; kapman = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kapman-15.11.90.tar.xz"; - sha256 = "1hrpsn4f9k8jk1lp2cs8ykbnp3il9d495lsncrwmxycn2grd22dx"; - name = "kapman-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kapman-15.12.0.tar.xz"; + sha256 = "1m7dzspf7bg4z3v9slp6dr78gcmd6yn44mqx1ycmby85cwh5y39l"; + name = "kapman-15.12.0.tar.xz"; }; }; kapptemplate = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kapptemplate-15.11.90.tar.xz"; - sha256 = "1hiz1vas8ja0n4m0jwpbhnn6fxga4shvjrls9nhga359y2adsxid"; - name = "kapptemplate-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kapptemplate-15.12.0.tar.xz"; + sha256 = "1inzkhg6acj2z3jlj04jf46xl6p9zc671j8j8mp8r2qdr6yiy0xa"; + name = "kapptemplate-15.12.0.tar.xz"; }; }; kate = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kate-15.11.90.tar.xz"; - sha256 = "153pl21nin1v2419kj1iwgasgn7abxbi8shmg1dvd7s8p7rh4z77"; - name = "kate-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kate-15.12.0.tar.xz"; + sha256 = "0vsj28xdx58sfyxjb0x03xn3d7hbwzq9rr81jwmdp3f1np1rm5xf"; + name = "kate-15.12.0.tar.xz"; }; }; katomic = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/katomic-15.11.90.tar.xz"; - sha256 = "0aam62g97aab9prfp64r6wcw41lc4qdsr7wp4ip4z3n4pplwsg4q"; - name = "katomic-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/katomic-15.12.0.tar.xz"; + sha256 = "0sgs46bqq52sy3rym5c7d4vyf20y517iykzk3c8wndg3bkmar18s"; + name = "katomic-15.12.0.tar.xz"; }; }; kblackbox = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kblackbox-15.11.90.tar.xz"; - sha256 = "0kjfjv6955w1k8nbldaplwfjdn7nvyz6s4l1xlx1zjp8vin1gvcv"; - name = "kblackbox-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblackbox-15.12.0.tar.xz"; + sha256 = "0lphzs5fn7n8z0c0kmfpqfqv8mcgj420254csil9gsp994873hia"; + name = "kblackbox-15.12.0.tar.xz"; }; }; kblocks = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kblocks-15.11.90.tar.xz"; - sha256 = "0z7z575z5npihq7rsigrk2043n5r857x9wcj47f86r1vf4nli0vf"; - name = "kblocks-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblocks-15.12.0.tar.xz"; + sha256 = "1zbs48z358h35vplr32q5nhq9gp3rfmijwg2ird25mjmxwc87bi1"; + name = "kblocks-15.12.0.tar.xz"; }; }; kblog = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kblog-15.11.90.tar.xz"; - sha256 = "1lk27i7a18k30ayc4xbbzqs2sacib5zx0dq3fi0hm2axn9zi618w"; - name = "kblog-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblog-15.12.0.tar.xz"; + sha256 = "0j6kcbzivz6ali3wyg7qyv936pvbjsf0f68xsfgci57hb4lam386"; + name = "kblog-15.12.0.tar.xz"; }; }; kbounce = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kbounce-15.11.90.tar.xz"; - sha256 = "0nqxwiiym4bq1wgcmnvik0jwxy9866gy3slygxn3bi9mzmplnw15"; - name = "kbounce-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbounce-15.12.0.tar.xz"; + sha256 = "0jgdjj7r966j1rm6vdhbdndrbiych4z1ndx5809mpxpg9b1lr427"; + name = "kbounce-15.12.0.tar.xz"; }; }; kbreakout = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kbreakout-15.11.90.tar.xz"; - sha256 = "1lfbf65ybah5mqq0lsh2jq8wxnrr011b5pfjd8ph2cfi2140iyjp"; - name = "kbreakout-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbreakout-15.12.0.tar.xz"; + sha256 = "1h9adxf4v0qb43avbamw73gzc3cij4i2z5z8fcznczb3gbmpp1h9"; + name = "kbreakout-15.12.0.tar.xz"; }; }; kbruch = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kbruch-15.11.90.tar.xz"; - sha256 = "10p6a8hs3p9bk209w3x47bivipmsgzklb5zsw37xwrc9icvfqysf"; - name = "kbruch-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbruch-15.12.0.tar.xz"; + sha256 = "0sr4nx9y15hkf74m86m1ghmw1i4jcvlxhbmh3d404z64yks97hv1"; + name = "kbruch-15.12.0.tar.xz"; }; }; kcachegrind = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcachegrind-15.11.90.tar.xz"; - sha256 = "1mc8vq3xkswfrdxbihv2ai473zjc1zbqzz74agx9i0iz488x1fy8"; - name = "kcachegrind-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcachegrind-15.12.0.tar.xz"; + sha256 = "0gkafyf9980dryvv5mdgnv3fxxxfy5smpd1x8fmgjiyp8izg5nb9"; + name = "kcachegrind-15.12.0.tar.xz"; }; }; kcalc = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcalc-15.11.90.tar.xz"; - sha256 = "1cggmkydxpzija2llp4cml971z824ick3nfl03r8ap5ya65vk90i"; - name = "kcalc-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalc-15.12.0.tar.xz"; + sha256 = "0ybs87g6axmp3yip4wip0cf9lvyf37nhywravpk3z3284dl9z6cx"; + name = "kcalc-15.12.0.tar.xz"; }; }; kcalcore = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcalcore-15.11.90.tar.xz"; - sha256 = "1sw776d8pvp33qnm9dccmc8ggxmc66qq7lsvxndkvz7hmwq5pjs8"; - name = "kcalcore-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalcore-15.12.0.tar.xz"; + sha256 = "1zbfcbl8b7vmvzwi8969zcwb4ini3mxdc1q6n47hkmyl2rsradiq"; + name = "kcalcore-15.12.0.tar.xz"; }; }; kcalutils = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcalutils-15.11.90.tar.xz"; - sha256 = "1fy52kba0qfwdjkl2p61m31igs8g2hi11g48z6hblalx7y7g7qyf"; - name = "kcalutils-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalutils-15.12.0.tar.xz"; + sha256 = "0ya2wgvv5vkxil6xcibrp0di6k18qfll173rw3h417ykgf11q0ir"; + name = "kcalutils-15.12.0.tar.xz"; }; }; kcharselect = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcharselect-15.11.90.tar.xz"; - sha256 = "09vwsqhh8shnylcbpm91rvsk6ijf6xnbnrb6zsbf0ymp46h43jaz"; - name = "kcharselect-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcharselect-15.12.0.tar.xz"; + sha256 = "0pllisc3p8nlzx8pgfclr28zvnwzgb3yrlbx33l09g7x0spn5whd"; + name = "kcharselect-15.12.0.tar.xz"; }; }; kcolorchooser = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcolorchooser-15.11.90.tar.xz"; - sha256 = "0vnf3fkad37s5irkg864r0cmdr9kwhsalydcji3zsxjcki0hfgdi"; - name = "kcolorchooser-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcolorchooser-15.12.0.tar.xz"; + sha256 = "0qbl18q41jhra0arfvymhxd27y7hs6bmqwzfls80l9nxa16di57c"; + name = "kcolorchooser-15.12.0.tar.xz"; }; }; kcontacts = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcontacts-15.11.90.tar.xz"; - sha256 = "16x0334hgb363266k4rf7xw8dq88pi5jcds93g8q1dyyk1qgh1bx"; - name = "kcontacts-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcontacts-15.12.0.tar.xz"; + sha256 = "1ijh9brvgqdva168a1inj8p8z837h2sg05smzxk4f56779z43cry"; + name = "kcontacts-15.12.0.tar.xz"; }; }; kcron = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kcron-15.11.90.tar.xz"; - sha256 = "0y0sv96z9y3wa151rid6r5nssbznvpv26pzcf0i2axnj8pq5z8sp"; - name = "kcron-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcron-15.12.0.tar.xz"; + sha256 = "03b9zwa5fm8giynfz993y51cxpchi13k58afd6w4y19733scpc8w"; + name = "kcron-15.12.0.tar.xz"; }; }; kde-baseapps = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-baseapps-15.11.90.tar.xz"; - sha256 = "1zc2rh8ni8anjvirbmy1qypvcryfbxxjmlsmxr9zvkk4yjnffy8n"; - name = "kde-baseapps-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-baseapps-15.12.0.tar.xz"; + sha256 = "10l7yr9jfmzb4jh59f8mdf36bvbr7da5wacyjpgvamjzcj87l5f3"; + name = "kde-baseapps-15.12.0.tar.xz"; }; }; kdebugsettings = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdebugsettings-15.11.90.tar.xz"; - sha256 = "1qhavzgcd4i0dydajhi8qf129kdwwbd235nawy038n4lz13daj1z"; - name = "kdebugsettings-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdebugsettings-15.12.0.tar.xz"; + sha256 = "0n9l6pish25a4wg1bbibfngdzwyy5lyxyjj4aicvcx415j9yzicf"; + name = "kdebugsettings-15.12.0.tar.xz"; }; }; kde-dev-scripts = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-dev-scripts-15.11.90.tar.xz"; - sha256 = "0h5mwc6aclb2md0hifdrjqqk1h39lw2l414z0x901b49gjv9ajly"; - name = "kde-dev-scripts-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-dev-scripts-15.12.0.tar.xz"; + sha256 = "18xr7763778qmpg38avq23kaqcpyccr802wig5xy6b9dqv6jh894"; + name = "kde-dev-scripts-15.12.0.tar.xz"; }; }; kde-dev-utils = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-dev-utils-15.11.90.tar.xz"; - sha256 = "0kn1s2djs0zz530a83hq23g54xjdk3jksq9a45vgg2l2383f48m0"; - name = "kde-dev-utils-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-dev-utils-15.12.0.tar.xz"; + sha256 = "0707skcsnw5bzk7234w6jd1kwwqi010dyq4vnajxg52kmf4592j8"; + name = "kde-dev-utils-15.12.0.tar.xz"; }; }; kdeedu-data = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdeedu-data-15.11.90.tar.xz"; - sha256 = "0fnrc0dbjxiwhbi9zknqh4n5805ydd4a7vxpnyzaqdc0gvbzvq0a"; - name = "kdeedu-data-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz"; + sha256 = "125rh8wmm5p9q6py1z25s22j1xfpn7dn1czd3l0s7diaygl28li3"; + name = "kdeedu-data-15.12.0.tar.xz"; }; }; kdegraphics-mobipocket = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-mobipocket-15.11.90.tar.xz"; - sha256 = "04nwsgbsysgqnjr85v4dq5rjaqys4f87vcn64rgfa6j9m6pkcx5w"; - name = "kdegraphics-mobipocket-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-mobipocket-15.12.0.tar.xz"; + sha256 = "0jqz242p20xdwhy9ncxv2njksz4ymz9xh3zvynwljq5ixw6qjayz"; + name = "kdegraphics-mobipocket-15.12.0.tar.xz"; }; }; kdegraphics-strigi-analyzer = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-strigi-analyzer-15.11.90.tar.xz"; - sha256 = "0d8c5kf0xd804irhdisdkhaxkh5qpjf37gnkklxm77i66k5x63p9"; - name = "kdegraphics-strigi-analyzer-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-strigi-analyzer-15.12.0.tar.xz"; + sha256 = "10gqbnpmzlv2rijy6yszr92aq51bsb63ypkxxpw1r9q2yzjb974b"; + name = "kdegraphics-strigi-analyzer-15.12.0.tar.xz"; }; }; kdegraphics-thumbnailers = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdegraphics-thumbnailers-15.11.90.tar.xz"; - sha256 = "1l7n3j8qf633limppvx4gy783fyrkwq129dj46bm48j8igrpkjcl"; - name = "kdegraphics-thumbnailers-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-thumbnailers-15.12.0.tar.xz"; + sha256 = "1lns9z65596rwc9899lrkw75lq8yk4hniys4c3q114s8gvqi89i5"; + name = "kdegraphics-thumbnailers-15.12.0.tar.xz"; }; }; kde-l10n-ar = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ar-15.11.90.tar.xz"; - sha256 = "01qkrgzvrll84mfq10ahrr9c55yd63avns5fl1yn83hg047qrxj1"; - name = "kde-l10n-ar-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ar-15.12.0.tar.xz"; + sha256 = "1mhz3dylhndh3y8qxvmz41jq6rvya8l7bvd58m3lavbj1lx7n2ks"; + name = "kde-l10n-ar-15.12.0.tar.xz"; }; }; kde-l10n-bg = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-bg-15.11.90.tar.xz"; - sha256 = "1cs0c4wsb247s8df5a7rsdjiky010i6b2m6m57jj593j8lmjgj95"; - name = "kde-l10n-bg-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bg-15.12.0.tar.xz"; + sha256 = "1lnsz222jv1n3hn6ahyyshrxn33dypfdfxrfb9kqilrlqb147pv3"; + name = "kde-l10n-bg-15.12.0.tar.xz"; }; }; kde-l10n-bs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-bs-15.11.90.tar.xz"; - sha256 = "12hcr2yzd86n4kyxdbdnzxxjg637xmn1n72s0i9wdybgp385544k"; - name = "kde-l10n-bs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bs-15.12.0.tar.xz"; + sha256 = "1qb4axsj4832l0n6k2lrw50jjvc0pv6zs8g0yrnybpgyfmxa8157"; + name = "kde-l10n-bs-15.12.0.tar.xz"; }; }; kde-l10n-ca = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ca-15.11.90.tar.xz"; - sha256 = "0xxx3hic96743z38n866w6d75w66hwkc5467l7y5dxba25z1m78m"; - name = "kde-l10n-ca-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca-15.12.0.tar.xz"; + sha256 = "016kqlllv3chwnryxg72p4g9n455q1xiyy5sqncpa3gw3w65c7s7"; + name = "kde-l10n-ca-15.12.0.tar.xz"; }; }; kde-l10n-ca_valencia = { - version = "ca_valencia-15.11.90"; + version = "ca_valencia-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ca@valencia-15.11.90.tar.xz"; - sha256 = "05fw6vks4dm2rpa47jpds9ss57178k9vz0rgg8jfc4jdvsgs1cj6"; - name = "kde-l10n-ca_valencia-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca@valencia-15.12.0.tar.xz"; + sha256 = "1prm8lsfa9a72g9av6yl3zyjbpvfp8a6bwcqs65l98zlysb7qfma"; + name = "kde-l10n-ca_valencia-15.12.0.tar.xz"; }; }; kde-l10n-cs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-cs-15.11.90.tar.xz"; - sha256 = "1vr2c9wkvpziklbynzbam8y97c047ja7gmqkpjj1mhwd9iy1rs8p"; - name = "kde-l10n-cs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-cs-15.12.0.tar.xz"; + sha256 = "1xf1zsmw7c5rvk9557jlrm643x6wxflk3r4zg6ddgk7nxs6l1mg0"; + name = "kde-l10n-cs-15.12.0.tar.xz"; }; }; kde-l10n-da = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-da-15.11.90.tar.xz"; - sha256 = "1ihxgqlrm8z1srkkz44r43zqa38rb36d6z5c18ipp7186aiwzhcs"; - name = "kde-l10n-da-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-da-15.12.0.tar.xz"; + sha256 = "033yy4p15994lraadsmhdfmz63cmp8pds65nsrmckbicb2a748id"; + name = "kde-l10n-da-15.12.0.tar.xz"; }; }; kde-l10n-de = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-de-15.11.90.tar.xz"; - sha256 = "0wzzg9ym17q88pb4dzg6jllmpsj49wb04sskinszvpngxxf1pl2d"; - name = "kde-l10n-de-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-de-15.12.0.tar.xz"; + sha256 = "1pl0rj1i8zkra27c36bj4qh5vpgb9x71zzx3dszx8pmb0y88mp55"; + name = "kde-l10n-de-15.12.0.tar.xz"; }; }; kde-l10n-el = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-el-15.11.90.tar.xz"; - sha256 = "0sn03wvrlsci2whhwza6vq5r5mr8x66xag0kkd9jmzx76xjxrdlg"; - name = "kde-l10n-el-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-el-15.12.0.tar.xz"; + sha256 = "1mza3kg2jha0c5bm0s9146yispp6rhx8z9lf0bis60ppn3zprmdi"; + name = "kde-l10n-el-15.12.0.tar.xz"; }; }; kde-l10n-en_GB = { - version = "en_GB-15.11.90"; + version = "en_GB-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-en_GB-15.11.90.tar.xz"; - sha256 = "04cv9aj7my5ffqq1lnraa628c6nkc3110zmzvchhagqnb0nhi20s"; - name = "kde-l10n-en_GB-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-en_GB-15.12.0.tar.xz"; + sha256 = "07nlriiccl1zaywycg25ai92avy3k7glmxglidkkngjrkg6pfq04"; + name = "kde-l10n-en_GB-15.12.0.tar.xz"; }; }; kde-l10n-eo = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-eo-15.11.90.tar.xz"; - sha256 = "027x3hxzwa1g40zp5vwza138yyvi99a64gm568xdzvxf0h5d4dcs"; - name = "kde-l10n-eo-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eo-15.12.0.tar.xz"; + sha256 = "0rn8vp25s4lza4x6s4i72wkilf043idq6smdn2mndzvff0bcpjy1"; + name = "kde-l10n-eo-15.12.0.tar.xz"; }; }; kde-l10n-es = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-es-15.11.90.tar.xz"; - sha256 = "04vwp1wrxlgzc716kfhbfng4mvcw47zwz54p2d8gjhviskh64k5i"; - name = "kde-l10n-es-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-es-15.12.0.tar.xz"; + sha256 = "02iamhlj3j4y6j1v7dd6scz4fffq0pn494gy8nvi343y3dbyvqvc"; + name = "kde-l10n-es-15.12.0.tar.xz"; }; }; kde-l10n-et = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-et-15.11.90.tar.xz"; - sha256 = "0fg6nscjhymz7dx9szcfhlx4mkx5rbqfrk4yikm849flr86i7njr"; - name = "kde-l10n-et-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-et-15.12.0.tar.xz"; + sha256 = "1j26ig05xp45g3cbgw80kz6kzi3966wb1hk3lr4w0l80y5f4ygxg"; + name = "kde-l10n-et-15.12.0.tar.xz"; }; }; kde-l10n-eu = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-eu-15.11.90.tar.xz"; - sha256 = "0czfx3xi32ldsa57hd5ab43lgw9p1nrz9q82vd0kz35yfgspvp0y"; - name = "kde-l10n-eu-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eu-15.12.0.tar.xz"; + sha256 = "1y0lzl5y05yv21blkllipzfjcs6k1s1znz7wkk0kcmqrvmwpx1r5"; + name = "kde-l10n-eu-15.12.0.tar.xz"; }; }; kde-l10n-fa = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fa-15.11.90.tar.xz"; - sha256 = "1ci4mni45imwdaf4jbisb1c1yx9kj2j3dr7267n1fvmbpxfx55bf"; - name = "kde-l10n-fa-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fa-15.12.0.tar.xz"; + sha256 = "09axzs55bnfdjwmlyanljnlcx7zb179hkc7i2179px4iywn4fcw5"; + name = "kde-l10n-fa-15.12.0.tar.xz"; }; }; kde-l10n-fi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fi-15.11.90.tar.xz"; - sha256 = "1nwd32h0il6bd9lxlkvxk2caf7d51w2ng6nwh8j95p4h95b8pb4j"; - name = "kde-l10n-fi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fi-15.12.0.tar.xz"; + sha256 = "141ikl2q9zhawg6ib6ppdsk03vs6fwlwzlxlg7bphfxr1nc202lw"; + name = "kde-l10n-fi-15.12.0.tar.xz"; }; }; kde-l10n-fr = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-fr-15.11.90.tar.xz"; - sha256 = "0airxvji5z0g2ydgj0npn906z6r2wp3hjlmf1frjl29nwbj46wxw"; - name = "kde-l10n-fr-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fr-15.12.0.tar.xz"; + sha256 = "170ijawwvx6kqdph09w8kb9m7zzs6xya2f73an0qvvwz40aixvnn"; + name = "kde-l10n-fr-15.12.0.tar.xz"; }; }; kde-l10n-ga = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ga-15.11.90.tar.xz"; - sha256 = "184i1mskqr0f59xr8g72ph1472z66y6pq4phs31s7wxqjx90icb7"; - name = "kde-l10n-ga-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ga-15.12.0.tar.xz"; + sha256 = "1d3b3wqdn5n9lqdrf63la73hiacm95mbx0x9khc8navrcx17ybmv"; + name = "kde-l10n-ga-15.12.0.tar.xz"; }; }; kde-l10n-gl = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-gl-15.11.90.tar.xz"; - sha256 = "0lllkr65dd7s388d5khj1p6q6iymdrs3m1jmj0v0npycf613pcvf"; - name = "kde-l10n-gl-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-gl-15.12.0.tar.xz"; + sha256 = "04d74sdqgdg5rzvzg0pnk1yj4x7x0i0k6ki2npyzd9jymcasckp7"; + name = "kde-l10n-gl-15.12.0.tar.xz"; }; }; kde-l10n-he = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-he-15.11.90.tar.xz"; - sha256 = "0zdmpgxmzigwpliysjcjr80fdrywvk8as6s8ym1z5aliiqb8b78q"; - name = "kde-l10n-he-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-he-15.12.0.tar.xz"; + sha256 = "1r0j7fjg3k97dhs3q8myywm9n7cn073wy05hwv3zwc8124invgyb"; + name = "kde-l10n-he-15.12.0.tar.xz"; }; }; kde-l10n-hi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hi-15.11.90.tar.xz"; - sha256 = "0qkfhdypj41ympfqk9m6nsg868wfjf1hcc785r0fh4a32mbc6h98"; - name = "kde-l10n-hi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hi-15.12.0.tar.xz"; + sha256 = "1ki2hd2ixvyiqkldhinmidbg9gw1ivrwgynlcjx31c0aasyndbjj"; + name = "kde-l10n-hi-15.12.0.tar.xz"; }; }; kde-l10n-hr = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hr-15.11.90.tar.xz"; - sha256 = "0aq8lnibjvjc0vchy1jfadidfl31xwwrxdmd3b3c6cd2v6fyhp5k"; - name = "kde-l10n-hr-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hr-15.12.0.tar.xz"; + sha256 = "0skqv67jnwaw2zcnb73w5yfdpqagmx1bm1p6vrbh31ra8gc0v32b"; + name = "kde-l10n-hr-15.12.0.tar.xz"; }; }; kde-l10n-hu = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-hu-15.11.90.tar.xz"; - sha256 = "0y1awp3rfmxw5h595v5cv8fqswyyjg3x69b6dhmqnrsv9jh6ww3q"; - name = "kde-l10n-hu-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hu-15.12.0.tar.xz"; + sha256 = "0hm7lwajgnvqawpabbkb7i8w39xbl8dgnb8bbfxcaz9gilhzy4in"; + name = "kde-l10n-hu-15.12.0.tar.xz"; }; }; kde-l10n-ia = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ia-15.11.90.tar.xz"; - sha256 = "1c7sfm5nh6fbc7h0hia1w9wsszggdii6ssrly9pxxghnifx1ry8x"; - name = "kde-l10n-ia-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ia-15.12.0.tar.xz"; + sha256 = "0kpj2zw1id9l9i9mhjq5wxmvx204aj1yk47yyrw6yca8mlsj3mzl"; + name = "kde-l10n-ia-15.12.0.tar.xz"; }; }; kde-l10n-id = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-id-15.11.90.tar.xz"; - sha256 = "1k5ixg654v9pfzc0z5cf76kzfc4432shyw6hiq2h861zy96vlvz7"; - name = "kde-l10n-id-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-id-15.12.0.tar.xz"; + sha256 = "0xwkfa5dd1bpi345aagrbimy0jkgswjvzq1wgz4n6p3d8kazyvj0"; + name = "kde-l10n-id-15.12.0.tar.xz"; }; }; kde-l10n-is = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-is-15.11.90.tar.xz"; - sha256 = "1gsvgydqki3h1hqmmazcj66w4f5q1w539yjksw7izw64wd94sn18"; - name = "kde-l10n-is-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-is-15.12.0.tar.xz"; + sha256 = "0n9ikkni821lsk6l3wvk8nir4rjnyb3pfl9dw1ffqh1q62wn8z7c"; + name = "kde-l10n-is-15.12.0.tar.xz"; }; }; kde-l10n-it = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-it-15.11.90.tar.xz"; - sha256 = "11wdxb18wjzvv72ljzwqpbybimqg7aj3qdr1d6r2h2bmv19q5zy4"; - name = "kde-l10n-it-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-it-15.12.0.tar.xz"; + sha256 = "0h5bjm754gcls7gnzdvdcggnvbbqx0l16902bygdh3z2gyp76avy"; + name = "kde-l10n-it-15.12.0.tar.xz"; }; }; kde-l10n-ja = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ja-15.11.90.tar.xz"; - sha256 = "12mpnbrq7knkjmi3fp22qq18r0fzvii6hrgn45kyqf80s5m9cslm"; - name = "kde-l10n-ja-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ja-15.12.0.tar.xz"; + sha256 = "0ga202v7vi262khdwplkljc1hdf9y85dk0g09wb70gc0mm52zzyg"; + name = "kde-l10n-ja-15.12.0.tar.xz"; }; }; kde-l10n-kk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-kk-15.11.90.tar.xz"; - sha256 = "0qhf5a8xwyb7nxgndainzycy4r8v1xk2qqbj3hcyhy9kz7g9cb66"; - name = "kde-l10n-kk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-kk-15.12.0.tar.xz"; + sha256 = "0334ida4dhm8l6m1kqgksz68ckrfxas5b3vgnm7f4058dqvm1w6b"; + name = "kde-l10n-kk-15.12.0.tar.xz"; }; }; kde-l10n-km = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-km-15.11.90.tar.xz"; - sha256 = "1i67pmc9q4dh96zdinhby2ffgwv3q0yzl1r83n3gk70vigbqdm4x"; - name = "kde-l10n-km-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-km-15.12.0.tar.xz"; + sha256 = "18ln6h2fiwspybiripqmglrkq81z0q4llnrqz7c7gzm1jg85k8w2"; + name = "kde-l10n-km-15.12.0.tar.xz"; }; }; kde-l10n-ko = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ko-15.11.90.tar.xz"; - sha256 = "1l453c5na6n1pmls5w702zcv0vxcf3v6a6xvkjawwr58i6dzcwkx"; - name = "kde-l10n-ko-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ko-15.12.0.tar.xz"; + sha256 = "13a8iik27klxp07m798g66r5a547py2ii914pdbrx65hzgzvxn6l"; + name = "kde-l10n-ko-15.12.0.tar.xz"; }; }; kde-l10n-lt = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-lt-15.11.90.tar.xz"; - sha256 = "0kwv9hgk9v17wg1hnx5rrlxdzjjdhj4hsgvl4jps11vaxw6z5l3y"; - name = "kde-l10n-lt-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lt-15.12.0.tar.xz"; + sha256 = "1ks9ywlhxzgick1iradagc78xcnfnwmcw49d3pqdjdpw6icz1xs8"; + name = "kde-l10n-lt-15.12.0.tar.xz"; }; }; kde-l10n-lv = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-lv-15.11.90.tar.xz"; - sha256 = "0w5cq3jrjvwyzsnwj57f2n342si9xy2bggf0904yzi2kg9fy503m"; - name = "kde-l10n-lv-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lv-15.12.0.tar.xz"; + sha256 = "0l9shh6rg44qgw4lh9kp6b4rs51hn0w04dgrga0hrdm28cr1npl7"; + name = "kde-l10n-lv-15.12.0.tar.xz"; }; }; kde-l10n-mr = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-mr-15.11.90.tar.xz"; - sha256 = "1wkxz8v8y1fkzbwdmiwphfmgdgar4cbs37d32cvlql94ivwg7bm8"; - name = "kde-l10n-mr-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-mr-15.12.0.tar.xz"; + sha256 = "0liivk7bibz125hj1dcq8ilwyzhdlq7bs4adiicc26dp9r1way4c"; + name = "kde-l10n-mr-15.12.0.tar.xz"; }; }; kde-l10n-nb = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nb-15.11.90.tar.xz"; - sha256 = "05xbfc1pv8m8qdyh9c9cxzq59xrgd1amkc00nwk2sxbnwr3nw8ks"; - name = "kde-l10n-nb-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nb-15.12.0.tar.xz"; + sha256 = "1glnp3qqrhsy7vkmljqzx8ghsl1qyvmdcpdvhnjw8rdfdss5pcx2"; + name = "kde-l10n-nb-15.12.0.tar.xz"; }; }; kde-l10n-nds = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nds-15.11.90.tar.xz"; - sha256 = "00l83v501p73kbjwhhc22gxvyjd2fgyhdw41z89a1ghb0gg721pd"; - name = "kde-l10n-nds-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nds-15.12.0.tar.xz"; + sha256 = "1p1fm1jkic7gzw2n762yfq6w9laakx831mdgl3gdp0xgx7x8mg1q"; + name = "kde-l10n-nds-15.12.0.tar.xz"; }; }; kde-l10n-nl = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nl-15.11.90.tar.xz"; - sha256 = "0wdfxl5a4n0iqw9sk45pbj78rp8gb1r4y1l2abkbwr8jfmfamjn1"; - name = "kde-l10n-nl-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nl-15.12.0.tar.xz"; + sha256 = "1ki6bhw85zkgl132bf1q677r409sdvf7gfd51cj9p0fy63r87wym"; + name = "kde-l10n-nl-15.12.0.tar.xz"; }; }; kde-l10n-nn = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-nn-15.11.90.tar.xz"; - sha256 = "1wzmf0yrz5dn87xg6z8df8izvdv7fricazsy5wb81aksi24hk2n2"; - name = "kde-l10n-nn-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nn-15.12.0.tar.xz"; + sha256 = "1hrsk4kdk5w2bf0iplhpmajkrzflgxbwdks3vd2q5zrqkzx3ykgd"; + name = "kde-l10n-nn-15.12.0.tar.xz"; }; }; kde-l10n-pa = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pa-15.11.90.tar.xz"; - sha256 = "1gwphwmwg6dgmw9hak7ps1xhjkmq76cs2rbbfl5z31zjv0lhzrdm"; - name = "kde-l10n-pa-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pa-15.12.0.tar.xz"; + sha256 = "1kyqdz490ix0qm3ck2c9grqkdiqdf7aw659kvdjsh34f818ns5sq"; + name = "kde-l10n-pa-15.12.0.tar.xz"; }; }; kde-l10n-pl = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pl-15.11.90.tar.xz"; - sha256 = "1db898g2xn1i6w343axcv91aca32n0dhxh6cri6p6jq1a0rc9vbr"; - name = "kde-l10n-pl-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pl-15.12.0.tar.xz"; + sha256 = "1p3z3anik2fh9wi36ag11kyk4mfv6gjx9sgkxxdzkyd2i67jig2y"; + name = "kde-l10n-pl-15.12.0.tar.xz"; }; }; kde-l10n-pt = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pt-15.11.90.tar.xz"; - sha256 = "00x2iwd6929ry5r4a3h00rsxn7ssnmq29zsra2axl796dyqdbzds"; - name = "kde-l10n-pt-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt-15.12.0.tar.xz"; + sha256 = "04slrcs6f3bbi73l51lga42srx022x00lzlmn8m2617922kag92f"; + name = "kde-l10n-pt-15.12.0.tar.xz"; }; }; kde-l10n-pt_BR = { - version = "pt_BR-15.11.90"; + version = "pt_BR-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-pt_BR-15.11.90.tar.xz"; - sha256 = "06xnn7xdzl5lqasy2sh6a323j1ny8f8i8z8ggp4d8igwcni7rkvy"; - name = "kde-l10n-pt_BR-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt_BR-15.12.0.tar.xz"; + sha256 = "1n38d2p47bavmn248sdpb0w8k9kqxpas7rkh3dgnfwsjgd7bsb6g"; + name = "kde-l10n-pt_BR-15.12.0.tar.xz"; }; }; kde-l10n-ro = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ro-15.11.90.tar.xz"; - sha256 = "0mganx5zh51inlrz9iyk8cvp7w33qd3y1vyxw6v1aclcc91dl4ba"; - name = "kde-l10n-ro-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ro-15.12.0.tar.xz"; + sha256 = "0m9lx63d0q53c3rxmznmrsyi3kpgflg8giqgspni1pkx3injzdyv"; + name = "kde-l10n-ro-15.12.0.tar.xz"; }; }; kde-l10n-ru = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ru-15.11.90.tar.xz"; - sha256 = "0d0lz1jzrkv9ymdwadlmbqns9n521nv1cc0243hv7piwg9v02v1k"; - name = "kde-l10n-ru-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ru-15.12.0.tar.xz"; + sha256 = "0ki1cj9bngzjjqmlsi6rgbvrkxbsr53qdyfxqndbab5r76yzkjnz"; + name = "kde-l10n-ru-15.12.0.tar.xz"; }; }; kde-l10n-sk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sk-15.11.90.tar.xz"; - sha256 = "18y301b845b3zf5grcf9h4x97qc05jg7mw23j54d590x5k8ihbp6"; - name = "kde-l10n-sk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sk-15.12.0.tar.xz"; + sha256 = "1hsi3simcyc1239rjiybzv7jmcrmmc9js543s1nw9y84jn6kk78k"; + name = "kde-l10n-sk-15.12.0.tar.xz"; }; }; kde-l10n-sl = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sl-15.11.90.tar.xz"; - sha256 = "1mqqzhsr8m7y7pygzx9qyqq4hzpccrp20d42n2dgbqqwy4w10nyh"; - name = "kde-l10n-sl-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sl-15.12.0.tar.xz"; + sha256 = "0fld0lgr070w1v9830700182lslm7pmkyrxarwbf11g7a4wzsc1s"; + name = "kde-l10n-sl-15.12.0.tar.xz"; }; }; kde-l10n-sr = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sr-15.11.90.tar.xz"; - sha256 = "1rb3ivad7gskdnc9i7n6vm6a8i2davrs6b7imd06lgrcxzq56yqf"; - name = "kde-l10n-sr-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sr-15.12.0.tar.xz"; + sha256 = "028frgvzy000l38kpixyfxvcx9skwf9w2x5xl31172icwzyfvj28"; + name = "kde-l10n-sr-15.12.0.tar.xz"; }; }; kde-l10n-sv = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-sv-15.11.90.tar.xz"; - sha256 = "1xs1jjjzbihxj3ix4dbmvs329b9qhb1di2933dr41qlqm4kdnczh"; - name = "kde-l10n-sv-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sv-15.12.0.tar.xz"; + sha256 = "0i2qkz02nfcxi3s41as65d0m1bcp85j1024vyd0g746dy9d4qq8b"; + name = "kde-l10n-sv-15.12.0.tar.xz"; }; }; kde-l10n-tr = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-tr-15.11.90.tar.xz"; - sha256 = "055crwxa0fim4mpb1ghpcdjrnysqbnymc3c1yz0m3gkzy1bjlf3j"; - name = "kde-l10n-tr-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-tr-15.12.0.tar.xz"; + sha256 = "1biw08ad87l3bpg39iz42a5chdbmarp7jq9gk6zd1z76iv930may"; + name = "kde-l10n-tr-15.12.0.tar.xz"; }; }; kde-l10n-ug = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-ug-15.11.90.tar.xz"; - sha256 = "038lgvz17rnm8lx22gvisxf3r3ix80fvdvq18n8bnin3lfjqdhm7"; - name = "kde-l10n-ug-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ug-15.12.0.tar.xz"; + sha256 = "1lhmxa9k7n0za60c9l4x0k002mzgd5hyjf2y8jwh2788vd6760fq"; + name = "kde-l10n-ug-15.12.0.tar.xz"; }; }; kde-l10n-uk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-uk-15.11.90.tar.xz"; - sha256 = "0yf5nja326qrqqqn7ssli83n8llqiq244a9q5ri4khdvp0i9ni7r"; - name = "kde-l10n-uk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-uk-15.12.0.tar.xz"; + sha256 = "0mwmzf5zqda3py1xd6sk3wsz4636h0mg6mvd05raajiz7986bp30"; + name = "kde-l10n-uk-15.12.0.tar.xz"; }; }; kde-l10n-wa = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-wa-15.11.90.tar.xz"; - sha256 = "03wxmf88vjg4h9dmi7jhzzq4vzabc2pr3gvl53b78l533x0ajss4"; - name = "kde-l10n-wa-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-wa-15.12.0.tar.xz"; + sha256 = "184syr1kydbykyjprpvh1mhhi31snjadjphzapcb1d656rlw99ig"; + name = "kde-l10n-wa-15.12.0.tar.xz"; }; }; kde-l10n-zh_CN = { - version = "zh_CN-15.11.90"; + version = "zh_CN-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-zh_CN-15.11.90.tar.xz"; - sha256 = "04yzvrpykp07rnml1p9xdh32cnil9s2jrn2h7826gf29imwk4b79"; - name = "kde-l10n-zh_CN-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_CN-15.12.0.tar.xz"; + sha256 = "1jyqcaa1xbgf27bpjwjyks93zj940j4f1i7ngs5d379w2g8jp8d1"; + name = "kde-l10n-zh_CN-15.12.0.tar.xz"; }; }; kde-l10n-zh_TW = { - version = "zh_TW-15.11.90"; + version = "zh_TW-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-l10n/kde-l10n-zh_TW-15.11.90.tar.xz"; - sha256 = "0rbin45cp4iwn3pcvgks154y6jcj4qp6ah1is7l83spn5wyjw6lj"; - name = "kde-l10n-zh_TW-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_TW-15.12.0.tar.xz"; + sha256 = "0wpw1shcp2bp55smcx0xxw7g7r1rd5sm9ca9zgx979mddv8gmil3"; + name = "kde-l10n-zh_TW-15.12.0.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.15"; + src = fetchurl { + url = "${mirror}/stable/applications/15.12.0/src/kdelibs-4.14.15.tar.xz"; + sha256 = "0698nbih5sgkr08rrsap64kpc3vil84hzgdyara62v0wmffdr7a7"; + name = "kdelibs-4.14.15.tar.xz"; }; }; kdenetwork-filesharing = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdenetwork-filesharing-15.11.90.tar.xz"; - sha256 = "19rkvxgkqkqrnsj0f1lh6wjm6fwsvl0n4hvfmy4wq2w669v7b1wx"; - name = "kdenetwork-filesharing-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenetwork-filesharing-15.12.0.tar.xz"; + sha256 = "03npxv2p9hy7dl6h7d1yn4f8caycgfxvgq6r8rar3lq8c170bqgj"; + name = "kdenetwork-filesharing-15.12.0.tar.xz"; }; }; kdenetwork-strigi-analyzers = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdenetwork-strigi-analyzers-15.11.90.tar.xz"; - sha256 = "11nhrfvjqfasy9xyh3phqkbi3519z3hcf4d797w9jgd6386vw32d"; - name = "kdenetwork-strigi-analyzers-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenetwork-strigi-analyzers-15.12.0.tar.xz"; + sha256 = "01axll3636r5xqzrwjwqgq8gcnm6dcbmxfr07g81wb4q479py78g"; + name = "kdenetwork-strigi-analyzers-15.12.0.tar.xz"; }; }; kdenlive = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdenlive-15.11.90.tar.xz"; - sha256 = "0cfhcd2wvski14w5zzn2vyvya5gymigp57wl54whll5f3p67x4h4"; - name = "kdenlive-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenlive-15.12.0.tar.xz"; + sha256 = "1y7vhd0i3pw67lh20f52ngcc3japnisqgs7blf84pih7ppj4lvss"; + name = "kdenlive-15.12.0.tar.xz"; }; }; kdepim = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdepim-15.11.90.tar.xz"; - sha256 = "0iwwqmw7m06wjmx6iw2kn9ldnfz2pkvac5jvq78pmnf493v7avva"; - name = "kdepim-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepim-15.12.0.tar.xz"; + sha256 = "0qh5iw8w3b2n1zv9c5hh0bcwrfisfk7ks0xmiqc711zc5r9a5nwh"; + name = "kdepim-15.12.0.tar.xz"; }; }; kdepimlibs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdepimlibs-15.11.90.tar.xz"; - sha256 = "0x575rqkfxfckc4rsckxiqi85mlvshqxn7pxik84iz98nrz8p73q"; - name = "kdepimlibs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepimlibs-15.12.0.tar.xz"; + sha256 = "1zyjsq8fmrs2xy1zxcpkjz70sxx7nvnvgvxnx9q2dc4ikyqf1hqr"; + name = "kdepimlibs-15.12.0.tar.xz"; }; }; kdepim-runtime = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdepim-runtime-15.11.90.tar.xz"; - sha256 = "16ms6j9qcsd4xpc96l6ck88x805dzafz16d7zm0whwkpkghb7jb3"; - name = "kdepim-runtime-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepim-runtime-15.12.0.tar.xz"; + sha256 = "0d9p6wvg05y54mi2aa6x6882rgk6hqr9z85iqmcd4lfsw50lp7v3"; + name = "kdepim-runtime-15.12.0.tar.xz"; }; }; kde-runtime = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kde-runtime-15.11.90.tar.xz"; - sha256 = "020gb46g8wnqypx0kxifvyfvg9vabi6cyiq4m9qg5gqixwzbfhv7"; - name = "kde-runtime-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-runtime-15.12.0.tar.xz"; + sha256 = "1qlqqicnysqfl32rpddklv1qhy8wqnhvchl7dm62i94w50w86am6"; + name = "kde-runtime-15.12.0.tar.xz"; }; }; kdesdk-kioslaves = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-kioslaves-15.11.90.tar.xz"; - sha256 = "03m5sxagca23vb1h9s3hakn0wyr5z3wchnzsl1pnk6llbrb4s0mz"; - name = "kdesdk-kioslaves-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-kioslaves-15.12.0.tar.xz"; + sha256 = "1rgynw1zzn72sslgkxihrx4swx0sbz72a52smkjjhbykj10nlp54"; + name = "kdesdk-kioslaves-15.12.0.tar.xz"; }; }; kdesdk-strigi-analyzers = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-strigi-analyzers-15.11.90.tar.xz"; - sha256 = "1ck0mcpqm0fjyc0q46y7mwcl7p23fqi5smnllvx5f2xwzkcpp9pr"; - name = "kdesdk-strigi-analyzers-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-strigi-analyzers-15.12.0.tar.xz"; + sha256 = "0cxrrv6ry4bjhyqw8nlzin4wajqcf0rshaiq4scgb8iy5g2cpfr5"; + name = "kdesdk-strigi-analyzers-15.12.0.tar.xz"; }; }; kdesdk-thumbnailers = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdesdk-thumbnailers-15.11.90.tar.xz"; - sha256 = "1l8gq4hm8r6g2nr81bb2d7vyx64b64jbcawqgsg9p90g83j5zybd"; - name = "kdesdk-thumbnailers-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-thumbnailers-15.12.0.tar.xz"; + sha256 = "0w1lcvv2h4ndv91i4di9v5m6d9df5a8r93cblzm57z3izflpvf89"; + name = "kdesdk-thumbnailers-15.12.0.tar.xz"; }; }; kdewebdev = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdewebdev-15.11.90.tar.xz"; - sha256 = "0shwkqjc7r415m4zsz3cs6gks4zh9z4h83r0vjzlcmi8crnimwh7"; - name = "kdewebdev-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdewebdev-15.12.0.tar.xz"; + sha256 = "1xq0ayrnbskb0g6bmvcayfxkb6sws4vvjhv3s65im1rmsrqnrgly"; + name = "kdewebdev-15.12.0.tar.xz"; }; }; kdf = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdf-15.11.90.tar.xz"; - sha256 = "14yn33svspsrh51dmnvm5q84hhxrmfasmxpy2gg4qshba85k60mf"; - name = "kdf-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdf-15.12.0.tar.xz"; + sha256 = "0gahpl2la6xkhbkh607b3p07csja1v43i3m29q47f3gaxj4dxpln"; + name = "kdf-15.12.0.tar.xz"; }; }; kdiamond = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kdiamond-15.11.90.tar.xz"; - sha256 = "0qfs6jcdvvmffdpzqkb3r8s2i6r26w3ywcd914fwww4s8qghvhvg"; - name = "kdiamond-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdiamond-15.12.0.tar.xz"; + sha256 = "04w7sc22cf1rvgqav2vdj1msbdggq77a8znsqgy0my2mbsqwa175"; + name = "kdiamond-15.12.0.tar.xz"; }; }; kfloppy = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kfloppy-15.11.90.tar.xz"; - sha256 = "01qwkp7d117rbxfwm2w6h2rg547c9ih6bqwxc1i1j82cggmrb7sw"; - name = "kfloppy-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kfloppy-15.12.0.tar.xz"; + sha256 = "1ihbbrrxdhgkh7nk8wmpvibxiw4a7nazw0pi88pxflbjjc4f67sn"; + name = "kfloppy-15.12.0.tar.xz"; }; }; kfourinline = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kfourinline-15.11.90.tar.xz"; - sha256 = "01lav9pgzcb8z9ranqzzf12iq0z0d5jvrn04cr927m3qnx434hqn"; - name = "kfourinline-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kfourinline-15.12.0.tar.xz"; + sha256 = "1z8y1q7ij9pc5wzfhpvy16yh6c000gwhas9kq3sjhzz9qynw9bd1"; + name = "kfourinline-15.12.0.tar.xz"; }; }; kgeography = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kgeography-15.11.90.tar.xz"; - sha256 = "0x4acd9cbhabsrz88y7iya6gnpdxh19bgkxhqyd3xj70nh1n43jh"; - name = "kgeography-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgeography-15.12.0.tar.xz"; + sha256 = "1sj25ijc3n1xl8xmmkg784dxjcwxg4nviw89114qllbiy6q3lczh"; + name = "kgeography-15.12.0.tar.xz"; }; }; kget = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kget-15.11.90.tar.xz"; - sha256 = "0gzx0bnnp885bcx2bc0b5wp97dcazm5wx6aw0rlkrvz7vljb2jmh"; - name = "kget-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kget-15.12.0.tar.xz"; + sha256 = "0n9ah65c000x6xm04704pj6gxcgsbjfscw3gccv73vwin54y2ij5"; + name = "kget-15.12.0.tar.xz"; }; }; kgoldrunner = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kgoldrunner-15.11.90.tar.xz"; - sha256 = "1aks2ipzmkkrmmjz7bic0ggvsdgn8zd8b1sk3f8rz6z3iin8s7sh"; - name = "kgoldrunner-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgoldrunner-15.12.0.tar.xz"; + sha256 = "0lril6s1m9frvkac531myg3jsx2xd1pp2ggnx0463hvfzgk73nd7"; + name = "kgoldrunner-15.12.0.tar.xz"; }; }; kgpg = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kgpg-15.11.90.tar.xz"; - sha256 = "0i0zkzm30gq84b1r3gpbbqksicv399al46rqqzahalcl3j5hq9kg"; - name = "kgpg-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgpg-15.12.0.tar.xz"; + sha256 = "04y6amdjmnqg80zsrwxwixgazr3ar90a7w9mj7fiv1982xcl6wis"; + name = "kgpg-15.12.0.tar.xz"; }; }; khangman = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/khangman-15.11.90.tar.xz"; - sha256 = "0xbybx7v8pm7ff30ckfiylb6lrf0acbnwd80wy5rabplnjq56k4z"; - name = "khangman-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz"; + sha256 = "1d8sf29ib1v06f4apg7g40qbf61zhgpw48pkgwxs01fdax0fahlz"; + name = "khangman-15.12.0.tar.xz"; }; }; kholidays = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kholidays-15.11.90.tar.xz"; - sha256 = "0pyd98ir6cs4abflk9lzsp847vi4wib9j970xzdp9sbi2rwqjcjh"; - name = "kholidays-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kholidays-15.12.0.tar.xz"; + sha256 = "0nclblhfjanvisn8xnis2b5y06cgk5wgqwzakywr74rffsg7nsqh"; + name = "kholidays-15.12.0.tar.xz"; }; }; kidentitymanagement = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kidentitymanagement-15.11.90.tar.xz"; - sha256 = "19qx3g25nw81fr2izzs52mih352yrf47d7shdk51ivr31ch728cb"; - name = "kidentitymanagement-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kidentitymanagement-15.12.0.tar.xz"; + sha256 = "04x01w4lvn07nybsivzh0a44cf9axxn7k8m1gdwhynqd4pjlsv4h"; + name = "kidentitymanagement-15.12.0.tar.xz"; }; }; kig = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kig-15.11.90.tar.xz"; - sha256 = "1j678j0csm1xjk1yx38ml9929q9mxq8rnwpdybxfh40ckqw62qk4"; - name = "kig-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kig-15.12.0.tar.xz"; + sha256 = "00163mm6ac3njw1farwm4rml1c9pkxp0583w10siwq7sfz28kx72"; + name = "kig-15.12.0.tar.xz"; }; }; kigo = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kigo-15.11.90.tar.xz"; - sha256 = "14dh86wwmxk3xpcvar7msx7rd6czqmm54ddr464p0i2r1vr9r1xg"; - name = "kigo-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kigo-15.12.0.tar.xz"; + sha256 = "15r298wxxl2ja6awmsvdxjrkp02hb70q097ry5vg2cmbay96drkj"; + name = "kigo-15.12.0.tar.xz"; }; }; killbots = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/killbots-15.11.90.tar.xz"; - sha256 = "1rv0m7a4v8bypzwghfzir0gnh8q3l0ql5m88q3796dms3xdsksdf"; - name = "killbots-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/killbots-15.12.0.tar.xz"; + sha256 = "1kgs427jxdg7kl7vp7a4ycf2bcpr3dcbyaimyi0c77vcsa9n3jq5"; + name = "killbots-15.12.0.tar.xz"; }; }; kimap = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kimap-15.11.90.tar.xz"; - sha256 = "1x26xxkiz6a60dh84r8fbpb99lacpwi9rvsv77wk54nm8anzwr4l"; - name = "kimap-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kimap-15.12.0.tar.xz"; + sha256 = "0xc3dki8qxwax89ic2qxc6kwxxc45fyg6lchm0j0n1b7h2z0d1km"; + name = "kimap-15.12.0.tar.xz"; }; }; kio-extras = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kio-extras-15.11.90.tar.xz"; - sha256 = "1pgvbxkx6asclbfv450x6ih9g84gwxd21gkp7s2xbya9c22445wf"; - name = "kio-extras-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kio-extras-15.12.0.tar.xz"; + sha256 = "0l697zllgd1myhabsj0sg4yrk1qlhap80r82im7lil48nzj9lh77"; + name = "kio-extras-15.12.0.tar.xz"; }; }; kiriki = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kiriki-15.11.90.tar.xz"; - sha256 = "0v9d2gkgk3ad8p40k5qdczxypqziaghr7fxq54cs2cpf2mkir95b"; - name = "kiriki-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kiriki-15.12.0.tar.xz"; + sha256 = "0xfg70wd93hqzlvdaarv2nni35641gyp9in9k0fr17q7h8znpmak"; + name = "kiriki-15.12.0.tar.xz"; }; }; kiten = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kiten-15.11.90.tar.xz"; - sha256 = "0xmcga41bcg5map804jqaag4z7w4i1dffy7pn3hx7hyqyk0wdad7"; - name = "kiten-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kiten-15.12.0.tar.xz"; + sha256 = "194f85p7kg0z2jd5r229nawzqi091c4giwms99hf0dj9sl0mga3r"; + name = "kiten-15.12.0.tar.xz"; }; }; kjumpingcube = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kjumpingcube-15.11.90.tar.xz"; - sha256 = "052ig7xf5q3f0cwn9khh9pm51n527iv4659nphg81hl2cx7cxn21"; - name = "kjumpingcube-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kjumpingcube-15.12.0.tar.xz"; + sha256 = "0zhl528h38x64r1mq0bjmh67487np3izcfij6d1w603mabhp146n"; + name = "kjumpingcube-15.12.0.tar.xz"; }; }; kldap = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kldap-15.11.90.tar.xz"; - sha256 = "1rqgypkk0l1f8wc3wkd5bwpifpgd9411lkqw9qv748jvnxwyz4hm"; - name = "kldap-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kldap-15.12.0.tar.xz"; + sha256 = "110pfp650w2ll02xcc0wb7d0fj3bp88k4l1mnyad0xw9acsd2l8r"; + name = "kldap-15.12.0.tar.xz"; }; }; klettres = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/klettres-15.11.90.tar.xz"; - sha256 = "01qkhnbjqlr8zvr4w835kvgxn5vnnrvb1g2c4cvbnj6093p583h7"; - name = "klettres-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klettres-15.12.0.tar.xz"; + sha256 = "016hnl7pihikanapn79qj49q5fc3pgx7pdmqhs8v6kqic20wgrj1"; + name = "klettres-15.12.0.tar.xz"; }; }; klickety = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/klickety-15.11.90.tar.xz"; - sha256 = "0apl56jcvjk67qy05nyn0mq9pakj6vqfw9k1sgzpcx1nppzn0whp"; - name = "klickety-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klickety-15.12.0.tar.xz"; + sha256 = "092x764bflnwjlmw4mdzpi4q6i206axy711h3fibkdlmnir7yj9w"; + name = "klickety-15.12.0.tar.xz"; }; }; klines = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/klines-15.11.90.tar.xz"; - sha256 = "07dbf0dwabwd6hckbgdxj2a5wfv5ikc6slmf907ba7v82bhkhxas"; - name = "klines-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klines-15.12.0.tar.xz"; + sha256 = "0qs93fl1snsycbzy074xx96p5s29fjs8qwz84jz2qh1p7jb0kdn1"; + name = "klines-15.12.0.tar.xz"; }; }; kmag = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmag-15.11.90.tar.xz"; - sha256 = "07ysgxjahs8r2cni0fy9sidig2sm980rrihl12g75n1v9v10km7y"; - name = "kmag-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmag-15.12.0.tar.xz"; + sha256 = "1bx65bz7j4ab3zmc4sl6j9hdp7bmr3287ly66n3bidyc9rn25w02"; + name = "kmag-15.12.0.tar.xz"; }; }; kmahjongg = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmahjongg-15.11.90.tar.xz"; - sha256 = "18g4ng4a5qf49cb54zbijcywkwazncqcqlq3148h0iib5q24ghpq"; - name = "kmahjongg-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmahjongg-15.12.0.tar.xz"; + sha256 = "1m56qq98f344g9snnpfg1z26xnca6zr6av29i4fnx4p33hcbg9rx"; + name = "kmahjongg-15.12.0.tar.xz"; }; }; kmailtransport = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmailtransport-15.11.90.tar.xz"; - sha256 = "012ghx7hw6b72zpbgac4cak8azv12i556bvhywkhsw539zk4psqp"; - name = "kmailtransport-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmailtransport-15.12.0.tar.xz"; + sha256 = "1v20v0cy34cpp559zcn5cbbqv6gxy60msmyar5dlyx2xxi7jrzrc"; + name = "kmailtransport-15.12.0.tar.xz"; }; }; kmbox = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmbox-15.11.90.tar.xz"; - sha256 = "13v3awx4qxdr7vnl1ngm9gs8n9jsk1rqg7fqhlj7daa4h4nvjzas"; - name = "kmbox-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmbox-15.12.0.tar.xz"; + sha256 = "0kygxv69zcsf3zjdlnxcxbnbv2zdsx8n4z2ai4smdkwm3gp15h34"; + name = "kmbox-15.12.0.tar.xz"; }; }; kmime = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmime-15.11.90.tar.xz"; - sha256 = "0yn8x4zi5ra8ykcncy85s764skwcimskhs96jc8qzm8bcdd9pzpf"; - name = "kmime-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmime-15.12.0.tar.xz"; + sha256 = "1gzir5bz2rbd24hwr9v7k6ri86ga5c7l1xgyr15pzdpa4q5nr975"; + name = "kmime-15.12.0.tar.xz"; }; }; kmines = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmines-15.11.90.tar.xz"; - sha256 = "1lyjpzfjz6pl1s38xj4186jpl29lvi063fvcmhi9dfny2nkmfa15"; - name = "kmines-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmines-15.12.0.tar.xz"; + sha256 = "07pn7k9ls8h8xc4wap3zgrz2z0x4yf9krmb8qgjk7k5basr6bcmy"; + name = "kmines-15.12.0.tar.xz"; }; }; kmix = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmix-15.11.90.tar.xz"; - sha256 = "0gc0139xxw5rm00x8kqyqgkyr4yr48gb17a7x9hxf7qlwydjvvav"; - name = "kmix-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmix-15.12.0.tar.xz"; + sha256 = "0cfs6xgj1yqv5ig8hx2m43a1yzjmbxkqhwj4gfpzl1anmhywmqz0"; + name = "kmix-15.12.0.tar.xz"; }; }; kmousetool = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmousetool-15.11.90.tar.xz"; - sha256 = "1dw7cnd40y1rigv033b6d6q140f56hd9cg1lsv3lg52pgfmdpa3n"; - name = "kmousetool-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmousetool-15.12.0.tar.xz"; + sha256 = "08mbjbf4i9xfadblwrviq9l3hfc2l0zpfhv1v6a1piz1cijr3zlz"; + name = "kmousetool-15.12.0.tar.xz"; }; }; kmouth = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmouth-15.11.90.tar.xz"; - sha256 = "14xbxdrpyc12lgx0l66vfxicz5zy69g0dgljakvd10qhbk5bv7cd"; - name = "kmouth-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmouth-15.12.0.tar.xz"; + sha256 = "1hxy6hk40s4kasv5qwhjhsq5k6lf2cfvvkwmh46rc3z7g6q02i10"; + name = "kmouth-15.12.0.tar.xz"; }; }; kmplot = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kmplot-15.11.90.tar.xz"; - sha256 = "1dacdvcjkipbk30k3ad4slq50nlik57wg7pc9fj4dbkb22fkwq5q"; - name = "kmplot-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmplot-15.12.0.tar.xz"; + sha256 = "0fs5zvpfb8plpijsibqygcqhwxx9h2aqjkcfha7lpi6wscb33j21"; + name = "kmplot-15.12.0.tar.xz"; }; }; knavalbattle = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/knavalbattle-15.11.90.tar.xz"; - sha256 = "0rq5whawhc806kcn0lbssscfkgy8khw9bwxybkb9wl0ps6p3za65"; - name = "knavalbattle-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/knavalbattle-15.12.0.tar.xz"; + sha256 = "18idqx5nrfp3fwb1xjk1l4pf5wak1pmym87xvnwg4xbiv26gv6v9"; + name = "knavalbattle-15.12.0.tar.xz"; }; }; knetwalk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/knetwalk-15.11.90.tar.xz"; - sha256 = "0kp30yjpq84vzj8d4j1f9vzdh6j5rfg2kkzcxzy7xn6a56318c40"; - name = "knetwalk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/knetwalk-15.12.0.tar.xz"; + sha256 = "1h7bqh83ykjhmv6xfn2wkq6ki7p1zpf7q18rypbchlkl8qm2q992"; + name = "knetwalk-15.12.0.tar.xz"; }; }; kolf = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kolf-15.11.90.tar.xz"; - sha256 = "144cmzkw7dx4ylacmig5828346yyi0kcgn7058qpf9r42v4h06wi"; - name = "kolf-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kolf-15.12.0.tar.xz"; + sha256 = "0xbxvd1zwsqxsdnidizp83fydz42700bh9zp8wr4kymf6rjr43g4"; + name = "kolf-15.12.0.tar.xz"; }; }; kollision = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kollision-15.11.90.tar.xz"; - sha256 = "10qparglgiqfbqfvs0r1272q0l8xcscpmv5d883ciss6d4ivw3mw"; - name = "kollision-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kollision-15.12.0.tar.xz"; + sha256 = "1d4msxppm4f01dmi5lmivx7rzn070clg1gcxknf05i2kdkrfsal0"; + name = "kollision-15.12.0.tar.xz"; }; }; kolourpaint = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kolourpaint-15.11.90.tar.xz"; - sha256 = "0s7r2q97y3f7gdxpff0k1mlscgxz8d1jifpfvs728mwhn821vb3d"; - name = "kolourpaint-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kolourpaint-15.12.0.tar.xz"; + sha256 = "0931r80xdwxbqja59qrr9rsmkksyr2dimak2b757klsbnmpyb9kv"; + name = "kolourpaint-15.12.0.tar.xz"; }; }; kompare = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kompare-15.11.90.tar.xz"; - sha256 = "1f1xs97b6llgi27gv6gd1zcv8bxkw1n46bl2rd0363n789ipdpx8"; - name = "kompare-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kompare-15.12.0.tar.xz"; + sha256 = "1cvigjqzzf7jinw69nxhx7n87wv6wf1rchfb0mcq86bhjfc8f5fi"; + name = "kompare-15.12.0.tar.xz"; }; }; konquest = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/konquest-15.11.90.tar.xz"; - sha256 = "0f3hqk7lf1h7wbc4qvn6j662qw1g6vmrbr2995rar37bzr2x7g20"; - name = "konquest-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/konquest-15.12.0.tar.xz"; + sha256 = "1c87d6xjp2dz1s0r6pa7vcn5waw2m21i5z7r3mlcaj0gk4s8wmgj"; + name = "konquest-15.12.0.tar.xz"; }; }; konsole = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/konsole-15.11.90.tar.xz"; - sha256 = "1xh5sw0qdffxs7rbxpai25p4ri7pf6n69c9f9d6zkrpwqrnbnyvn"; - name = "konsole-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/konsole-15.12.0.tar.xz"; + sha256 = "1mabhr3pm59558592gjkp6h1hsrna582lixy6rranrzh6mk9rswh"; + name = "konsole-15.12.0.tar.xz"; }; }; kontactinterface = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kontactinterface-15.11.90.tar.xz"; - sha256 = "10lzs4pwcqhd58mpgiayi0z24x03z21fz1k56di37c40p829v50m"; - name = "kontactinterface-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kontactinterface-15.12.0.tar.xz"; + sha256 = "0n934mrm8kn1b8kqf51xv9ax0b7jfi9729rvnjr0mblpj506bnzq"; + name = "kontactinterface-15.12.0.tar.xz"; }; }; kopete = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kopete-15.11.90.tar.xz"; - sha256 = "0f8xazwhvi7jarx4rnlw9sggvdy9a02577919f5prvm7cp29k0g8"; - name = "kopete-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kopete-15.12.0.tar.xz"; + sha256 = "0c3cydhaa20mcz2g8d3gcsrclfzsfwd6cqajsvh7ns5xjvkkw4g0"; + name = "kopete-15.12.0.tar.xz"; }; }; kpat = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kpat-15.11.90.tar.xz"; - sha256 = "09fpnss71xg62crm6vw6iw16p7z6x8d39jn8ydwzp9dqw351x0dq"; - name = "kpat-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kpat-15.12.0.tar.xz"; + sha256 = "0nqv8pmarj0lf50f6szn20j05i2c238hk2nvslbazsqjyqcadm5s"; + name = "kpat-15.12.0.tar.xz"; }; }; kpimtextedit = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kpimtextedit-15.11.90.tar.xz"; - sha256 = "06zicz9d0807vmqyryv19wmgnw2w2nvfrsp7ca74mzybi9j18rvh"; - name = "kpimtextedit-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kpimtextedit-15.12.0.tar.xz"; + sha256 = "1gvnnfkwj3qayb500xhja1x467j3qrj9bgcjvkdrwbgg3s82pias"; + name = "kpimtextedit-15.12.0.tar.xz"; }; }; kppp = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kppp-15.11.90.tar.xz"; - sha256 = "1q332n00fak1jz3ksn1fnyvyi9mz80h9ylzgn8r9mr7v7lpz5x3r"; - name = "kppp-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kppp-15.12.0.tar.xz"; + sha256 = "07x1603sfgxjd51dwrdwd1gwwypklbzib9wxi8r6d24f1mgiv9c1"; + name = "kppp-15.12.0.tar.xz"; }; }; kqtquickcharts = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kqtquickcharts-15.11.90.tar.xz"; - sha256 = "1slyjj7np7k70ddrnw6clqzpwfdci722vsgxzwsripgwcdk7915x"; - name = "kqtquickcharts-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kqtquickcharts-15.12.0.tar.xz"; + sha256 = "1rp1kg8mm5p9h4h8n9js5l0xvvhiqbca2hbaywckr1ckwwiy16is"; + name = "kqtquickcharts-15.12.0.tar.xz"; }; }; krdc = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/krdc-15.11.90.tar.xz"; - sha256 = "0qsm3m8ry07lkqkbbk5wy2b7vnaamdmgqvcbv193fnj2w62gcfmi"; - name = "krdc-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/krdc-15.12.0.tar.xz"; + sha256 = "00q8lddqabbkb5lscsxq7sqny07zi1l449vhrahjxygqjivzrif8"; + name = "krdc-15.12.0.tar.xz"; }; }; kremotecontrol = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kremotecontrol-15.11.90.tar.xz"; - sha256 = "0kapm1kmr4pwy4qaz4rsh22rji4w9nz2a79gmzcdkq51srs6iv7f"; - name = "kremotecontrol-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kremotecontrol-15.12.0.tar.xz"; + sha256 = "1vlzrc9p4icw4rniwhnjqw75h7r43n70rbbjmlir2py7cxybgmip"; + name = "kremotecontrol-15.12.0.tar.xz"; }; }; kreversi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kreversi-15.11.90.tar.xz"; - sha256 = "0swmh832irdg1dxdy0kvvn2ph4ic9yis15v3bf95rl0vbhz3892w"; - name = "kreversi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kreversi-15.12.0.tar.xz"; + sha256 = "09zbbvpllx4q2q1x0c5m1924a7vf8m0x55qb670fnx9cgybygvdm"; + name = "kreversi-15.12.0.tar.xz"; }; }; krfb = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/krfb-15.11.90.tar.xz"; - sha256 = "17rj7hgqm0w5s05g35mnsjdp12vxmrx1kzg4iiwa4x74fhhahgcd"; - name = "krfb-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/krfb-15.12.0.tar.xz"; + sha256 = "1zi84gzy7k7rvn9z5anphgqjnv19sb4kls2gw483isc6dp5xlrm7"; + name = "krfb-15.12.0.tar.xz"; }; }; kross-interpreters = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kross-interpreters-15.11.90.tar.xz"; - sha256 = "0wbbfxfa7i8brrpah2a3w01jljwlfpznbw1biayq4m2wh4s1zfbc"; - name = "kross-interpreters-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kross-interpreters-15.12.0.tar.xz"; + sha256 = "0ycs9agc872l1kcbcbhibyyv8xznww8qazh5z2db1w3c0380g4hv"; + name = "kross-interpreters-15.12.0.tar.xz"; }; }; kruler = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kruler-15.11.90.tar.xz"; - sha256 = "1frrinlkc9pp7y99jf5xlrzphh00i68jdxpgkqjfmsdf1ifm3xp1"; - name = "kruler-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kruler-15.12.0.tar.xz"; + sha256 = "1gzbsl6xw5x5kcf52gal8f07rxz2xilr541j14isp5qnl1qlym6p"; + name = "kruler-15.12.0.tar.xz"; }; }; ksaneplugin = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksaneplugin-15.11.90.tar.xz"; - sha256 = "1vkbbpack87rg20ab4byp8hgwgi7dws375lk6pkx29gq091blnby"; - name = "ksaneplugin-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksaneplugin-15.12.0.tar.xz"; + sha256 = "1zwdxa91j6yh5607aawg1jcn02fnp17ydf2q0fzq5211b0ly6hvf"; + name = "ksaneplugin-15.12.0.tar.xz"; }; }; kscd = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kscd-15.11.90.tar.xz"; - sha256 = "1c7rq1p7n2p15yl21x9pmd80w3b7zl4k839jw8i02aidllbkm252"; - name = "kscd-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kscd-15.12.0.tar.xz"; + sha256 = "1x0pw2cbkm4x9phb0j4ac9kc5w6ikvhz2a4bf5p1asidpcd0vfw0"; + name = "kscd-15.12.0.tar.xz"; }; }; kshisen = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kshisen-15.11.90.tar.xz"; - sha256 = "0hl0xbf6s44rjwk34kvm4l2i91w4yd60pcxc7hqc9aq5mwmdxwqn"; - name = "kshisen-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kshisen-15.12.0.tar.xz"; + sha256 = "1azqrg8268557wa7y4l4z667pvgk40nzn9cq5h7i2s6spqbirj1a"; + name = "kshisen-15.12.0.tar.xz"; }; }; ksirk = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksirk-15.11.90.tar.xz"; - sha256 = "0wpjwp5p9hna0n3dp5x0pjx18pq16vvhmq84sbar7qm289v5j6si"; - name = "ksirk-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksirk-15.12.0.tar.xz"; + sha256 = "04pyppz7pnj8ivlv2aqdjawcjlgbra7zxdsmbb1f7x1il0hdwwhy"; + name = "ksirk-15.12.0.tar.xz"; }; }; ksnakeduel = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksnakeduel-15.11.90.tar.xz"; - sha256 = "020sm6vff3zx36cx8h24y51a8r68h2h354j4p33wanmj8w3lsjdy"; - name = "ksnakeduel-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksnakeduel-15.12.0.tar.xz"; + sha256 = "1pmk7v8djcq3jkw77g074xi5j7sds6nn0y87vxl7fpldn7xj1msh"; + name = "ksnakeduel-15.12.0.tar.xz"; }; }; kspaceduel = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kspaceduel-15.11.90.tar.xz"; - sha256 = "0hs4yxp3zhxhrlq3wrl0kgiamwlamyyd70h5xpqcvl8kfqavggik"; - name = "kspaceduel-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kspaceduel-15.12.0.tar.xz"; + sha256 = "14z3wgzjdc28a4rkv99r9m4am9qprnf3m8sgdgjcvq478308z2qc"; + name = "kspaceduel-15.12.0.tar.xz"; }; }; ksquares = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksquares-15.11.90.tar.xz"; - sha256 = "0zqb0xlmp3k9s0i6iyd55dp99z2vglnjnwib49vrkh0rmbq3xcn9"; - name = "ksquares-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksquares-15.12.0.tar.xz"; + sha256 = "1w5z1j99gjizzd3zdym9q6frjfybyk4zjhvv8r788562j3qm1iiz"; + name = "ksquares-15.12.0.tar.xz"; }; }; kstars = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kstars-15.11.90.tar.xz"; - sha256 = "0c5fx1z83plfkimnh7ykfq8a0zvivfbpw6j2m4ssi0bxlan9kphd"; - name = "kstars-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kstars-15.12.0.tar.xz"; + sha256 = "1qf0ir0s3bw7dxv74w88y4165s87ah8hi1ivwi4391wm1qkijm00"; + name = "kstars-15.12.0.tar.xz"; }; }; ksudoku = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksudoku-15.11.90.tar.xz"; - sha256 = "0qf7ia9pq6pv2hpwx4zs21w6bx38c9kman6i7qrbs09fd6chndf9"; - name = "ksudoku-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksudoku-15.12.0.tar.xz"; + sha256 = "14m8alqgyc8lc4jmca3lfgw4lhigj7xy7ibyilc7d5ql9fwl8aqm"; + name = "ksudoku-15.12.0.tar.xz"; }; }; ksystemlog = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ksystemlog-15.11.90.tar.xz"; - sha256 = "1flpy7sssbl5mn0gzpx2053wncylj6ak89jx6gsldq16w5yf7qhr"; - name = "ksystemlog-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksystemlog-15.12.0.tar.xz"; + sha256 = "1gqarafcn6j0ingkdn5mnwcv3y7rw6i564dmwjsncn3jsk4217v2"; + name = "ksystemlog-15.12.0.tar.xz"; }; }; kteatime = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kteatime-15.11.90.tar.xz"; - sha256 = "07zpjx4nilp3ldnbh9rx8y70xdpbjfhrdc2drg87z2ywrf8kmv64"; - name = "kteatime-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kteatime-15.12.0.tar.xz"; + sha256 = "089gpi9gd0gk5pmikziz8jgzjvm2n60bmiyv13w955dsldqr04bv"; + name = "kteatime-15.12.0.tar.xz"; }; }; ktimer = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktimer-15.11.90.tar.xz"; - sha256 = "0xgkan0a4gz37vqby8hjra0jylma8l586dr38gf8blm8vc4qw58g"; - name = "ktimer-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktimer-15.12.0.tar.xz"; + sha256 = "1zjv9nqx8ij66r2ig7ran9wzlffiw13kyjili4mxyvlg1gq2piwc"; + name = "ktimer-15.12.0.tar.xz"; }; }; ktnef = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktnef-15.11.90.tar.xz"; - sha256 = "136hb86lp4qd9kzm63876gf9wllqh6mkciqq9lflrc1f4csy3h3l"; - name = "ktnef-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktnef-15.12.0.tar.xz"; + sha256 = "15qyvyqww4fhhwb6ms0wakvs7lxi7pgljyjw9vxc73ppmn3i69ps"; + name = "ktnef-15.12.0.tar.xz"; }; }; ktouch = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktouch-15.11.90.tar.xz"; - sha256 = "0fa2zlk1546xgv5q9nbcymfpizrppllla1yhm46fh1rrhxv8spaw"; - name = "ktouch-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktouch-15.12.0.tar.xz"; + sha256 = "1yh9jdl45vq99ra9lp759c6gh4zs8s9nnb58f3kbhhqn8sphw4qx"; + name = "ktouch-15.12.0.tar.xz"; }; }; ktp-accounts-kcm = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-accounts-kcm-15.11.90.tar.xz"; - sha256 = "1gcj320221h7b3c20vcpbgqpgw61zfw3zf9ryl1b3cxdfnvqnzzl"; - name = "ktp-accounts-kcm-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-accounts-kcm-15.12.0.tar.xz"; + sha256 = "1az0048wzq1kx2c4si4k2470mpskcan904l4biqflqsdy2zfg7rj"; + name = "ktp-accounts-kcm-15.12.0.tar.xz"; }; }; ktp-approver = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-approver-15.11.90.tar.xz"; - sha256 = "1gi72mj8p9rq051hdj574mr51445nzl3wpcb2az145igbdyh97d4"; - name = "ktp-approver-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-approver-15.12.0.tar.xz"; + sha256 = "0gcyvkrpj91hvyzvgk4anj51xni6xzp9vb6cb6afp2g72nvhzqsm"; + name = "ktp-approver-15.12.0.tar.xz"; }; }; ktp-auth-handler = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-auth-handler-15.11.90.tar.xz"; - sha256 = "042p5s416a4208wksvqzhh2cwxncgh0vljp45i2isy7bcxdcqnan"; - name = "ktp-auth-handler-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-auth-handler-15.12.0.tar.xz"; + sha256 = "00ipr6936j0iwdy9c6r1x57was9f7g17sh5r5nb1fgdk0rfvnpm4"; + name = "ktp-auth-handler-15.12.0.tar.xz"; }; }; ktp-common-internals = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-common-internals-15.11.90.tar.xz"; - sha256 = "0lxd4brfv1ib9y9pgs5dig18pmsqpj9php785xj2n3lpqjjmyw9z"; - name = "ktp-common-internals-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-common-internals-15.12.0.tar.xz"; + sha256 = "11ad84y8x4nac9f5bqzwhmwjigdx69z2zfiwfjzxv6fjkf02gz2m"; + name = "ktp-common-internals-15.12.0.tar.xz"; }; }; ktp-contact-list = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-contact-list-15.11.90.tar.xz"; - sha256 = "1x40rx4xhcznhhhb0lmr860hdspr0jj5kjd8kl9si2rb8355ddpq"; - name = "ktp-contact-list-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-contact-list-15.12.0.tar.xz"; + sha256 = "0l1k1spnsf8s3h6ivamihl3bfwhy5y4f0jv44nr2qlk370ip404c"; + name = "ktp-contact-list-15.12.0.tar.xz"; }; }; ktp-contact-runner = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-contact-runner-15.11.90.tar.xz"; - sha256 = "0fshmq6m3w3srwzy42p4sxl6ha94950b4mz7jv9gijr6z9gjm4hf"; - name = "ktp-contact-runner-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-contact-runner-15.12.0.tar.xz"; + sha256 = "17vkp9idmywbrxjlrmaxkhv75iv1nqfqvmgisxdi1rv224rayif3"; + name = "ktp-contact-runner-15.12.0.tar.xz"; }; }; ktp-desktop-applets = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-desktop-applets-15.11.90.tar.xz"; - sha256 = "1nn1kmx6dxcpfra98d9nk9y942s0jcivl35fx4r1wwa33ky33sch"; - name = "ktp-desktop-applets-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-desktop-applets-15.12.0.tar.xz"; + sha256 = "01pnr2nvlz1hg4s6w1xlxi42k1m53k0zlzzjjw0hzpjyjvvqybpw"; + name = "ktp-desktop-applets-15.12.0.tar.xz"; }; }; ktp-filetransfer-handler = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-filetransfer-handler-15.11.90.tar.xz"; - sha256 = "0mq5s3fwb865jd0a6yw0cvipbia2bnhqs1h9ybsxs03q9ywwdfnk"; - name = "ktp-filetransfer-handler-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-filetransfer-handler-15.12.0.tar.xz"; + sha256 = "0hq1jws3fknl0xsy4j4i72af0s700l065ikfcjlmqfkmr9kvgf3j"; + name = "ktp-filetransfer-handler-15.12.0.tar.xz"; }; }; ktp-kded-module = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-kded-module-15.11.90.tar.xz"; - sha256 = "1mrrx8kl5i7gcb21mqy18iycz34hdzlg236hgk3pbv7ykwrwxibq"; - name = "ktp-kded-module-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-kded-module-15.12.0.tar.xz"; + sha256 = "0cmgcfg3aw9dqjf6x0vb040mji4wfp8fxrs89916hhh7icavcab7"; + name = "ktp-kded-module-15.12.0.tar.xz"; }; }; ktp-send-file = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-send-file-15.11.90.tar.xz"; - sha256 = "0kfh389zwp8ckkjcs24ffzmxhzxb73jdpcjd9iyb0xzrhc2n8gpl"; - name = "ktp-send-file-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-send-file-15.12.0.tar.xz"; + sha256 = "1rasdrdydv5mmq2nkgb5nflklid02pbwb2kff6dfkz45xbsjirqa"; + name = "ktp-send-file-15.12.0.tar.xz"; }; }; ktp-text-ui = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktp-text-ui-15.11.90.tar.xz"; - sha256 = "1jx9s356z2yrz9ir6xhf7qyllnr2yqby9cpchsb5fkhy4g4dfs6j"; - name = "ktp-text-ui-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-text-ui-15.12.0.tar.xz"; + sha256 = "1hzsgl9rcvqsadvaksiqg6cfrgds2w5pxq4s0i1swqmssxnlvnhl"; + name = "ktp-text-ui-15.12.0.tar.xz"; }; }; ktuberling = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/ktuberling-15.11.90.tar.xz"; - sha256 = "0im0qypwysznjgam115bnqbqsa0rk2z29mwh173lv4gy6dpiyrl4"; - name = "ktuberling-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktuberling-15.12.0.tar.xz"; + sha256 = "0sp4hbqi84b2ndavc19jnij76s8x06hz4sg8rjlbk3v86d7gsh7y"; + name = "ktuberling-15.12.0.tar.xz"; }; }; kturtle = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kturtle-15.11.90.tar.xz"; - sha256 = "1hqp0cdk2gjrfyjwqmd7r4d8ghwwvz61z6yal8bwidam3dll6p63"; - name = "kturtle-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kturtle-15.12.0.tar.xz"; + sha256 = "04xa4rr03gr3qbb45ab1paq4jxq297xdg8gmg47mzl81i803hxcl"; + name = "kturtle-15.12.0.tar.xz"; }; }; kubrick = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kubrick-15.11.90.tar.xz"; - sha256 = "0w3184cv8qi0q61ba8hlkj05vbzgpi3rl5sfqyk3wv86vl7vr31d"; - name = "kubrick-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kubrick-15.12.0.tar.xz"; + sha256 = "0p4y9q6f7l6hmk8ip84wbm30p1w8mk54i65gqb3qrbqyxgrw3bdp"; + name = "kubrick-15.12.0.tar.xz"; }; }; kuser = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kuser-15.11.90.tar.xz"; - sha256 = "18033k08p9qmzg1q4s9wi4rv1kb4c19byvkylmkgab48i2ksp946"; - name = "kuser-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kuser-15.12.0.tar.xz"; + sha256 = "1hhglba2jxy56aziyy45d0g5mn2fadn092j6qd81d91qpp41syf5"; + name = "kuser-15.12.0.tar.xz"; }; }; kwalletmanager = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kwalletmanager-15.11.90.tar.xz"; - sha256 = "0h9a2jy4sbpys3frx55gi1zj8r5ysg55lj2bckmd6f3pk9z7h38b"; - name = "kwalletmanager-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kwalletmanager-15.12.0.tar.xz"; + sha256 = "1sb1dq7ngvy0mmjm2dch05d5iifw49kvvdxqz1xhycy7ld09a9nf"; + name = "kwalletmanager-15.12.0.tar.xz"; }; }; kwordquiz = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/kwordquiz-15.11.90.tar.xz"; - sha256 = "1zlq2m2y3z2s1rw74gb7rgwrin4i449z3vqdglgxq6376rzffvx7"; - name = "kwordquiz-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kwordquiz-15.12.0.tar.xz"; + sha256 = "0mswx58i3zcwzf8m424vsh1rck4vmbjjsy98adyyhhj0szr356sf"; + name = "kwordquiz-15.12.0.tar.xz"; }; }; libkcddb = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkcddb-15.11.90.tar.xz"; - sha256 = "0dsnfkhmwvhp56adh07r1pl3m7045na9xmz065ykmnfb8s4czqyv"; - name = "libkcddb-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkcddb-15.12.0.tar.xz"; + sha256 = "1n40p6byankdwlm2097pnn3lx1hkxhxpr9fw4mjwc40h0185yzl7"; + name = "libkcddb-15.12.0.tar.xz"; }; }; libkcompactdisc = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkcompactdisc-15.11.90.tar.xz"; - sha256 = "1rbhv1fl423swl93sm9vgmqvx1sd3m0337jcjdch3siw3wl1wfff"; - name = "libkcompactdisc-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkcompactdisc-15.12.0.tar.xz"; + sha256 = "1wpkhm3y499wllifqvbcgfypgkl81m0xbdbmji9drvhw59bj287h"; + name = "libkcompactdisc-15.12.0.tar.xz"; }; }; libkdcraw = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkdcraw-15.11.90.tar.xz"; - sha256 = "0lsk89rdx9awsh4mv3m93z0556bmxb1yk68c6aqhryz2ggl6xkld"; - name = "libkdcraw-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdcraw-15.12.0.tar.xz"; + sha256 = "10l3il1slpwk2djkgv5sh6mfv866mjlv7y799g2qx1kns6pkzf9k"; + name = "libkdcraw-15.12.0.tar.xz"; }; }; libkdeedu = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkdeedu-15.11.90.tar.xz"; - sha256 = "13w3ar3lklbpzd4mg77hab1hqs30jxn5avfr841chp5wpdlr38l1"; - name = "libkdeedu-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdeedu-15.12.0.tar.xz"; + sha256 = "07i5ibd1p0sxqhv4rc6hl88198nvnrxwhkfd36rfg44n3353gdvi"; + name = "libkdeedu-15.12.0.tar.xz"; }; }; libkdegames = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkdegames-15.11.90.tar.xz"; - sha256 = "1rswaag39jy2qvr1c5p41crr3151i6wqrfrscvf3zgbfs33vgmv7"; - name = "libkdegames-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdegames-15.12.0.tar.xz"; + sha256 = "1x3303lpks1bh5bpj4slhlqs1b2ajrdwgsipqxvy96qpdbj00lvv"; + name = "libkdegames-15.12.0.tar.xz"; }; }; libkeduvocdocument = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkeduvocdocument-15.11.90.tar.xz"; - sha256 = "1gvrj0sw7v976r449q05i6syvcadcmbfvs51kbrz30dfshjlddrk"; - name = "libkeduvocdocument-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkeduvocdocument-15.12.0.tar.xz"; + sha256 = "0vpa5f3wgvxw2ib5sfngnl1wj1f8z1xq4qrgxs3qhfcl5ci4mcfz"; + name = "libkeduvocdocument-15.12.0.tar.xz"; }; }; libkexiv2 = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkexiv2-15.11.90.tar.xz"; - sha256 = "1kwcxjqds68f37rml334swk0aawla0hia4bzyaf57yhwzd1v9vcj"; - name = "libkexiv2-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkexiv2-15.12.0.tar.xz"; + sha256 = "0gmaris7jjcq8990ccahs00k9yrik077kppxjh4l41ipr3g3kwn2"; + name = "libkexiv2-15.12.0.tar.xz"; }; }; libkface = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkface-15.11.90.tar.xz"; - sha256 = "071nc8vr7rwwkfzcsmldqj2ycgn5y1mq990w21rf6i0iizilqsd9"; - name = "libkface-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkface-15.12.0.tar.xz"; + sha256 = "0zdvwzna9x9d9fdzs7nzrqsfiq6z2f11aj97xl3lhfryqcbwdfyj"; + name = "libkface-15.12.0.tar.xz"; }; }; libkgeomap = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkgeomap-15.11.90.tar.xz"; - sha256 = "0is45slxb3arkrr1w56bc3ynvvdmlm8am92gpyl5pv915l4d4lbb"; - name = "libkgeomap-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkgeomap-15.12.0.tar.xz"; + sha256 = "0l4pfv5a2nq4s4m8xp0s08khlvzd97pfjr6ghlx4wrcygnsqwwy7"; + name = "libkgeomap-15.12.0.tar.xz"; }; }; libkipi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkipi-15.11.90.tar.xz"; - sha256 = "1kfyci0w2dxdsshkak1xffh7zy32j08p64i8nvfzmc92zrj1h1j4"; - name = "libkipi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkipi-15.12.0.tar.xz"; + sha256 = "047ga97fapnk39xcz41c4l6hdvxh4f0zjajl9ll116c20whbi8g1"; + name = "libkipi-15.12.0.tar.xz"; }; }; libkmahjongg = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkmahjongg-15.11.90.tar.xz"; - sha256 = "1lmdjcmx495c8f6idwxjjqdyzq4xlfdij6dmxqbnbjx4l398116r"; - name = "libkmahjongg-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkmahjongg-15.12.0.tar.xz"; + sha256 = "0dgvxc2v48j17n0b547h74w9g8v7n975szzr3bgwkxljkcw99zgc"; + name = "libkmahjongg-15.12.0.tar.xz"; }; }; libkomparediff2 = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libkomparediff2-15.11.90.tar.xz"; - sha256 = "0xdbxzvfbn84gd70zabyvpq63szjxh1zbrdr46ahnh29m2cdk4x2"; - name = "libkomparediff2-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkomparediff2-15.12.0.tar.xz"; + sha256 = "1spxzl7a6blyfwndissf489dixndycwigcpav5qfdav00s20vbdx"; + name = "libkomparediff2-15.12.0.tar.xz"; }; }; libksane = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/libksane-15.11.90.tar.xz"; - sha256 = "013h5lx93lz2n9il53dxaxx31n62vlmc884wfi40igkksbg5hm3v"; - name = "libksane-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libksane-15.12.0.tar.xz"; + sha256 = "1262gvy61a07vgam4ws6vjy7q0d7pz9q05d24bcy0dqi6wvlsbwp"; + name = "libksane-15.12.0.tar.xz"; }; }; lokalize = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/lokalize-15.11.90.tar.xz"; - sha256 = "0aw9j7fhni6wrkffjrv8biwsc85mzmcyx7fsm96whwf8xhcs8whp"; - name = "lokalize-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/lokalize-15.12.0.tar.xz"; + sha256 = "0nmqp78a2amgyiisvhqcpxjrvv1p3ssx4wg3gyqz9rw5x7yzh1v7"; + name = "lokalize-15.12.0.tar.xz"; }; }; lskat = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/lskat-15.11.90.tar.xz"; - sha256 = "1n6dmc7vlq9n6wix9fbfnbixjikzpg4hzcqiz8q28qs3lv9kcmxs"; - name = "lskat-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/lskat-15.12.0.tar.xz"; + sha256 = "0nwbsfz6hi20rv8w1hm4lblwifmnyvdyv9icn5z8hlqf2wz0kn73"; + name = "lskat-15.12.0.tar.xz"; }; }; marble = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/marble-15.11.90.tar.xz"; - sha256 = "0xxf7s36m5p88y0xs44j4fn867dfj0qzvhfaqp9drhwc604f4l2i"; - name = "marble-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/marble-15.12.0.tar.xz"; + sha256 = "01hdndic1k5f6fr75152adi0ph8q0ypxhj15yr02l7i2lcwzk9va"; + name = "marble-15.12.0.tar.xz"; }; }; mplayerthumbs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/mplayerthumbs-15.11.90.tar.xz"; - sha256 = "181brlsn21wyzjhb7krf6dx23n8fc2vbzxjz42v13lpvidzw85dk"; - name = "mplayerthumbs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/mplayerthumbs-15.12.0.tar.xz"; + sha256 = "0ghqfcys8qkr7jm5g7i4753bisg6ah36f0i3bm437r27gf8jy2xk"; + name = "mplayerthumbs-15.12.0.tar.xz"; }; }; okteta = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/okteta-15.11.90.tar.xz"; - sha256 = "1l0bpv2xv4l0ccddwg751lg91d9d4bsx3ri1ljp248rw1phgzhjl"; - name = "okteta-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/okteta-15.12.0.tar.xz"; + sha256 = "01fa1ai0c6ifh8gjzhv9jrmpr43h84bj17m22g8z3aa0yci25mfq"; + name = "okteta-15.12.0.tar.xz"; }; }; okular = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/okular-15.11.90.tar.xz"; - sha256 = "0cismifga8difq4s5xxh05cjwfck6a2v3qmijrndy4s442cyhlr6"; - name = "okular-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/okular-15.12.0.tar.xz"; + sha256 = "17bbns5r43h05say0drqyc9w1lfm8vwsqrknaj16cgd2kz23rxwq"; + name = "okular-15.12.0.tar.xz"; }; }; palapeli = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/palapeli-15.11.90.tar.xz"; - sha256 = "09vihdgm05kd61mgwdy50l6ir7s3knngfm3ywf6l6q40bsv3caz4"; - name = "palapeli-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/palapeli-15.12.0.tar.xz"; + sha256 = "18c70brh5gw2rnl4xwxa32avcyv5nmj8q2l826ah9gbx74y0ffjw"; + name = "palapeli-15.12.0.tar.xz"; }; }; parley = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/parley-15.11.90.tar.xz"; - sha256 = "08wzvdkhrj8mp38dl0r2n56xi4vcgbsxsfbislfk1b5c5dkzm00d"; - name = "parley-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/parley-15.12.0.tar.xz"; + sha256 = "0sj5mgbj77p0kj1nylnrjr010nw53a0x3lqfbhxmv09bhszpfnqs"; + name = "parley-15.12.0.tar.xz"; }; }; picmi = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/picmi-15.11.90.tar.xz"; - sha256 = "1w19b3c566p8gsz94gl9ld2f0ck6izaq84rcirmkiah5yg2hjxvi"; - name = "picmi-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/picmi-15.12.0.tar.xz"; + sha256 = "02p2c14bis99f1ylkdclk95awx6b87n2ln555dyy2m3sf7pjdllg"; + name = "picmi-15.12.0.tar.xz"; }; }; poxml = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/poxml-15.11.90.tar.xz"; - sha256 = "1gcih023rdjabx061vqc0hrjnbyqpwx8wrcjaznwdl42kmkjbdjn"; - name = "poxml-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/poxml-15.12.0.tar.xz"; + sha256 = "0l5y2a68yikwjp83c65wyb589yf6jxlj3432wcrj3zkx46l8rwd0"; + name = "poxml-15.12.0.tar.xz"; }; }; print-manager = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/print-manager-15.11.90.tar.xz"; - sha256 = "0ayl181d507yfgr1cqb49ih5394hjqm3kda59217jg0q9cjnfclc"; - name = "print-manager-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/print-manager-15.12.0.tar.xz"; + sha256 = "09vfs3gj46asyqq1dxwil4rvd7pm0svbq4kfj76s0b4likmwn34b"; + name = "print-manager-15.12.0.tar.xz"; }; }; rocs = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/rocs-15.11.90.tar.xz"; - sha256 = "1mpnk6bazn3255fi0q5licq5gggwb8vgwnq35l16h6fl8v92fd43"; - name = "rocs-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/rocs-15.12.0.tar.xz"; + sha256 = "1sgf2ppiwj7yn1yc08lvrd0pfrdfyaxjm1hm5c7mbz2bfz48mv6v"; + name = "rocs-15.12.0.tar.xz"; }; }; signon-kwallet-extension = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/signon-kwallet-extension-15.11.90.tar.xz"; - sha256 = "0l532904s209r9667vb566gm64z4ij7pzkr9m4x8hgk0cj72pygx"; - name = "signon-kwallet-extension-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/signon-kwallet-extension-15.12.0.tar.xz"; + sha256 = "17wwdxyv7w8y7v6kl23czg1ffbhx9yv5siln923zw52wvfd23gwb"; + name = "signon-kwallet-extension-15.12.0.tar.xz"; }; }; spectacle = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/spectacle-15.11.90.tar.xz"; - sha256 = "16d6rg6fi5myb8hndj6xdcpwk8km4dnwqz2i5mfxzs29v2lgwmwl"; - name = "spectacle-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/spectacle-15.12.0.tar.xz"; + sha256 = "0ynffi4k52g1wgdqgswdn4q48zv2z2wa9k7l34m2kqs4qlwlffrh"; + name = "spectacle-15.12.0.tar.xz"; }; }; step = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/step-15.11.90.tar.xz"; - sha256 = "05dik7s4g0amw4bxk3kmfc19yfvd24qd1yxvs9w68bwdsikwwxix"; - name = "step-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/step-15.12.0.tar.xz"; + sha256 = "050nk1kqwjl687x2fd1zslpsjibkq6qsjl61naslrp58xsvninnl"; + name = "step-15.12.0.tar.xz"; }; }; svgpart = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/svgpart-15.11.90.tar.xz"; - sha256 = "0pcb32bpp97iwa3cg4m0wcgsw6zvh00mgl5bmp7kildlsj5nal0c"; - name = "svgpart-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/svgpart-15.12.0.tar.xz"; + sha256 = "01lib7f7nngypxj3fz367fa4hikfh3v03405idsrqb80fm1jwwjr"; + name = "svgpart-15.12.0.tar.xz"; }; }; sweeper = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/sweeper-15.11.90.tar.xz"; - sha256 = "1w3s7j0djggmlwgh5874n58ni8sx8dc348qm792p068d661mn1qz"; - name = "sweeper-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/sweeper-15.12.0.tar.xz"; + sha256 = "0p5lz1zzxsvy0frjzjhn1g8z60qy8ffb69qy6gnkzm5qz2b7c0gc"; + name = "sweeper-15.12.0.tar.xz"; }; }; syndication = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/syndication-15.11.90.tar.xz"; - sha256 = "0f4bp5clqkl5kylz7agr85xazpvs83vmhk4qrkjz0brwfy9k9n8s"; - name = "syndication-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/syndication-15.12.0.tar.xz"; + sha256 = "1awsqsz2603iik7qajv8m19ygyyj16i5iyz24cp2dabxy5zhhn4i"; + name = "syndication-15.12.0.tar.xz"; }; }; umbrello = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/umbrello-15.11.90.tar.xz"; - sha256 = "02byr3977hdckjps8460rjgaz7fs2rbbfki1mds0h6b1ih2nwwmf"; - name = "umbrello-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/umbrello-15.12.0.tar.xz"; + sha256 = "09lkqdialqvx3qgj25gx3wqyz2qfwgy27ahmlac0zg7grjpf0gf9"; + name = "umbrello-15.12.0.tar.xz"; }; }; zeroconf-ioslave = { - version = "15.11.90"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.90/src/zeroconf-ioslave-15.11.90.tar.xz"; - sha256 = "0ldbdfhmzf58is7ygs10if2kjajw77ngaiq7qgvz7b97ssvl8xm3"; - name = "zeroconf-ioslave-15.11.90.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/zeroconf-ioslave-15.12.0.tar.xz"; + sha256 = "1mly8j549yd1azc5g5clglypbadxngzml75wvi2irvwsvmzwshf7"; + name = "zeroconf-ioslave-15.12.0.tar.xz"; }; }; } From 86bf3662df02407a940f0a2c1373faf29a424882 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 16:18:42 +0100 Subject: [PATCH 231/707] nss: 3.20.1 -> 3.21 --- .../libraries/nss/85_security_load.patch | 2 +- pkgs/development/libraries/nss/default.nix | 10 +++-- ...ups.patch => nss-3.21-gentoo-fixups.patch} | 38 ++++++++++--------- 3 files changed, 27 insertions(+), 23 deletions(-) rename pkgs/development/libraries/nss/{nss-3.17-gentoo-fixups.patch => nss-3.21-gentoo-fixups.patch} (82%) diff --git a/pkgs/development/libraries/nss/85_security_load.patch b/pkgs/development/libraries/nss/85_security_load.patch index d20572a051e..3e51e290887 100644 --- a/pkgs/development/libraries/nss/85_security_load.patch +++ b/pkgs/development/libraries/nss/85_security_load.patch @@ -48,7 +48,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c + if (!c) { /* referencePath doesn't contain a / means that dladdr gave us argv[0] + * and program was called from $PATH. Hack to get libs from NIX_NSS_LIBDIR */ + referencePath = NIX_NSS_LIBDIR; -+ c = &referencePath[sizeof(NIX_NSS_LIBDIR) - 1]; /* last / */ ++ c = (char*) &referencePath[sizeof(NIX_NSS_LIBDIR) - 1]; /* last / */ + } if (c) { size_t referencePathSize = 1 + c - referencePath; diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index 47bb5cde228..ee8e38a7296 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -11,11 +11,11 @@ let in stdenv.mkDerivation rec { name = "nss-${version}"; - version = "3.20.1"; + version = "3.21"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_20_1_RTM/src/${name}.tar.gz"; - sha256 = "ad3c8f11dfd9570c2d04a6140d5ef7c2bdd0fe30d6c9e5548721a4251a5e8c97"; + url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_21_RTM/src/${name}.tar.gz"; + sha256 = "3f7a5b027d7cdd5c0e4ff7544da33fdc6f56c2f8c27fff02938fd4a6fbe87239"; }; buildInputs = [ nspr perl zlib sqlite ]; @@ -25,7 +25,7 @@ in stdenv.mkDerivation rec { ''; patches = - [ ./nss-3.17-gentoo-fixups.patch + [ ./nss-3.21-gentoo-fixups.patch # Based on http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.4-1/85_security_load.patch ./85_security_load.patch ]; @@ -58,6 +58,8 @@ in stdenv.mkDerivation rec { "NSS_USE_SYSTEM_SQLITE=1" ] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1"; + NIX_CFLAGS_COMPILE = "-Wno-error"; + postInstall = '' rm -rf $out/private mv $out/public $out/include diff --git a/pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch b/pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch similarity index 82% rename from pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch rename to pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch index 7948fc07150..33819821c19 100644 --- a/pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch +++ b/pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch @@ -1,5 +1,6 @@ ---- nss-3.17.1/nss/config/Makefile -+++ nss-3.17.1/nss/config/Makefile +diff -urN a/nss/config/Makefile b/nss/config/Makefile +--- a/nss/config/Makefile 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/Makefile 2015-11-15 10:42:46.249578304 -0600 @@ -0,0 +1,40 @@ +CORE_DEPTH = .. +DEPTH = .. @@ -41,8 +42,9 @@ + +dummy: all export libs + ---- nss-3.17.1/nss/config/nss-config.in -+++ nss-3.17.1/nss/config/nss-config.in +diff -urN a/nss/config/nss-config.in b/nss/config/nss-config.in +--- a/nss/config/nss-config.in 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/nss-config.in 2015-11-15 10:42:46.250578304 -0600 @@ -0,0 +1,145 @@ +#!/bin/sh + @@ -189,8 +191,9 @@ + echo $libdirs +fi + ---- nss-3.17.1/nss/config/nss.pc.in -+++ nss-3.17.1/nss/config/nss.pc.in +diff -urN a/nss/config/nss.pc.in b/nss/config/nss.pc.in +--- a/nss/config/nss.pc.in 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/nss.pc.in 2015-11-15 10:42:46.251578304 -0600 @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ @@ -201,12 +204,13 @@ +Description: Network Security Services +Version: @NSS_MAJOR_VERSION@.@NSS_MINOR_VERSION@.@NSS_PATCH_VERSION@ +Requires: nspr >= 4.8 -+Libs: -L${libdir} -lssl3 -lsmime3 -lnss3 -lnssutil3 ++Libs: -lssl3 -lsmime3 -lnss3 -lnssutil3 +Cflags: -I${includedir} + ---- nss-3.17.1/nss/Makefile -+++ nss-3.17.1/nss/Makefile -@@ -44,7 +44,7 @@ +diff -urN a/nss/Makefile b/nss/Makefile +--- a/nss/Makefile 2015-11-15 09:25:06.410786060 -0600 ++++ b/nss/Makefile 2015-11-15 10:42:46.252578304 -0600 +@@ -46,7 +46,7 @@ # (7) Execute "local" rules. (OPTIONAL). # ####################################################################### @@ -215,7 +219,7 @@ nss_clean_all: clobber_nspr clobber -@@ -109,12 +109,6 @@ +@@ -115,12 +115,6 @@ --with-dist-prefix='$(NSPR_PREFIX)' \ --with-dist-includedir='$(NSPR_PREFIX)/include' @@ -228,14 +232,12 @@ build_docs: $(MAKE) -C $(CORE_DEPTH)/doc ---- nss-3.17.1/nss/manifest.mn -+++ nss-3.17.1/nss/manifest.mn -@@ -10,7 +10,7 @@ +diff -urN a/nss/manifest.mn b/nss/manifest.mn +--- a/nss/manifest.mn 2015-11-15 09:25:06.411786060 -0600 ++++ b/nss/manifest.mn 2015-11-15 10:43:15.633576994 -0600 +@@ -10,4 +10,4 @@ RELEASE = nss --DIRS = coreconf lib cmd +-DIRS = coreconf lib cmd external_tests +DIRS = coreconf lib cmd config - - ifdef NSS_BUILD_GTESTS - DIRS += external_tests From 42d19d7e713b1be95e25908cebaa00c3c0fe7462 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:10:39 -0600 Subject: [PATCH 232/707] kdeApps_15_12: don't inherit kdelibs The beta versions of KDE Applications 15.12 did not include a kdelibs release, so that package was borrowed from KDE Applications 15.08. The final release of KDE Applications 15.12.0 does include kdelibs, however. --- pkgs/applications/kde-apps-15.12/default.nix | 2 +- .../0001-old-kde4-cmake-policies.patch | 56 +++++++++++++++++++ .../kdelibs/0002-polkit-install-path.patch | 25 +++++++++ .../kdelibs/0003-remove_xdg_impurities.patch | 47 ++++++++++++++++ .../kde-apps-15.12/kdelibs/default.nix | 43 ++++++++++++++ .../kdelibs/polkit-install.patch | 12 ++++ .../kde-apps-15.12/kdelibs/setup-hook.sh | 10 ++++ .../applications/kde-apps-15.12/ksnapshot.nix | 29 ---------- 8 files changed, 194 insertions(+), 30 deletions(-) create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/default.nix create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch create mode 100644 pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh delete mode 100644 pkgs/applications/kde-apps-15.12/ksnapshot.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index 807c32ccb7d..a89f88b58fa 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -27,7 +27,7 @@ let }; packages = self: with self; { - inherit (pkgs.kdeApps_15_08) kdelibs ksnapshot; + kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; ark = callPackage ./ark.nix {}; baloo-widgets = callPackage ./baloo-widgets.nix {}; diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch new file mode 100644 index 00000000000..b7d7300e9a8 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch @@ -0,0 +1,56 @@ +From b43c49109694940f0a26240753e879eb629dd02d Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Mon, 7 Sep 2015 13:54:57 -0500 +Subject: [PATCH 1/2] old kde4 cmake policies + +--- + cmake/modules/FindKDE4Internal.cmake | 33 +++++++++++++++++++++++++++++++++ + 1 file changed, 33 insertions(+) + +diff --git a/cmake/modules/FindKDE4Internal.cmake b/cmake/modules/FindKDE4Internal.cmake +index 7d54b9b..c435571 100644 +--- a/cmake/modules/FindKDE4Internal.cmake ++++ b/cmake/modules/FindKDE4Internal.cmake +@@ -345,6 +345,39 @@ + # Redistribution and use is allowed according to the terms of the BSD license. + # For details see the accompanying COPYING-CMAKE-SCRIPTS file. + ++# this is required now by cmake 2.6 and so must not be skipped by if(KDE4_FOUND) below ++cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR) ++# set the cmake policies to the 2.4.x compatibility settings (may change for KDE 4.3) ++cmake_policy(VERSION 2.4.5) ++ ++# CMake 2.6, set compatibility behaviour to cmake 2.4 ++# this must be executed always, because the CMAKE_MINIMUM_REQUIRED() command above ++# resets the policy settings, so we get a lot of warnings ++ ++# CMP0000: don't require cmake_minimum_version() directly in the top level CMakeLists.txt, FindKDE4Internal.cmake is good enough ++cmake_policy(SET CMP0000 OLD) ++# CMP0002: in KDE4 we have multiple targets with the same name for the unit tests ++cmake_policy(SET CMP0002 OLD) ++# CMP0003: add the link paths to the link command as with cmake 2.4 ++cmake_policy(SET CMP0003 OLD) ++# CMP0005: keep escaping behaviour for definitions added via add_definitions() ++cmake_policy(SET CMP0005 OLD) ++# since cmake 2.6.3: NEW behaviour is that setting policies doesn't "escape" the file ++# where this is done, macros and functions are executed with the policies as they ++# were when the were defined. Keep the OLD behaviour so we can set the policies here ++# for all KDE software without the big warning ++cmake_policy(SET CMP0011 OLD) ++ ++# since cmake 2.8.4: when include()ing from inside cmake's module dir, prefer the files ++# in this directory over those from CMAKE_MODULE_PATH ++cmake_policy(SET CMP0017 NEW) ++ ++# since cmake 3.0: use of the LOCATION target property is disallowed while it is used in KDE4Macros.cmake ++if (POLICY CMP0026) ++ cmake_policy(SET CMP0026 OLD) ++endif (POLICY CMP0026) ++ ++ + # Only do something if it hasn't been found yet + if(NOT KDE4_FOUND) + +-- +2.5.0 + diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch new file mode 100644 index 00000000000..ff0306ea148 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch @@ -0,0 +1,25 @@ +From fab35bac146a817f3af80f45531355fd70cd226b Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Mon, 7 Sep 2015 13:56:03 -0500 +Subject: [PATCH 2/2] polkit install path + +--- + kdecore/auth/ConfigureChecks.cmake | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/kdecore/auth/ConfigureChecks.cmake b/kdecore/auth/ConfigureChecks.cmake +index 7cf9cb5..c8334ae 100644 +--- a/kdecore/auth/ConfigureChecks.cmake ++++ b/kdecore/auth/ConfigureChecks.cmake +@@ -150,7 +150,7 @@ elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "POLKITQT-1") + ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR + ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) + +- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING ++ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING + "Where policy files generated by KAuth will be installed" FORCE) + elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") + set (KAUTH_COMPILING_FAKE_BACKEND TRUE) +-- +2.5.0 + diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch new file mode 100644 index 00000000000..a79d7b2b7d1 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch @@ -0,0 +1,47 @@ +diff --git a/kdecore/kernel/kstandarddirs.cpp b/kdecore/kernel/kstandarddirs.cpp +index ab8f76d..2ae5089 100644 +--- a/kdecore/kernel/kstandarddirs.cpp ++++ b/kdecore/kernel/kstandarddirs.cpp +@@ -1768,12 +1768,6 @@ void KStandardDirs::addKDEDefaults() + else + { + xdgdirList.clear(); +- xdgdirList.append(QString::fromLatin1("/etc/xdg")); +-#ifdef Q_WS_WIN +- xdgdirList.append(installPath("kdedir") + QString::fromLatin1("etc/xdg")); +-#else +- xdgdirList.append(QFile::decodeName(KDESYSCONFDIR "/xdg")); +-#endif + } + + QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); +@@ -1821,10 +1815,6 @@ void KStandardDirs::addKDEDefaults() + } + } else { + xdgdirList = kdedirDataDirs; +-#ifndef Q_WS_WIN +- xdgdirList.append(QString::fromLatin1("/usr/local/share/")); +- xdgdirList.append(QString::fromLatin1("/usr/share/")); +-#endif + } + + localXdgDir = readEnvPath("XDG_DATA_HOME"); +diff --git a/solid/solid/xdgbasedirs.cpp b/solid/solid/xdgbasedirs.cpp +index 4c9cad9..6849d45 100644 +--- a/solid/solid/xdgbasedirs.cpp ++++ b/solid/solid/xdgbasedirs.cpp +@@ -70,12 +70,12 @@ QStringList Solid::XdgBaseDirs::systemPathList( const char *resource ) + { + if ( qstrncmp( "data", resource, 4 ) == 0 ) { + if ( instance()->mDataDirs.isEmpty() ) { +- instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "/usr/local/share:/usr/share" ); ++ instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "" ); + } + return instance()->mDataDirs; + } else if ( qstrncmp( "config", resource, 6 ) == 0 ) { + if ( instance()->mConfigDirs.isEmpty() ) { +- instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "/etc/xdg" ); ++ instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "" ); + } + return instance()->mConfigDirs; + } diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/default.nix b/pkgs/applications/kde-apps-15.12/kdelibs/default.nix new file mode 100644 index 00000000000..a30b19774f2 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/default.nix @@ -0,0 +1,43 @@ +{ kdeApp, attica, attr, automoc4, avahi, bison, cmake +, docbook_xml_dtd_42, docbook_xsl, flex, giflib, ilmbase +, libdbusmenu_qt, libjpeg, libxml2, libxslt, perl, phonon, pkgconfig +, polkit_qt4, qca2, qt4, shared_desktop_ontologies, shared_mime_info +, soprano, strigi, udev, xz +, lib +}: + +kdeApp { + name = "kdelibs"; + + buildInputs = [ + attica attr avahi giflib libdbusmenu_qt libjpeg libxml2 + polkit_qt4 qca2 shared_desktop_ontologies udev xz + ]; + propagatedBuildInputs = [ qt4 soprano phonon strigi ]; + nativeBuildInputs = [ + automoc4 bison cmake flex libxslt perl pkgconfig shared_mime_info + ]; + + patches = [ + ./0001-old-kde4-cmake-policies.patch + ./0002-polkit-install-path.patch + ./0003-remove_xdg_impurities.patch + ]; + + # cmake does not detect path to `ilmbase` + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + + cmakeFlags = [ + "-DDOCBOOKXML_CURRENTDTD_DIR=${docbook_xml_dtd_42}/xml/dtd/docbook" + "-DDOCBOOKXSL_DIR=${docbook_xsl}/xml/xsl/docbook" + "-DWITH_SOLID_UDISKS2=ON" + "-DKDE_DEFAULT_HOME=.kde" + ]; + + setupHook = ./setup-hook.sh; + + meta = { + licenses = with lib.licenses; [ gpl2 fdl12 lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch b/pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch new file mode 100644 index 00000000000..d2ecac663ec --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch @@ -0,0 +1,12 @@ +diff -ru -x '*~' kdelibs-4.6.90-orig/kdecore/auth/ConfigureChecks.cmake kdelibs-4.6.90/kdecore/auth/ConfigureChecks.cmake +--- kdelibs-4.6.90-orig/kdecore/auth/ConfigureChecks.cmake 2011-05-20 22:24:54.000000000 +0200 ++++ kdelibs-4.6.90/kdecore/auth/ConfigureChecks.cmake 2011-07-12 14:03:00.000000000 +0200 +@@ -139,7 +139,7 @@ + ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR + ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) + +- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING ++ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING + "Where policy files generated by KAuth will be installed" FORCE) + elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") + set (KAUTH_COMPILING_FAKE_BACKEND TRUE) diff --git a/pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh b/pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh new file mode 100644 index 00000000000..e0a75dc8acd --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh @@ -0,0 +1,10 @@ +addQt4Plugins() { + if [[ -d "$1/lib/qt4/plugins" ]]; then + propagatedUserEnvPkgs+=" $1" + fi + + if [[ -d "$1/lib/kde4/plugins" ]]; then + propagatedUserEnvPkgs+=" $1" + fi +} +envHooks+=(addQt4Plugins) diff --git a/pkgs/applications/kde-apps-15.12/ksnapshot.nix b/pkgs/applications/kde-apps-15.12/ksnapshot.nix deleted file mode 100644 index b757f4f0403..00000000000 --- a/pkgs/applications/kde-apps-15.12/ksnapshot.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkipi -, libXfixes -}: - -kdeApp { - name = "ksnapshot"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkipi - libXfixes - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} From da89338993f649eb342df5a8e29f5c009126514a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:12:52 -0600 Subject: [PATCH 233/707] plasma55: 5.5.0 -> 5.5.1 --- pkgs/desktops/plasma-5.5/fetchsrcs.sh | 2 +- pkgs/desktops/plasma-5.5/srcs.nix | 304 +++++++++++++------------- 2 files changed, 153 insertions(+), 153 deletions(-) diff --git a/pkgs/desktops/plasma-5.5/fetchsrcs.sh b/pkgs/desktops/plasma-5.5/fetchsrcs.sh index 7ccb8e3a2e2..2ea23dc5656 100755 --- a/pkgs/desktops/plasma-5.5/fetchsrcs.sh +++ b/pkgs/desktops/plasma-5.5/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.5.0/" +RELEASE_URL="http://download.kde.org/stable/plasma/5.5.1/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/plasma-5.5/srcs.nix b/pkgs/desktops/plasma-5.5/srcs.nix index 488f4de17ff..63b6a7bee92 100644 --- a/pkgs/desktops/plasma-5.5/srcs.nix +++ b/pkgs/desktops/plasma-5.5/srcs.nix @@ -3,307 +3,307 @@ { bluedevil = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/bluedevil-5.5.0.tar.xz"; - sha256 = "0h0i6npmi2llrma4d0k7jaibfjkwvi7qm003i73prza5b2lm9qgk"; - name = "bluedevil-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/bluedevil-5.5.1.tar.xz"; + sha256 = "09id2vyjdmwl20km0zfwhz2rsyrb2yrfygczh39v1s3nqz88mw97"; + name = "bluedevil-5.5.1.tar.xz"; }; }; breeze = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/breeze-5.5.0.tar.xz"; - sha256 = "0jaw8ir5vd3ari4hx52mrnl5mrq9njdci8caq37b3k1p4irxba3p"; - name = "breeze-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/breeze-5.5.1.tar.xz"; + sha256 = "03chjfi878r9cz6vy7px0fma8lzrynpnnvbfqw2pbz00mny89hkw"; + name = "breeze-5.5.1.tar.xz"; }; }; breeze-gtk = { - version = "5.5.0.1"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/breeze-gtk-5.5.0.1.tar.xz"; - sha256 = "04jjb81022k7xfzhzmdani057inmly2r7ksc1wvbg5adi7m0xn4n"; - name = "breeze-gtk-5.5.0.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/breeze-gtk-5.5.1.tar.xz"; + sha256 = "10nnahdsyl7rh6r4wzrxjhw6pl5j5b29wkv7a9kkyqjmhmfxsmpq"; + name = "breeze-gtk-5.5.1.tar.xz"; }; }; discover = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/discover-5.5.0.tar.xz"; - sha256 = "0ngxdgkr4ikqmi2x8dgbf6xbpvhwqcv79b7ir2jgmcjjl93958f4"; - name = "discover-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/discover-5.5.1.tar.xz"; + sha256 = "0nr48126xb48ra9gc40bhbsz74ssrf6dnx189n3sdvb00y7a26wf"; + name = "discover-5.5.1.tar.xz"; }; }; kde-cli-tools = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kde-cli-tools-5.5.0.tar.xz"; - sha256 = "0l45hx1w1pyfbsg60lwdma9pgzdffprvrz12rqq6ylnjsz1askwv"; - name = "kde-cli-tools-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kde-cli-tools-5.5.1.tar.xz"; + sha256 = "0izn9fqbrjxcpwwjfr4522jazz2aw8h0r5c4s99hmy5q6hyr59bj"; + name = "kde-cli-tools-5.5.1.tar.xz"; }; }; kdecoration = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kdecoration-5.5.0.tar.xz"; - sha256 = "1wdwnj3dridk745mgmi9xnyd7dy0n0444nvq1mggn2mj4ca6q9ra"; - name = "kdecoration-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kdecoration-5.5.1.tar.xz"; + sha256 = "1fdflipbfbivy3p90n30wc6flqck5hx5q4zli42v2a039bzj44jn"; + name = "kdecoration-5.5.1.tar.xz"; }; }; kde-gtk-config = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kde-gtk-config-5.5.0.tar.xz"; - sha256 = "1bi6dr7bv42rn5jf212qrr5bik8xglvaabz5srqwhs2n4z35913a"; - name = "kde-gtk-config-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kde-gtk-config-5.5.1.tar.xz"; + sha256 = "1pjs59i9xwz3csd86qmvb4c7n766q1dam8llvklkx17i8f9ddri0"; + name = "kde-gtk-config-5.5.1.tar.xz"; }; }; kdeplasma-addons = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kdeplasma-addons-5.5.0.tar.xz"; - sha256 = "1y3w97pbg24d2mzp2x882a43ljn5wqs74q6ry594a6mip2zzvlrz"; - name = "kdeplasma-addons-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kdeplasma-addons-5.5.1.tar.xz"; + sha256 = "0i59p4dyaz7kz9rcx2hpwg3c7sbwsk4cab9ldcck6vb83szxi1il"; + name = "kdeplasma-addons-5.5.1.tar.xz"; }; }; kgamma5 = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kgamma5-5.5.0.tar.xz"; - sha256 = "1i6c0m0dr23z09r1rdfcna168bmnaysqxwxmp55ix3jad9ilfa8f"; - name = "kgamma5-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kgamma5-5.5.1.tar.xz"; + sha256 = "0qwb2fl27pprr6m2vhr021whpashgan3lx2s91iyb09cxf56883y"; + name = "kgamma5-5.5.1.tar.xz"; }; }; khelpcenter = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/khelpcenter-5.5.0.tar.xz"; - sha256 = "0piwsa446ja6fmkxc8shzxqmbq7hcbydpc4xsc6bsjbzbskz8c09"; - name = "khelpcenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/khelpcenter-5.5.1.tar.xz"; + sha256 = "0alsn8xsac0l2zdsk9fvawz3zvg431qgg443p05v6a2pfadb2b0s"; + name = "khelpcenter-5.5.1.tar.xz"; }; }; khotkeys = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/khotkeys-5.5.0.tar.xz"; - sha256 = "197fhzm1rcm65k8idf0wlzsnfxpimdzg516syjzkwah5smg1qshl"; - name = "khotkeys-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/khotkeys-5.5.1.tar.xz"; + sha256 = "0rbmdh8yv8ms19kn3r0qcgy0wlrin5jhxic55pc4hdccxy0alchi"; + name = "khotkeys-5.5.1.tar.xz"; }; }; kinfocenter = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kinfocenter-5.5.0.tar.xz"; - sha256 = "1xr9l8wg20n0fyg5x9rgyhbimgwmlf97cf2v3yi8aff5mx348avy"; - name = "kinfocenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kinfocenter-5.5.1.tar.xz"; + sha256 = "0b1z8qsa1qpl9w13ag8154biry44r19nrg1mb5r3wjy22s1nmf40"; + name = "kinfocenter-5.5.1.tar.xz"; }; }; kmenuedit = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kmenuedit-5.5.0.tar.xz"; - sha256 = "1hbifshppw64zmsybvcnm4sjy14zjq9rg2jxb36blfnvw08i9z4n"; - name = "kmenuedit-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kmenuedit-5.5.1.tar.xz"; + sha256 = "0wk5lainva9pc8ccflpfgil9b9vi6wf1vfd5pkn11n9dqr1sbgcq"; + name = "kmenuedit-5.5.1.tar.xz"; }; }; kscreen = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kscreen-5.5.0.tar.xz"; - sha256 = "0mznp9lb9z65vfqb752iw7scz0hs3if3bmk9nq1i6ns3c520gcx6"; - name = "kscreen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kscreen-5.5.1.tar.xz"; + sha256 = "1zn31yfk2x9xpqvr0liyna98sk486qqbdgzisx8dl5jm8j7lxm5c"; + name = "kscreen-5.5.1.tar.xz"; }; }; kscreenlocker = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kscreenlocker-5.5.0.tar.xz"; - sha256 = "1myx3ykcq4p9f04bp2w7anqnr9f6b2rjajhkvxbwa9rvxjhwf3n9"; - name = "kscreenlocker-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kscreenlocker-5.5.1.tar.xz"; + sha256 = "0614w38isbqhvw425620mabvczjph52b6mpzzp0ac462ryl5061s"; + name = "kscreenlocker-5.5.1.tar.xz"; }; }; ksshaskpass = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/ksshaskpass-5.5.0.tar.xz"; - sha256 = "12m88cvgvsnfvzvpyaji7x4pcb4b2xw977x5w50b73mbznxw9hhh"; - name = "ksshaskpass-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/ksshaskpass-5.5.1.tar.xz"; + sha256 = "0xafh56wpa7ypj2j4pbgp8p7gk95xa7q3wbab3qw8n7gwjwvgm8v"; + name = "ksshaskpass-5.5.1.tar.xz"; }; }; ksysguard = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/ksysguard-5.5.0.tar.xz"; - sha256 = "1paj03yccnym83l5585scn6mhd82xpzz5pqwqc4gz45cfq6ix3bv"; - name = "ksysguard-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/ksysguard-5.5.1.tar.xz"; + sha256 = "0zp3hd22hljn1xqdbmayhrbm4niksp9s6p8fx0nv7pnnv8h02vw1"; + name = "ksysguard-5.5.1.tar.xz"; }; }; kwallet-pam = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwallet-pam-5.5.0.tar.xz"; - sha256 = "084yyrm00i2yaikbl9sqzp2im56zb987cfqxqlrdgkkwf8p4g60g"; - name = "kwallet-pam-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kwallet-pam-5.5.1.tar.xz"; + sha256 = "1hk8a82dmvf9h5bhykpfx02b65vx30ziak698sjs0zp0hxfilq56"; + name = "kwallet-pam-5.5.1.tar.xz"; }; }; kwayland = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwayland-5.5.0.tar.xz"; - sha256 = "1dxa3xkqg96jw3gmc2jya3wym910pdzljhcdspk3n88045wn8hs9"; - name = "kwayland-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kwayland-5.5.1.tar.xz"; + sha256 = "18dxhyphd5chswa39isn47xjhp6v2di5jjs03g21wfc4q0avpd45"; + name = "kwayland-5.5.1.tar.xz"; }; }; kwayland-integration = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwayland-integration-5.5.0.tar.xz"; - sha256 = "0x2kqy89nzswx06n0diskjs14bjcsi0wyydbcx57553r1dkhkhn4"; - name = "kwayland-integration-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kwayland-integration-5.5.1.tar.xz"; + sha256 = "1ss19cxisz9xj4nh6zjmndpcp6r4gvmpsbqa2wycrvsqq6wrsr5f"; + name = "kwayland-integration-5.5.1.tar.xz"; }; }; kwin = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwin-5.5.0.tar.xz"; - sha256 = "0f7km0kj1wvm4knpskm3fa82f1nqbv8y8l7mj3nr00zm3rd2zc1l"; - name = "kwin-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kwin-5.5.1.tar.xz"; + sha256 = "0gqh98v4h6mc087xdqma5ab478f0zl2v1p6614q9w4si7770i8vl"; + name = "kwin-5.5.1.tar.xz"; }; }; kwrited = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwrited-5.5.0.tar.xz"; - sha256 = "1f0zkm0xd3cff947nprcxf45cyk6jkcglv1b7dzn727afm456js8"; - name = "kwrited-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/kwrited-5.5.1.tar.xz"; + sha256 = "0din1v4jls2bmxx50dx6hs4anfzrr50cb5m8qdq6n0j35p60xq30"; + name = "kwrited-5.5.1.tar.xz"; }; }; libkscreen = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/libkscreen-5.5.0.tar.xz"; - sha256 = "0w03fjcqazx60zzp4sx77fpz53i38hzgn400jqajiwbb6d3mrxw3"; - name = "libkscreen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/libkscreen-5.5.1.tar.xz"; + sha256 = "1v31hxdrwhrx0n582cp2is09k9slw8a7c8qr5yxc8gi96sj3hb2y"; + name = "libkscreen-5.5.1.tar.xz"; }; }; libksysguard = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/libksysguard-5.5.0.tar.xz"; - sha256 = "1p2nhf9wnw8jf4sinkk6rq7b1daymb16lmhd22lji34ayv1fh9i8"; - name = "libksysguard-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/libksysguard-5.5.1.tar.xz"; + sha256 = "1zgvxvrmi0amxmn4cmd0g4bdb7b97msdkycsckp7krv5mw5h55dx"; + name = "libksysguard-5.5.1.tar.xz"; }; }; milou = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/milou-5.5.0.tar.xz"; - sha256 = "0xh5fbf6j896dj7krd8fcapn5b10swgg0dmcv3sa8hzkpaw36gfm"; - name = "milou-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/milou-5.5.1.tar.xz"; + sha256 = "10qsfqx8rqzzy7yg1sikyxh9ycfplmvv30y8rgv4hihnh1yywhks"; + name = "milou-5.5.1.tar.xz"; }; }; oxygen = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/oxygen-5.5.0.tar.xz"; - sha256 = "12l0m2b5d970grpi5mxd6rl3g8ry50mfr1pjv4ar7jhic6w4zi7x"; - name = "oxygen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/oxygen-5.5.1.tar.xz"; + sha256 = "0fszhf3xavmygm82kb3i8pymvz9bc5av5mi35d0qj3fzwfgdkd6h"; + name = "oxygen-5.5.1.tar.xz"; }; }; plasma-desktop = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-desktop-5.5.0.tar.xz"; - sha256 = "1iak4j4jiigm0sm8f1w2g4w52v2q1rja6s5sy5247j9wyyfc6vw4"; - name = "plasma-desktop-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-desktop-5.5.1.tar.xz"; + sha256 = "1gazhr4501176z6r8psz8wjg3hcfigvpfm02q82aw9jpyy7sjini"; + name = "plasma-desktop-5.5.1.tar.xz"; }; }; plasma-mediacenter = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-mediacenter-5.5.0.tar.xz"; - sha256 = "10jrbs3mrf3vwnw6a0rsipryfr4pd0jp5s89srcqk10p25pimq52"; - name = "plasma-mediacenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-mediacenter-5.5.1.tar.xz"; + sha256 = "12xlixrjbs6lmdabp7f9mp6dhwai7qnj5n867q86qv6i836y10dy"; + name = "plasma-mediacenter-5.5.1.tar.xz"; }; }; plasma-nm = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-nm-5.5.0.tar.xz"; - sha256 = "1clzmrj78g1gs2d6qbnwk3snlz5rhipfrrzm5rsimjqxv111jfd4"; - name = "plasma-nm-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-nm-5.5.1.tar.xz"; + sha256 = "0q0189vz7770xv65skj7a47lbavfgz9a4x4csqv834k40pawkyhg"; + name = "plasma-nm-5.5.1.tar.xz"; }; }; plasma-pa = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-pa-5.5.0.tar.xz"; - sha256 = "0yi0snf6xndvwwzlylgyzpv90b9nsknrm3lsk4gvm49q8cvzy8km"; - name = "plasma-pa-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-pa-5.5.1.tar.xz"; + sha256 = "13falp4xq028jnkqf5nsv71vv9icclvyk701s5dbcff7v2k2zphk"; + name = "plasma-pa-5.5.1.tar.xz"; }; }; plasma-sdk = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-sdk-5.5.0.tar.xz"; - sha256 = "196lna5zbqa8py082c96xl5d3c2l9p4rcnb06fyd91x3z1csq54v"; - name = "plasma-sdk-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-sdk-5.5.1.tar.xz"; + sha256 = "1s1k8zdkzpp51dn7w1ra4mswjnrr7nnf7nywdx8k10c0fyxny7hy"; + name = "plasma-sdk-5.5.1.tar.xz"; }; }; plasma-workspace = { - version = "5.5.0"; + version = "5.5.1.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-workspace-5.5.0.tar.xz"; - sha256 = "013z03s0iy3aw9ks703wif7m6mlxx0vrxj98zvscmiaiasryhf13"; - name = "plasma-workspace-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-workspace-5.5.1.1.tar.xz"; + sha256 = "019pmhlry3zyrq4mvs35k1lmz35cwk4xvpl8wy7awx8r631dm4by"; + name = "plasma-workspace-5.5.1.1.tar.xz"; }; }; plasma-workspace-wallpapers = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-workspace-wallpapers-5.5.0.tar.xz"; - sha256 = "0qs547zy8qdmypa6cd60ksian94fykaysnjn7di00gjf2jpfy4dz"; - name = "plasma-workspace-wallpapers-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/plasma-workspace-wallpapers-5.5.1.tar.xz"; + sha256 = "1w2bbgcbjvdjxlgd4r3wva87i08y2ngqy85fngpl4387rq234zri"; + name = "plasma-workspace-wallpapers-5.5.1.tar.xz"; }; }; polkit-kde-agent = { - version = "1-5.5.0"; + version = "1-5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/polkit-kde-agent-1-5.5.0.tar.xz"; - sha256 = "0ahv82zyj42r1sp4mwp7s8iw44dw9rjx5yqvy7jvdmrvsa9n4f1c"; - name = "polkit-kde-agent-1-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/polkit-kde-agent-1-5.5.1.tar.xz"; + sha256 = "181d0l0dh7kxdz2ykl6g8mirxjcldm5p2737py3c7g617ysl97c1"; + name = "polkit-kde-agent-1-5.5.1.tar.xz"; }; }; powerdevil = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/powerdevil-5.5.0.tar.xz"; - sha256 = "03gayczhaxql54had50f0jf4vfcckhdxfndv1k33kf16ldyg3w4f"; - name = "powerdevil-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/powerdevil-5.5.1.tar.xz"; + sha256 = "1gjhclm58dxlmb6g8dm2alfqk7iw9fy5vyryn0z6i71j7760aqpp"; + name = "powerdevil-5.5.1.tar.xz"; }; }; sddm-kcm = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/sddm-kcm-5.5.0.tar.xz"; - sha256 = "1wvxi4z3bxzj1wgq5n76zlq7d7pydfllx7ghghkdqhl6g4vf6nk0"; - name = "sddm-kcm-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/sddm-kcm-5.5.1.tar.xz"; + sha256 = "0fbnyvyklr409n2qdbyvn1sqhkl7jdabldpv6brq010wd5f2rfrv"; + name = "sddm-kcm-5.5.1.tar.xz"; }; }; systemsettings = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/systemsettings-5.5.0.tar.xz"; - sha256 = "1azq8zq214p2lhyq28saw3m07ngi3z4bgx4rx0pflzswqfb6fxr1"; - name = "systemsettings-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/systemsettings-5.5.1.tar.xz"; + sha256 = "19q9yvlvyq61m3xjnii6zfpf5kwnja906i3709ia29132ai4x3sn"; + name = "systemsettings-5.5.1.tar.xz"; }; }; user-manager = { - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/user-manager-5.5.0.tar.xz"; - sha256 = "08v49rwfpq8is829z4zb04qhj49wa2d2c9l2h0di06k1km6vs729"; - name = "user-manager-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.1/user-manager-5.5.1.tar.xz"; + sha256 = "12mrn2fila5m1nzrj196s6q15g91c52zqqbgzi9zqk22n2801l9f"; + name = "user-manager-5.5.1.tar.xz"; }; }; } From cc058eff7052be3e2cfdfc2eef5203521e34444e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:44:07 -0600 Subject: [PATCH 234/707] kde5_latest: merge all package sets The three KDE package sets now have circular dependencies between them, so they can only be built if they are merged into a single package set during evaluation. --- .../services/x11/desktop-managers/kde5.nix | 98 ++++++++-------- pkgs/applications/kde-apps-15.12/default.nix | 15 ++- pkgs/desktops/plasma-5.5/default.nix | 50 ++++---- .../libraries/kde-frameworks-5.17/default.nix | 44 ++++--- pkgs/top-level/all-packages.nix | 107 +++++++++--------- 5 files changed, 154 insertions(+), 160 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 06fc622325f..933efa08fa3 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -8,9 +8,7 @@ let cfg = xcfg.desktopManager.kde5; xorg = pkgs.xorg; - kf5 = pkgs.kf5_stable; - plasma5 = pkgs.plasma5_stable; - kdeApps = pkgs.kdeApps_stable; + kde5 = pkgs.kde5; in @@ -57,12 +55,12 @@ in services.xserver.desktopManager.session = singleton { name = "kde5"; bgSupport = true; - start = ''exec ${plasma5.plasma-workspace}/bin/startkde;''; + start = ''exec ${kde5.plasma-workspace}/bin/startkde;''; }; security.setuidOwners = singleton { program = "kcheckpass"; - source = "${plasma5.plasma-workspace}/lib/libexec/kcheckpass"; + source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass"; owner = "root"; group = "root"; setuid = true; @@ -72,61 +70,61 @@ in [ pkgs.qt4 # qtconfig is the only way to set Qt 4 theme - kf5.frameworkintegration - kf5.kinit + kde5.frameworkintegration + kde5.kinit - plasma5.breeze - plasma5.kde-cli-tools - plasma5.kdeplasma-addons - plasma5.kgamma5 - plasma5.khelpcenter - plasma5.khotkeys - plasma5.kinfocenter - plasma5.kmenuedit - plasma5.kscreen - plasma5.ksysguard - plasma5.kwayland - plasma5.kwin - plasma5.kwrited - plasma5.milou - plasma5.oxygen - plasma5.polkit-kde-agent - plasma5.systemsettings + kde5.breeze + kde5.kde-cli-tools + kde5.kdeplasma-addons + kde5.kgamma5 + kde5.khelpcenter + kde5.khotkeys + kde5.kinfocenter + kde5.kmenuedit + kde5.kscreen + kde5.ksysguard + kde5.kwayland + kde5.kwin + kde5.kwrited + kde5.milou + kde5.oxygen + kde5.polkit-kde-agent + kde5.systemsettings - plasma5.plasma-desktop - plasma5.plasma-workspace - plasma5.plasma-workspace-wallpapers + kde5.plasma-desktop + kde5.plasma-workspace + kde5.plasma-workspace-wallpapers - kdeApps.ark - kdeApps.dolphin - kdeApps.dolphin-plugins - kdeApps.ffmpegthumbs - kdeApps.gwenview - kdeApps.kate - kdeApps.kdegraphics-thumbnailers - kdeApps.konsole - kdeApps.okular - kdeApps.print-manager + kde5.ark + kde5.dolphin + kde5.dolphin-plugins + kde5.ffmpegthumbs + kde5.gwenview + kde5.kate + kde5.kdegraphics-thumbnailers + kde5.konsole + kde5.okular + kde5.print-manager # Oxygen icons moved to KDE Frameworks 5.16 and later. - (kdeApps.oxygen-icons or kf5.oxygen-icons5) + (kde5.oxygen-icons or kde5.oxygen-icons5) pkgs.hicolor_icon_theme - plasma5.kde-gtk-config + kde5.kde-gtk-config ] # Plasma 5.5 and later has a Breeze GTK theme. # If it is not available, Orion is very similar to Breeze. - ++ lib.optional (!(lib.hasAttr "breeze-gtk" plasma5)) pkgs.orion + ++ lib.optional (!(lib.hasAttr "breeze-gtk" kde5)) pkgs.orion # Install Breeze icons if available - ++ lib.optional (lib.hasAttr "breeze-icons" kf5) kf5.breeze-icons + ++ lib.optional (lib.hasAttr "breeze-icons" kde5) kde5.breeze-icons # Optional hardware support features - ++ lib.optional config.hardware.bluetooth.enable plasma5.bluedevil - ++ lib.optional config.networking.networkmanager.enable plasma5.plasma-nm - ++ lib.optional config.hardware.pulseaudio.enable plasma5.plasma-pa - ++ lib.optional config.powerManagement.enable plasma5.powerdevil + ++ lib.optional config.hardware.bluetooth.enable kde5.bluedevil + ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm + ++ lib.optional config.hardware.pulseaudio.enable kde5.plasma-pa + ++ lib.optional config.powerManagement.enable kde5.powerdevil ++ lib.optionals cfg.phonon.gstreamer.enable [ @@ -167,13 +165,13 @@ in }; # Enable GTK applications to load SVG icons - environment.variables = mkIf (lib.hasAttr "breeze-icons" kf5) { + environment.variables = mkIf (lib.hasAttr "breeze-icons" kde5) { GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; }; - fonts.fonts = [ (plasma5.oxygen-fonts or pkgs.noto-fonts) ]; + fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; - programs.ssh.askPassword = "${plasma5.ksshaskpass}/bin/ksshaskpass"; + programs.ssh.askPassword = "${kde5.ksshaskpass}/bin/ksshaskpass"; # Enable helpful DBus services. services.udisks2.enable = true; @@ -185,8 +183,8 @@ in services.xserver.displayManager.sddm = { theme = "breeze"; themes = [ - plasma5.plasma-workspace - (kdeApps.oxygen-icons or kf5.oxygen-icons5) + kde5.plasma-workspace + (kde5.oxygen-icons or kde5.oxygen-icons5) ]; }; diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index a89f88b58fa..d5c0aa44668 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -21,12 +21,13 @@ let srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; mirror = "mirror://kde"; - kdeApp = import ./kde-app.nix { - inherit stdenv lib; - inherit debug srcs; - }; - packages = self: with self; { + + kdeApp = import ./kde-app.nix { + inherit stdenv lib; + inherit debug srcs; + }; + kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; ark = callPackage ./ark.nix {}; @@ -49,6 +50,4 @@ let l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); }; - newScope = scope: pkgs.kf517.newScope ({ inherit kdeApp; } // scope); - -in lib.makeScope newScope packages +in packages diff --git a/pkgs/desktops/plasma-5.5/default.nix b/pkgs/desktops/plasma-5.5/default.nix index 812c70c2b00..c9fcbdd8e6a 100644 --- a/pkgs/desktops/plasma-5.5/default.nix +++ b/pkgs/desktops/plasma-5.5/default.nix @@ -16,33 +16,33 @@ let srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; mirror = "mirror://kde"; - plasmaPackage = args: - let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; + packages = self: with self; { + plasmaPackage = args: + let + inherit (args) name; + sname = args.sname or name; + inherit (srcs."${sname}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - setupHook = args.setupHook or ./setup-hook.sh; + setupHook = args.setupHook or ./setup-hook.sh; - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ttuegel ]; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); - addPackages = self: with self; { bluedevil = callPackage ./bluedevil.nix {}; breeze-gtk = callPackage ./breeze-gtk.nix {}; breeze-qt4 = callPackage ./breeze-qt4.nix {}; @@ -81,6 +81,4 @@ let systemsettings = callPackage ./systemsettings.nix {}; }; - newScope = scope: kdeApps.newScope ({ inherit plasmaPackage; } // scope); - -in lib.makeScope newScope addPackages +in packages diff --git a/pkgs/development/libraries/kde-frameworks-5.17/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix index 6c2889aa598..3a865b9d404 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix @@ -14,29 +14,29 @@ let mirror = "mirror://kde"; srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; + packages = self: with self; { + kdeFramework = args: + let + inherit (args) name; + inherit (srcs."${name}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); - addPackages = self: with self; { attica = callPackage ./attica.nix {}; baloo = callPackage ./baloo.nix {}; bluez-qt = callPackage ./bluez-qt.nix {}; @@ -109,6 +109,4 @@ let threadweaver = callPackage ./threadweaver.nix {}; }; - newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); - -in lib.makeScope newScope addPackages +in packages diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index efc59b70340..b5a17114a4b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6859,54 +6859,10 @@ let }; kf515 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.15 { inherit pkgs; }); - kf517 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }); + kf517 = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; kf5_stable = kf515; kf5_latest = kf517; - kf5PackagesFun = self: with self; { - - fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; - - k9copy = callPackage ../applications/video/k9copy {}; - - quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { - monolithic = true; - daemon = false; - client = false; - withKDE = true; - dconf = gnome3.dconf; - tag = "-kf5"; - }; - - quasselClient = quassel.override { - monolithic = false; - client = true; - tag = "-client-kf5"; - }; - - quassel_qt5 = quassel.override { - withKDE = false; - tag = "-qt5"; - }; - - quasselClient_qt5 = quasselClient.override { - withKDE = false; - tag = "-client-qt5"; - }; - - quasselDaemon = quassel.override { - monolithic = false; - daemon = true; - tag = "-daemon-qt5"; - withKDE = false; - }; - - }; - - kf515Packages = lib.makeScope kf515.newScope kf5PackagesFun; - kf517Packages = lib.makeScope kf517.newScope kf5PackagesFun; - kf5Packages = kf515Packages; - kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; krb5Full = callPackage ../development/libraries/kerberos/krb5.nix { @@ -12250,7 +12206,7 @@ let }; kdeApps_15_08 = recurseIntoAttrs (import ../applications/kde-apps-15.08 { inherit pkgs; }); - kdeApps_15_12 = recurseIntoAttrs (import ../applications/kde-apps-15.12 { inherit pkgs; }); + kdeApps_15_12 = import ../applications/kde-apps-15.12 { inherit pkgs; }; kdeApps_stable = kdeApps_15_08; kdeApps_latest = kdeApps_15_12; @@ -14756,11 +14712,56 @@ let numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { }; plasma54 = recurseIntoAttrs (import ../desktops/plasma-5.4 { inherit pkgs; }); - plasma55 = recurseIntoAttrs (import ../desktops/plasma-5.5 { inherit pkgs; }); + plasma55 = import ../desktops/plasma-5.5 { inherit pkgs; }; plasma5_stable = plasma54; plasma5_latest = plasma55; - kde5 = kf5_stable // plasma5_stable // kdeApps_stable; + kde5PackagesFun = self: with self; { + + fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; + + k9copy = callPackage ../applications/video/k9copy {}; + + quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { + monolithic = true; + daemon = false; + client = false; + withKDE = true; + dconf = gnome3.dconf; + tag = "-kf5"; + }; + + quasselClient = quassel.override { + monolithic = false; + client = true; + tag = "-client-kf5"; + }; + + quassel_qt5 = quassel.override { + withKDE = false; + tag = "-qt5"; + }; + + quasselClient_qt5 = quasselClient.override { + withKDE = false; + tag = "-client-qt5"; + }; + + quasselDaemon = quassel.override { + monolithic = false; + daemon = true; + tag = "-daemon-qt5"; + withKDE = false; + }; + + }; + + kde5 = kf5_stable // plasma5_stable // kdeApps_stable // kde5PackagesFun kde5; + + kde5_latest = + recurseIntoAttrs + (lib.makeScope qt55Libs.newScope (self: + kf5_latest self // plasma5_latest self // kdeApps_latest self // kde5PackagesFun self)); theme-vertex = callPackage ../misc/themes/vertex { }; @@ -15784,11 +15785,11 @@ aliases = with self; rec { lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 nfsUtils = nfs-utils; # added 2014-12-06 - quassel_qt5 = kf5Packages.quassel_qt5; # added 2015-09-30 - quasselClient_qt5 = kf5Packages.quasselClient_qt5; # added 2015-09-30 - quasselDaemon_qt5 = kf5Packages.quasselDaemon; # added 2015-09-30 - quassel_kf5 = kf5Packages.quassel; # added 2015-09-30 - quasselClient_kf5 = kf5Packages.quasselClient; # added 2015-09-30 + quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 + quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 + quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 + quassel_kf5 = kde5.quassel; # added 2015-09-30 + quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 rdiff_backup = rdiff-backup; # added 2014-11-23 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 From 408c3e5033a15a5772548147975d824e1b96fbef Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:46:51 -0600 Subject: [PATCH 235/707] kdeApps_15_12.spectacle: init at 15.12.0 --- pkgs/applications/kde-apps-15.12/default.nix | 1 + .../applications/kde-apps-15.12/spectacle.nix | 46 +++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/applications/kde-apps-15.12/spectacle.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index d5c0aa44668..e96c0c2af33 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -46,6 +46,7 @@ let libkipi = callPackage ./libkipi.nix {}; okular = callPackage ./okular.nix {}; print-manager = callPackage ./print-manager.nix {}; + spectacle = callPackage ./spectacle.nix {}; l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); }; diff --git a/pkgs/applications/kde-apps-15.12/spectacle.nix b/pkgs/applications/kde-apps-15.12/spectacle.nix new file mode 100644 index 00000000000..849334fb736 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/spectacle.nix @@ -0,0 +1,46 @@ +{ kdeApp, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kconfig +, kcoreaddons +, kdbusaddons +, ki18n +, kio +, knotifications +, kscreen +, kwidgetsaddons +, kwindowsystem +, kxmlgui +, libkipi +, xcb-util-cursor +}: + +kdeApp { + name = "spectacle"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kconfig + kcoreaddons + kdbusaddons + ki18n + kio + knotifications + kscreen + kwidgetsaddons + kwindowsystem + kxmlgui + libkipi + xcb-util-cursor + ]; + postFixup = '' + wrapQtProgram "$out/bin/spectacle" + ''; + meta = with lib; { + maintainers = with maintainers; [ ttuegel ]; + }; +} From 06f491d762675cac21d3ff29974591cc384e63aa Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 10:22:19 -0600 Subject: [PATCH 236/707] nixos/xserver: fix typos --- nixos/modules/services/x11/xserver.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 8fcca70bc79..799a7329813 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -519,9 +519,9 @@ in "-terminate" "-config ${configFile}" "-xkbdir" "${pkgs.xkeyboard_config}/etc/X11/xkb" - ] ++ optional (cfg.display != null) ":${tostring cfg.display}" + ] ++ optional (cfg.display != null) ":${toString cfg.display}" ++ optional (cfg.tty != null) "vt${toString cfg.tty}" - ++ optional (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] + ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] ++ optional (!cfg.enableTCP) "-nolisten tcp"; services.xserver.modules = From 765168061545615f18fcfccbc4ab271bcf7f7f7b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 17:24:48 +0100 Subject: [PATCH 237/707] firefox: 42.0 -> 43.0 --- pkgs/applications/networking/browsers/firefox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index b7bd07d01e1..6ee926db693 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -133,8 +133,8 @@ in { firefox = common { pname = "firefox"; - version = "42.0"; - sha256 = "1bm37p1ydxvnflh7kb52g6wfblxqc0kbgjn09sv7g0i9k5k38jlr"; + version = "43.0"; + sha256 = "1slg5m05z67q29mrpjv0a753c4vy1vxhx7p3f75494yfvi0ngcd5"; }; firefox-esr = common { From bb30c79f0bff1a850cd80f2344167fcb6e821dae Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Wed, 16 Dec 2015 18:14:40 +0100 Subject: [PATCH 238/707] vagrant: bring embedded/ libraries in scope of dynamic linker. --- pkgs/development/tools/vagrant/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 085807e1bfa..a39c53f676a 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, dpkg, curl, libarchive, openssl, ruby, buildRubyGem, libiconv -, libxml2, libxslt }: +, libxml2, libxslt, makeWrapper }: assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; @@ -35,6 +35,8 @@ stdenv.mkDerivation rec { platforms = platforms.linux; }; + buildInputs = [ makeWrapper ]; + unpackPhase = '' ${dpkg}/bin/dpkg-deb -x ${src} . ''; @@ -89,6 +91,7 @@ stdenv.mkDerivation rec { mkdir -p "$out" cp -r opt "$out" cp -r usr/bin "$out" + wrapProgram $out/bin/vagrant --prefix LD_LIBRARY_PATH : $out/opt/vagrant/embedded/lib ''; preFixup = '' From 9dae6345f456150b5a62bb8feb20257b2bd07ce2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 20:30:20 +0100 Subject: [PATCH 239/707] Typo --- pkgs/tools/filesystems/ntfs-3g/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/ntfs-3g/default.nix b/pkgs/tools/filesystems/ntfs-3g/default.nix index f10e05ac486..fd714b89054 100644 --- a/pkgs/tools/filesystems/ntfs-3g/default.nix +++ b/pkgs/tools/filesystems/ntfs-3g/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = http://www.tuxera.com/community/; - description = "FUSE-base NTFS driver with full write support"; + description = "FUSE-based NTFS driver with full write support"; maintainers = [ maintainers.urkud ]; platforms = platforms.linux; license = licenses.gpl2Plus; # and (lib)fuse-lite under LGPL2+ From 79a3c8a952e7d5cb93a04c6ec6d7db95f99e22d7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 20:30:45 +0100 Subject: [PATCH 240/707] 9pfs: Add This is a FUSE-based 9p client. --- pkgs/tools/filesystems/9pfs/default.nix | 30 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/filesystems/9pfs/default.nix diff --git a/pkgs/tools/filesystems/9pfs/default.nix b/pkgs/tools/filesystems/9pfs/default.nix new file mode 100644 index 00000000000..c75cc45170a --- /dev/null +++ b/pkgs/tools/filesystems/9pfs/default.nix @@ -0,0 +1,30 @@ +{ lib, stdenv, fetchFromGitHub, fuse }: + +stdenv.mkDerivation rec { + name = "9pfs"; + + src = fetchFromGitHub { + owner = "spewspew"; + repo = "9pfs"; + rev = "7f4ca4cd750d650c1215b92ac3cc2a28041960e4"; + sha256 = "007s2idsn6bspmfxv1qabj39ggkgvn6gwdbhczwn04lb4c6gh3xc"; + }; + + preConfigure = + '' + substituteInPlace Makefile --replace '-g bin' "" + installFlagsArray+=(BIN=$out/bin MAN=$out/share/man/man1) + mkdir -p $out/bin $out/share/man/man1 + ''; + + buildInputs = [ fuse ]; + + enableParallelBuilding = true; + + meta = { + homepage = https://github.com/spewspew/9pfs; + description = "FUSE-based client of the 9P network filesystem protocol"; + maintainers = [ lib.maintainers.eelco ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7736e33ca1..e18e326aa7f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -474,6 +474,8 @@ let ### TOOLS + _9pfs = callPackage ../tools/filesystems/9pfs { }; + "3dfsb" = callPackage ../applications/misc/3dfsb { glibc = glibc.override { debugSymbols = true; }; }; From 848064cef6a9368898bfb8f01c1cb2d5c8373a80 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Wed, 16 Dec 2015 12:03:18 -0800 Subject: [PATCH 241/707] remove old patches and attributes from xorgserver --- pkgs/servers/x11/xorg/overrides.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 78be046366d..d6e18254760 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -340,16 +340,12 @@ in # Patches can be pulled from the server-*-apple branches of: # http://cgit.freedesktop.org/~jeremyhu/xserver/ patches = commonPatches ++ [ - ./darwin/0001-XQuartz-GLX-Use-__glXEnableExtension-to-build-extens.patch ./darwin/0002-sdksyms.sh-Use-CPPFLAGS-not-CFLAGS.patch - ./darwin/0003-Workaround-the-GC-clipping-problem-in-miPaintWindow-.patch ./darwin/0004-Use-old-miTrapezoids-and-miTriangles-routines.patch - ./darwin/0005-fb-Revert-fb-changes-that-broke-XQuartz.patch ./darwin/0006-fb-Revert-fb-changes-that-broke-XQuartz.patch ./darwin/private-extern.patch ./darwin/bundle_main.patch ./darwin/stub.patch - ./darwin/function-pointer-test.patch ]; configureFlags = [ # note: --enable-xquartz is auto @@ -360,9 +356,6 @@ in "--with-bundle-id-prefix=org.nixos.xquartz" "--with-sha1=CommonCrypto" ]; - __impureHostDeps = ["/System/Library" "/usr"]; - NIX_CFLAGS_COMPILE = "-F/System/Library/Frameworks -I/usr/include"; - NIX_CFLAGS_LINK = "-L/usr/lib"; preConfigure = '' ensureDir $out/Applications export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-error" From 46b57614d9fab25550aefa235dcc011e23816f77 Mon Sep 17 00:00:00 2001 From: Tom Dimiduk Date: Wed, 16 Dec 2015 15:24:03 -0500 Subject: [PATCH 242/707] tome4: 1.3.1 -> 1.3.3 --- pkgs/games/tome4/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix index 7b7b0808aa9..8ad0f7723c0 100644 --- a/pkgs/games/tome4/default.nix +++ b/pkgs/games/tome4/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, openal, libvorbis, mesa_glu, premake4, SDL2, SDL2_image, SDL2_ttf}: stdenv.mkDerivation rec { - version = "1.3.1"; + version = "1.3.3"; name = "tome4-${version}"; src = fetchurl { - url = "http://te4.org/dl/t-engine/t-engine4-src-1.3.1.tar.bz2"; - sha256 = "9b6658e29ad3be9f8469a61e724350f4dfec676777e471f633d616443dfbc7e7"; + url = "http://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2"; + sha256 = "d4c6d6aa0cb73b28172cebf89e4271b0a51c6e7dea744ce9c6d6042dd076e9cd"; }; buildInputs = [ mesa_glu openal libvorbis SDL2 SDL2_ttf SDL2_image premake4 ]; preConfigure = '' From c08fe8407c32b3710b46e8de31a17055054c83a1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 15:10:38 +0100 Subject: [PATCH 243/707] Add haskell.packages.ghc7103 package set. --- pkgs/top-level/haskell-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 9b3f3e66854..997baa7eaa9 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -98,6 +98,10 @@ rec { ghc = compiler.ghc7102; compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { }; }; + ghc7103 = callPackage ../development/haskell-modules { + ghc = compiler.ghc7103; + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { }; + }; ghcHEAD = callPackage ../development/haskell-modules { ghc = compiler.ghcHEAD; compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { }; From eae27e77980bcbe4f7bcec1b2aec517d29f9630c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 18:32:54 +0100 Subject: [PATCH 244/707] ghc: update version 7.10.3 to 7.10.3a Apply upstream patches that fix minor cosmetic issues in the documentation. --- pkgs/development/compilers/ghc/7.10.3.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index 32d6b72970c..ce6db9127d6 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -15,6 +15,11 @@ let ''} ''; + docFixes = fetchurl { + url = "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3a.patch"; + sha256 = "1j45z4kcd3w1rzm4hapap2xc16bbh942qnzzdbdjcwqznsccznf0"; + }; + in stdenv.mkDerivation rec { @@ -26,6 +31,10 @@ stdenv.mkDerivation rec { sha256 = "1vsgmic8csczl62ciz51iv8nhrkm72lyhbz7p7id13y2w7fcx46g"; }; + patches = [ + docFixes + ]; + buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ]; enableParallelBuilding = true; From a421e7bd4a28c69bded8b17888325e31554f61a1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 Dec 2015 22:09:37 +0100 Subject: [PATCH 245/707] ghc-7.10.3: don't pass compiler or linker flags through a response file The new GHC version contains a patch [1] that passes linker and compiler flags to GCC via response files rather than directly on the command-line. This is supposed to be beneficial on Windows and other platforms that have trouble dealing with long argument lists. On NixOS, however, this feature breaks the flag handling provided by gcc-wrapper [2] and therefore causes the entire GHC build to fail. This issue has been reported upstream at [3]. It's not clear yet how to remedy this problem, but until we've figured that out we just don't pass compiler flags in response files on NixOS to fix https://github.com/NixOS/nixpkgs/issues/10752. [1] https://github.com/ghc/ghc/commit/296bc70b5ff6c853f2782e9ec5aa47a52110345e [2] https://github.com/NixOS/nixpkgs/issues/11762 [3] https://ghc.haskell.org/trac/ghc/ticket/11147 --- pkgs/development/compilers/ghc/7.10.3.nix | 1 + ...pass-linker-flags-via-response-files.patch | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index ce6db9127d6..f9f863ca78c 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation rec { patches = [ docFixes + ./dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752 ]; buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ]; diff --git a/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch b/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch new file mode 100644 index 00000000000..129a34ecd86 --- /dev/null +++ b/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch @@ -0,0 +1,22 @@ +diff --git a/compiler/main/SysTools.hs b/compiler/main/SysTools.hs +index 8c3ab1a..47a2da7 100644 +--- a/compiler/main/SysTools.hs ++++ b/compiler/main/SysTools.hs +@@ -414,7 +414,7 @@ runCc dflags args = do + args1 = map Option (getOpts dflags opt_c) + args2 = args0 ++ args1 ++ args + mb_env <- getGccEnv args2 +- runSomethingResponseFile dflags cc_filter "C Compiler" p args2 mb_env ++ runSomethingFiltered dflags cc_filter "C Compiler" p args2 mb_env + where + -- discard some harmless warnings from gcc that we can't turn off + cc_filter = unlines . doFilter . lines +@@ -928,7 +928,7 @@ runLink dflags args = do + args1 = map Option (getOpts dflags opt_l) + args2 = args0 ++ linkargs ++ args1 ++ args + mb_env <- getGccEnv args2 +- runSomethingResponseFile dflags ld_filter "Linker" p args2 mb_env ++ runSomethingFiltered dflags ld_filter "Linker" p args2 mb_env + where + ld_filter = case (platformOS (targetPlatform dflags)) of + OSSolaris2 -> sunos_ld_filter From 878692e645d6c7ecc1e26b785b413797b6931b1a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 16:54:14 +0100 Subject: [PATCH 246/707] ghc-7.10.3: remove the obsolete build.mk file New versions of GHC allow us to specify those things on the command-line, so the build.mk file is no longer necessary. --- pkgs/development/compilers/ghc/7.10.3.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index f9f863ca78c..88d1bec4d42 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -4,17 +4,6 @@ let - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ${stdenv.lib.optionalString stdenv.isDarwin '' - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" - ''} - ''; - docFixes = fetchurl { url = "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3a.patch"; sha256 = "1j45z4kcd3w1rzm4hapap2xc16bbh942qnzzdbdjcwqznsccznf0"; @@ -41,7 +30,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; preConfigure = '' - echo >mk/build.mk "${buildMK}" sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" @@ -52,6 +40,9 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + ] ++ stdenv.lib.optional stdenv.isDarwin [ + "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; # required, because otherwise all symbols from HSffi.o are stripped, and From 1f108490f13020b114f5872b74282ed3ac44eac0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 19:18:29 +0100 Subject: [PATCH 247/707] ghc-HEAD: update build instructions and bump version to current Git master Closes https://github.com/NixOS/nixpkgs/issues/10752. --- pkgs/development/compilers/ghc/head.nix | 52 ++++++++++++++----------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index fe0d0b37371..9b360b609e4 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,32 +1,22 @@ -{ stdenv, fetchgit, ghc, perl, gmp, ncurses, libiconv, autoconf, automake, happy, alex }: - -let - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - DYNAMIC_BY_DEFAULT = NO - ${stdenv.lib.optionalString stdenv.isDarwin '' - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" - ''} - ''; - -in +{ stdenv, fetchgit, ghc, perl, gmp, ncurses, libiconv, binutils, coreutils +, autoconf, automake, happy, alex +}: stdenv.mkDerivation rec { - version = "7.11.20150828"; + version = "7.11.20151216"; name = "ghc-${version}"; - rev = "38c98e4f61a48084995a5347d76ddd024ce1a09c"; + rev = "28638dfe79e915f33d75a1b22c5adce9e2b62b97"; src = fetchgit { url = "git://git.haskell.org/ghc.git"; inherit rev; - sha256 = "0wnxrfzjpjcmsmd2i0zg30jg7zpw1rrfwz8r56g314l7xcns6yp1"; + sha256 = "0rjzkzn0hz1vdnjikcbwfs5ggs8r3y4gqxfdn4jzfp45gx94wiwv"; }; + patches = [ + ./dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752 + ]; + postUnpack = '' pushd ghc-${builtins.substring 0 7 rev} echo ${version} >VERSION @@ -38,24 +28,40 @@ stdenv.mkDerivation rec { buildInputs = [ ghc perl autoconf automake happy alex ]; + enableParallelBuilding = true; + preConfigure = '' - echo >mk/build.mk "${buildMK}" sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + export NIX_LDFLAGS+=" -no_dtrace_dof" ''; configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + ] ++ stdenv.lib.optional stdenv.isDarwin [ + "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; - enableParallelBuilding = true; - # required, because otherwise all symbols from HSffi.o are stripped, and # that in turn causes GHCi to abort stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols"; + postInstall = '' + # Install the bash completion file. + install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc + + # Patch scripts to include "readelf" and "cat" in $PATH. + for i in "$out/bin/"*; do + test ! -h $i || continue + egrep --quiet '^#!' <(head -n 1 $i) || continue + sed -i -e '2i export PATH="$PATH:${binutils}/bin:${coreutils}/bin"' $i + done + ''; + meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; From bc5f82dfc26cb9135b419dc706178f4696fdaefe Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Fri, 11 Dec 2015 07:46:40 -0500 Subject: [PATCH 248/707] Fixup pointfree package. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fd6d521369f..d844f2a047a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -940,4 +940,8 @@ self: super: { # https://github.com/mainland/language-c-quote/issues/57 language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; + + # The package doesn't yet compile with new HSE: https://github.com/bmillwood/pointfree/pull/13 + pointfree = super.pointfree.override { haskell-src-exts = self.haskell-src-exts_1_16_0_1; }; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 35fd547d334..00e12b01564 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -92,7 +92,6 @@ self: super: { utf8-string = overrideCabal super.utf8-string (drv: { postPatch = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal"; }); - pointfree = doJailbreak super.pointfree; # acid-state/safecopy#25 acid-state/safecopy#26 safecopy = dontCheck (super.safecopy); From 97834fc233afe624a052fe4f01d5bc876eeaa208 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sat, 12 Dec 2015 16:49:00 -0500 Subject: [PATCH 249/707] Don't check hindent It appears its test suite has some issues at present, based on https://github.com/chrisdone/hindent/issues/166, which seems to preceed haskell-src-exts-1.17 being released. --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d844f2a047a..ad80220549a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -818,6 +818,8 @@ self: super: { # Byte-compile elisp code for Emacs. hindent = overrideCabal super.hindent (drv: { + # https://github.com/chrisdone/hindent/issues/166 + doCheck = false; executableToolDepends = drv.executableToolDepends or [] ++ [pkgs.emacs]; postInstall = '' local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" ) From 8baebb55d43804733c77ac8263fe75e92b544a50 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 19:33:02 -0600 Subject: [PATCH 250/707] lib/strings: add readPathsFromFile --- lib/strings.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/strings.nix b/lib/strings.nix index ce2c4132bbc..098da975c60 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -235,4 +235,19 @@ rec { then may_be_int else throw "Could not convert ${str} to int."; + # Read a list of paths from `file', relative to the `rootPath'. Lines + # beginning with `#' are treated as comments and ignored. Whitespace + # is significant. + readPathsFromFile = rootPath: file: + let + root = toString rootPath; + lines = + builtins.map (lib.removeSuffix "\n") + (lib.splitString "\n" (builtins.readFile file)); + removeComments = lib.filter (line: !(lib.hasPrefix "#" line)); + relativePaths = removeComments lines; + absolutePaths = builtins.map (path: builtins.toPath (root + "/" + path)) relativePaths; + in + absolutePaths; + } From d6bec4e77f3431261ee08c19f04d1bf81003f9b7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 15:00:44 -0600 Subject: [PATCH 251/707] add copyPathToStore and copyPathsToStore --- pkgs/build-support/trivial-builders.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 9203425b20a..1350e36940b 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -153,4 +153,10 @@ _EOF_ exec ${bin} "$@" ''; + # Copy a path to the Nix store. + copyPathToStore = builtins.filterSource (p: t: true); + + # Copy a list of paths to the Nix store. + copyPathsToStore = builtins.map copyPathToStore; + } From c10bb5179f6759a0685a3670f490004b8f228d7a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 15:19:54 -0600 Subject: [PATCH 252/707] plasma55.plasma-workspace: update patches The startkde patch was invalidated in the plasma-workspace-5.5.1 release. Quilt is now used to manage these large patches; it is much simpler to use than Git. --- .../0001-qt-5.5-QML-import-paths.patch | 123 ------------------ .../plasma-5.5/plasma-workspace/default.nix | 25 ++-- .../plasma-workspace/qml-import-path.patch | 104 +++++++++++++++ .../plasma-5.5/plasma-workspace/series | 2 + ...kde-NixOS-patches.patch => startkde.patch} | 58 +++------ 5 files changed, 137 insertions(+), 175 deletions(-) delete mode 100644 pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch create mode 100644 pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch create mode 100644 pkgs/desktops/plasma-5.5/plasma-workspace/series rename pkgs/desktops/plasma-5.5/plasma-workspace/{0002-startkde-NixOS-patches.patch => startkde.patch} (90%) diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch deleted file mode 100644 index fd0d596243b..00000000000 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,123 +0,0 @@ -From ec91088ec46358f39a0374b910cd776993c63acf Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:55:36 -0500 -Subject: [PATCH 1/2] qt-5.5 QML import paths - ---- - applets/analog-clock/contents/ui/analogclock.qml | 2 +- - applets/batterymonitor/package/contents/ui/BatteryItem.qml | 2 +- - applets/batterymonitor/package/contents/ui/CompactRepresentation.qml | 2 +- - applets/batterymonitor/package/contents/ui/PopupDialog.qml | 2 +- - applets/batterymonitor/package/contents/ui/batterymonitor.qml | 2 +- - applets/lock_logout/contents/ui/lockout.qml | 2 +- - applets/notifications/package/contents/ui/main.qml | 2 +- - applets/systemtray/package/contents/ui/main.qml | 2 +- - 8 files changed, 8 insertions(+), 8 deletions(-) - -diff --git a/applets/analog-clock/contents/ui/analogclock.qml b/applets/analog-clock/contents/ui/analogclock.qml -index edb3af9..7eb839d 100644 ---- a/applets/analog-clock/contents/ui/analogclock.qml -+++ b/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as PlasmaCalendar - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -diff --git a/applets/batterymonitor/package/contents/ui/BatteryItem.qml b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -index 8d43797..3322369 100644 ---- a/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -diff --git a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -index b4059cb..ae8eeaf 100755 ---- a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -diff --git a/applets/batterymonitor/package/contents/ui/PopupDialog.qml b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -index d4952c6..2b6586d 100644 ---- a/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -diff --git a/applets/batterymonitor/package/contents/ui/batterymonitor.qml b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -index a086581..6e1e8be 100755 ---- a/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -diff --git a/applets/lock_logout/contents/ui/lockout.qml b/applets/lock_logout/contents/ui/lockout.qml -index 80e7e53..0083cf0 100644 ---- a/applets/lock_logout/contents/ui/lockout.qml -+++ b/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -diff --git a/applets/notifications/package/contents/ui/main.qml b/applets/notifications/package/contents/ui/main.qml -index 2871cdb..3f50856 100644 ---- a/applets/notifications/package/contents/ui/main.qml -+++ b/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml -index 2e26455..864c9c5 100644 ---- a/applets/systemtray/package/contents/ui/main.qml -+++ b/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root --- -2.6.3 - diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix b/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix index 78db6e51511..2d9364d446e 100644 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix @@ -1,17 +1,19 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, baloo -, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative +{ plasmaPackage, lib, copyPathsToStore +, extra-cmake-modules, kdoctools, makeQtWrapper +, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative , kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime , kjsembed, knewstuff, knotifyconfig, kpackage, krunner , ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient , libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt , pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland , libksysguard, bash, coreutils, gnused, gnugrep, socat, kconfig -, kinit, kservice, makeQtWrapper, qttools, dbus_tools, mkfontdir, xmessage +, kinit, kservice, qttools, dbus_tools, mkfontdir, xmessage , xprop, xrdb, xset, xsetroot, solid, qtquickcontrols }: plasmaPackage rec { name = "plasma-workspace"; + nativeBuildInputs = [ extra-cmake-modules kdoctools @@ -28,11 +30,8 @@ plasmaPackage rec { kidletime krunner ktexteditor kwin libkscreen libksysguard plasma-framework qtquick1 qtquickcontrols qtx11extras solid ]; - patches = [ - ./0001-qt-5.5-QML-import-paths.patch - ./0002-startkde-NixOS-patches.patch - ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); inherit bash coreutils gnused gnugrep socat; inherit kconfig kinit kservice qttools; inherit dbus_tools mkfontdir xmessage xprop xrdb xset xsetroot; @@ -41,7 +40,14 @@ plasmaPackage rec { substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ --replace kdostartupconfig5 $out/bin/kdostartupconfig5 ''; + postInstall = '' + rm "$out/bin/startplasmacompositor" + rm "$out/lib/libexec/startplasma" + rm -r "$out/share/wayland-sessions" + ''; + + postFixup = '' wrapQtProgram "$out/bin/ksmserver" wrapQtProgram "$out/bin/plasmawindowed" wrapQtProgram "$out/bin/kcminit_startup" @@ -54,11 +60,6 @@ plasmaPackage rec { wrapQtProgram "$out/bin/kuiserver5" wrapQtProgram "$out/bin/krunner" wrapQtProgram "$out/bin/plasmashell" - wrapQtProgram "$out/lib/libexec/drkonqi" - - rm "$out/bin/startplasmacompositor" - rm "$out/lib/libexec/startplasma" - rm -r "$out/share/wayland-sessions" ''; } diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch new file mode 100644 index 00000000000..1d34001be59 --- /dev/null +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch @@ -0,0 +1,104 @@ +Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml ++++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl + import QtQuick.Layouts 1.1 + + import org.kde.plasma.core 2.0 as PlasmaCore +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: analogclock +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.plasma.workspace.components 2.0 + import org.kde.kcoreaddons 1.0 as KCoreAddons +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batteryItem +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.workspace.components 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + MouseArea { + id: root +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + FocusScope { + id: dialog +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.kcoreaddons 1.0 as KCoreAddons + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batterymonitor +Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml ++++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 + import org.kde.kquickcontrolsaddons 2.0 +-import "data.js" as Data ++import "../code/data.js" as Data + + Flow { + id: lockout +Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas + + import org.kde.plasma.private.notifications 1.0 + +-import "uiproperties.js" as UiProperties ++import "../code/uiproperties.js" as UiProperties + + MouseEventListener { + id: notificationsApplet +Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma + // import org.kde.plasma.extras 2.0 as PlasmaExtras + + import org.kde.private.systemtray 2.0 as SystemTray +-import "Layout.js" as LayoutManager ++import "../code/Layout.js" as LayoutManager + + Item { + id: root diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/series b/pkgs/desktops/plasma-5.5/plasma-workspace/series new file mode 100644 index 00000000000..88b54af793e --- /dev/null +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/series @@ -0,0 +1,2 @@ +startkde.patch +qml-import-path.patch diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch similarity index 90% rename from pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch rename to pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch index 4b458580633..802c92da64d 100644 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch @@ -1,16 +1,7 @@ -From e5c11a5efc4f8e8ba4e89e0172220da921df38c6 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 9 Dec 2015 13:20:02 -0600 -Subject: [PATCH 2/2] startkde NixOS patches - ---- - startkde/startkde.cmake | 211 ++++++++++++++++++++---------------------------- - 1 file changed, 89 insertions(+), 122 deletions(-) - -diff --git a/startkde/startkde.cmake b/startkde/startkde.cmake -index 37ab5cd..130578e 100644 ---- a/startkde/startkde.cmake -+++ b/startkde/startkde.cmake +Index: plasma-workspace-5.5.1/startkde/startkde.cmake +=================================================================== +--- plasma-workspace-5.5.1.orig/startkde/startkde.cmake ++++ plasma-workspace-5.5.1/startkde/startkde.cmake @@ -1,8 +1,31 @@ -#!/bin/sh +#!@bash@/bin/bash @@ -44,7 +35,7 @@ index 37ab5cd..130578e 100644 if test "x$1" = x--failsafe; then KDE_FAILSAFE=1 # General failsafe flag KWIN_COMPOSE=N # Disable KWin's compositing -@@ -16,29 +39,16 @@ trap 'echo GOT SIGHUP' HUP +@@ -17,29 +40,16 @@ trap 'echo GOT SIGHUP' HUP # we have to unset this for Darwin since it will screw up KDE's dynamic-loading unset DYLD_FORCE_FLAT_NAMESPACE @@ -78,7 +69,7 @@ index 37ab5cd..130578e 100644 fi # Boot sequence: -@@ -56,13 +66,8 @@ fi +@@ -57,13 +67,8 @@ fi # * Then ksmserver is started which takes control of the rest of the startup sequence # We need to create config folder so we can write startupconfigkeys @@ -94,7 +85,7 @@ index 37ab5cd..130578e 100644 #This is basically setting defaults so we can use them with kstartupconfig5 cat >$configDir/startupconfigkeys <&2 @@ -273,7 +264,7 @@ index 37ab5cd..130578e 100644 # Mark that full KDE session is running (e.g. Konqueror preloading works only # with full KDE running). The KDE_FULL_SESSION property can be detected by # any X client connected to the same X session, even if not launched -@@ -317,11 +279,11 @@ fi +@@ -318,11 +280,11 @@ fi # KDE_FULL_SESSION=true export KDE_FULL_SESSION @@ -287,7 +278,7 @@ index 37ab5cd..130578e 100644 KDE_SESSION_UID=`id -ru` export KDE_SESSION_UID -@@ -331,11 +293,11 @@ export XDG_CURRENT_DESKTOP +@@ -332,11 +294,11 @@ export XDG_CURRENT_DESKTOP # At this point all the environment is ready, let's send it to kwalletd if running if test -n "$PAM_KWALLET_LOGIN" ; then @@ -301,7 +292,7 @@ index 37ab5cd..130578e 100644 fi # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -348,21 +310,26 @@ if test $? -ne 0; then +@@ -349,21 +311,26 @@ if test $? -ne 0; then # Startup error echo 'startkde: Could not sync environment to dbus.' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null @@ -331,7 +322,7 @@ index 37ab5cd..130578e 100644 # finally, give the session control to the session manager # see kdebase/ksmserver for the description of the rest of the startup sequence # if the KDEWM environment variable has been set, then it will be used as KDE's -@@ -378,27 +345,27 @@ test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" +@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag # lock now and do the rest of the KDE startup underneath the locker. KSMSERVEROPTIONS="" test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" @@ -366,23 +357,13 @@ index 37ab5cd..130578e 100644 done break fi -@@ -410,21 +377,21 @@ echo 'startkde: Shutting down...' 1>&2 +@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null # Clean up -kdeinit5_shutdown +@kinit@/bin/kdeinit5_shutdown - echo 'startkde: Running shutdown scripts...' 1>&2 - - # Run scripts found in /plasma-workspace/shutdown - for prefix in `echo "$scriptpath"`; do -- for file in `ls "$prefix"/shutdown 2> /dev/null | egrep -v '(~|\.bak)$'`; do -+ for file in `ls "$prefix"/shutdown 2> /dev/null | @gnugrep@/bin/egrep -v '(~|\.bak)$'`; do - test -x "$prefix/shutdown/$file" && "$prefix/shutdown/$file" - done - done - unset KDE_FULL_SESSION -xprop -root -remove KDE_FULL_SESSION +@xprop@/bin/xprop -root -remove KDE_FULL_SESSION @@ -392,6 +373,3 @@ index 37ab5cd..130578e 100644 unset KDE_SESSION_UID echo 'startkde: Done.' 1>&2 --- -2.6.3 - From 13548530a6be1a1d112239b322eed02e7d32e738 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Dec 2015 18:06:58 +0300 Subject: [PATCH 253/707] networkmanager: fix udev rules file, fixes #11744 --- pkgs/tools/networking/network-manager/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix index 5b2e14d033a..cf2821e9690 100644 --- a/pkgs/tools/networking/network-manager/default.nix +++ b/pkgs/tools/networking/network-manager/default.nix @@ -1,7 +1,8 @@ { stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib, xz , udev, libgudev, libnl, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables , libgcrypt, dnsmasq, avahi, bind, perl, bluez5, substituteAll, readline -, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup }: +, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup +, ethtool, gnused }: stdenv.mkDerivation rec { name = "network-manager-${version}"; @@ -16,6 +17,10 @@ stdenv.mkDerivation rec { substituteInPlace tools/glib-mkenums --replace /usr/bin/perl ${perl}/bin/perl substituteInPlace src/ppp-manager/nm-ppp-manager.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe substituteInPlace src/devices/nm-device.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe + substituteInPlace data/85-nm-unmanaged.rules \ + --replace /bin/sh ${stdenv.shell} \ + --replace /usr/sbin/ethtool ${ethtool}/sbin/ethtool \ + --replace /bin/sed ${gnused}/bin/sed configureFlags="$configureFlags --with-udev-dir=$out/lib/udev" ''; From f9eb378eb8518aa4e08727f105f2655ada276f49 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 14:08:46 +0900 Subject: [PATCH 254/707] riak: fix leveldb hash, fixes #11731 --- pkgs/servers/nosql/riak/1.3.1.nix | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/pkgs/servers/nosql/riak/1.3.1.nix b/pkgs/servers/nosql/riak/1.3.1.nix index e773f6ddcc3..df85044b8d1 100644 --- a/pkgs/servers/nosql/riak/1.3.1.nix +++ b/pkgs/servers/nosql/riak/1.3.1.nix @@ -1,14 +1,16 @@ -{ stdenv, fetchurl, unzip, erlangR15}: +{ stdenv, fetchurl, fetchFromGitHub, unzip, erlangR15}: let srcs = { - riak = fetchurl { + riak = fetchurl { url = "http://s3.amazonaws.com/downloads.basho.com/riak/1.3/1.3.1/riak-1.3.1.tar.gz"; sha256 = "a69093fc5df1b79f58645048b9571c755e00c3ca14dfd27f9f1cae2c6e628f01"; }; - leveldb = fetchurl { - url = "https://github.com/basho/leveldb/archive/1.3.1.zip"; - sha256 = "dc48ba2b44fca11888ea90695d385c494e1a3abd84a6b266b07fdc160ab2ef64"; + leveldb = fetchFromGitHub { + owner = "basho"; + repo = "leveldb"; + rev = "1.3.1"; + sha256 = "1jvv260ic38657y4lwwcvzmhah8xai594xy19r28gkzlpra1lnbb"; }; }; in @@ -22,11 +24,10 @@ stdenv.mkDerivation rec { patches = [ ./riak-1.3.1.patch ./riak-admin-1.3.1.patch ]; postUnpack = '' - ln -sv ${srcs.leveldb} $sourceRoot/deps/eleveldb/c_src/leveldb.zip - pushd $sourceRoot/deps/eleveldb/c_src/ - unzip leveldb.zip - mv leveldb-* leveldb - cd ../../ + mkdir -p $sourceRoot/deps/eleveldb/c_src/leveldb + cp -r ${srcs.leveldb}/* $sourceRoot/deps/eleveldb/c_src/leveldb + chmod 755 -R $sourceRoot/deps/eleveldb/c_src/leveldb + pushd $sourceRoot/deps/ mkdir riaknostic/deps cp -R lager riaknostic/deps cp -R getopt riaknostic/deps From db9bc6875f3ad5e7bddcbeab7124bd5b8fc684c6 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 Dec 2015 14:09:40 -0800 Subject: [PATCH 255/707] coqPackages.flocq: 2.4.0 -> 2.5.0 --- pkgs/development/coq-modules/flocq/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index 1f1087a85d9..2ee0aeb20a1 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { version = "2.5.0"; src = fetchurl { - url = https://gforge.inria.fr/frs/download.php/file/35091/flocq-2.5.0.tar.gz; + url = "https://gforge.inria.fr/frs/download.php/file/33979/flocq-${version}.tar.gz"; sha256 = "0v3qiaz7vxfc5nk8rxwi39mik7hm7p5kb040q2pimb69qgfl6vml"; }; From 2cd323a51a6f1657c57003dec47181d01733416f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 Dec 2015 14:10:31 -0800 Subject: [PATCH 256/707] tor: Allow building on Darwin --- pkgs/tools/security/tor/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index 9e73c7d4053..a03a945f805 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -11,7 +11,8 @@ stdenv.mkDerivation rec { # Note: torsocks is specified as a dependency, as the distributed # 'torify' wrapper attempts to use it; although there is no # ./configure time check for any of this. - buildInputs = [ libevent openssl zlib torsocks libseccomp ]; + buildInputs = [ libevent openssl zlib torsocks ] ++ + stdenv.lib.optional stdenv.isLinux libseccomp; NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s"; From fd45c7b82b65c31a5be7854d8566260b781c6d6b Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 Dec 2015 14:10:45 -0800 Subject: [PATCH 257/707] haskellPackages.git-annex: Do not use lsof on Darwin --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ad80220549a..41fdfad528a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -66,11 +66,13 @@ self: super: { # build which has the assistant to be used in the top-level. git-annex_5_20150727 = (disableCabalFlag super.git-annex_5_20150727 "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then self.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; git-annex = (disableCabalFlag super.git-annex "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then self.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; From b797a67ffb56d3072bba3d2f5646fb23223b0783 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Dec 2015 21:39:26 +0100 Subject: [PATCH 258/707] awesomebump: Add --- .../graphics/awesomebump/default.nix | 39 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/applications/graphics/awesomebump/default.nix diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix new file mode 100644 index 00000000000..77bddec7eb8 --- /dev/null +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -0,0 +1,39 @@ +{ lib, stdenv, fetchurl, qt5, makeWrapper }: + +stdenv.mkDerivation { + name = "awesomebump-4.0"; + + src = fetchurl { + url = https://github.com/kmkolasinski/AwesomeBump/archive/Linuxv4.0.tar.gz; + sha256 = "1rp4m4y2ld49hibzwqwy214cbiin80i882d9l0y1znknkdcclxf2"; + }; + + setSourceRoot = "sourceRoot=$(echo */Sources)"; + + buildInputs = [ qt5.base makeWrapper ]; + + preBuild = "qmake"; + + enableParallelBuilding = true; + + installPhase = + '' + d=$out/libexec/AwesomeBump + mkdir -p $d $out/bin + cp AwesomeBump $d/ + cp -prd ../Bin/Configs ../Bin/Core $d/ + + # AwesomeBump expects to find Core and Configs in its current + # directory. + makeWrapper $d/AwesomeBump $out/bin/AwesomeBump \ + --run "cd $d" + ''; + + meta = { + homepage = https://github.com/kmkolasinski/AwesomeBump; + description = "A program to generate normal, height, specular or ambient occlusion textures from a single image"; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.eelco ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e18e326aa7f..b43d1f737e0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11092,6 +11092,8 @@ let }; awesome = awesome-3-5; + awesomebump = callPackage ../applications/graphics/awesomebump { }; + inherit (gnome3) baobab; backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { }; From 3b3be7a74b8bd46711f04b88bbfab37ed325332d Mon Sep 17 00:00:00 2001 From: aaron levin Date: Wed, 16 Dec 2015 23:26:07 +0100 Subject: [PATCH 259/707] link_power_policy_management default to max_performance The kernel default for `link_power_management_policy` is `"max_performance"`. This commit: https://github.com/NixOS/nixpkgs/commit/f169f60575bec7c61626af180cae364d321b4bec set the NixOS default to `"min_performance"`. This issue (https://github.com/NixOS/nixpkgs/issues/11276) details my long journey to discover this after several file system failures incorrectly attributed to `TRIM` and `NCQ` settings. I think we should use the kernel default of `"max_performance"` to assure the best experience for new users with SSDs and to conform to the defaults of the kernel and other distros. --- nixos/modules/config/power-management.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix index dedc8a3f679..6086f06ca3d 100644 --- a/nixos/modules/config/power-management.nix +++ b/nixos/modules/config/power-management.nix @@ -71,7 +71,7 @@ in # FIXME: Implement powersave governor for sandy bridge or later Intel CPUs powerManagement.cpuFreqGovernor = mkDefault "ondemand"; - powerManagement.scsiLinkPolicy = mkDefault "min_power"; + powerManagement.scsiLinkPolicy = mkDefault "max_performance"; systemd.targets.post-resume = { description = "Post-Resume Actions"; From 123a6041defdf57ba443f86a0d39a4b87f60bad4 Mon Sep 17 00:00:00 2001 From: koral Date: Wed, 16 Dec 2015 22:35:01 +0000 Subject: [PATCH 260/707] rmlint: 2.4.1 -> 2.4.2 --- pkgs/tools/misc/rmlint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/rmlint/default.nix b/pkgs/tools/misc/rmlint/default.nix index 967efd3fae3..3c3f8c86439 100644 --- a/pkgs/tools/misc/rmlint/default.nix +++ b/pkgs/tools/misc/rmlint/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "rmlint-${version}"; - version = "2.4.1"; + version = "2.4.2"; src = fetchurl { url = "https://github.com/sahib/rmlint/archive/v${version}.tar.gz"; - sha256 = "1ja73r6ijklvw34yv0fgflc1ps58xnd559rjnxkqfmi33xjwx7f0"; + sha256 = "0rfgzamrw89z67jxg8b5jqjmvql00304n0ai4a81bfl90gybyncf"; }; configurePhase = "scons config"; From 5f709b8974cdee58232a16697dafdb1082f04ad5 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Wed, 16 Dec 2015 23:54:24 +0100 Subject: [PATCH 261/707] cutegram: fix version in name --- .../networking/instant-messengers/telegram/cutegram/default.nix | 2 +- .../telegram/libqtelegram-aseman-edition/default.nix | 2 +- .../instant-messengers/telegram/telegram-qml/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index 0a1e79365c3..cf559a04fc5 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -3,7 +3,7 @@ , telegram-qml, libqtelegram-aseman-edition }: stdenv.mkDerivation rec { - name = "cutegram-v${version}"; + name = "cutegram-${version}"; version = "2.7.0-stable"; src = fetchFromGitHub { diff --git a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix index 31e0a0dc399..3149ac3279a 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -2,7 +2,7 @@ , qtbase, qtmultimedia, qtquick1 }: stdenv.mkDerivation rec { - name = "libqtelegram-aseman-edition-v${version}"; + name = "libqtelegram-aseman-edition-${version}"; version = "6.0"; src = fetchFromGitHub { diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index 709dce5e755..4fc1ee37927 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -3,7 +3,7 @@ , libqtelegram-aseman-edition }: stdenv.mkDerivation rec { - name = "telegram-qml-v${version}"; + name = "telegram-qml-${version}"; version = "0.9.1-stable"; src = fetchFromGitHub { From 59213cc1da2b0055be35a6f7e6fddc805410c556 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 Dec 2015 15:13:16 -0800 Subject: [PATCH 262/707] emacs25pre: New expression, from emacs-25 pre-release branch --- .../editors/emacs-25/at-fdcwd.patch | 13 ++ pkgs/applications/editors/emacs-25/builder.sh | 38 ++++++ .../applications/editors/emacs-25/default.nix | 113 ++++++++++++++++++ .../editors/emacs-25/site-start.el | 17 +++ pkgs/top-level/all-packages.nix | 13 ++ 5 files changed, 194 insertions(+) create mode 100644 pkgs/applications/editors/emacs-25/at-fdcwd.patch create mode 100644 pkgs/applications/editors/emacs-25/builder.sh create mode 100644 pkgs/applications/editors/emacs-25/default.nix create mode 100644 pkgs/applications/editors/emacs-25/site-start.el diff --git a/pkgs/applications/editors/emacs-25/at-fdcwd.patch b/pkgs/applications/editors/emacs-25/at-fdcwd.patch new file mode 100644 index 00000000000..1f99d4e1809 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/at-fdcwd.patch @@ -0,0 +1,13 @@ +diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h +index 5cdb813..7a272e8 100644 +--- a/lib/careadlinkat.h ++++ b/lib/careadlinkat.h +@@ -23,6 +23,8 @@ + #include + #include + ++#define AT_FDCWD -2 ++ + struct allocator; + + /* Assuming the current directory is FD, get the symbolic link value diff --git a/pkgs/applications/editors/emacs-25/builder.sh b/pkgs/applications/editors/emacs-25/builder.sh new file mode 100644 index 00000000000..984a61df6f3 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/builder.sh @@ -0,0 +1,38 @@ +source $stdenv/setup + +# This hook is supposed to be run on Linux. It patches the proper locations of +# the crt{1,i,n}.o files into the build to ensure that Emacs is linked with +# *our* versions, not the ones found in the system, as it would do by default. +# On other platforms, this appears to be unnecessary. +preConfigure() { + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do + substituteInPlace $i --replace /bin/pwd pwd + done + + case "${system}" in + x86_64-linux) glibclibdir=lib64 ;; + i686-linux) glibclibdir=lib ;; + *) return; + esac + + libc=$(cat ${NIX_CC}/nix-support/orig-libc) + echo "libc: $libc" + + for i in src/s/*.h src/m/*.h; do + substituteInPlace $i \ + --replace /usr/${glibclibdir}/crt1.o $libc/${glibclibdir}/crt1.o \ + --replace /usr/${glibclibdir}/crti.o $libc/${glibclibdir}/crti.o \ + --replace /usr/${glibclibdir}/crtn.o $libc/${glibclibdir}/crtn.o \ + --replace /usr/lib/crt1.o $libc/${glibclibdir}/crt1.o \ + --replace /usr/lib/crti.o $libc/${glibclibdir}/crti.o \ + --replace /usr/lib/crtn.o $libc/${glibclibdir}/crtn.o + done +} + +preInstall () { + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do + substituteInPlace $i --replace /bin/pwd pwd + done +} + +genericBuild diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix new file mode 100644 index 00000000000..472a686b964 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -0,0 +1,113 @@ +{ stdenv, fetchgit, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d +, pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif +, libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls +, alsaLib, cairo, acl, gpm, AppKit, Foundation, libobjc +, autoconf, automake +, withX ? !stdenv.isDarwin +, withGTK3 ? false, gtk3 ? null +, withGTK2 ? true, gtk2 +}: + +assert (libXft != null) -> libpng != null; # probably a bug +assert stdenv.isDarwin -> libXaw != null; # fails to link otherwise +assert withGTK2 -> withX || stdenv.isDarwin; +assert withGTK3 -> withX || stdenv.isDarwin; +assert withGTK2 -> !withGTK3 && gtk2 != null; +assert withGTK3 -> !withGTK2 && gtk3 != null; + +let + toolkit = + if withGTK3 then "gtk3" + else if withGTK2 then "gtk2" + else "lucid"; +in + +stdenv.mkDerivation rec { + name = "emacs-25.0.50-1b5630e"; + + builder = ./builder.sh; + + src = fetchgit { + url = "git://git.savannah.gnu.org/emacs.git"; + rev = "1b5630eb47d3f4bade09708c958ab006b83b3fc0"; + sha256 = "0n3qbri84akmy7ad1pbv89j4jn4x9pnkz0p4nbhh6m1c37cbz58l"; + }; + + patches = stdenv.lib.optionals stdenv.isDarwin [ + ./at-fdcwd.patch + ]; + + postPatch = '' + sed -i 's|/usr/share/locale|${gettext}/share/locale|g' lisp/international/mule-cmds.el + ''; + + buildInputs = + [ ncurses gconf libxml2 gnutls alsaLib pkgconfig texinfo acl gpm gettext + autoconf automake ] + ++ stdenv.lib.optional stdenv.isLinux dbus + ++ stdenv.lib.optionals withX + [ xlibsWrapper libXaw Xaw3d libXpm libpng libjpeg libungif libtiff librsvg libXft + imagemagick gconf ] + ++ stdenv.lib.optional (withX && withGTK2) gtk2 + ++ stdenv.lib.optional (withX && withGTK3) gtk3 + ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; + + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc + ]; + + NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin + "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; + + configureFlags = + if stdenv.isDarwin + then [ "--with-ns" "--disable-ns-self-contained" ] + else if withX + then [ "--with-x-toolkit=${toolkit}" "--with-xft" ] + else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no" + "--with-gif=no" "--with-tiff=no" ]; + + NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX) + "-I${cairo}/include/cairo"; + + preBuild = '' + find . -name '*.elc' -delete + ''; + + postInstall = '' + mkdir -p $out/share/emacs/site-lisp/ + cp ${./site-start.el} $out/share/emacs/site-lisp/site-start.el + '' + stdenv.lib.optionalString stdenv.isDarwin '' + mkdir -p $out/Applications + mv nextstep/Emacs.app $out/Applications + ''; + + doCheck = !stdenv.isDarwin; + + meta = with stdenv.lib; { + description = "GNU Emacs 25 (pre), the extensible, customizable text editor"; + homepage = http://www.gnu.org/software/emacs/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny ]; + platforms = platforms.all; + + # So that Exuberant ctags is preferred + priority = 1; + + longDescription = '' + GNU Emacs is an extensible, customizable text editor—and more. At its + core is an interpreter for Emacs Lisp, a dialect of the Lisp + programming language with extensions to support text editing. + + The features of GNU Emacs include: content-sensitive editing modes, + including syntax coloring, for a wide variety of file types including + plain text, source code, and HTML; complete built-in documentation, + including a tutorial for new users; full Unicode support for nearly all + human languages and their scripts; highly customizable, using Emacs + Lisp code or a graphical interface; a large number of extensions that + add other functionality, including a project planner, mail and news + reader, debugger interface, calendar, and more. Many of these + extensions are distributed with GNU Emacs; others are available + separately. + ''; + }; +} diff --git a/pkgs/applications/editors/emacs-25/site-start.el b/pkgs/applications/editors/emacs-25/site-start.el new file mode 100644 index 00000000000..023d6412ed8 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/site-start.el @@ -0,0 +1,17 @@ +;; NixOS specific load-path +(setq load-path + (append (reverse (mapcar (lambda (x) (concat x "/share/emacs/site-lisp/")) + (split-string (or (getenv "NIX_PROFILES") "")))) + load-path)) + +;;; Make `woman' find the man pages +(eval-after-load 'woman + '(setq woman-manpath + (append (reverse (mapcar (lambda (x) (concat x "/share/man/")) + (split-string (or (getenv "NIX_PROFILES") "")))) + woman-manpath))) + +;; Make tramp work for remote NixOS machines +;;; NOTE: You might want to add +(eval-after-load 'tramp + '(add-to-list 'tramp-remote-path "/run/current-system/sw/bin")) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b43d1f737e0..905749128b1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11466,6 +11466,19 @@ let }); emacs24Macport = self.emacs24Macport_24_5; + emacs25pre = callPackage ../applications/editors/emacs-25 { + # use override to enable additional features + libXaw = xorg.libXaw; + Xaw3d = null; + gconf = null; + alsaLib = null; + imagemagick = null; + acl = null; + gpm = null; + inherit (darwin.apple_sdk.frameworks) AppKit Foundation; + inherit (darwin) libobjc; + }; + emacsPackagesGen = emacs: self: let callPackage = newScope self; in rec { inherit emacs; From e007b1b764540905b9cd224264838b4fb45da631 Mon Sep 17 00:00:00 2001 From: koral Date: Wed, 16 Dec 2015 23:21:19 +0000 Subject: [PATCH 263/707] nmap: 7.00 -> 7.01 --- pkgs/tools/security/nmap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/nmap/default.nix b/pkgs/tools/security/nmap/default.nix index c7d927bdb44..351654b6032 100644 --- a/pkgs/tools/security/nmap/default.nix +++ b/pkgs/tools/security/nmap/default.nix @@ -13,11 +13,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nmap${optionalString graphicalSupport "-graphical"}-${version}"; - version = "7.00"; + version = "7.01"; src = fetchurl { url = "http://nmap.org/dist/nmap-${version}.tar.bz2"; - sha256 = "1bh25200jidhb2ig206ibiwv1ngyrl2ka743hnihiihmqq0j6i4z"; + sha256 = "01bpc820fmjl1vd08a3j9fpa84psaa7c3cxc8wpzabms8ckcs7yg"; }; patches = ./zenmap.patch; From 99b253fc1d20040297d74a85ed23f16c8290c4e9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 9 Dec 2015 17:30:48 +0100 Subject: [PATCH 264/707] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20150922-47-ga631ea6 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/e616e3fbaad60a7175f74099bbc89bb063fdc00e - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/1be87a125d082bf6e34d8bf86d2e2879d498f4ba - LTS Haskell: https://github.com/fpco/lts-haskell/commit/253d4da34232ee2e34c825f5937f836f3374abd1 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/1ee60f7320be760a668391605963b0cabb85f09e --- .../haskell-modules/configuration-lts-0.0.nix | 32 + .../haskell-modules/configuration-lts-0.1.nix | 32 + .../haskell-modules/configuration-lts-0.2.nix | 32 + .../haskell-modules/configuration-lts-0.3.nix | 32 + .../haskell-modules/configuration-lts-0.4.nix | 32 + .../haskell-modules/configuration-lts-0.5.nix | 32 + .../haskell-modules/configuration-lts-0.6.nix | 32 + .../haskell-modules/configuration-lts-0.7.nix | 32 + .../haskell-modules/configuration-lts-1.0.nix | 33 + .../haskell-modules/configuration-lts-1.1.nix | 34 + .../configuration-lts-1.10.nix | 35 + .../configuration-lts-1.11.nix | 35 + .../configuration-lts-1.12.nix | 35 + .../configuration-lts-1.13.nix | 36 + .../configuration-lts-1.14.nix | 36 + .../configuration-lts-1.15.nix | 36 + .../haskell-modules/configuration-lts-1.2.nix | 34 + .../haskell-modules/configuration-lts-1.4.nix | 34 + .../haskell-modules/configuration-lts-1.5.nix | 34 + .../haskell-modules/configuration-lts-1.7.nix | 34 + .../haskell-modules/configuration-lts-1.8.nix | 34 + .../haskell-modules/configuration-lts-1.9.nix | 34 + .../haskell-modules/configuration-lts-2.0.nix | 36 + .../haskell-modules/configuration-lts-2.1.nix | 36 + .../configuration-lts-2.10.nix | 38 + .../configuration-lts-2.11.nix | 38 + .../configuration-lts-2.12.nix | 38 + .../configuration-lts-2.13.nix | 38 + .../configuration-lts-2.14.nix | 38 + .../configuration-lts-2.15.nix | 38 + .../configuration-lts-2.16.nix | 38 + .../configuration-lts-2.17.nix | 38 + .../configuration-lts-2.18.nix | 38 + .../configuration-lts-2.19.nix | 38 + .../haskell-modules/configuration-lts-2.2.nix | 38 + .../configuration-lts-2.20.nix | 39 + .../configuration-lts-2.21.nix | 40 + .../configuration-lts-2.22.nix | 40 + .../haskell-modules/configuration-lts-2.3.nix | 38 + .../haskell-modules/configuration-lts-2.4.nix | 38 + .../haskell-modules/configuration-lts-2.5.nix | 38 + .../haskell-modules/configuration-lts-2.6.nix | 38 + .../haskell-modules/configuration-lts-2.7.nix | 38 + .../haskell-modules/configuration-lts-2.8.nix | 38 + .../haskell-modules/configuration-lts-2.9.nix | 38 + .../haskell-modules/configuration-lts-3.0.nix | 42 + .../haskell-modules/configuration-lts-3.1.nix | 42 + .../configuration-lts-3.10.nix | 49 + .../configuration-lts-3.11.nix | 50 + .../configuration-lts-3.12.nix | 52 + .../configuration-lts-3.13.nix | 52 + .../configuration-lts-3.14.nix | 54 + .../configuration-lts-3.15.nix | 54 + .../configuration-lts-3.16.nix | 54 + .../configuration-lts-3.17.nix | 59 + .../configuration-lts-3.18.nix | 8030 +++++++++++++++++ .../haskell-modules/configuration-lts-3.2.nix | 43 + .../haskell-modules/configuration-lts-3.3.nix | 44 + .../haskell-modules/configuration-lts-3.4.nix | 44 + .../haskell-modules/configuration-lts-3.5.nix | 44 + .../haskell-modules/configuration-lts-3.6.nix | 45 + .../haskell-modules/configuration-lts-3.7.nix | 47 + .../haskell-modules/configuration-lts-3.8.nix | 48 + .../haskell-modules/configuration-lts-3.9.nix | 48 + .../haskell-modules/hackage-packages.nix | 2593 ++++-- 65 files changed, 12367 insertions(+), 742 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-3.18.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index bb60198aeaf..23b3bdf8454 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2446,6 +2450,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2685,6 +2690,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3385,6 +3391,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3510,6 +3517,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3843,6 +3851,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3954,6 +3963,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4555,6 +4565,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5292,6 +5303,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5378,6 +5390,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5436,6 +5449,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5731,6 +5745,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5950,6 +5965,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6362,6 +6378,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6372,6 +6389,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6380,6 +6398,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6549,6 +6568,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7155,6 +7175,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7444,6 +7465,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7562,6 +7584,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7978,6 +8001,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8139,6 +8164,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8169,6 +8195,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8207,6 +8234,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8451,6 +8479,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8530,6 +8561,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 77b66031ece..22a5f246372 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2445,6 +2449,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2684,6 +2689,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3384,6 +3390,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3509,6 +3516,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3842,6 +3850,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3953,6 +3962,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4554,6 +4564,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5291,6 +5302,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5377,6 +5389,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5435,6 +5448,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5730,6 +5744,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5949,6 +5964,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6361,6 +6377,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6388,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6379,6 +6397,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6567,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7154,6 +7174,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7443,6 +7464,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7561,6 +7583,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7977,6 +8000,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8138,6 +8163,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,6 +8194,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8206,6 +8233,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8450,6 +8478,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8560,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index da9c527ffa9..adfe05857ed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2445,6 +2449,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2684,6 +2689,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3384,6 +3390,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3509,6 +3516,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3842,6 +3850,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3953,6 +3962,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4554,6 +4564,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5291,6 +5302,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5377,6 +5389,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5435,6 +5448,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5730,6 +5744,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5949,6 +5964,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6361,6 +6377,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6388,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6379,6 +6397,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6567,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7154,6 +7174,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7443,6 +7464,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7561,6 +7583,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7977,6 +8000,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8138,6 +8163,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,6 +8194,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8206,6 +8233,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8450,6 +8478,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8560,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 04168fba70a..1856c9787ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2445,6 +2449,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2684,6 +2689,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3384,6 +3390,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3509,6 +3516,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3842,6 +3850,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3953,6 +3962,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4554,6 +4564,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5291,6 +5302,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5377,6 +5389,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5435,6 +5448,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5730,6 +5744,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5949,6 +5964,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6361,6 +6377,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6388,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6379,6 +6397,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6567,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7154,6 +7174,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7443,6 +7464,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7561,6 +7583,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7977,6 +8000,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8138,6 +8163,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,6 +8194,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8206,6 +8233,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8450,6 +8478,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8560,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index e0cd9431130..26af9f6a7c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2445,6 +2449,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2683,6 +2688,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3383,6 +3389,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3508,6 +3515,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3839,6 +3847,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3950,6 +3959,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4551,6 +4561,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5288,6 +5299,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5374,6 +5386,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5432,6 +5445,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5727,6 +5741,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5946,6 +5961,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6358,6 +6374,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6368,6 +6385,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6376,6 +6394,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6545,6 +6564,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7150,6 +7170,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7439,6 +7460,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7557,6 +7579,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7972,6 +7995,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8133,6 +8158,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8163,6 +8189,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8201,6 +8228,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8445,6 +8473,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8524,6 +8555,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 44d0e9653ad..a41c1bfc3b4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -810,6 +810,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1752,6 +1753,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1920,7 +1922,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2445,6 +2449,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2683,6 +2688,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3383,6 +3389,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3508,6 +3515,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3839,6 +3847,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3950,6 +3959,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4551,6 +4561,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5288,6 +5299,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5374,6 +5386,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5432,6 +5445,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5727,6 +5741,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5946,6 +5961,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6358,6 +6374,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6368,6 +6385,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6376,6 +6394,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6545,6 +6564,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7150,6 +7170,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7439,6 +7460,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7557,6 +7579,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7972,6 +7995,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8133,6 +8158,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8163,6 +8189,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8201,6 +8228,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8445,6 +8473,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8524,6 +8555,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 3f4405e5b5d..fadd237ffbc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -809,6 +809,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1749,6 +1750,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1917,7 +1919,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2442,6 +2446,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2680,6 +2685,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3380,6 +3386,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3505,6 +3512,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3836,6 +3844,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3947,6 +3956,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4547,6 +4557,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5284,6 +5295,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5370,6 +5382,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5428,6 +5441,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5723,6 +5737,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5941,6 +5956,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6353,6 +6369,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6363,6 +6380,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6371,6 +6389,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6540,6 +6559,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7144,6 +7164,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7433,6 +7454,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7551,6 +7573,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7966,6 +7989,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8127,6 +8152,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8157,6 +8183,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8195,6 +8222,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8438,6 +8466,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8517,6 +8548,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f4673ed279f..c5aa7f8ebb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -809,6 +809,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1749,6 +1750,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1917,7 +1919,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2442,6 +2446,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2680,6 +2685,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3380,6 +3386,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3505,6 +3512,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3836,6 +3844,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3947,6 +3956,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4547,6 +4557,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5284,6 +5295,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5370,6 +5382,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5428,6 +5441,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5723,6 +5737,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5941,6 +5956,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6353,6 +6369,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6363,6 +6380,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6371,6 +6389,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6540,6 +6559,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -7144,6 +7164,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7433,6 +7454,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7551,6 +7573,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7966,6 +7989,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8127,6 +8152,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8157,6 +8183,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8195,6 +8222,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8438,6 +8466,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8517,6 +8548,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index b8a801b5b39..dac2e4c977f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -805,6 +805,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1744,6 +1745,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1910,7 +1912,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2433,6 +2437,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2671,6 +2676,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3370,6 +3376,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3494,6 +3501,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3826,6 +3834,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3937,6 +3946,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4535,6 +4545,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5272,6 +5283,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5358,6 +5370,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5416,6 +5429,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5711,6 +5725,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5929,6 +5944,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6340,6 +6356,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6350,6 +6367,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6358,6 +6376,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6527,6 +6546,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6687,6 +6707,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7129,6 +7150,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7417,6 +7439,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7535,6 +7558,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7950,6 +7974,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8111,6 +8137,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8141,6 +8168,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8178,6 +8206,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8421,6 +8450,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8500,6 +8532,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 349496ec6c7..fbcdb8a86f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -805,6 +805,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1744,6 +1745,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1909,7 +1911,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2430,6 +2434,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2668,6 +2673,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3366,6 +3372,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3490,6 +3497,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3822,6 +3830,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3932,6 +3941,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4508,6 +4518,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4527,6 +4538,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5264,6 +5276,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5350,6 +5363,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5408,6 +5422,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5702,6 +5717,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5920,6 +5936,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6331,6 +6348,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6341,6 +6359,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6349,6 +6368,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6518,6 +6538,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6678,6 +6699,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7120,6 +7142,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7407,6 +7430,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7525,6 +7549,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7936,6 +7961,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8097,6 +8124,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8127,6 +8155,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8164,6 +8193,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8406,6 +8436,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8485,6 +8518,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index fdb4664c342..992d6212022 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1742,6 +1743,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1888,6 +1890,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1908,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2424,6 +2429,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2662,6 +2668,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3356,6 +3363,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3479,6 +3487,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3810,6 +3819,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3919,6 +3929,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4494,6 +4505,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4513,6 +4525,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5241,6 +5254,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5327,6 +5341,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5385,6 +5400,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5679,6 +5695,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5895,6 +5912,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6303,6 +6321,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6313,6 +6332,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6321,6 +6341,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6490,6 +6511,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6649,6 +6671,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7090,6 +7113,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7376,6 +7400,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7494,6 +7519,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7902,6 +7928,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8061,6 +8089,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8091,6 +8120,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8128,6 +8158,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8369,6 +8400,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8448,6 +8482,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index ddc53549cca..8aa2db947bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1742,6 +1743,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1888,6 +1890,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1908,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2424,6 +2429,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2662,6 +2668,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3355,6 +3362,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3478,6 +3486,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3809,6 +3818,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3918,6 +3928,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4493,6 +4504,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4512,6 +4524,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5237,6 +5250,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5323,6 +5337,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5381,6 +5396,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5675,6 +5691,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5891,6 +5908,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6299,6 +6317,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6309,6 +6328,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6317,6 +6337,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6486,6 +6507,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6645,6 +6667,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7086,6 +7109,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7372,6 +7396,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7490,6 +7515,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7898,6 +7924,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8057,6 +8085,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8087,6 +8116,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8124,6 +8154,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8365,6 +8396,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8444,6 +8478,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 9c8020b067b..87461679853 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1742,6 +1743,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1888,6 +1890,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1908,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2424,6 +2429,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2662,6 +2668,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3355,6 +3362,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3478,6 +3486,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3809,6 +3818,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3918,6 +3928,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4492,6 +4503,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4511,6 +4523,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5236,6 +5249,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5322,6 +5336,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5380,6 +5395,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5674,6 +5690,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5890,6 +5907,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6298,6 +6316,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6308,6 +6327,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6316,6 +6336,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6485,6 +6506,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6644,6 +6666,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7085,6 +7108,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7371,6 +7395,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7488,6 +7513,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7895,6 +7921,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8054,6 +8082,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8084,6 +8113,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8121,6 +8151,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8362,6 +8393,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8441,6 +8475,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 906bf0a6a41..e50346655f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1742,6 +1743,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1888,6 +1890,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1908,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2424,6 +2429,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2561,6 +2567,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2661,6 +2668,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3354,6 +3362,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3477,6 +3486,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3807,6 +3817,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3916,6 +3927,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4490,6 +4502,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4509,6 +4522,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5234,6 +5248,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5320,6 +5335,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5378,6 +5394,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5672,6 +5689,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5888,6 +5906,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6296,6 +6315,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6306,6 +6326,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6314,6 +6335,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6483,6 +6505,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6642,6 +6665,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7083,6 +7107,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7369,6 +7394,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7486,6 +7512,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7892,6 +7919,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8051,6 +8080,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8081,6 +8111,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8118,6 +8149,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8359,6 +8391,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8438,6 +8473,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 9fff6650c52..2addeb5c06d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -803,6 +803,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1740,6 +1741,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1886,6 +1888,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1903,7 +1906,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2421,6 +2426,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2558,6 +2564,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2658,6 +2665,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3351,6 +3359,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3474,6 +3483,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3804,6 +3814,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3913,6 +3924,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4486,6 +4498,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4505,6 +4518,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5229,6 +5243,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5315,6 +5330,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5373,6 +5389,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5665,6 +5682,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5881,6 +5899,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6289,6 +6308,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6299,6 +6319,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6307,6 +6328,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6476,6 +6498,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6634,6 +6657,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7075,6 +7099,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7361,6 +7386,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7478,6 +7504,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7884,6 +7911,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8043,6 +8072,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8073,6 +8103,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8110,6 +8141,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8351,6 +8383,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8430,6 +8465,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 4078218a73f..5682f7e1f25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -803,6 +803,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1739,6 +1740,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1885,6 +1887,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1902,7 +1905,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2417,6 +2422,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2554,6 +2560,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2654,6 +2661,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3346,6 +3354,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3469,6 +3478,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3799,6 +3809,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3908,6 +3919,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4481,6 +4493,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4500,6 +4513,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5224,6 +5238,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5310,6 +5325,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5368,6 +5384,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5660,6 +5677,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5874,6 +5892,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6282,6 +6301,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6292,6 +6312,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6300,6 +6321,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6469,6 +6491,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6625,6 +6648,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7066,6 +7090,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7352,6 +7377,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7468,6 +7494,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7873,6 +7900,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8032,6 +8061,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8062,6 +8092,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8099,6 +8130,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8340,6 +8372,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8419,6 +8454,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 0c298e5d465..d5b3f51926b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -805,6 +805,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1744,6 +1745,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1909,7 +1911,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2428,6 +2432,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2666,6 +2671,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3364,6 +3370,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3487,6 +3494,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3819,6 +3827,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3929,6 +3938,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4505,6 +4515,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4524,6 +4535,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5261,6 +5273,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5347,6 +5360,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5405,6 +5419,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5699,6 +5714,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5917,6 +5933,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6327,6 +6344,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6337,6 +6355,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6345,6 +6364,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6514,6 +6534,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6673,6 +6694,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7114,6 +7136,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7401,6 +7424,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7519,6 +7543,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7930,6 +7955,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8091,6 +8118,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8121,6 +8149,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8158,6 +8187,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8400,6 +8430,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8479,6 +8512,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index d7f56325fbf..0b3ac781834 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1743,6 +1744,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1908,7 +1910,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2427,6 +2431,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2665,6 +2670,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3362,6 +3368,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3485,6 +3492,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3817,6 +3825,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3926,6 +3935,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4502,6 +4512,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4521,6 +4532,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5258,6 +5270,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5344,6 +5357,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5402,6 +5416,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5696,6 +5711,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5913,6 +5929,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6322,6 +6339,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6332,6 +6350,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6340,6 +6359,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6509,6 +6529,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6668,6 +6689,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7109,6 +7131,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7396,6 +7419,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7514,6 +7538,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7924,6 +7949,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8085,6 +8112,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8115,6 +8143,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8152,6 +8181,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8394,6 +8424,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8473,6 +8506,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 11b2b868116..fd90d1d8d45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1743,6 +1744,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1907,7 +1909,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2426,6 +2430,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2664,6 +2669,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3361,6 +3367,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3484,6 +3491,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3816,6 +3824,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3925,6 +3934,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4501,6 +4511,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4520,6 +4531,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5256,6 +5268,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5342,6 +5355,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5400,6 +5414,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5694,6 +5709,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5911,6 +5927,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6320,6 +6337,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6330,6 +6348,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6338,6 +6357,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6507,6 +6527,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6666,6 +6687,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7107,6 +7129,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7394,6 +7417,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7512,6 +7536,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7922,6 +7947,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8082,6 +8109,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8112,6 +8140,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8149,6 +8178,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8390,6 +8420,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8469,6 +8502,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index c0097e30c76..dad8d991a76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1743,6 +1744,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1907,7 +1909,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2426,6 +2430,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2664,6 +2669,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3361,6 +3367,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3484,6 +3491,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3816,6 +3824,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3925,6 +3934,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4501,6 +4511,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4520,6 +4531,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5250,6 +5262,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5336,6 +5349,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5394,6 +5408,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5688,6 +5703,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5905,6 +5921,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6314,6 +6331,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6324,6 +6342,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6332,6 +6351,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6501,6 +6521,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6660,6 +6681,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7101,6 +7123,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7388,6 +7411,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7506,6 +7530,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7916,6 +7941,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8076,6 +8103,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8106,6 +8134,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8143,6 +8172,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8384,6 +8414,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8463,6 +8496,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 5d5aa564450..11ba47df60d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1743,6 +1744,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1907,7 +1909,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2426,6 +2430,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2664,6 +2669,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3359,6 +3365,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3482,6 +3489,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3813,6 +3821,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3922,6 +3931,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4497,6 +4507,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4516,6 +4527,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5245,6 +5257,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5331,6 +5344,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5389,6 +5403,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5683,6 +5698,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5900,6 +5916,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6309,6 +6326,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6319,6 +6337,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6327,6 +6346,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6496,6 +6516,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6655,6 +6676,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7096,6 +7118,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7383,6 +7406,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7501,6 +7525,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7911,6 +7936,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8070,6 +8097,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8100,6 +8128,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8137,6 +8166,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8378,6 +8408,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8457,6 +8490,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index d77685d0a06..3d43aab4224 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -804,6 +804,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1743,6 +1744,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1907,7 +1909,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2426,6 +2430,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2664,6 +2669,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3358,6 +3364,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3481,6 +3488,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3812,6 +3820,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3921,6 +3930,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4496,6 +4506,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4515,6 +4526,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5243,6 +5255,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5329,6 +5342,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5387,6 +5401,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5681,6 +5696,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5898,6 +5914,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6306,6 +6323,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6316,6 +6334,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6324,6 +6343,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6493,6 +6513,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6652,6 +6673,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7093,6 +7115,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7380,6 +7403,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7498,6 +7522,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7908,6 +7933,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -8067,6 +8094,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8097,6 +8125,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8134,6 +8163,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8375,6 +8405,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8454,6 +8487,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index dc3f8a03f8b..cab9b99357b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1725,6 +1726,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1871,6 +1873,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1888,7 +1891,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2399,6 +2404,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2536,6 +2542,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2636,6 +2643,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3324,6 +3332,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3446,6 +3455,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3773,6 +3783,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3882,6 +3893,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4451,6 +4463,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4471,6 +4484,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5181,6 +5195,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5267,6 +5282,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5324,6 +5340,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5609,6 +5626,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5818,6 +5836,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6223,6 +6242,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6233,6 +6253,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6241,6 +6262,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6410,6 +6432,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6566,6 +6589,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7006,6 +7030,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7288,6 +7313,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7404,6 +7430,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7806,6 +7833,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7965,6 +7994,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7994,6 +8024,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8031,6 +8062,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8271,6 +8303,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8349,6 +8384,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 16ab241c515..3b450fc9081 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1725,6 +1726,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1870,6 +1872,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1887,7 +1890,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2398,6 +2403,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2535,6 +2541,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2635,6 +2642,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3323,6 +3331,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3445,6 +3454,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3772,6 +3782,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3881,6 +3892,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4449,6 +4461,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4469,6 +4482,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5179,6 +5193,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5265,6 +5280,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5322,6 +5338,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5607,6 +5624,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5816,6 +5834,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6221,6 +6240,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6231,6 +6251,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6239,6 +6260,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6408,6 +6430,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6564,6 +6587,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -7004,6 +7028,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7286,6 +7311,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7402,6 +7428,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7804,6 +7831,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7963,6 +7992,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7992,6 +8022,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8029,6 +8060,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8268,6 +8300,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8346,6 +8381,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3f109fadc73..3e703edcc20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1716,6 +1717,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1859,6 +1861,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1876,7 +1879,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2384,6 +2389,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2520,6 +2526,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2620,6 +2627,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3304,6 +3312,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3349,6 +3358,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3424,6 +3434,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3749,6 +3760,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3858,6 +3870,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4424,6 +4437,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4444,6 +4458,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5146,6 +5161,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5231,6 +5247,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5288,6 +5305,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5568,6 +5586,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5776,6 +5795,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5979,6 +5999,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6177,6 +6198,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6187,6 +6209,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6195,6 +6218,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6362,6 +6386,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6517,6 +6542,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6955,6 +6981,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7235,6 +7262,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7345,6 +7373,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7745,6 +7774,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7902,6 +7933,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7931,6 +7963,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7968,6 +8001,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8207,6 +8241,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8285,6 +8322,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index af11314a5ba..8f8cd53d76b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1715,6 +1716,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1858,6 +1860,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1878,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2383,6 +2388,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2519,6 +2525,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2619,6 +2626,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3302,6 +3310,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3356,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3422,6 +3432,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3747,6 +3758,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3856,6 +3868,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4420,6 +4433,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4440,6 +4454,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5141,6 +5156,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5226,6 +5242,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5283,6 +5300,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5562,6 +5580,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5770,6 +5789,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5972,6 +5992,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6170,6 +6191,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6180,6 +6202,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6188,6 +6211,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6355,6 +6379,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6510,6 +6535,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6947,6 +6973,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7227,6 +7254,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7337,6 +7365,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7735,6 +7764,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7892,6 +7923,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7921,6 +7953,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7958,6 +7991,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8197,6 +8231,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8275,6 +8312,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 439771557df..b612864ed83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1715,6 +1716,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1858,6 +1860,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1878,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2383,6 +2388,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2519,6 +2525,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2619,6 +2626,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3302,6 +3310,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3356,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3422,6 +3432,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3747,6 +3758,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3856,6 +3868,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4420,6 +4433,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4440,6 +4454,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5141,6 +5156,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5226,6 +5242,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5283,6 +5300,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5562,6 +5580,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5770,6 +5789,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5972,6 +5992,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6170,6 +6191,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6180,6 +6202,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6188,6 +6211,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6355,6 +6379,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6510,6 +6535,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6946,6 +6972,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7226,6 +7253,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7336,6 +7364,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7734,6 +7763,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7891,6 +7922,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7920,6 +7952,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7957,6 +7990,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8196,6 +8230,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8274,6 +8311,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 681a3bbcce6..bd2110ef60c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1715,6 +1716,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1858,6 +1860,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1878,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2383,6 +2388,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2519,6 +2525,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2619,6 +2626,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3302,6 +3310,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3356,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3422,6 +3432,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3746,6 +3757,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3855,6 +3867,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4419,6 +4432,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4439,6 +4453,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5139,6 +5154,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5224,6 +5240,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5281,6 +5298,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5560,6 +5578,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5767,6 +5786,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5969,6 +5989,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6167,6 +6188,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6177,6 +6199,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6185,6 +6208,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6352,6 +6376,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6507,6 +6532,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6943,6 +6969,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7223,6 +7250,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7333,6 +7361,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7731,6 +7760,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7888,6 +7919,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7917,6 +7949,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7954,6 +7987,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8193,6 +8227,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8271,6 +8308,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 65ec277782b..cec6bda6e3a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1714,6 +1715,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1857,6 +1859,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1874,7 +1877,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2382,6 +2387,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2518,6 +2524,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2618,6 +2625,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3300,6 +3308,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3345,6 +3354,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3420,6 +3430,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3744,6 +3755,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3853,6 +3865,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4417,6 +4430,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4436,6 +4450,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5136,6 +5151,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5221,6 +5237,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5278,6 +5295,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5557,6 +5575,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5764,6 +5783,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5966,6 +5986,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6164,6 +6185,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6174,6 +6196,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6182,6 +6205,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6348,6 +6372,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6503,6 +6528,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6939,6 +6965,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7218,6 +7245,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7328,6 +7356,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7726,6 +7755,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7883,6 +7914,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7912,6 +7944,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7949,6 +7982,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8187,6 +8221,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8265,6 +8302,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 835f61f8334..2d98f22ccc1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1714,6 +1715,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1857,6 +1859,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1874,7 +1877,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2382,6 +2387,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2518,6 +2524,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2618,6 +2625,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3299,6 +3307,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3344,6 +3353,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3419,6 +3429,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3743,6 +3754,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3852,6 +3864,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4416,6 +4429,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4435,6 +4449,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5135,6 +5150,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5220,6 +5236,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5277,6 +5294,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5555,6 +5573,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5760,6 +5779,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5962,6 +5982,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6160,6 +6181,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6170,6 +6192,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6178,6 +6201,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6344,6 +6368,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6499,6 +6524,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6935,6 +6961,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7214,6 +7241,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7323,6 +7351,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7721,6 +7750,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7878,6 +7909,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7907,6 +7939,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7944,6 +7977,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8182,6 +8216,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8260,6 +8297,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c6d5421a1be..cebef846148 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1713,6 +1714,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1856,6 +1858,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1873,7 +1876,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2379,6 +2384,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2515,6 +2521,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2614,6 +2621,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3293,6 +3301,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3338,6 +3347,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3413,6 +3423,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3737,6 +3748,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3845,6 +3857,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4409,6 +4422,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4428,6 +4442,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5127,6 +5142,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5212,6 +5228,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5269,6 +5286,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5547,6 +5565,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5752,6 +5771,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5954,6 +5974,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6152,6 +6173,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6162,6 +6184,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6170,6 +6193,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6336,6 +6360,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6491,6 +6516,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6927,6 +6953,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7205,6 +7232,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7314,6 +7342,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7712,6 +7741,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7869,6 +7900,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7898,6 +7930,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7935,6 +7968,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8173,6 +8207,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8251,6 +8288,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index b0ec9efa812..5d66775b49e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1710,6 +1711,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1853,6 +1855,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1870,7 +1873,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2376,6 +2381,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2512,6 +2518,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2611,6 +2618,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3287,6 +3295,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3332,6 +3341,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3407,6 +3417,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3731,6 +3742,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3838,6 +3850,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4402,6 +4415,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4421,6 +4435,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5120,6 +5135,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5205,6 +5221,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5262,6 +5279,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5540,6 +5558,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5745,6 +5764,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5946,6 +5966,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6144,6 +6165,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6154,6 +6176,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6162,6 +6185,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6328,6 +6352,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6483,6 +6508,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6918,6 +6944,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7196,6 +7223,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7305,6 +7333,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7703,6 +7732,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7860,6 +7891,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7889,6 +7921,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7926,6 +7959,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8164,6 +8198,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8242,6 +8279,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 18328bd080e..8f3048c29e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1710,6 +1711,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1851,6 +1853,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1871,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2374,6 +2379,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2510,6 +2516,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2609,6 +2616,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3284,6 +3292,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3329,6 +3338,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3404,6 +3414,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3727,6 +3738,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3834,6 +3846,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4397,6 +4410,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4416,6 +4430,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5115,6 +5130,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5200,6 +5216,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5257,6 +5274,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5535,6 +5553,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5739,6 +5758,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5940,6 +5960,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6137,6 +6158,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6147,6 +6169,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6155,6 +6178,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6321,6 +6345,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6476,6 +6501,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6911,6 +6937,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7189,6 +7216,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7298,6 +7326,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7695,6 +7724,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7852,6 +7883,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7881,6 +7913,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7918,6 +7951,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8155,6 +8189,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8233,6 +8270,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index f4fbe751b3b..fd4812219ec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1710,6 +1711,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1851,6 +1853,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1871,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2374,6 +2379,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2510,6 +2516,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2609,6 +2616,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3283,6 +3291,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3328,6 +3337,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3403,6 +3413,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3726,6 +3737,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3833,6 +3845,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4396,6 +4409,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4415,6 +4429,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5114,6 +5129,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5199,6 +5215,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5256,6 +5273,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5532,6 +5550,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5736,6 +5755,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5937,6 +5957,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6134,6 +6155,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6144,6 +6166,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6152,6 +6175,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6318,6 +6342,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6473,6 +6498,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6908,6 +6934,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7184,6 +7211,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7293,6 +7321,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7690,6 +7719,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7847,6 +7878,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7876,6 +7908,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7913,6 +7946,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8150,6 +8184,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8228,6 +8265,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index fa88242206f..f54a7c92e52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1724,6 +1725,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1867,6 +1869,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1884,7 +1887,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2395,6 +2400,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2532,6 +2538,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2632,6 +2639,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3320,6 +3328,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3365,6 +3374,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3441,6 +3451,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3768,6 +3779,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3877,6 +3889,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4445,6 +4458,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4465,6 +4479,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5175,6 +5190,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5261,6 +5277,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5318,6 +5335,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5603,6 +5621,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5812,6 +5831,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6016,6 +6036,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6216,6 +6237,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6226,6 +6248,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6234,6 +6257,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6403,6 +6427,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6559,6 +6584,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6999,6 +7025,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7281,6 +7308,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7397,6 +7425,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7799,6 +7828,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7958,6 +7989,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7987,6 +8019,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8024,6 +8057,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8263,6 +8297,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8341,6 +8378,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index beb329bab16..f78f8e91c56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1710,6 +1711,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1851,6 +1853,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1871,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2373,6 +2378,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2509,6 +2515,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2608,6 +2615,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2951,6 +2959,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3281,6 +3290,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3326,6 +3336,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3401,6 +3412,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3724,6 +3736,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3830,6 +3843,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4393,6 +4407,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4412,6 +4427,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5111,6 +5127,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5196,6 +5213,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5253,6 +5271,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5529,6 +5548,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5733,6 +5753,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5934,6 +5955,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6130,6 +6152,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6140,6 +6163,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6148,6 +6172,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6314,6 +6339,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6469,6 +6495,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6904,6 +6931,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7179,6 +7207,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7288,6 +7317,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7685,6 +7715,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7842,6 +7874,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7871,6 +7904,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7908,6 +7942,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8145,6 +8180,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8223,6 +8261,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 962ee75a7bc..12f836e2f9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1710,6 +1711,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1851,6 +1853,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1871,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2373,6 +2378,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2509,6 +2515,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2608,6 +2615,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2951,6 +2959,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3281,6 +3290,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3326,6 +3336,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3367,6 +3378,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3400,6 +3412,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3723,6 +3736,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3829,6 +3843,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4392,6 +4407,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4411,6 +4427,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5109,6 +5126,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5194,6 +5212,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5251,6 +5270,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5527,6 +5547,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5731,6 +5752,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5932,6 +5954,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6128,6 +6151,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6138,6 +6162,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6146,6 +6171,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6311,6 +6337,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6466,6 +6493,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6901,6 +6929,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7176,6 +7205,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7285,6 +7315,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7682,6 +7713,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7839,6 +7872,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7868,6 +7902,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7905,6 +7940,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8140,6 +8176,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8218,6 +8257,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 800e96ff390..a1f3a7d8573 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -792,6 +792,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1709,6 +1710,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1850,6 +1852,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1867,7 +1870,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2372,6 +2377,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2508,6 +2514,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2607,6 +2614,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2950,6 +2958,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3280,6 +3289,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3325,6 +3335,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3366,6 +3377,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3399,6 +3411,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3722,6 +3735,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3828,6 +3842,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4390,6 +4405,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4409,6 +4425,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5106,6 +5123,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5191,6 +5209,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5248,6 +5267,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5523,6 +5543,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5727,6 +5748,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5928,6 +5950,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6124,6 +6147,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6134,6 +6158,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6142,6 +6167,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6307,6 +6333,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6462,6 +6489,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6897,6 +6925,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7172,6 +7201,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7281,6 +7311,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7678,6 +7709,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7835,6 +7868,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7864,6 +7898,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7901,6 +7936,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8136,6 +8172,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8214,6 +8253,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 732e6c33b7f..090646697dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1724,6 +1725,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1867,6 +1869,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1884,7 +1887,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2395,6 +2400,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2532,6 +2538,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2632,6 +2639,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3319,6 +3327,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3364,6 +3373,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3440,6 +3450,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3767,6 +3778,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3876,6 +3888,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4444,6 +4457,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4464,6 +4478,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5173,6 +5188,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5259,6 +5275,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5316,6 +5333,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5601,6 +5619,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5810,6 +5829,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6014,6 +6034,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6214,6 +6235,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6224,6 +6246,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6232,6 +6255,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6401,6 +6425,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6557,6 +6582,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6997,6 +7023,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7278,6 +7305,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7394,6 +7422,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7796,6 +7825,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7955,6 +7986,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7984,6 +8016,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8021,6 +8054,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8260,6 +8294,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8338,6 +8375,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index d39ef0b551d..727580bbaf5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1723,6 +1724,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1866,6 +1868,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1883,7 +1886,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2394,6 +2399,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2531,6 +2537,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2631,6 +2638,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3318,6 +3326,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3363,6 +3372,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3439,6 +3449,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3766,6 +3777,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3875,6 +3887,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4443,6 +4456,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4463,6 +4477,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5172,6 +5187,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5258,6 +5274,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5315,6 +5332,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5599,6 +5617,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5808,6 +5827,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6011,6 +6031,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6210,6 +6231,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6220,6 +6242,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6228,6 +6251,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6397,6 +6421,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6553,6 +6578,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6992,6 +7018,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7273,6 +7300,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7389,6 +7417,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7791,6 +7820,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7950,6 +7981,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7979,6 +8011,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8016,6 +8049,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8255,6 +8289,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8333,6 +8370,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index bc182e5e660..ed098498a05 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1723,6 +1724,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1866,6 +1868,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1883,7 +1886,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2393,6 +2398,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2530,6 +2536,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2630,6 +2637,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3317,6 +3325,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3362,6 +3371,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3438,6 +3448,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3765,6 +3776,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3874,6 +3886,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4442,6 +4455,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4462,6 +4476,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5171,6 +5186,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5256,6 +5272,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5313,6 +5330,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5597,6 +5615,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5806,6 +5825,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6009,6 +6029,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6208,6 +6229,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6218,6 +6240,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6226,6 +6249,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6395,6 +6419,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6551,6 +6576,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6990,6 +7016,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7271,6 +7298,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7386,6 +7414,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7788,6 +7817,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7947,6 +7978,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7976,6 +8008,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8013,6 +8046,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8252,6 +8286,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8330,6 +8367,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index c37a385b4a6..6c1e7ef0a44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -795,6 +795,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1720,6 +1721,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1863,6 +1865,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1880,7 +1883,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2390,6 +2395,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2527,6 +2533,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2627,6 +2634,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3314,6 +3322,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3359,6 +3368,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3435,6 +3445,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3760,6 +3771,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3869,6 +3881,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4437,6 +4450,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4457,6 +4471,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5166,6 +5181,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5251,6 +5267,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5308,6 +5325,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5592,6 +5610,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5800,6 +5819,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6003,6 +6023,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6202,6 +6223,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6212,6 +6234,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6220,6 +6243,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6389,6 +6413,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6545,6 +6570,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6984,6 +7010,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7265,6 +7292,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7380,6 +7408,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7782,6 +7811,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7939,6 +7970,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7968,6 +8000,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8005,6 +8038,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8244,6 +8278,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8322,6 +8359,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 761dd29669a..68d05b0fae3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -794,6 +794,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1719,6 +1720,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1862,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1879,7 +1882,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2389,6 +2394,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2526,6 +2532,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2626,6 +2633,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3313,6 +3321,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3358,6 +3367,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3434,6 +3444,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3759,6 +3770,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3868,6 +3880,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4436,6 +4449,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4456,6 +4470,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5165,6 +5180,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5250,6 +5266,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5307,6 +5324,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5591,6 +5609,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5799,6 +5818,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -6002,6 +6022,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6201,6 +6222,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6211,6 +6233,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6219,6 +6242,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6388,6 +6412,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6544,6 +6569,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6983,6 +7009,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7264,6 +7291,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7379,6 +7407,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7781,6 +7810,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7938,6 +7969,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7967,6 +7999,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -8004,6 +8037,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8243,6 +8277,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8321,6 +8358,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 1745628da63..15402d99af2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1718,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1861,6 +1863,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1878,7 +1881,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2388,6 +2393,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2525,6 +2531,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2625,6 +2632,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3311,6 +3319,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3356,6 +3365,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3432,6 +3442,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3757,6 +3768,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3866,6 +3878,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4434,6 +4447,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4454,6 +4468,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5161,6 +5176,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5246,6 +5262,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5303,6 +5320,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5587,6 +5605,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5795,6 +5814,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5998,6 +6018,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6197,6 +6218,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6207,6 +6229,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6215,6 +6238,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6384,6 +6408,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6540,6 +6565,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6978,6 +7004,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7258,6 +7285,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7371,6 +7399,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7773,6 +7802,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7930,6 +7961,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7959,6 +7991,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7996,6 +8029,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8235,6 +8269,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8313,6 +8350,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index cd600bcdea7..c6a043b4b59 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -793,6 +793,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1716,6 +1717,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1859,6 +1861,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1876,7 +1879,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2385,6 +2390,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2522,6 +2528,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2622,6 +2629,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -3306,6 +3314,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3351,6 +3360,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3426,6 +3436,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; @@ -3751,6 +3762,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3860,6 +3872,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4427,6 +4440,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4447,6 +4461,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -5152,6 +5167,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5237,6 +5253,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5294,6 +5311,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_2"; "machines-io" = doDistribute super."machines-io_0_2_0_2"; "machines-process" = doDistribute super."machines-process_0_2_0_2"; @@ -5577,6 +5595,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5785,6 +5804,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5988,6 +6008,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6186,6 +6207,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6196,6 +6218,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6204,6 +6227,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6372,6 +6396,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6528,6 +6553,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6966,6 +6992,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7246,6 +7273,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7357,6 +7385,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7757,6 +7786,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7914,6 +7945,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7943,6 +7975,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7980,6 +8013,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8219,6 +8253,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8297,6 +8334,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 906696b4b9f..18efcac44b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -779,6 +779,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1652,6 +1653,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1784,6 +1786,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1801,7 +1804,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2294,6 +2299,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2424,6 +2430,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2516,6 +2523,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2847,6 +2855,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3168,6 +3177,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = doDistribute super."ghc-parser_0_1_7_0"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3211,6 +3221,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3251,6 +3262,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3284,6 +3296,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3600,6 +3613,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3705,6 +3719,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3929,6 +3944,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4253,6 +4269,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_2"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4272,6 +4289,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4930,6 +4948,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5012,6 +5031,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5066,6 +5086,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5331,6 +5352,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5527,6 +5549,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5721,6 +5744,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5906,6 +5930,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5915,6 +5940,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5923,6 +5949,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6087,6 +6114,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6240,6 +6268,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6669,6 +6698,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6936,6 +6966,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7037,6 +7068,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7052,6 +7084,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7423,6 +7456,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7573,6 +7608,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7601,6 +7637,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7637,6 +7674,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7862,6 +7900,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7936,6 +7977,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 77d7e97b3e5..5f272356846 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -779,6 +779,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1650,6 +1651,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1782,6 +1784,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1799,7 +1802,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2292,6 +2297,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2422,6 +2428,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2514,6 +2521,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2844,6 +2852,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3163,6 +3172,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = doDistribute super."ghc-parser_0_1_7_0"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3206,6 +3216,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3246,6 +3257,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3279,6 +3291,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3595,6 +3608,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3700,6 +3714,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3923,6 +3938,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4247,6 +4263,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_2"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4266,6 +4283,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4924,6 +4942,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -5006,6 +5025,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5059,6 +5079,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5324,6 +5345,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5519,6 +5541,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5713,6 +5736,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5897,6 +5921,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5906,6 +5931,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5914,6 +5940,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6078,6 +6105,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6231,6 +6259,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6659,6 +6688,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6926,6 +6956,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7027,6 +7058,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7042,6 +7074,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7413,6 +7446,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7563,6 +7598,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7591,6 +7627,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7627,6 +7664,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7851,6 +7889,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7925,6 +7966,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index d0f30d12556..a41aa1b749b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -771,6 +771,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1629,6 +1630,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1760,6 +1762,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1777,7 +1780,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2259,6 +2264,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2388,6 +2394,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2474,6 +2481,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2796,6 +2804,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3107,6 +3116,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3149,6 +3159,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3187,6 +3198,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3220,6 +3232,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3405,6 +3418,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3515,6 +3529,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3534,6 +3549,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3637,6 +3653,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3857,6 +3874,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4178,6 +4196,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4197,6 +4216,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4242,6 +4262,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4842,6 +4863,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4923,6 +4945,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4976,6 +4999,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5235,6 +5259,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5346,6 +5371,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5426,6 +5452,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5618,6 +5645,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5798,6 +5826,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5807,6 +5836,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5815,6 +5845,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5972,6 +6003,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6121,6 +6153,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6542,6 +6575,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6800,6 +6834,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6899,6 +6934,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6914,6 +6950,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6980,6 +7017,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7176,6 +7214,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7277,6 +7316,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7425,6 +7466,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7453,6 +7495,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7489,6 +7532,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7709,8 +7753,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7778,6 +7826,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 98e84ca9f10..847d00dd79b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -771,6 +771,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1628,6 +1629,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1758,6 +1760,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1775,7 +1778,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2257,6 +2262,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2386,6 +2392,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2472,6 +2479,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2793,6 +2801,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3104,6 +3113,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3145,6 +3155,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3183,6 +3194,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3216,6 +3228,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3401,6 +3414,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3510,6 +3524,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3529,6 +3544,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3632,6 +3648,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3852,6 +3869,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4173,6 +4191,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4192,6 +4211,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4235,7 +4255,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4836,6 +4858,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4917,6 +4940,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4970,6 +4994,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5229,6 +5254,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5340,6 +5366,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5420,6 +5447,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5612,6 +5640,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5790,6 +5819,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5799,6 +5829,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5807,6 +5838,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5964,6 +5996,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6113,6 +6146,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6533,6 +6567,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6790,6 +6825,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6889,6 +6925,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6904,6 +6941,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6970,6 +7008,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7165,6 +7204,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7266,6 +7306,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7414,6 +7456,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7442,6 +7485,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7478,6 +7522,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7698,8 +7743,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7767,6 +7816,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 154bd227acc..ca3ed4a6fdb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -770,6 +770,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1627,6 +1628,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1757,6 +1759,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1774,7 +1777,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2252,6 +2257,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2381,6 +2387,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2467,6 +2474,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2788,6 +2796,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3099,6 +3108,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3140,6 +3150,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3178,6 +3189,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3211,6 +3223,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3395,6 +3408,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3504,6 +3518,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3523,6 +3538,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3626,6 +3642,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3846,6 +3863,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3899,6 +3917,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4166,6 +4185,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4185,6 +4205,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4228,7 +4249,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4829,6 +4852,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4910,6 +4934,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4963,6 +4988,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5154,6 +5180,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5221,6 +5248,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5332,6 +5360,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5412,6 +5441,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5604,6 +5634,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5781,6 +5812,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5790,6 +5822,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5798,6 +5831,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5955,6 +5989,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6104,6 +6139,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6524,6 +6560,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6781,6 +6818,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6880,6 +6918,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6895,6 +6934,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6961,6 +7001,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7154,6 +7195,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7254,6 +7296,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7402,6 +7446,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7430,6 +7475,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7466,6 +7512,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7686,8 +7733,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7755,6 +7806,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 2e000577048..a12b0ab22f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -770,6 +770,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1627,6 +1628,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1757,6 +1759,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1774,7 +1777,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2252,6 +2257,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2381,6 +2387,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2467,6 +2474,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2788,6 +2796,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3099,6 +3108,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3140,6 +3150,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3178,6 +3189,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3211,6 +3223,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3395,6 +3408,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3504,6 +3518,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3523,6 +3538,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3626,6 +3642,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3845,6 +3862,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3898,6 +3916,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4165,6 +4184,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4184,6 +4204,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4227,7 +4248,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4827,6 +4850,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4908,6 +4932,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4961,6 +4986,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5152,6 +5178,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5218,6 +5245,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5329,6 +5357,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5409,6 +5438,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5601,6 +5631,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5777,6 +5808,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5786,6 +5818,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5794,6 +5827,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5951,6 +5985,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6100,6 +6135,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6520,6 +6556,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6777,6 +6814,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6876,6 +6914,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6891,6 +6930,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6957,6 +6997,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7149,6 +7190,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7249,6 +7291,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7397,6 +7441,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7425,6 +7470,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7461,6 +7507,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7680,8 +7727,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7749,6 +7800,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 15706031f7a..30316276737 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -770,6 +770,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1097,6 +1098,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1624,6 +1626,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1753,6 +1756,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1770,7 +1774,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2247,6 +2253,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2376,6 +2383,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2458,6 +2466,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2778,6 +2787,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3089,6 +3099,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3130,6 +3141,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3168,6 +3180,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3201,6 +3214,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3385,6 +3399,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3494,6 +3509,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3513,6 +3529,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3616,7 +3633,9 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3834,6 +3853,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3887,6 +3907,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4154,6 +4175,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4173,6 +4195,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4215,7 +4238,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4815,6 +4840,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4896,6 +4922,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4948,6 +4975,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5139,6 +5167,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5204,6 +5233,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5315,6 +5345,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5395,6 +5426,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5587,6 +5619,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5762,6 +5795,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5771,6 +5805,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5779,6 +5814,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5936,6 +5972,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6085,6 +6122,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6505,6 +6543,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6762,6 +6801,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6861,6 +6901,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6876,6 +6917,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6942,6 +6984,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7133,6 +7176,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7233,6 +7277,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7380,6 +7426,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7408,6 +7455,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7444,6 +7492,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7663,8 +7712,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7731,6 +7784,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index a7dfcdb3f68..af656608acf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -769,6 +769,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1096,6 +1097,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1623,6 +1625,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1752,6 +1755,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1769,7 +1773,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2246,6 +2252,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2375,6 +2382,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2457,6 +2465,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2777,6 +2786,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3087,6 +3097,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3128,6 +3139,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3166,6 +3178,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3199,6 +3212,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3383,6 +3397,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3492,6 +3507,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3511,6 +3527,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3613,7 +3630,9 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3831,6 +3850,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3884,6 +3904,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4150,6 +4171,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4169,6 +4191,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4211,7 +4234,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4810,6 +4835,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4891,6 +4917,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4943,6 +4970,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5134,6 +5162,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5199,6 +5228,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5310,6 +5340,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5390,6 +5421,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5581,6 +5613,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5756,6 +5789,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5765,6 +5799,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5773,6 +5808,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5930,6 +5966,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6078,6 +6115,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6498,6 +6536,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6754,6 +6793,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6853,6 +6893,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6868,6 +6909,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6934,6 +6976,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7125,6 +7168,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7224,6 +7268,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7371,6 +7417,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7399,6 +7446,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7435,6 +7483,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7652,8 +7701,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7720,6 +7773,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index ad66fe7f027..2fa74f7262d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -768,6 +768,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1095,6 +1096,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1621,6 +1623,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1750,6 +1753,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1767,7 +1771,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2244,6 +2250,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2373,6 +2380,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2455,6 +2463,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2774,6 +2783,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3084,6 +3094,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3125,6 +3136,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3163,6 +3175,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3196,6 +3209,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3379,6 +3393,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3488,6 +3503,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3507,6 +3523,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3609,7 +3626,9 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3827,6 +3846,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3880,6 +3900,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4146,6 +4167,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4165,6 +4187,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4207,7 +4230,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4804,6 +4829,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4885,6 +4911,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4937,6 +4964,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5127,6 +5155,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5192,6 +5221,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5303,6 +5333,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5383,6 +5414,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5574,6 +5606,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5748,6 +5781,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5757,6 +5791,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5765,6 +5800,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5921,6 +5957,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6069,6 +6106,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6486,6 +6524,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6742,6 +6781,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6841,6 +6881,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6856,6 +6897,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6921,6 +6963,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7110,6 +7153,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7208,6 +7252,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7355,6 +7401,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7383,6 +7430,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7419,6 +7467,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7636,8 +7685,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7704,6 +7757,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 261627066da..279cfaedde9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -766,6 +766,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1093,6 +1094,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1617,6 +1619,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1745,6 +1748,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1762,7 +1766,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2236,6 +2242,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2365,6 +2372,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2446,6 +2454,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2765,6 +2774,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3075,6 +3085,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3116,6 +3127,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3154,6 +3166,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3187,6 +3200,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "goatee" = dontDistribute super."goatee"; @@ -3370,6 +3384,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3478,6 +3493,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3497,6 +3513,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3599,7 +3616,9 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3817,6 +3836,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3870,6 +3890,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -3983,6 +4004,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_9"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4135,6 +4157,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4154,6 +4177,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4196,7 +4220,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4791,6 +4817,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4871,6 +4898,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4923,6 +4951,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5113,6 +5142,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5177,6 +5207,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5288,6 +5319,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5368,6 +5400,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5559,6 +5592,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5731,6 +5765,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5740,6 +5775,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5748,6 +5784,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5903,6 +5940,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -5920,6 +5958,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_9"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_9"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6049,6 +6089,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6465,6 +6506,7 @@ self: super: { "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6523,6 +6565,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_4_1"; "shelly-extra" = dontDistribute super."shelly-extra"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; @@ -6720,6 +6763,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6791,6 +6835,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run-auto" = dontDistribute super."stack-run-auto"; @@ -6818,6 +6863,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6833,6 +6879,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6898,6 +6945,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7087,6 +7135,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7185,6 +7234,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7332,6 +7383,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7360,6 +7412,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7396,6 +7449,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7612,8 +7666,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7679,6 +7737,7 @@ self: super: { "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix new file mode 100644 index 00000000000..d4b51cdc561 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -0,0 +1,8030 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.18 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_4_5"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "ad" = doDistribute super."ad_4_2_4"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex" = doDistribute super."alex_3_1_4"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apply-refact" = dontDistribute super."apply-refact"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = dontDistribute super."async-dejafu"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_12_1"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = dontDistribute super."binary-parser"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blake2" = dontDistribute super."blake2"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraints" = doDistribute super."constraints_0_4_1_3"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consul-haskell" = doDistribute super."consul-haskell_0_2_1"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = dontDistribute super."contravariant-extras"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional" = doDistribute super."dimensional_0_13_0_2"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exact-real" = dontDistribute super."exact-real"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extract-dependencies" = dontDistribute super."extract-dependencies"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = dontDistribute super."file-modules"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_8_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_5_20150727"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-fmt" = dontDistribute super."git-fmt"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_1"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_5_5"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger" = doDistribute super."hledger_0_26"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_26"; + "hledger-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hledger-web" = doDistribute super."hledger-web_0_26"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = dontDistribute super."htaglib"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = dontDistribute super."hunit-dejafu"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ical" = dontDistribute super."ical"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; + "latex-formulae-image" = dontDistribute super."latex-formulae-image"; + "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_12_3"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_19_1_3"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memoization-utils" = dontDistribute super."memoization-utils"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "omnifmt" = dontDistribute super."omnifmt"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-description-remote" = dontDistribute super."package-description-remote"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parseargs" = doDistribute super."parseargs_0_1_5_2"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = dontDistribute super."pinch"; + "pinchot" = dontDistribute super."pinchot"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_6"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rose-trie" = dontDistribute super."rose-trie"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_16_2_2"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-yaml" = dontDistribute super."servant-yaml"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_10_0"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run-auto" = dontDistribute super."stack-run-auto"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "success" = dontDistribute super."success"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-dejafu" = dontDistribute super."tasty-dejafu"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_1"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_12_2"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "tracy" = dontDistribute super."tracy"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 631da53ead6..7f3faa96206 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -777,6 +777,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1647,6 +1648,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1779,6 +1781,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1796,7 +1799,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2289,6 +2294,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2419,6 +2425,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2511,6 +2518,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2840,6 +2848,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3159,6 +3168,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3201,6 +3211,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3241,6 +3252,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3274,6 +3286,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3459,6 +3472,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3589,6 +3603,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3694,6 +3709,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3917,6 +3933,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4241,6 +4258,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4260,6 +4278,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4916,6 +4935,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4998,6 +5018,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5051,6 +5072,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5316,6 +5338,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5511,6 +5534,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5705,6 +5729,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5888,6 +5913,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5897,6 +5923,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5905,6 +5932,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6069,6 +6097,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6221,6 +6250,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6647,6 +6677,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6912,6 +6943,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7013,6 +7045,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7028,6 +7061,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7398,6 +7432,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7548,6 +7584,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7576,6 +7613,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7612,6 +7650,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7836,6 +7875,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7909,6 +7951,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 55cf748dfe5..0818d564b15 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -777,6 +777,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1646,6 +1647,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1778,6 +1780,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1795,7 +1798,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2285,6 +2290,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2415,6 +2421,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2507,6 +2514,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2836,6 +2844,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3154,6 +3163,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3196,6 +3206,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3236,6 +3247,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3269,6 +3281,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3454,6 +3467,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3584,6 +3598,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3689,6 +3704,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3912,6 +3928,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4234,6 +4251,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4253,6 +4271,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4909,6 +4928,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4991,6 +5011,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5044,6 +5065,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5309,6 +5331,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5421,6 +5444,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5503,6 +5527,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5697,6 +5722,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5880,6 +5906,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5889,6 +5916,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5897,6 +5925,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6061,6 +6090,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6213,6 +6243,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6638,6 +6669,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6902,6 +6934,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7003,6 +7036,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7018,6 +7052,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7387,6 +7422,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7537,6 +7574,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7565,6 +7603,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7601,6 +7640,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7824,6 +7864,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7897,6 +7940,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index cd1858c1774..dc22d5aa5bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -777,6 +777,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1646,6 +1647,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1778,6 +1780,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1795,7 +1798,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2284,6 +2289,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2414,6 +2420,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2506,6 +2513,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2835,6 +2843,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3153,6 +3162,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3195,6 +3205,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3235,6 +3246,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3268,6 +3280,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3453,6 +3466,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3583,6 +3597,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3688,6 +3703,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3911,6 +3927,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4233,6 +4250,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4252,6 +4270,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4908,6 +4927,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4990,6 +5010,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5043,6 +5064,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5308,6 +5330,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5420,6 +5443,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5502,6 +5526,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5696,6 +5721,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5879,6 +5905,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5888,6 +5915,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5896,6 +5924,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6060,6 +6089,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6212,6 +6242,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6636,6 +6667,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6900,6 +6932,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -7000,6 +7033,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -7015,6 +7049,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7384,6 +7419,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7534,6 +7571,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7562,6 +7600,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7598,6 +7637,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7821,6 +7861,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7893,6 +7936,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index c9b18487c15..ad76072710f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -777,6 +777,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1645,6 +1646,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1777,6 +1779,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1794,7 +1797,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2281,6 +2286,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2411,6 +2417,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2503,6 +2510,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2832,6 +2840,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3148,6 +3157,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3190,6 +3200,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3230,6 +3241,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3263,6 +3275,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3448,6 +3461,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3578,6 +3592,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3682,6 +3697,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3904,6 +3920,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4225,6 +4242,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4244,6 +4262,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4897,6 +4916,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4978,6 +4998,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5031,6 +5052,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5296,6 +5318,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5407,6 +5430,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5489,6 +5513,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5683,6 +5708,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5864,6 +5890,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5873,6 +5900,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5881,6 +5909,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6043,6 +6072,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6195,6 +6225,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6619,6 +6650,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6882,6 +6914,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6982,6 +7015,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6997,6 +7031,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7363,6 +7398,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7513,6 +7550,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7541,6 +7579,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7577,6 +7616,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7800,6 +7840,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7872,6 +7915,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 82a4183307a..a8f64fef71b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -777,6 +777,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1644,6 +1645,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1776,6 +1778,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1793,7 +1796,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2279,6 +2284,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2409,6 +2415,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2501,6 +2508,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2828,6 +2836,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3143,6 +3152,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3185,6 +3195,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3223,6 +3234,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3256,6 +3268,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3441,6 +3454,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3551,6 +3565,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3570,6 +3585,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3674,6 +3690,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3896,6 +3913,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4217,6 +4235,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4236,6 +4255,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4885,6 +4905,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4966,6 +4987,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5019,6 +5041,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5283,6 +5306,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5394,6 +5418,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5476,6 +5501,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5670,6 +5696,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5850,6 +5877,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5859,6 +5887,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5867,6 +5896,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6029,6 +6059,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6181,6 +6212,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6605,6 +6637,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6868,6 +6901,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6968,6 +7002,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6983,6 +7018,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7349,6 +7385,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7498,6 +7536,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7526,6 +7565,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7562,6 +7602,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7784,6 +7825,9 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7855,6 +7899,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 701852f4484..157dcb22bfa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -776,6 +776,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1639,6 +1640,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1771,6 +1773,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1788,7 +1791,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2273,6 +2278,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2403,6 +2409,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2494,6 +2501,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2821,6 +2829,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3134,6 +3143,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3176,6 +3186,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3214,6 +3225,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3247,6 +3259,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3432,6 +3445,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3542,6 +3556,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3561,6 +3576,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3665,6 +3681,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3885,6 +3902,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4206,6 +4224,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4225,6 +4244,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4270,6 +4290,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4872,6 +4893,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4953,6 +4975,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -5006,6 +5029,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5268,6 +5292,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5379,6 +5404,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5461,6 +5487,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5654,6 +5681,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5834,6 +5862,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5843,6 +5872,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5851,6 +5881,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -6011,6 +6042,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6161,6 +6193,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6585,6 +6618,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6847,6 +6881,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6946,6 +6981,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6961,6 +6997,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7327,6 +7364,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7475,6 +7514,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7503,6 +7543,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7539,6 +7580,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7761,8 +7803,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7831,6 +7877,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 8886aa895e7..900e14b8aef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -776,6 +776,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1636,6 +1637,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1768,6 +1770,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1785,7 +1788,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2267,6 +2272,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2397,6 +2403,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2483,6 +2490,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2810,6 +2818,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3123,6 +3132,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3165,6 +3175,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3203,6 +3214,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3236,6 +3248,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3421,6 +3434,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3531,6 +3545,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3550,6 +3565,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3654,6 +3670,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3874,6 +3891,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4195,6 +4213,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4214,6 +4233,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4259,6 +4279,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4861,6 +4882,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4942,6 +4964,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4995,6 +5018,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5255,6 +5279,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5366,6 +5391,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5448,6 +5474,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5641,6 +5668,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5821,6 +5849,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5830,6 +5859,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5838,6 +5868,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5996,6 +6027,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6145,6 +6177,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6569,6 +6602,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6831,6 +6865,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6930,6 +6965,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6945,6 +6981,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7011,6 +7048,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7309,6 +7347,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7457,6 +7497,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7485,6 +7526,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7521,6 +7563,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7743,8 +7786,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7813,6 +7860,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index e57c1488001..66de270065c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -774,6 +774,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; "Quickson" = dontDistribute super."Quickson"; @@ -1633,6 +1634,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1764,6 +1766,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1781,7 +1784,9 @@ self: super: { "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; "cantor" = dontDistribute super."cantor"; "cao" = dontDistribute super."cao"; "cap" = dontDistribute super."cap"; @@ -2263,6 +2268,7 @@ self: super: { "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; "data-extra" = dontDistribute super."data-extra"; "data-filepath" = dontDistribute super."data-filepath"; "data-fin" = dontDistribute super."data-fin"; @@ -2392,6 +2398,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2478,6 +2485,7 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = dontDistribute super."distributed-process"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2803,6 +2811,7 @@ self: super: { "fastedit" = dontDistribute super."fastedit"; "fastirc" = dontDistribute super."fastirc"; "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; "fay-geoposition" = dontDistribute super."fay-geoposition"; "fay-hsx" = dontDistribute super."fay-hsx"; "fay-ref" = dontDistribute super."fay-ref"; @@ -3115,6 +3124,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; @@ -3157,6 +3167,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3195,6 +3206,7 @@ self: super: { "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3228,6 +3240,7 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; @@ -3413,6 +3426,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3523,6 +3537,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3542,6 +3557,7 @@ self: super: { "hans" = dontDistribute super."hans"; "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; "hapistrano" = dontDistribute super."hapistrano"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; @@ -3646,6 +3662,7 @@ self: super: { "haskell-read-editor" = dontDistribute super."haskell-read-editor"; "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3866,6 +3883,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4187,6 +4205,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4206,6 +4225,7 @@ self: super: { "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; "hsqml-morris" = dontDistribute super."hsqml-morris"; "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; @@ -4251,6 +4271,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4853,6 +4874,7 @@ self: super: { "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; "linebreak" = dontDistribute super."linebreak"; "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; "linkchk" = dontDistribute super."linkchk"; "linkcore" = dontDistribute super."linkcore"; "linkedhashmap" = dontDistribute super."linkedhashmap"; @@ -4934,6 +4956,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; "lojbanParser" = dontDistribute super."lojbanParser"; @@ -4987,6 +5010,7 @@ self: super: { "mac" = dontDistribute super."mac"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5247,6 +5271,7 @@ self: super: { "mpdmate" = dontDistribute super."mpdmate"; "mpppc" = dontDistribute super."mpppc"; "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; "mprover" = dontDistribute super."mprover"; "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; @@ -5358,6 +5383,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5440,6 +5466,7 @@ self: super: { "nextstep-plist" = dontDistribute super."nextstep-plist"; "nf" = dontDistribute super."nf"; "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; "nibblestring" = dontDistribute super."nibblestring"; "nicify" = dontDistribute super."nicify"; "nicify-lib" = dontDistribute super."nicify-lib"; @@ -5632,6 +5659,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5812,6 +5840,7 @@ self: super: { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5821,6 +5850,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5829,6 +5859,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = doDistribute super."plot_0_2_3_4"; "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; @@ -5987,6 +6018,7 @@ self: super: { "progressive" = dontDistribute super."progressive"; "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; @@ -6136,6 +6168,7 @@ self: super: { "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; "rawstring-qm" = dontDistribute super."rawstring-qm"; "razom-text-util" = dontDistribute super."razom-text-util"; "rbr" = dontDistribute super."rbr"; @@ -6560,6 +6593,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6822,6 +6856,7 @@ self: super: { "sound-collage" = dontDistribute super."sound-collage"; "sounddelay" = dontDistribute super."sounddelay"; "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; "sousit" = dontDistribute super."sousit"; "sox" = dontDistribute super."sox"; "soxlib" = dontDistribute super."soxlib"; @@ -6921,6 +6956,7 @@ self: super: { "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; "stats" = dontDistribute super."stats"; "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; "statsd-datadog" = dontDistribute super."statsd-datadog"; "statvfs" = dontDistribute super."statvfs"; "stb-image" = dontDistribute super."stb-image"; @@ -6936,6 +6972,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7002,6 +7039,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -7300,6 +7338,8 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; @@ -7448,6 +7488,7 @@ self: super: { "type-booleans" = dontDistribute super."type-booleans"; "type-cereal" = dontDistribute super."type-cereal"; "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; "type-digits" = dontDistribute super."type-digits"; "type-equality" = dontDistribute super."type-equality"; "type-equality-check" = dontDistribute super."type-equality-check"; @@ -7476,6 +7517,7 @@ self: super: { "typeable-th" = dontDistribute super."typeable-th"; "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; "typedquery" = dontDistribute super."typedquery"; "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; @@ -7512,6 +7554,7 @@ self: super: { "unbound" = dontDistribute super."unbound"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7734,8 +7777,12 @@ self: super: { "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7804,6 +7851,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 16ad44023b7..f1a0e64c4e9 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -747,6 +747,7 @@ self: { libraryToolDepends = [ alex cpphs happy ]; executableHaskellDepends = [ base directory filepath process ]; executableToolDepends = [ emacs ]; + jailbreak = true; postInstall = '' $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) $out/bin/agda-mode compile @@ -7372,20 +7373,19 @@ self: { }) {}; "HDBC-odbc" = callPackage - ({ mkDerivation, base, bytestring, HDBC, mtl, time, unixODBC - , utf8-string + ({ mkDerivation, base, bytestring, concurrent-extra, HDBC, mtl + , time, unixODBC, utf8-string }: mkDerivation { pname = "HDBC-odbc"; - version = "2.4.0.1"; - sha256 = "dbc6eecc122079ca396c86154bfe59553d65bea52f83f8c0630903f2292daee9"; + version = "2.5.0.0"; + sha256 = "729982fb31e2d7816e8600212236f32d9d9a59191d73ce57fce097be2234953b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring HDBC mtl time utf8-string + base bytestring concurrent-extra HDBC mtl time utf8-string ]; librarySystemDepends = [ unixODBC ]; - executableSystemDepends = [ unixODBC ]; homepage = "https://github.com/hdbc/hdbc-odbc"; description = "ODBC driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -10048,8 +10048,8 @@ self: { }: mkDerivation { pname = "Hoed"; - version = "0.3.2"; - sha256 = "b7a7101f0b27c0917ca8f1e4a9777735d86ffd05bf258ddef650a967e67d4735"; + version = "0.3.3"; + sha256 = "2ae2eed3c528a0c8ae9a797cddb66d64ddb5443d43181b00c90ab2ee9e0ef88d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -15177,6 +15177,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Quelea" = callPackage + ({ mkDerivation, base, bytestring, cassandra-cql, cereal + , containers, derive, directory, lens, mtl, optparse-applicative + , process, random, template-haskell, text, time, transformers + , tuple, unix, uuid, z3, zeromq4-haskell + }: + mkDerivation { + pname = "Quelea"; + version = "1.0.0"; + sha256 = "b30b6516160a7d3ab9db3c1341b69c35f0a9230ac23bb819a7b42be48a67d7e3"; + libraryHaskellDepends = [ + base bytestring cassandra-cql cereal containers derive directory + lens mtl optparse-applicative process random template-haskell text + time transformers tuple unix uuid z3 zeromq4-haskell + ]; + homepage = "http://gowthamk.github.io/Quelea"; + description = "Programming with Eventual Consistency over Cassandra"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "QuickAnnotate" = callPackage ({ mkDerivation, base, haskell-src-exts }: mkDerivation { @@ -16158,16 +16178,17 @@ self: { }) {inherit (pkgs) SDL;}; "SDL-gfx" = callPackage - ({ mkDerivation, base, SDL }: + ({ mkDerivation, base, SDL, SDL_gfx }: mkDerivation { pname = "SDL-gfx"; - version = "0.6.0.1"; - sha256 = "8311da5762464cba671f5f2225d0777180d805f0b429ac5824ae2f9f4416c7ab"; + version = "0.6.0.2"; + sha256 = "ab0035335a2193d8fd3e468bc2e5ba74b086516b62bad35415153606a2770dc5"; libraryHaskellDepends = [ base SDL ]; + librarySystemDepends = [ SDL_gfx ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; + }) {inherit (pkgs) SDL_gfx;}; "SDL-image" = callPackage ({ mkDerivation, base, SDL, SDL_image }: @@ -16213,16 +16234,17 @@ self: { }) {inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage - ({ mkDerivation, base, SDL }: + ({ mkDerivation, base, SDL, SDL_ttf }: mkDerivation { pname = "SDL-ttf"; - version = "0.6.2.1"; - sha256 = "3a9d43e99b85813aad4f6e731ed0cd01b8d9f3a4dfff51ec6143b3fc6428a5d1"; + version = "0.6.2.2"; + sha256 = "1621e4f1262f0c63aef84e02a9f53515ddcc4fce92a50d6954d947598a527499"; libraryHaskellDepends = [ base SDL ]; + librarySystemDepends = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; + }) {inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage ({ mkDerivation, base, SDL2, SDL2_ttf }: @@ -16605,17 +16627,17 @@ self: { }) {}; "SciFlow" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lens, mtl - , optparse-applicative, shelly, split, template-haskell, text - , th-lift, unordered-containers, yaml + ({ mkDerivation, base, bytestring, containers, data-default-class + , fgl, graphviz, lens, mtl, optparse-applicative, shelly, split + , template-haskell, text, th-lift, yaml }: mkDerivation { pname = "SciFlow"; - version = "0.3.0"; - sha256 = "f23c90f2708edde150c16eff8692ac8cd47bbf2455aaa355c0546e1f9cb0becf"; + version = "0.4.0"; + sha256 = "6ab39de90c8f4b31ee57ebab575db36d53ef1800895bc87cfa3b9d443807661b"; libraryHaskellDepends = [ - base bytestring data-default-class lens mtl optparse-applicative - shelly split template-haskell text th-lift unordered-containers + base bytestring containers data-default-class fgl graphviz lens mtl + optparse-applicative shelly split template-haskell text th-lift yaml ]; description = "Scientific workflow management system"; @@ -17118,6 +17140,7 @@ self: { base Cabal containers directory fgl filepath Graphalyze graphviz haskell-src-exts mtl multiset random ]; + jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; }) {}; @@ -20049,23 +20072,25 @@ self: { }) {}; "abcBridge" = callPackage - ({ mkDerivation, abc, aig, base, c2hs, containers, directory - , QuickCheck, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck - , vector + ({ mkDerivation, abc, aig, base, base-compat, c2hs, containers + , directory, QuickCheck, tasty, tasty-ant-xml, tasty-hunit + , tasty-quickcheck, vector }: mkDerivation { pname = "abcBridge"; - version = "0.14"; - sha256 = "6e3a8abe9b398649d4584df9dec79a86e7dbd40e0fd1abd5be735854c08025ce"; + version = "0.15"; + sha256 = "45fef882d6e9c3f7ad48621fc835417df5c161c6743ebc4e4d3cabe9445b113c"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ aig base containers directory vector ]; + libraryHaskellDepends = [ + aig base base-compat containers directory vector + ]; librarySystemDepends = [ abc ]; libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; + executableHaskellDepends = [ base base-compat ]; testHaskellDepends = [ - aig base directory QuickCheck tasty tasty-ant-xml tasty-hunit - tasty-quickcheck vector + aig base base-compat directory QuickCheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck vector ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; @@ -21793,6 +21818,7 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit tasty-quickcheck tasty-th ]; + doHaddock = false; description = "Tools to change the formatting of field names in Aeson instances"; license = stdenv.lib.licenses.mit; }) {}; @@ -21852,7 +21878,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_2_2_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , exceptions, hashable, quickcheck-instances, scientific, tasty , tasty-hunit, tasty-quickcheck, text, time, unordered-containers @@ -21874,9 +21900,10 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra_0_2_3_0" = callPackage + "aeson-extra" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , exceptions, hashable, quickcheck-instances, scientific, tasty , tasty-hunit, tasty-quickcheck, template-haskell, text, time @@ -21898,7 +21925,6 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-filthy" = callPackage @@ -21975,8 +22001,8 @@ self: { }: mkDerivation { pname = "aeson-parsec-picky"; - version = "0.1.0.0"; - sha256 = "bd5fa3ae9322fe1f486d52d046823d843538bf85204371a0ba17736412ea9cbc"; + version = "0.1.0.1"; + sha256 = "f617704188453e639d60ea9ac24d6c161affb517581cfff6dfbd2b580ccaea62"; libraryHaskellDepends = [ aeson base parsec scientific text unordered-containers vector ]; @@ -22287,8 +22313,8 @@ self: { }: mkDerivation { pname = "aeson-value-parser"; - version = "0.11"; - sha256 = "894b2465322aeb049857aca34f2c713289edfe9dc93d33df9a5d747862bca88f"; + version = "0.11.1"; + sha256 = "933a2111c21cc0f6e9869d6c4927b8201882a03c01de693e68d821f5d4484d49"; libraryHaskellDepends = [ aeson base-prelude mtl-prelude scientific success text unordered-containers vector @@ -22464,12 +22490,12 @@ self: { }) {}; "aig" = callPackage - ({ mkDerivation, base, mtl, QuickCheck, vector }: + ({ mkDerivation, base, base-compat, mtl, QuickCheck, vector }: mkDerivation { pname = "aig"; - version = "0.2.3"; - sha256 = "f9f75a6df96defba1f34f0fbd7e8914b447c9fe5bb1aa96722df67eb4ae6c30c"; - libraryHaskellDepends = [ base mtl QuickCheck vector ]; + version = "0.2.4"; + sha256 = "ac0e06a707b7488de7e1f9d7b123703e2df14763f9e6448d67c4dd20ffdc88eb"; + libraryHaskellDepends = [ base base-compat mtl QuickCheck vector ]; description = "And-inverter graphs in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30651,6 +30677,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "auto-update_0_1_3" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "auto-update"; + version = "0.1.3"; + sha256 = "3d8e11271d9c0bacefd663143af60c530dd7483b70582bae56e64b6716891509"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Efficiently run periodic, on-demand actions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "autonix-deps" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, conduit , containers, errors, filepath, lens, libarchive-conduit, mtl @@ -32386,6 +32425,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "base-noprelude_4_8_2_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "base-noprelude"; + version = "4.8.2.0"; + sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7"; + libraryHaskellDepends = [ base ]; + doHaddock = false; + jailbreak = true; + homepage = "https://github.com/hvr/base-noprelude"; + description = "\"base\" package sans \"Prelude\" module"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base-orphans_0_4_3" = callPackage ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: mkDerivation { @@ -32417,6 +32471,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "base-orphans_0_4_5" = callPackage + ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: + mkDerivation { + pname = "base-orphans"; + version = "0.4.5"; + sha256 = "16b70764247f1545b76c51b1d93dfe98dc78076a710db777e213d61690053da7"; + libraryHaskellDepends = [ base ghc-prim ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/haskell-compat/base-orphans#readme"; + description = "Backwards-compatible orphan instances for base"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base-prelude_0_1_6" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -34142,10 +34210,9 @@ self: { ({ mkDerivation, array, base, bytestring, containers, mtl }: mkDerivation { pname = "binary-strict"; - version = "0.4.8.2"; - sha256 = "67114486d3d29367c29814aed25291fe62b8ab2545576cde23b0e0cb0bc9d933"; + version = "0.4.8.3"; + sha256 = "8eb8fb5bd9fdae7bc39df27e3273bdf7e7903c88c517c5646616dd8f04a92cb1"; libraryHaskellDepends = [ array base bytestring containers mtl ]; - jailbreak = true; homepage = "https://github.com/idontgetoutmuch/binary-low-level"; description = "Binary deserialisation using strict ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -37075,6 +37142,37 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "bond" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, cmdargs, derive + , Diff, directory, filepath, HUnit, monad-loops, mtl, parsec + , pretty, process, QuickCheck, shakespeare, tasty, tasty-golden + , tasty-hunit, tasty-quickcheck, text + }: + mkDerivation { + pname = "bond"; + version = "0.4.0.1"; + sha256 = "40d7f0ddcb4779d16ce3ce94bb0f0d2ea47d6d2c82f296027cd3d068be0622c8"; + revision = "1"; + editedCabalFile = "f90dcbaa3a55c1918957942c01f21a574c268730f37aff34c19a6cd04b4ccc6d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring filepath mtl parsec shakespeare text + ]; + executableHaskellDepends = [ + aeson async base bytestring cmdargs directory filepath monad-loops + process text + ]; + testHaskellDepends = [ + aeson base bytestring cmdargs derive Diff directory filepath HUnit + monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit + tasty-quickcheck text + ]; + homepage = "https://github.com/Microsoft/bond"; + description = "Bond schema compiler and code generator"; + license = stdenv.lib.licenses.mit; + }) {}; + "bool-extras" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -37527,17 +37625,17 @@ self: { "brick" = callPackage ({ mkDerivation, base, containers, contravariant, data-default - , deepseq, Diff, lens, template-haskell, text, text-zipper - , transformers, vector, vty + , deepseq, lens, template-haskell, text, text-zipper, transformers + , vector, vty }: mkDerivation { pname = "brick"; - version = "0.2.3"; - sha256 = "4f9062ccc4cc4a9756cc1dcf057d96c8c4a587f0405d11fa75619555afe3b402"; + version = "0.3"; + sha256 = "86d37000d642b0a7bca0c820f7860fefc6a9383044149253e17a88ee4c69d491"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers contravariant data-default deepseq Diff lens + base containers contravariant data-default deepseq lens template-haskell text text-zipper transformers vector vty ]; executableHaskellDepends = [ @@ -38786,8 +38884,8 @@ self: { }: mkDerivation { pname = "bytestring-tree-builder"; - version = "0.2.2"; - sha256 = "ba0177ecfd71e7370b2c57fb23de72b8bc65c7e0533599fbd5791af29ea79260"; + version = "0.2.2.1"; + sha256 = "7c63bedde6d0179d0c595fa14d0bfe46625e6fc089eb82675fe463ffa015286d"; libraryHaskellDepends = [ base base-prelude bytestring ]; testHaskellDepends = [ base-prelude bytestring QuickCheck quickcheck-instances tasty @@ -40446,8 +40544,8 @@ self: { ({ mkDerivation, base, stm, time }: mkDerivation { pname = "cached-io"; - version = "0.1.0.1"; - sha256 = "76326e5acec346f27c258440b792e4899c6fb2fc364b1c217c73c5b72e3ce0b8"; + version = "0.1.1.0"; + sha256 = "b43e7b329aff4a1f96daff221b6e68b7124d35cef3331034b452d794c8b03546"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base stm time ]; @@ -40578,7 +40676,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; - "cairo" = callPackage + "cairo_0_13_1_0" = callPackage ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools , mtl, text, utf8-string }: @@ -40594,6 +40692,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) cairo;}; + + "cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools + , mtl, text, utf8-string + }: + mkDerivation { + pname = "cairo"; + version = "0.13.1.1"; + sha256 = "58ae22451e7812a88531eaf91ae1250c277f48d0a88d1cae2438bd76f79e89f6"; + libraryHaskellDepends = [ + array base bytestring mtl text utf8-string + ]; + libraryPkgconfigDepends = [ cairo ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Cairo library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) cairo;}; "cairo-appbase" = callPackage @@ -40906,22 +41023,54 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "canteven-listen-http" = callPackage + ({ mkDerivation, aeson, base }: + mkDerivation { + pname = "canteven-listen-http"; + version = "0.1.0.0"; + sha256 = "b7a750e3cf9c1aa7bac89c631714546aea477f3b5a5672dd3df7bb1e2513e168"; + libraryHaskellDepends = [ aeson base ]; + jailbreak = true; + description = "data types to describe HTTP services"; + license = stdenv.lib.licenses.asl20; + }) {}; + "canteven-log" = callPackage - ({ mkDerivation, aeson, base, canteven-config, directory, filepath - , hslogger, text, yaml + ({ mkDerivation, aeson, base, bytestring, canteven-config + , directory, fast-logger, filepath, hslogger, monad-logger + , template-haskell, text, time, transformers, yaml }: mkDerivation { pname = "canteven-log"; - version = "0.2.0.0"; - sha256 = "ce6d0e147e0e2b008f6c225997955670f5e781eed7fda40d609cc4ef078bee95"; + version = "0.3.0.2"; + sha256 = "296cc4329510c766b973d98c2e6f1186404df46eaf0f10f53fec432a3a5a3379"; libraryHaskellDepends = [ - aeson base canteven-config directory filepath hslogger text yaml + aeson base bytestring canteven-config directory fast-logger + filepath hslogger monad-logger template-haskell text time + transformers yaml ]; homepage = "https://github.com/SumAll/haskell-canteven-log"; description = "A canteven way of setting up logging for your program"; license = stdenv.lib.licenses.asl20; }) {}; + "canteven-template" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, data-default + , markdown, template-haskell, text + }: + mkDerivation { + pname = "canteven-template"; + version = "0.1.0.0"; + sha256 = "c9c1e542c81288537211ed6d80c0cdc53bd1ec8967146337a2a2364286acc586"; + libraryHaskellDepends = [ + base blaze-html bytestring data-default markdown template-haskell + text + ]; + homepage = "https://github.com/SumAll/haskell-canteven-template/"; + description = "A few utilites and helpers for using Template Haskell in your projects"; + license = stdenv.lib.licenses.asl20; + }) {}; + "cantor" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , filepath, hspec, hxt, hxt-xpath, parsec, QuickCheck, split @@ -41961,8 +42110,8 @@ self: { }: mkDerivation { pname = "cblrepo"; - version = "0.18.2"; - sha256 = "d5511174340ac9723d40f70a3382c4e789b5183f4133657c343b380ea1221a98"; + version = "0.19.0"; + sha256 = "4608d1b3437c3dd00310b7accf53c1d904eb0390feec25075ad2bdef3ab01a19"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42233,8 +42382,8 @@ self: { }: mkDerivation { pname = "cereal-plus"; - version = "0.4.0"; - sha256 = "ecc667407b9aa3eace4a2f65b0ef4a76f380df988cbb92a2cec8d0059b273e81"; + version = "0.4.1"; + sha256 = "696f8a279e6c38c70c1b821565398b850c602464fba909ab3ce7c30b4b14e492"; libraryHaskellDepends = [ array base bytestring cereal containers errors hashable hashtables mmorph mtl stm text time unordered-containers vector @@ -42244,7 +42393,6 @@ self: { HTF HUnit mmorph mtl QuickCheck quickcheck-instances stm text time unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; @@ -43462,8 +43610,8 @@ self: { ({ mkDerivation, array, base, bytestring, parseargs }: mkDerivation { pname = "ciphersaber2"; - version = "0.1.1.1"; - sha256 = "bb5d725c40858bccc30ed189d6bf39fb790a4fefed965d7b72fcbbe506e50b86"; + version = "0.1.1.2"; + sha256 = "d64c809fff4312d71cf93b462c76a4f23b763d95b70d305b1091f3d5d240efb3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring ]; @@ -43910,8 +44058,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.5"; - sha256 = "22f1b6329093eebb4490fe8ffcac650a8408c22fab7a3eedb3cbd6f3876aba52"; + version = "0.6.6"; + sha256 = "a01193e7552866b839ddc6d368f4cb0b04c2ba5eed2a92217cad23024bdf5718"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44027,8 +44175,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.5"; - sha256 = "62921cc650ac7bda7c5b29861f02026d4b4d7a6d33d2efe11de52f0b422d8104"; + version = "0.6.6"; + sha256 = "a40e5cc300a84e61b7ed47a104914715e77795b18bd97f9489ddbca8efc92cd5"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -44091,8 +44239,8 @@ self: { }: mkDerivation { pname = "clash-prelude"; - version = "0.10.3"; - sha256 = "4049c115c7b38ddf893e860556dbe29543ae729a0d288cc651739b6ef6d5ebfb"; + version = "0.10.4"; + sha256 = "0e61217e0cb01a88daae477ce3dffb22c347cfa7165a09718bf8d51d6329e180"; libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection @@ -45626,6 +45774,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "clock_0_6_0_1" = callPackage + ({ mkDerivation, base, tasty, tasty-quickcheck }: + mkDerivation { + pname = "clock"; + version = "0.6.0.1"; + sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + homepage = "https://github.com/corsis/clock"; + description = "High-resolution clock functions: monotonic, realtime, cputime"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "clocked" = callPackage ({ mkDerivation, base, clock, containers, MonadCatchIO-transformers , QtCore, transformers @@ -47815,6 +47977,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "concurrent-extra_0_7_0_10" = callPackage + ({ mkDerivation, async, base, HUnit, random, stm, test-framework + , test-framework-hunit, unbounded-delays + }: + mkDerivation { + pname = "concurrent-extra"; + version = "0.7.0.10"; + sha256 = "6f27cc0a90f5f25b3c0a1e9e3c0e3b407538908c061c5b7da34461b76e1adc12"; + libraryHaskellDepends = [ base stm unbounded-delays ]; + testHaskellDepends = [ + async base HUnit random stm test-framework test-framework-hunit + unbounded-delays + ]; + homepage = "https://github.com/basvandijk/concurrent-extra"; + description = "Extra concurrency primitives"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "concurrent-machines" = callPackage ({ mkDerivation, async, base, containers, lifted-async, machines , monad-control, semigroups, tasty, tasty-hunit, time, transformers @@ -48890,21 +49071,21 @@ self: { "configifier" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , case-insensitive, containers, either, hspec, hspec-discover, mtl - , pretty-show, QuickCheck, regex-easy, safe, scientific - , string-conversions, template-haskell, text, unordered-containers - , vector, yaml + , case-insensitive, containers, directory, either, functor-infix + , hspec, hspec-discover, mtl, pretty-show, QuickCheck, regex-easy + , safe, scientific, string-conversions, template-haskell, text + , unordered-containers, vector, yaml }: mkDerivation { pname = "configifier"; - version = "0.0.6"; - sha256 = "00b212fa919e3765224654886be2e78ba646396470dd1448fc8851852482e2b6"; + version = "0.0.7"; + sha256 = "207b6a5c670b44c0a7814ff7ab2054507df84d8b8ad8418c3fe312d7d1db1e30"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring case-insensitive containers either mtl regex-easy - safe string-conversions template-haskell unordered-containers - vector yaml + base bytestring case-insensitive containers directory either + functor-infix mtl regex-easy safe string-conversions + template-haskell unordered-containers vector yaml ]; executableHaskellDepends = [ base bytestring mtl pretty-show string-conversions text yaml @@ -54271,6 +54452,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-extend-generic" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "data-extend-generic"; + version = "0.1.0.0"; + sha256 = "b5cf36c5ccf72a400bc8dca3a983c3a4b65a7788fbd07eca93e5b23dca27f1bd"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/githubuser/data-extend-generic#readme"; + description = "Extend Haskell data or newtype like in OOP languages"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-extra" = callPackage ({ mkDerivation }: mkDerivation { @@ -55855,6 +56049,7 @@ self: { gitrev Glob graph-wrapper hspec interpolate mockery silently string-conversions uniplate ]; + jailbreak = true; homepage = "https://github.com/soenkehahn/dead-code-detection#readme"; description = "detect dead code in haskell projects"; license = stdenv.lib.licenses.bsd3; @@ -56760,6 +56955,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56781,6 +56977,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56802,6 +56999,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56823,13 +57021,14 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive" = callPackage + "derive_2_5_22" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -56844,12 +57043,14 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive_2_5_23" = callPackage + "derive" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -56864,11 +57065,9 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; - jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-IG" = callPackage @@ -57392,6 +57591,7 @@ self: { diagrams-postscript diagrams-rasterific diagrams-svg directory filepath JuicyPixels lens lucid-svg ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58159,6 +58359,7 @@ self: { base containers haskell-src-exts lens parsec QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; doCheck = false; homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; @@ -58977,8 +59178,8 @@ self: { ({ mkDerivation, base, binary, bytestring, pretty, safe, time }: mkDerivation { pname = "dicom"; - version = "0.2.0.0"; - sha256 = "3772604143c86a3827e73924f5cbc404ab5506aabfa75f51396d3d54651e09fc"; + version = "0.3.0.0"; + sha256 = "d616ae5db9863803c7502986925598be9774842e714ed9c4dfecdc5dce9f3d20"; libraryHaskellDepends = [ base binary bytestring pretty safe time ]; @@ -60094,6 +60295,24 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "distributed-closure" = callPackage + ({ mkDerivation, base, binary, bytestring, constraints, hspec + , QuickCheck, template-haskell + }: + mkDerivation { + pname = "distributed-closure"; + version = "0.1.0.0"; + sha256 = "7c49a85015f428e55af318214de93ce8ab9257e627ad6ef8592b781324aac52e"; + libraryHaskellDepends = [ + base binary bytestring constraints template-haskell + ]; + testHaskellDepends = [ base binary hspec QuickCheck ]; + jailbreak = true; + homepage = "https://github.com/tweag/distributed-closure"; + description = "Serializable closures for distributed programming"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "distributed-process_0_5_2" = callPackage ({ mkDerivation, base, binary, bytestring, containers , data-accessor, deepseq, distributed-static, ghc-prim, hashable @@ -62110,8 +62329,8 @@ self: { }: mkDerivation { pname = "drifter"; - version = "0.2"; - sha256 = "5a9aa7272b4d40f832d7501b8b1d6155004a21d8aea4bea283e8a067bcbf646f"; + version = "0.2.1"; + sha256 = "0e7019f08595769149e58e86ce503e636afa52028a68211dd4df1882c03626bd"; libraryHaskellDepends = [ base containers fgl text ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck text @@ -66522,6 +66741,29 @@ self: { platforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "eventstore_0_9_1_2" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal + , containers, network, protobuf, random, stm, tasty, tasty-hunit + , text, time, unordered-containers, uuid + }: + mkDerivation { + pname = "eventstore"; + version = "0.9.1.2"; + sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; + libraryHaskellDepends = [ + aeson async attoparsec base bytestring cereal containers network + protobuf random stm text time unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base stm tasty tasty-hunit text time + ]; + homepage = "http://github.com/YoEight/eventstore"; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "every-bit-counts" = callPackage ({ mkDerivation, base, haskell98 }: mkDerivation { @@ -67528,8 +67770,8 @@ self: { }: mkDerivation { pname = "extract-dependencies"; - version = "0.1.0.0"; - sha256 = "e13363fb87dd5d893d421619d2feab7a84167e1c3fa66aa105f320fd3e95d9e3"; + version = "0.2.0.0"; + sha256 = "30224debda1f730a50bd1f92a7906c9addef641475f60dd7feb3c14011da8b35"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -68196,7 +68438,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fay" = callPackage + "fay_0_23_1_8" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, data-default , data-lens-light, directory, filepath, ghc-paths, haskell-src-exts , language-ecmascript, mtl, mtl-compat, optparse-applicative @@ -68220,12 +68462,14 @@ self: { uniplate unordered-containers utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fay_0_23_1_10" = callPackage + "fay" = callPackage ({ mkDerivation, aeson, base, base-compat, bytestring, containers , data-default, data-lens-light, directory, filepath, ghc-paths , haskell-src-exts, language-ecmascript, mtl, mtl-compat @@ -68249,11 +68493,9 @@ self: { utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; - jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-base_0_19_4_1" = callPackage @@ -69084,18 +69326,17 @@ self: { }) {}; "feed-collect" = callPackage - ({ mkDerivation, base, feed, http-client, http-client-tls, time - , time-units, timerep, transformers, utf8-string + ({ mkDerivation, base, data-default-class, feed, http-client + , http-client-tls, time, time-interval, time-units, timerep + , transformers, utf8-string }: mkDerivation { pname = "feed-collect"; - version = "0.1.0.1"; - sha256 = "e442e5999c34c998a7b15189af564730360effb3e5dbaa4d99f65076de445204"; - revision = "1"; - editedCabalFile = "0383f41e89586ae747cdb892d9404ae0c9a1fed72bb06dbc0fa9bd585885084d"; + version = "0.2.0.0"; + sha256 = "107701b470b86ef66be17fc76393995ad59e2912aa399bb4212bf63023152559"; libraryHaskellDepends = [ - base feed http-client http-client-tls time time-units timerep - transformers utf8-string + base data-default-class feed http-client http-client-tls time + time-interval time-units timerep transformers utf8-string ]; homepage = "http://rel4tion.org/projects/feed-collect/"; description = "Watch RSS/Atom feeds (and do with them whatever you like)"; @@ -69867,7 +70108,6 @@ self: { executableHaskellDepends = [ async base directory filepath haskell-src-exts MissingH ]; - jailbreak = true; homepage = "https://github.com/yamadapc/stack-run-auto"; description = "Takes a Haskell source-code file and outputs its modules"; license = stdenv.lib.licenses.mit; @@ -70386,6 +70626,7 @@ self: { base containers cpphs directory filepath haskell-src-exts process split text uniplate ]; + jailbreak = true; description = "Program to manage the imports of a haskell module"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70445,10 +70686,10 @@ self: { ({ mkDerivation, base, non-empty, utility-ht }: mkDerivation { pname = "fixed-length"; - version = "0.1"; - sha256 = "72be787d9f0e13ae09115ffd0c3decec100163e0c457050fb2b8106dd83ab284"; + version = "0.1.1"; + sha256 = "64630e4f00c9403e270cad744c862104a1248f8c18f565cd485a8725d45357d5"; libraryHaskellDepends = [ base non-empty utility-ht ]; - homepage = "http://code.haskell.org/~thielema/fixed-length/"; + homepage = "http://hub.darcs.net/thielema/fixed-length/"; description = "Lists with statically known length based on non-empty package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -71585,21 +71826,23 @@ self: { "foldl-transduce" = callPackage ({ mkDerivation, base, bifunctors, bytestring, comonad, containers , doctest, foldl, free, monoid-subclasses, profunctors - , semigroupoids, tasty, tasty-hunit, tasty-quickcheck, text - , transformers, void + , semigroupoids, semigroups, split, tasty, tasty-hunit + , tasty-quickcheck, text, transformers, void }: mkDerivation { pname = "foldl-transduce"; - version = "0.4.5.0"; - sha256 = "a18a354ec6d8e7be3563ac400af331ff8d928a038b8ea7b3dc8c8e0bf5417564"; + version = "0.4.6.0"; + sha256 = "91a3114417eccc322d7b151029c88582a8875151a452df487c9fb857d724b2b5"; libraryHaskellDepends = [ base bifunctors bytestring comonad containers foldl free - monoid-subclasses profunctors semigroupoids text transformers void + monoid-subclasses profunctors semigroupoids semigroups split text + transformers void ]; testHaskellDepends = [ - base doctest foldl free monoid-subclasses tasty tasty-hunit + base doctest foldl free monoid-subclasses split tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Transducers for foldl folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -73056,8 +73299,8 @@ self: { }: mkDerivation { pname = "friday-juicypixels"; - version = "0.1.0.2"; - sha256 = "4928f55a3944a15a89023434aa3b1409eefd3a741e623eb5873d55ec7880d954"; + version = "0.1.1"; + sha256 = "f3a96bab73ddb6a26fd3ac705b7dc21e41b55a3027f4727f1e7307262a89207e"; libraryHaskellDepends = [ base friday JuicyPixels vector ]; testHaskellDepends = [ base bytestring file-embed friday hspec JuicyPixels @@ -74127,8 +74370,8 @@ self: { ({ mkDerivation, base, GConf, glib, gtk2hs-buildtools, text }: mkDerivation { pname = "gconf"; - version = "0.13.0.2"; - sha256 = "930ac96d4e46d6fc8f5fb9c5a19ff79695f8d01fa3a110da25f1ba95828add77"; + version = "0.13.0.3"; + sha256 = "e8efb705c725ae56486585d0972f9dcec96db89c4d636f1805f7dd3e175d69d2"; libraryHaskellDepends = [ base glib text ]; libraryPkgconfigDepends = [ GConf ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -75288,8 +75531,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.12"; - sha256 = "f13fef8a35dbd5d2da9b5a8eb7361c848f973a70edb3ef243f0b4bfc409e5c19"; + version = "0.13"; + sha256 = "d193384dca0c9fdd8492ee888b1b8954b247f83ead6e4f3f81ded94377aaa34a"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -75303,27 +75546,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "getopt-generics_0_13" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, filepath - , generics-sop, hspec, QuickCheck, safe, silently, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13"; - sha256 = "d193384dca0c9fdd8492ee888b1b8954b247f83ead6e4f3f81ded94377aaa34a"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - testHaskellDepends = [ - base base-compat base-orphans filepath generics-sop hspec - QuickCheck safe silently tagged - ]; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "getopt-simple" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -75521,8 +75743,8 @@ self: { }: mkDerivation { pname = "ghc-exactprint"; - version = "0.5.0.0"; - sha256 = "11d840d8ad311cd474063c4531ae0bfbffde05eaf7b1a1de6d1b416b89fe2921"; + version = "0.5.0.1"; + sha256 = "ecdae12d521d0997a48a91507f241f80532df468f09095a50cc6f1629cd43ce8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -75784,6 +76006,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghc-options" = callPackage + ({ mkDerivation, base, bin-package-db, Cabal, directory, filepath + , ghc, ghc-paths, process, transformers, unix + }: + mkDerivation { + pname = "ghc-options"; + version = "0.2.0.0"; + sha256 = "75443492d1e6eb65b536087aafc84655bbad6026d28ecda950b3cd67d5d44369"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bin-package-db Cabal directory filepath ghc ghc-paths process + transformers unix + ]; + executableHaskellDepends = [ + base bin-package-db Cabal directory filepath ghc ghc-paths process + transformers unix + ]; + homepage = "https://github.com/ranjitjhala/ghc-options.git"; + description = "Utilities for extracting GHC options needed to compile a given Haskell target"; + license = stdenv.lib.licenses.mit; + }) {}; + "ghc-parmake" = callPackage ({ mkDerivation, array, base, containers, directory, filepath , HUnit, process, QuickCheck, temporary, test-framework @@ -75940,6 +76185,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ghc-session_0_1_2_0" = callPackage + ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths + , transformers, transformers-compat + }: + mkDerivation { + pname = "ghc-session"; + version = "0.1.2.0"; + sha256 = "791a40e9130a3ad09f3226a5cb71ab6ca0492b35345a68078c4e67e7ccd93c94"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base exceptions ghc ghc-mtl ghc-paths transformers + transformers-compat + ]; + executableHaskellDepends = [ base transformers ]; + homepage = "http://github.com/pmlodawski/ghc-session"; + description = "Simplified GHC API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ghc-simple" = callPackage ({ mkDerivation, base, binary, bytestring, directory, filepath, ghc , ghc-paths @@ -76087,13 +76353,12 @@ self: { }: mkDerivation { pname = "ghc-vis"; - version = "0.7.2.7"; - sha256 = "9bebc52ea34a59f378fdb8f66670c001602f346ad2b3fba7aea5fb70eeaab34f"; + version = "0.7.2.8"; + sha256 = "0aea23534eb95bc39ad2f2e017aa978df0a6aea105c314bca2030ac5daf9187d"; libraryHaskellDepends = [ base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; - jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -76786,7 +77051,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "gio" = callPackage + "gio_0_13_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib , gtk2hs-buildtools, mtl }: @@ -76801,6 +77066,24 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "gio" = callPackage + ({ mkDerivation, array, base, bytestring, containers, glib + , gtk2hs-buildtools, mtl + }: + mkDerivation { + pname = "gio"; + version = "0.13.1.1"; + sha256 = "d04d9b87b43bf12c5917ea561da403f80fe955adf735785ea8afa0915478113b"; + libraryHaskellDepends = [ + array base bytestring containers glib mtl + ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to GIO"; + license = stdenv.lib.licenses.lgpl21; }) {}; "gipeda_0_1_0_2" = callPackage @@ -77001,71 +77284,6 @@ self: { inherit (pkgs) which;}; "git-annex" = callPackage - ({ mkDerivation, aeson, async, aws, base, blaze-builder - , bloomfilter, bup, byteable, bytestring, case-insensitive - , clientsession, concurrent-output, conduit, conduit-extra - , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus - , directory, dlist, dns, edit-distance, esqueleto, exceptions - , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify - , hslogger, http-client, http-conduit, http-types, IfElse, json - , lsof, MissingH, monad-control, monad-logger, mtl, network - , network-info, network-multicast, network-protocol-xmpp - , network-uri, old-locale, openssh, optparse-applicative - , path-pieces, perl, persistent, persistent-sqlite - , persistent-template, process, QuickCheck, random, regex-tdfa - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun - , template-haskell, text, time, torrent, transformers, unix - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls - , wget, which, xml-types, yesod, yesod-core, yesod-default - , yesod-form, yesod-static - }: - mkDerivation { - pname = "git-annex"; - version = "5.20151116"; - sha256 = "1735577964a1a83a3959e25b6268512e9cd5dbec84b142f2de7b2cd025b97f73"; - configureFlags = [ - "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" - "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" - "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" - "-fwebapp-secure" "-fwebdav" "-fxmpp" - ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson async aws base blaze-builder bloomfilter byteable bytestring - case-insensitive clientsession concurrent-output conduit - conduit-extra containers crypto-api cryptonite data-default DAV - dbus directory dlist dns edit-distance esqueleto exceptions - fdo-notify feed filepath gnutls hinotify hslogger http-client - http-conduit http-types IfElse json MissingH monad-control - monad-logger mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces persistent persistent-sqlite persistent-template - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi - securemem shakespeare stm tasty tasty-hunit tasty-quickcheck - tasty-rerun template-haskell text time torrent transformers unix - unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types - yesod yesod-core yesod-default yesod-form yesod-static - ]; - executableSystemDepends = [ - bup curl git gnupg lsof openssh perl rsync wget which - ]; - preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; - postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; - installPhase = "make PREFIX=$out CABAL=./Setup install"; - checkPhase = "./git-annex test"; - enableSharedExecutables = false; - homepage = "http://git-annex.branchable.com/"; - description = "manage files with git, without checking their contents into git"; - license = stdenv.lib.licenses.gpl3; - maintainers = with stdenv.lib.maintainers; [ simons ]; - }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; - inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; - inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; - inherit (pkgs) which;}; - - "git-annex_5_20151208" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra @@ -77124,7 +77342,6 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; @@ -77187,51 +77404,24 @@ self: { }) {}; "git-fmt" = callPackage - ({ mkDerivation, aeson, base, exceptions, extra, fast-logger - , filepath, monad-logger, monad-parallel, mtl, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "git-fmt"; - version = "0.3.1.1"; - sha256 = "aebf8a47e92e0a3a9210d45f9abcdf4e9c54eadb1e1422586df6f226dd1b55e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base extra filepath monad-logger mtl pipes text - unordered-containers yaml - ]; - executableHaskellDepends = [ - base exceptions extra fast-logger filepath monad-logger - monad-parallel mtl optparse-applicative pipes pipes-concurrency - temporary text time - ]; - homepage = "https://github.com/hjwylde/git-fmt"; - description = "Custom git command for formatting code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "git-fmt_0_4_0_0" = callPackage ({ mkDerivation, base, exceptions, extra, fast-logger, filepath , monad-logger, monad-parallel, mtl, omnifmt, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time + , pipes, pipes-concurrency, process, temporary, text, time }: mkDerivation { pname = "git-fmt"; - version = "0.4.0.0"; - sha256 = "13f5792fd2006f56a916f4767acef37816b513ec88d4f0aa61b62f35ae725952"; + version = "0.4.1.0"; + sha256 = "a9c10f79f92b6a1650f4eac002542a35dda0048ed68d670602e97615b879e97d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base exceptions extra fast-logger filepath monad-logger monad-parallel mtl omnifmt optparse-applicative pipes - pipes-concurrency temporary text time + pipes-concurrency process temporary text time ]; homepage = "https://github.com/hjwylde/git-fmt"; description = "Custom git command for formatting code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-freq" = callPackage @@ -77340,8 +77530,8 @@ self: { }: mkDerivation { pname = "git-repair"; - version = "1.20150106"; - sha256 = "b791e353be5f6cb9aaada20a87e569e6bb2f55f4ea269747e10c6239c5cd0fa6"; + version = "1.20151215"; + sha256 = "e1e5756f7ffba86a36abcdc296e0730b2a74e0f5e7711b0b6b89a09eb6f10463"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -78322,7 +78512,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; - "glib" = callPackage + "glib_0_13_2_1" = callPackage ({ mkDerivation, base, bytestring, containers, glib , gtk2hs-buildtools, text, utf8-string }: @@ -78338,6 +78528,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) glib;}; + + "glib" = callPackage + ({ mkDerivation, base, bytestring, containers, glib + , gtk2hs-buildtools, text, utf8-string + }: + mkDerivation { + pname = "glib"; + version = "0.13.2.2"; + sha256 = "16bc6710ac195778e514c6ba1da3b22a057854d4db0929b4835172ec42e0497f"; + libraryHaskellDepends = [ + base bytestring containers text utf8-string + ]; + libraryPkgconfigDepends = [ glib ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the GLIB library for Gtk2Hs"; + license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; "glicko" = callPackage @@ -78930,6 +79139,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; + "gnss-converters" = callPackage + ({ mkDerivation, base, basic-prelude, binary-conduit, conduit + , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit + }: + mkDerivation { + pname = "gnss-converters"; + version = "0.1.1"; + sha256 = "b225a109b0d264196abdf899c824c4d1e38c24c662bf888a9af9d968029117de"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base basic-prelude conduit-extra lens rtcm sbp + ]; + executableHaskellDepends = [ + base basic-prelude binary-conduit conduit conduit-extra resourcet + ]; + testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; + homepage = "http://github.com/swift-nav/gnss-converters"; + description = "GNSS Converters"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gnuidn_0_2_1" = callPackage ({ mkDerivation, base, bytestring, c2hs, libidn, text }: mkDerivation { @@ -81361,6 +81592,7 @@ self: { version = "0.1.2"; sha256 = "0e820122cad388f31c3ef0815d7ff93b9e95a8fdec0d6c560c379fe0ecfdb010"; libraryHaskellDepends = [ base haskell-src-exts ]; + doHaddock = false; description = "Pretty printing for well-behaved Show instances"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -82029,6 +82261,25 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {gtk2 = pkgs.gnome2.gtk;}; + "gtk_0_14_2" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2, gtk2hs-buildtools, mtl, pango, text + }: + mkDerivation { + pname = "gtk"; + version = "0.14.2"; + sha256 = "58f780c51fe2f3e25939a048bbe7d0b880e6aeb412df2648438f926a2b7b7eb5"; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk2 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {gtk2 = pkgs.gnome2.gtk;}; + "gtk-helpers" = callPackage ({ mkDerivation, array, base, gio, glib, gtk, mtl, process , template-haskell @@ -82079,8 +82330,8 @@ self: { }: mkDerivation { pname = "gtk-mac-integration"; - version = "0.3.1.1"; - sha256 = "5d8d8b2d0f05c2ed3d54fd71cdc7513de808f8481b1982295f144f87b29e450b"; + version = "0.3.2.1"; + sha256 = "33ae28811e7fbcfe00b1379489c3c73d5023e6b63ebfb19cdea9ddf40c312f06"; libraryHaskellDepends = [ array base containers glib gtk mtl ]; libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -82508,7 +82759,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; - "gtk3" = callPackage + "gtk3_0_14_1" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time , transformers @@ -82528,6 +82779,33 @@ self: { array base cairo text time transformers ]; doHaddock = false; + jailbreak = true; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ 3 graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gtk3;}; + + "gtk3" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time + , transformers + }: + mkDerivation { + pname = "gtk3"; + version = "0.14.2"; + sha256 = "da198906bf3807e61c6d3c85c8537f424d9073d517d511d38197c569a1cb3d1d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk3 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + executableHaskellDepends = [ + array base cairo text time transformers + ]; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -82539,8 +82817,8 @@ self: { }: mkDerivation { pname = "gtk3-mac-integration"; - version = "0.3.2.0"; - sha256 = "12ff75908181d0adec685b69fe94c4e4745d8a502a5b171af4898ba4582ae654"; + version = "0.3.2.1"; + sha256 = "c457a75dff24baf47a17f8763b4549be69305dcbc1cf8da7afa01ca62dd466f5"; libraryHaskellDepends = [ array base containers glib gtk3 mtl ]; libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -82613,8 +82891,8 @@ self: { }: mkDerivation { pname = "gtksourceview2"; - version = "0.13.1.3"; - sha256 = "0eba5ee51206a8d99d4d4c4e24e0801492731fb2a67e953da15dbe27a7d328ca"; + version = "0.13.2.1"; + sha256 = "8a98b0dd60625db232152586f1f73c1e4cfdca30b8af6c155029b532aa75e206"; libraryHaskellDepends = [ array base containers glib gtk mtl text ]; @@ -82631,8 +82909,8 @@ self: { }: mkDerivation { pname = "gtksourceview3"; - version = "0.13.2.0"; - sha256 = "12038550255302b1dd6d2bf76b287390d475a77ba00728803fd1cd5968061632"; + version = "0.13.2.1"; + sha256 = "61542fc063d948a0487c0fe784f8154d4a9ca66df3e29bbff0047843bb006ceb"; libraryHaskellDepends = [ array base containers glib gtk3 mtl text ]; @@ -85301,7 +85579,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "half" = callPackage + "half_0_2_2_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "half"; @@ -85311,6 +85589,19 @@ self: { homepage = "http://github.com/ekmett/half"; description = "Half-precision floating-point"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "half" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "half"; + version = "0.2.2.2"; + sha256 = "5be5dbd5279bc921407dd9286a0f82bf77a895ca2e9f7d5169fddca99b58a99f"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/ekmett/half"; + description = "Half-precision floating-point"; + license = stdenv.lib.licenses.bsd3; }) {}; "halfs" = callPackage @@ -85544,16 +85835,18 @@ self: { }) {}; "handa-opengl" = callPackage - ({ mkDerivation, array, base, data-default, GLUT, OpenGL - , opengl-dlp-stereo + ({ mkDerivation, aeson, array, base, binary, data-default, GLUT + , OpenGL, opengl-dlp-stereo, vector-space }: mkDerivation { pname = "handa-opengl"; - version = "0.1.6.1"; - sha256 = "7af827245496a5a08e6e2491f66f06de3ab961a9d835684d2f5ae8a026886221"; + version = "0.1.11.2"; + sha256 = "ccf110aae686a4a0aef749c0b05c05b8edd372f84f4cafa86f4ff6dc7dd5084d"; libraryHaskellDepends = [ - array base data-default GLUT OpenGL opengl-dlp-stereo + aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo + vector-space ]; + jailbreak = true; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; @@ -85678,6 +85971,17 @@ self: { broken = true; }) {pfq = null;}; + "haphviz" = callPackage + ({ mkDerivation, base, mtl, text }: + mkDerivation { + pname = "haphviz"; + version = "0.1.0.2"; + sha256 = "84ff9cb5d293a237192b472f64c7bb78ef07fa48e3b2ec8a1763ee5d8c66a555"; + libraryHaskellDepends = [ base mtl text ]; + description = "Graphviz code generation with Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "hapistrano" = callPackage ({ mkDerivation, base, base-compat, directory, either, filepath , hspec, mtl, process, temporary, time, time-locale-compat @@ -88273,7 +88577,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-exts" = callPackage + "haskell-src-exts_1_16_0_1" = callPackage ({ mkDerivation, array, base, containers, cpphs, directory , filepath, ghc-prim, happy, mtl, pretty, smallcheck, syb, tasty , tasty-golden, tasty-smallcheck @@ -88291,9 +88595,10 @@ self: { homepage = "https://github.com/haskell-suite/haskell-src-exts"; description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-exts_1_17_1" = callPackage + "haskell-src-exts" = callPackage ({ mkDerivation, array, base, containers, cpphs, directory , filepath, ghc-prim, happy, mtl, pretty, pretty-show, smallcheck , syb, tasty, tasty-golden, tasty-smallcheck @@ -88313,7 +88618,6 @@ self: { homepage = "https://github.com/haskell-suite/haskell-src-exts"; description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src-exts-qq" = callPackage @@ -88402,7 +88706,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta" = callPackage + "haskell-src-meta_0_6_0_12" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -88413,11 +88717,13 @@ self: { libraryHaskellDepends = [ base haskell-src-exts pretty syb template-haskell th-orphans ]; + jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta_0_6_0_13" = callPackage + "haskell-src-meta" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -88430,7 +88736,6 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src-meta-mwotton" = callPackage @@ -89032,8 +89337,8 @@ self: { }: mkDerivation { pname = "haskellscrabble"; - version = "1.2"; - sha256 = "2ac73cbcb6327fe989dbc1293e7d58184958d7f7455a9521a353d2d5742ea8cd"; + version = "1.2.1"; + sha256 = "d96c922eed1c4d008d02a4cf4ce6c4d9402dbea1e4c776f6f6e6833bb3189a92"; libraryHaskellDepends = [ array arrows base containers errors listsafe mtl parsec QuickCheck random safe semigroups split transformers unordered-containers @@ -94028,7 +94333,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate" = callPackage + "highlighting-kate_0_6" = callPackage ({ mkDerivation, base, blaze-html, containers, Diff, directory , filepath, mtl, parsec, pcre-light, process, utf8-string }: @@ -94051,6 +94356,32 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "highlighting-kate" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers, Diff + , directory, filepath, mtl, parsec, pcre-light, process + , utf8-string + }: + mkDerivation { + pname = "highlighting-kate"; + version = "0.6.1"; + sha256 = "cb57caf861bda046043575772ffc7fd4cd21dd63a0ecdf26b624c7e930e0f30e"; + configureFlags = [ "-fpcre-light" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bytestring containers mtl parsec pcre-light + utf8-string + ]; + executableHaskellDepends = [ base blaze-html containers filepath ]; + testHaskellDepends = [ + base blaze-html containers Diff directory filepath process + ]; + homepage = "http://github.com/jgm/highlighting-kate"; + description = "Syntax highlighting"; + license = "GPL"; }) {}; "hills" = callPackage @@ -94163,6 +94494,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94192,6 +94524,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94221,6 +94554,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94250,6 +94584,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94257,14 +94592,14 @@ self: { }) {}; "hindent" = callPackage - ({ mkDerivation, applicative-quoters, base, data-default - , descriptive, directory, ghc-prim, haskell-src-exts, hspec - , monad-loops, mtl, text, transformers + ({ mkDerivation, base, data-default, descriptive, directory + , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text + , transformers }: mkDerivation { pname = "hindent"; - version = "4.5.7"; - sha256 = "23cc3274b525011c1f6b865946ca247ebd986d960acee1454f897a78f1c862fe"; + version = "4.6.0"; + sha256 = "07039aa7729c3138e62c366efe11b148288ae6443539d0e7df61d157d2895d99"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94272,8 +94607,7 @@ self: { transformers ]; executableHaskellDepends = [ - applicative-quoters base descriptive directory ghc-prim - haskell-src-exts text + base descriptive directory ghc-prim haskell-src-exts text ]; testHaskellDepends = [ base data-default directory haskell-src-exts hspec monad-loops mtl @@ -95110,8 +95444,8 @@ self: { }: mkDerivation { pname = "hjsonschema"; - version = "0.8.0.0"; - sha256 = "36b1b6c83a1488d2674a13f0000cef8dee80d4f6835199b7b6453768f25e30cd"; + version = "0.8.0.1"; + sha256 = "aeada3426b294cfc43a7cfac053aae0ee1fd06a5c551ecd0d3a6d725e47c89dc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95618,6 +95952,7 @@ self: { hledger hledger-lib HUnit lens pretty-show safe split time transformers vector vty ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Curses-style user interface for the hledger accounting tool"; license = "GPL"; @@ -95836,6 +96171,21 @@ self: { license = stdenv.lib.licenses.mit; }) {inherit (pkgs) openssl;}; + "hlibgit2_0_18_0_15" = callPackage + ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: + mkDerivation { + pname = "hlibgit2"; + version = "0.18.0.15"; + sha256 = "1170c1f71b39d13699018c29688c005c7aa2d07d8bbbb9d383a9a85e5d4c5601"; + libraryHaskellDepends = [ base bindings-DSL zlib ]; + librarySystemDepends = [ openssl ]; + testHaskellDepends = [ base process ]; + testToolDepends = [ git ]; + description = "Low-level bindings to libgit2"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) git; inherit (pkgs) openssl;}; + "hlibsass" = callPackage ({ mkDerivation, base, hspec, libsass }: mkDerivation { @@ -95867,6 +96217,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95889,6 +96240,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95897,7 +96249,7 @@ self: { "hlint_1_9_16" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs - , directory, extra, filepath, haskell-src-exts, process + , directory, extra, filepath, haskell-src-exts, hscolour, process , transformers, uniplate }: mkDerivation { @@ -95910,9 +96262,10 @@ self: { isExecutable = true; libraryHaskellDepends = [ ansi-terminal base cmdargs containers cpphs directory extra - filepath haskell-src-exts process transformers uniplate + filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95935,6 +96288,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95957,6 +96311,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95979,13 +96334,14 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint" = callPackage + "hlint_1_9_22" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -96002,12 +96358,14 @@ self: { uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint_1_9_25" = callPackage + "hlint" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -96024,11 +96382,9 @@ self: { uniplate ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/ndmitchell/hlint#readme"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlogger" = callPackage @@ -97422,6 +97778,7 @@ self: { ]; executableToolDepends = [ happy ]; testHaskellDepends = [ base haskell-src-exts uniplate ]; + jailbreak = true; homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; @@ -97478,12 +97835,12 @@ self: { }) {}; "hood" = callPackage - ({ mkDerivation, array, base }: + ({ mkDerivation, array, base, FPretty, ghc-prim }: mkDerivation { pname = "hood"; - version = "0.2.1"; - sha256 = "d00bc71cf6f43b141b19f18399c9ad1114e1466d9a55bd6a6506d68c57d828b9"; - libraryHaskellDepends = [ array base ]; + version = "0.3"; + sha256 = "f1962dfb05d01a345335872fa36509999755c71a9381b4941bd04a9cb72b6122"; + libraryHaskellDepends = [ array base FPretty ghc-prim ]; homepage = "http://www.ittc.ku.edu/csdl/fpg/Hood"; description = "Debugging by observing in place"; license = stdenv.lib.licenses.bsd3; @@ -97743,6 +98100,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97777,6 +98135,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97811,6 +98170,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97845,6 +98205,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97880,6 +98241,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97915,6 +98277,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97950,6 +98313,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -98289,8 +98653,8 @@ self: { }: mkDerivation { pname = "hops"; - version = "0.1.3"; - sha256 = "3a87efb934782a3769e7daf79ff5252bae58359701a8d1f829ce83a7436bcb13"; + version = "0.2.1"; + sha256 = "00d23e9c1c536575cc3dff5eb9c0606e914f8914fec101f5b0bd6303a301fe9d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -99114,7 +99478,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc" = callPackage + "hprotoc_2_1_9" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -99137,6 +99501,36 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hprotoc" = callPackage + ({ mkDerivation, alex, array, base, binary, bytestring, containers + , directory, filepath, haskell-src-exts, mtl, parsec + , protocol-buffers, protocol-buffers-descriptor, utf8-string + }: + mkDerivation { + pname = "hprotoc"; + version = "2.1.12"; + sha256 = "c99c4ceb0a8dad2186c5e2af16898eed5a16d8646052d2fa8c4f29ee39ee1add"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + executableToolDepends = [ alex ]; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -100633,6 +101027,7 @@ self: { testHaskellDepends = [ base directory mtl process test-simple Unixutils ]; + jailbreak = true; homepage = "https://github.com/bosu/hscope"; description = "cscope like browser for Haskell code"; license = stdenv.lib.licenses.bsd3; @@ -101174,7 +101569,6 @@ self: { testHaskellDepends = [ base filepath haskell-src-exts tasty tasty-golden ]; - jailbreak = true; description = "A command line program for extending the import list of a Haskell source file"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -102753,7 +103147,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-wai" = callPackage + "hspec-wai_0_6_3" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, hspec , hspec-core, hspec-expectations, http-types, QuickCheck, text , transformers, wai, wai-extra @@ -102773,6 +103167,31 @@ self: { ]; description = "Experimental Hspec support for testing WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.4"; + sha256 = "245ad277767a127ce8755c34fbc0374015250afef6f3c9af6c3aadee9f874860"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra + ]; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-wai-json_0_6_0" = callPackage @@ -103173,6 +103592,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hsseccomp" = callPackage + ({ mkDerivation, base, seccomp, tasty, tasty-hunit, unix }: + mkDerivation { + pname = "hsseccomp"; + version = "0.1.0.2"; + sha256 = "fce6e18b1a87e1f62f3aad709d8a41fa4b34646cc32ec973ed279914c794dc0b"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ seccomp ]; + testHaskellDepends = [ base tasty tasty-hunit unix ]; + description = "Haskell bindings to libseccomp"; + license = "LGPL"; + }) {seccomp = null;}; + "hsshellscript" = callPackage ({ mkDerivation, base, c2hs, directory, parsec, random, unix }: mkDerivation { @@ -103525,6 +103957,7 @@ self: { base bytestring haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; + jailbreak = true; homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -103915,8 +104348,8 @@ self: { }: mkDerivation { pname = "htoml"; - version = "0.1.0.2"; - sha256 = "55ab80da813d6073e9da62ce3b4a706232b2b9889e755f40e3c5bc1d753c653f"; + version = "0.1.0.3"; + sha256 = "84890e99f5f01d38c2177f9d4f1ff1ce4e50e832a663d1c3ebe7d9750156ab16"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103928,7 +104361,7 @@ self: { tasty-hspec tasty-hunit text time unordered-containers vector ]; testHaskellDepends = [ - base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring Cabal containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; homepage = "https://github.com/cies/htoml"; @@ -104038,7 +104471,7 @@ self: { license = "unknown"; }) {}; - "http-api-data" = callPackage + "http-api-data_0_2_1" = callPackage ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit , QuickCheck, text, time }: @@ -104053,6 +104486,26 @@ self: { homepage = "http://github.com/fizruk/http-api-data"; description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-api-data" = callPackage + ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit + , QuickCheck, text, time, time-locale-compat + }: + mkDerivation { + pname = "http-api-data"; + version = "0.2.2"; + sha256 = "fba6a38c0f3a39e2ce02b42351953d9aa82f48ef83e5c921a9a1e719b8bc45dc"; + libraryHaskellDepends = [ + base bytestring text time time-locale-compat + ]; + testHaskellDepends = [ + base doctest Glob hspec HUnit QuickCheck text time + ]; + homepage = "http://github.com/fizruk/http-api-data"; + description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; + license = stdenv.lib.licenses.bsd3; }) {}; "http-attoparsec" = callPackage @@ -104750,7 +105203,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client" = callPackage + "http-client_0_4_24" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -104778,6 +105231,68 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.25"; + sha256 = "2aaefe7d75a0052b32a14cd3749c2a94602a64d87195722cebe75ebde014ec6d"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; + license = stdenv.lib.licenses.mit; + }) {}; + + "http-client_0_4_26_1" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.26.1"; + sha256 = "38c264cdc0ad0dcc1f0fbd11a2fa638b55f65476ebcee0bdd9309c38fb5f1047"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-auth" = callPackage @@ -108803,6 +109318,7 @@ self: { setenv shelly split stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; @@ -108811,47 +109327,6 @@ self: { }) {}; "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint - , hspec, http-client, http-client-tls, HUnit, ipython-kernel, mtl - , parsec, process, random, setenv, shelly, split, stm, strict - , system-argv0, text, transformers, unix, unordered-containers - , utf8-string, uuid, vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.8.2.0"; - sha256 = "46ded8d9b827c7e3e0eb40379fbf8bc8bbfa85a1c0feacf463c4673c342d9ba4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint http-client http-client-tls - ipython-kernel mtl parsec process random shelly split stm strict - system-argv0 text transformers unix unordered-containers - utf8-string uuid vector - ]; - executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc here - ipython-kernel process strict text transformers unix - ]; - testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint hspec http-client - http-client-tls HUnit ipython-kernel mtl parsec process random - setenv shelly split stm strict system-argv0 text transformers unix - unordered-containers utf8-string uuid vector - ]; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ihaskell_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db , bytestring, cereal, cmdargs, containers, directory, filepath, ghc , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec @@ -108888,11 +109363,10 @@ self: { stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-aeson" = callPackage @@ -109425,15 +109899,15 @@ self: { "imperative-edsl-vhdl" = callPackage ({ mkDerivation, base, bytestring, constraints, containers - , language-vhdl, mtl, operational-alacarte, pretty + , language-vhdl, mtl, operational-alacarte, pretty, syntactic }: mkDerivation { pname = "imperative-edsl-vhdl"; - version = "0.2.0.1"; - sha256 = "cafdc2e541b1b9937c40a985e6047999aa254e27208d04b42583b3bdfbc69808"; + version = "0.3.2"; + sha256 = "2bc6771e4dad56aba06441139c4649232cd876ec56d87bc96e57430096843098"; libraryHaskellDepends = [ base bytestring constraints containers language-vhdl mtl - operational-alacarte pretty + operational-alacarte pretty syntactic ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; @@ -111341,29 +111815,6 @@ self: { }) {}; "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , directory, filepath, mtl, parsec, process, SHA, temporary, text - , transformers, uuid, zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.8.2.0"; - sha256 = "0b028b9910f90aee9c3b4adb8e59b79aed37ab307501c92158594d28c29ca122"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers directory filepath mtl - process SHA temporary text transformers uuid zeromq4-haskell - ]; - executableHaskellDepends = [ - base filepath mtl parsec text transformers - ]; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ipython-kernel_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, bytestring, cereal, containers , directory, filepath, mtl, parsec, process, SHA, temporary, text , transformers, unordered-containers, uuid, zeromq4-haskell @@ -111385,7 +111836,6 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "irc" = callPackage @@ -114042,23 +114492,20 @@ self: { "jsonrpc-conduit" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, mtl, text, transformers, unordered-containers + , conduit-extra, hspec, mtl, text, transformers + , unordered-containers }: mkDerivation { pname = "jsonrpc-conduit"; - version = "0.2.6"; - sha256 = "7e8ff67a7b8d93add988511fa11669fc45814ea5c5c7de7c20e22e7c58e4b222"; - isLibrary = true; - isExecutable = true; + version = "0.3.0"; + sha256 = "9e2407e7a2f086d2d4c3ec7e8952a663bca6e487936d147cfb643dfcd1d1014e"; libraryHaskellDepends = [ aeson attoparsec base bytestring conduit conduit-extra mtl text transformers unordered-containers ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra mtl text - transformers unordered-containers + testHaskellDepends = [ + aeson base bytestring conduit conduit-extra hspec text ]; - jailbreak = true; description = "JSON-RPC 2.0 server over a Conduit."; license = stdenv.lib.licenses.gpl3; }) {}; @@ -117955,8 +118402,8 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "language-vhdl"; - version = "0.1.1.0"; - sha256 = "132ae3cc1b71d535db66fd794f1c26434f8f72f330989def825a2b05e269608a"; + version = "0.1.2.4"; + sha256 = "f3a19de12610c6273138467bfc89795e98d7dddc1064f8e1a947b0d8c16fe93b"; libraryHaskellDepends = [ base pretty ]; homepage = "https://github.com/markus-git/language-vhdl"; description = "VHDL AST and pretty printer in Haskell"; @@ -117981,19 +118428,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "largeword_1_2_4" = callPackage + "largeword_1_2_5" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: mkDerivation { pname = "largeword"; - version = "1.2.4"; - sha256 = "0132ffdc0a7429339160ce0651c65ac504cff46c5f1744bd7dd6fb1c9a3351d5"; + version = "1.2.5"; + sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; libraryHaskellDepends = [ base binary ]; testHaskellDepends = [ base binary bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/idontgetoutmuch/largeword"; description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; license = stdenv.lib.licenses.bsd3; @@ -118161,10 +118609,8 @@ self: { }: mkDerivation { pname = "lattices"; - version = "1.4.1"; - sha256 = "b1148cd7ed7fde0964fa53e5b1c304370291f08cfaa77dab3a6cfb01c8ae34ff"; - revision = "1"; - editedCabalFile = "ceeada8cfea894629b6232d6c3367bf182bcc76f9f6c77937d23d02ba8f4345f"; + version = "1.5.0"; + sha256 = "c6e3fb4334503b9087209195f40c96f56819497f999959358a2ff5d843a45d1f"; libraryHaskellDepends = [ base containers deepseq hashable semigroups tagged universe-base universe-reverse-instances unordered-containers void @@ -118655,6 +119101,7 @@ self: { leksah-server ltk monad-loops QuickCheck stm text transformers webkitgtk3 ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; @@ -120981,6 +121428,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "link-relations" = callPackage + ({ mkDerivation, base, bytestring, hashable, unordered-containers + , uri-bytestring + }: + mkDerivation { + pname = "link-relations"; + version = "0.1.0.0"; + sha256 = "4944ffa47d4758135c40f776634e1f7b542c8886ef62b61f224a973c143173cb"; + libraryHaskellDepends = [ + base bytestring hashable unordered-containers uri-bytestring + ]; + homepage = "http://hub.darcs.net/fr33domlover/link-relations"; + description = "Use web link relation types (RFC 5988) in Haskell"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "linkchk" = callPackage ({ mkDerivation, base, gtk, haskell98, popenhs, regex-compat, unix }: @@ -122880,6 +123343,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "logplex-parse" = callPackage + ({ mkDerivation, base, hspec, iso8601-time, parsec, text, time }: + mkDerivation { + pname = "logplex-parse"; + version = "0.1.0.2"; + sha256 = "e802251aa40c73f9dea2ebe0b7bd92450b94a513343f165cccb2e86489403604"; + libraryHaskellDepends = [ base iso8601-time parsec text time ]; + testHaskellDepends = [ base hspec time ]; + homepage = "https://github.com/keithduncan/logplex-parse"; + description = "Parse Heroku application/logplex documents"; + license = stdenv.lib.licenses.mit; + }) {}; + "logsink" = callPackage ({ mkDerivation, base, hspec, hsyslog, logging-facade, time }: mkDerivation { @@ -123673,8 +124149,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.7.2"; - sha256 = "0ae406e8958c1e6f2520a01d74a55b70d158198ef0d08bbaf30452dc54e9deab"; + version = "0.8.2.1"; + sha256 = "c0952ec7314fd13faf10326648cf49561da4687d5e011d19694d84c2c26ddd51"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -123684,45 +124160,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "luminance_0_8_2" = callPackage - ({ mkDerivation, base, containers, contravariant, dlist, gl, linear - , mtl, resourcet, semigroups, transformers, vector, void - }: - mkDerivation { - pname = "luminance"; - version = "0.8.2"; - sha256 = "e7ec4cb6b688077c51de48ebe4ad552e8943ad0f4a7aabfda608652c0ccfdaba"; - libraryHaskellDepends = [ - base containers contravariant dlist gl linear mtl resourcet - semigroups transformers vector void - ]; - homepage = "https://github.com/phaazon/luminance"; - description = "Type-safe, type-level and stateless graphics framework"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "luminance-samples" = callPackage - ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear - , luminance, mtl, resourcet, transformers - }: - mkDerivation { - pname = "luminance-samples"; - version = "0.7"; - sha256 = "443f255f4a036f4519f97676a5a5cfa6be02eeecefd1fdbc28f0161034774c36"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base contravariant GLFW-b JuicyPixels linear luminance mtl - resourcet transformers - ]; - homepage = "https://github.com/phaazon/luminance-samples"; - description = "Luminance samples"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; - - "luminance-samples_0_8" = callPackage ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear , luminance, mtl, resourcet, transformers }: @@ -123736,11 +124174,10 @@ self: { base contravariant GLFW-b JuicyPixels linear luminance mtl resourcet transformers ]; - jailbreak = true; homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lushtags" = callPackage @@ -124100,8 +124537,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "2.1.0"; - sha256 = "2fe8be49de7346a0df30feca7cd48864e4bac1ef356a1709414fc1a84762dc83"; + version = "3.0.0"; + sha256 = "5930f7c4d8e0c539f93595b661ecb700506d7e03043d85cfee8ce32768ff2fa0"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -124159,6 +124596,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "machines-binary" = callPackage + ({ mkDerivation, base, binary, bytestring, machines }: + mkDerivation { + pname = "machines-binary"; + version = "0.2.0.0"; + sha256 = "b8f7d857f4d79c853845e1ff2eb3f10968787da02e523279d69a86b089215519"; + libraryHaskellDepends = [ base binary bytestring machines ]; + homepage = "http://github.com/aloiscochard/machines-binary"; + description = "Binary utilities for the machines library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "machines-directory_0_2_0_0" = callPackage ({ mkDerivation, base, directory, filepath, machines, machines-io , transformers @@ -128662,6 +129111,7 @@ self: { testHaskellDepends = [ base containers filepath haskell-src-exts HUnit process ]; + jailbreak = true; homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; @@ -129297,7 +129747,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-logger" = callPackage + "monad-logger_0_3_15" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base , monad-control, monad-loops, mtl, resourcet, stm, stm-chans @@ -129317,6 +129767,29 @@ self: { homepage = "https://github.com/kazu-yamamoto/logger"; description = "A class of monads which can log messages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-logger" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, conduit + , conduit-extra, exceptions, fast-logger, lifted-base + , monad-control, monad-loops, mtl, resourcet, stm, stm-chans + , template-haskell, text, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-logger"; + version = "0.3.16"; + sha256 = "1ee1b69e5732dab1cd833e8f0ea8092dc4c82b6548e7a46669192f0c0c641622"; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit conduit-extra exceptions + fast-logger lifted-base monad-control monad-loops mtl resourcet stm + stm-chans template-haskell text transformers transformers-base + transformers-compat + ]; + homepage = "https://github.com/kazu-yamamoto/logger"; + description = "A class of monads which can log messages"; + license = stdenv.lib.licenses.mit; }) {}; "monad-logger-json" = callPackage @@ -130499,8 +130972,8 @@ self: { }: mkDerivation { pname = "mono-traversable"; - version = "0.10.0"; - sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; + version = "0.10.0.1"; + sha256 = "2e25c24ed3cf644cd4818cfb6d4e122cffcac2a375f0edb544b6814f871af45d"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups split text transformers @@ -131092,6 +131565,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mpris" = callPackage + ({ mkDerivation, base, containers, dbus, mtl }: + mkDerivation { + pname = "mpris"; + version = "0.1.0.0"; + sha256 = "3ee98b2f922e746982a46c8bd71058c1b9882c05db3eb21d21573d9b42158685"; + libraryHaskellDepends = [ base containers dbus mtl ]; + jailbreak = true; + homepage = "http://github.com/Fuco1/mpris"; + description = "Interface for MPRIS"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "mprover" = callPackage ({ mkDerivation, base, containers, haskell98, mtl, parsec, pretty , transformers, unbound @@ -133605,7 +134091,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_2_3" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell }: mkDerivation { @@ -133620,6 +134106,24 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "neat-interpolation" = callPackage + ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell + , text + }: + mkDerivation { + pname = "neat-interpolation"; + version = "0.3"; + sha256 = "fd8b935d2e674456a6db7af90974cb5d2381709bca20051c2da024888b80fd25"; + libraryHaskellDepends = [ + base base-prelude parsec template-haskell text + ]; + testHaskellDepends = [ base-prelude HTF ]; + homepage = "https://github.com/nikita-volkov/neat-interpolation"; + description = "A quasiquoter for neat and simple multiline text interpolation"; + license = stdenv.lib.licenses.mit; }) {}; "needle" = callPackage @@ -135721,6 +136225,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "niagra" = callPackage + ({ mkDerivation, base, criterion, mtl, text, transformers }: + mkDerivation { + pname = "niagra"; + version = "0.0.1"; + sha256 = "848bd318b105bd23de959d3a6e026de1577337fcae803bfa1dc70461491c9058"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl text transformers ]; + executableHaskellDepends = [ base criterion text transformers ]; + description = "CSS EDSL for Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "nibblestring" = callPackage ({ mkDerivation, ansi-wl-pprint, base, base16-bytestring , bytestring, containers, HUnit, test-framework @@ -137365,32 +137883,6 @@ self: { }) {}; "omnifmt" = callPackage - ({ mkDerivation, aeson, base, exceptions, extra, fast-logger - , filepath, monad-logger, monad-parallel, mtl, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "omnifmt"; - version = "0.2.0.0"; - sha256 = "72c9e0d84550b3b7a406186f951e148cb9f4a954f5ac8f5ef1512f28335af7c9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions extra filepath monad-logger mtl pipes text - unordered-containers yaml - ]; - executableHaskellDepends = [ - base exceptions extra fast-logger filepath monad-logger - monad-parallel mtl optparse-applicative pipes pipes-concurrency - temporary text time - ]; - homepage = "https://github.com/hjwylde/omnifmt"; - description = "A pretty-printer wrapper to faciliate ease of formatting during development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "omnifmt_0_2_1_1" = callPackage ({ mkDerivation, aeson, base, exceptions, extra, fast-logger , filepath, monad-logger, monad-parallel, mtl, optparse-applicative , pipes, pipes-concurrency, temporary, text, time @@ -137414,7 +137906,6 @@ self: { homepage = "https://github.com/hjwylde/omnifmt"; description = "A pretty-printer wrapper to faciliate ease of formatting during development"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-a-horse" = callPackage @@ -137856,13 +138347,17 @@ self: { }) {}; "open-typerep" = callPackage - ({ mkDerivation, base, constraints, mtl, syntactic, tagged }: + ({ mkDerivation, base, base-orphans, constraints, mtl, syntactic + , tagged, template-haskell + }: mkDerivation { pname = "open-typerep"; - version = "0.3.3"; - sha256 = "bca107a946e61174bec6ab05e98bbd5757bcf20bf4621717d420c89de54f7897"; - libraryHaskellDepends = [ base constraints mtl syntactic tagged ]; - testHaskellDepends = [ base ]; + version = "0.4"; + sha256 = "d849bf8302ba7dab351a2e1a4df679fdf4938e17cc1f81c455eb163836839caa"; + libraryHaskellDepends = [ + base base-orphans constraints mtl syntactic tagged template-haskell + ]; + testHaskellDepends = [ base syntactic ]; homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; @@ -137985,8 +138480,8 @@ self: { ({ mkDerivation, base, data-default, GLUT, OpenGL, vector }: mkDerivation { pname = "opengl-dlp-stereo"; - version = "0.1.4.1"; - sha256 = "adaeeaa628dbd57c8b63ca4614464815f55e810c36c483cd0bd6f3be6880652b"; + version = "0.1.5.2"; + sha256 = "ae6c39a874af2fe12fd5af0dfc312ed9c2156a9240243c8ff81aa66970b0cad1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-default GLUT OpenGL vector ]; @@ -137999,15 +138494,17 @@ self: { }) {}; "opengl-spacenavigator" = callPackage - ({ mkDerivation, base, data-default, GLUT, OpenGL }: + ({ mkDerivation, base, binary, data-default, GLUT, OpenGL }: mkDerivation { pname = "opengl-spacenavigator"; - version = "0.1.4.2"; - sha256 = "2f6063bfc11c3cbfc3c6feedcb124debd40ae6e02d67dea8b8e9024e545da44e"; + version = "0.1.5.2"; + sha256 = "5a170fb876359fde525cb11b8dc2df4465275df3a091d75e663b4b45177df5e7"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base data-default GLUT OpenGL ]; - executableHaskellDepends = [ base data-default GLUT OpenGL ]; + libraryHaskellDepends = [ base binary data-default GLUT OpenGL ]; + executableHaskellDepends = [ + base binary data-default GLUT OpenGL + ]; homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; @@ -139361,6 +139858,7 @@ self: { base Cabal directory filepath haskell-src-exts optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/hvr/packunused"; description = "Tool for detecting redundant Cabal package dependencies"; license = stdenv.lib.licenses.bsd3; @@ -140530,7 +141028,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; - "pango" = callPackage + "pango_0_13_1_0" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib , gtk2hs-buildtools, mtl, pango, pretty, process, text }: @@ -140546,6 +141044,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs.gnome) pango;}; + + "pango" = callPackage + ({ mkDerivation, array, base, cairo, containers, directory, glib + , gtk2hs-buildtools, mtl, pango, pretty, process, text + }: + mkDerivation { + pname = "pango"; + version = "0.13.1.1"; + sha256 = "3c22f339fe2e30cb6d6cbc5906e1064c5fdabfbc56d2a2c015ac70b4aa5165ad"; + libraryHaskellDepends = [ + array base cairo containers directory glib mtl pretty process text + ]; + libraryPkgconfigDepends = [ pango ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Pango text rendering engine"; + license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -141638,16 +142155,19 @@ self: { }) {}; "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, random, time + ({ mkDerivation, base, deepseq, directory, QuickCheck, random + , tagged, time, transformers, utility-ht }: mkDerivation { pname = "pathtype"; - version = "0.6"; - sha256 = "92bc70d7b9f2d495caf54f80d378622e347e57d9262bda6fc503fbe7d986be51"; + version = "0.7"; + sha256 = "fb6512d284c41feb1d31375cb47144ab13d4f4435d62dc977c511dacdb70e616"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base deepseq directory QuickCheck time ]; - executableHaskellDepends = [ base ]; + libraryHaskellDepends = [ + base deepseq directory QuickCheck tagged time transformers + utility-ht + ]; testHaskellDepends = [ base random ]; homepage = "http://hub.darcs.net/thielema/pathtype/"; description = "Type-safe replacement for System.FilePath etc"; @@ -141735,14 +142255,14 @@ self: { }) {}; "paypal-adaptive-hoops" = callPackage - ({ mkDerivation, aeson, base, bytestring, errors, http-client - , HUnit, lens, lens-aeson, test-framework, test-framework-hunit - , text, time, transformers, unordered-containers, vector, wreq + ({ mkDerivation, aeson, base, bytestring, directory, errors + , filepath, http-client, HUnit, lens, lens-aeson, test-framework + , test-framework-hunit, text, time, transformers, vector, wreq }: mkDerivation { pname = "paypal-adaptive-hoops"; - version = "0.11.0.2"; - sha256 = "3507d136ce1b189c66de9c36a5b0511e439e2d18f6107f9bead176ccd391e17c"; + version = "0.13.1.0"; + sha256 = "09997162d0533ec80a0cda3bcb84f48a59acdac367a61703fb32c98594d5965f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -141751,8 +142271,8 @@ self: { ]; executableHaskellDepends = [ base text ]; testHaskellDepends = [ - aeson base bytestring HUnit test-framework test-framework-hunit - text unordered-containers + aeson base bytestring directory filepath HUnit test-framework + test-framework-hunit text ]; jailbreak = true; homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; @@ -143124,6 +143644,41 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent_2_2_4" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.2.4"; + sha256 = "ae56121abbef8ecca7aa7c62b2e77a47e583d4dded0f8e4bfe1cd6b1fea70bbe"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-cereal" = callPackage ({ mkDerivation, base, cereal, persistent, text }: mkDerivation { @@ -145043,17 +145598,17 @@ self: { }) {}; "pinchot" = callPackage - ({ mkDerivation, base, containers, Earley, template-haskell + ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: mkDerivation { pname = "pinchot"; - version = "0.2.0.0"; - sha256 = "292bf5416f7fee0573aec8ca989704b422f50957afebd3098b1f2f953e4d3805"; + version = "0.4.0.0"; + sha256 = "362b2f8c0c1d4b4d768e8ae98a5c3d68db27d2b713055878079d2ff7ff905495"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers Earley template-haskell transformers + base containers Earley lens template-haskell transformers ]; homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; @@ -145984,6 +146539,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-transduce" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, comonad, conceit + , containers, doctest, foldl, free, lens-family-core + , monoid-subclasses, pipes, pipes-bytestring, pipes-concurrency + , pipes-group, pipes-parse, pipes-safe, pipes-text, semigroupoids + , semigroups, tasty, tasty-hunit, text, transformers, void + }: + mkDerivation { + pname = "pipes-transduce"; + version = "0.1.0.0"; + sha256 = "b6b2974613f9574a76eb54211fc6702df311fcb0e0737b03e35946df0be04182"; + libraryHaskellDepends = [ + base bifunctors bytestring comonad conceit containers foldl free + lens-family-core monoid-subclasses pipes pipes-bytestring + pipes-concurrency pipes-group pipes-parse pipes-safe pipes-text + semigroupoids semigroups text transformers void + ]; + testHaskellDepends = [ + base doctest foldl free monoid-subclasses pipes tasty tasty-hunit + text + ]; + description = "Interfacing pipes with foldl folds"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipes-vector" = callPackage ({ mkDerivation, base, monad-primitive, pipes, primitive , transformers, vector @@ -146170,6 +146750,28 @@ self: { license = "GPL"; }) {}; + "pkcs10" = callPackage + ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base + , bytestring, cryptonite, pem, QuickCheck, tasty, tasty-hunit + , tasty-quickcheck, x509 + }: + mkDerivation { + pname = "pkcs10"; + version = "0.1.0.4"; + sha256 = "8d073426641e1cad88f7c40d7448b6fd2363765554ff89ef75519f96b07e7ba4"; + libraryHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + x509 + ]; + testHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + QuickCheck tasty tasty-hunit tasty-quickcheck x509 + ]; + homepage = "https://github.com/fcomb/pkcs10-hs#readme"; + description = "PKCS#10 library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "pkcs7" = callPackage ({ mkDerivation, base, bytestring, Cabal, HUnit, QuickCheck }: mkDerivation { @@ -146299,6 +146901,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "plist-buddy" = callPackage + ({ mkDerivation, base, base16-bytestring, base64-bytestring + , bytestring, cryptohash, directory, hspec, mtl, posix-pty, process + , QuickCheck, text, time, xml + }: + mkDerivation { + pname = "plist-buddy"; + version = "0.1.0.0"; + sha256 = "481cb13bacb3a0e5a9eee75bd78b793b30b048140d3d7a19eabc9ef6b33cc774"; + libraryHaskellDepends = [ + base base16-bytestring base64-bytestring bytestring cryptohash + directory mtl posix-pty process text time xml + ]; + testHaskellDepends = [ + base bytestring directory hspec mtl posix-pty process QuickCheck + text time + ]; + description = "Remote monad for editing plists"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "plivo" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, errors , http-streams, http-types, io-streams, network-uri, old-locale @@ -146379,6 +147002,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "plot-gtk_0_2_0_4" = callPackage + ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: + mkDerivation { + pname = "plot-gtk"; + version = "0.2.0.4"; + sha256 = "9c0a445162ae66c2badd8b6b0a760f5ee4ac4861852764eb4a550787de2c07bb"; + libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; + homepage = "http://code.haskell.org/plot"; + description = "GTK plots and interaction with GHCi"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "plot-gtk-ui" = callPackage ({ mkDerivation, base, cairo, colour, fixed-vector, gtk, hmatrix , plot, text, vector @@ -146786,6 +147422,7 @@ self: { array base containers haskell-src-exts HUnit QuickCheck transformers ]; + jailbreak = true; description = "Tool for refactoring expressions into pointfree form"; license = "unknown"; }) {}; @@ -147166,12 +147803,11 @@ self: { ({ mkDerivation, base, containers, deepseq, polyparse, tagsoup }: mkDerivation { pname = "polysoup"; - version = "0.6"; - sha256 = "e2fabbb647d28e07ce21f91f5cbecfc3f5fcabdd1a8299ec4b5748c54faff4b0"; + version = "0.6.2"; + sha256 = "bdb28b4e47cba223a9c9f3c3454b87e3210cdcd67af2cf570edcd4d8bc84e295"; libraryHaskellDepends = [ base containers deepseq polyparse tagsoup ]; - jailbreak = true; homepage = "https://github.com/kawu/polysoup"; description = "Online XML parsing with polyparse and tagsoup"; license = stdenv.lib.licenses.bsd3; @@ -147974,28 +148610,6 @@ self: { }) {}; "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, text, time, time-locale-compat - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.8"; - sha256 = "4ede410d51b86429f98b2a8fd61a49441df1030ef1e50444c841ea2ebbcb7962"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - time-locale-compat - ]; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "postgresql-schema_0_1_9" = callPackage ({ mkDerivation, base, basic-prelude, optparse-applicative , postgresql-simple, shelly, text, time, time-locale-compat }: @@ -148015,7 +148629,6 @@ self: { homepage = "https://github.com/mfine/postgresql-schema"; description = "PostgreSQL Schema Management"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-simple_0_4_8_0" = callPackage @@ -148121,6 +148734,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "postgresql-simple_0_5_1_2" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, bytestring-builder, case-insensitive, containers + , cryptohash, hashable, HUnit, postgresql-libpq, scientific + , template-haskell, text, time, transformers, uuid-types, vector + }: + mkDerivation { + pname = "postgresql-simple"; + version = "0.5.1.2"; + sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-builder + case-insensitive containers hashable postgresql-libpq scientific + template-haskell text time transformers uuid-types vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring containers cryptohash HUnit + text time vector + ]; + description = "Mid-Level PostgreSQL client library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "postgresql-simple-migration" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash , directory, hspec, postgresql-simple, time @@ -148545,15 +149182,22 @@ self: { }) {}; "pred-trie" = callPackage - ({ mkDerivation, base, composition-extra, containers, mtl - , QuickCheck, semigroups, tries + ({ mkDerivation, base, composition-extra, deepseq, hashable, mtl + , QuickCheck, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, tries, unordered-containers }: mkDerivation { pname = "pred-trie"; - version = "0.3.0"; - sha256 = "3ba01d64c41d8593d7fa84168879cf87398711c1b4d732866f87663958a70f38"; + version = "0.4.0"; + sha256 = "38e69ebc2be0a48d62949214a86b29a2657ca5cc0b99d14e681184318ee9689c"; libraryHaskellDepends = [ - base composition-extra containers mtl QuickCheck semigroups tries + base composition-extra hashable mtl QuickCheck semigroups tries + unordered-containers + ]; + testHaskellDepends = [ + base composition-extra deepseq hashable mtl QuickCheck + quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck + tries unordered-containers ]; doCheck = false; description = "Predicative tries"; @@ -150042,6 +150686,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "projectroot" = callPackage + ({ mkDerivation, base, directory }: + mkDerivation { + pname = "projectroot"; + version = "0.1.0.1"; + sha256 = "bce014e23b028ca28597d0541e3a92616b4ce2409d4074bf14d21d5393549298"; + libraryHaskellDepends = [ base directory ]; + homepage = "https://gitlab.com/yamadapc/haskell-projectroot"; + description = "Bindings to the projectroot C logic"; + license = stdenv.lib.licenses.mit; + }) {}; + "prolog" = callPackage ({ mkDerivation, base, containers, mtl, parsec, syb , template-haskell, th-lift, transformers @@ -150441,7 +151097,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers" = callPackage + "protocol-buffers_2_1_9" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -150456,6 +151112,24 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protocol-buffers" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , directory, filepath, mtl, parsec, syb, utf8-string + }: + mkDerivation { + pname = "protocol-buffers"; + version = "2.1.12"; + sha256 = "c863ce1729a4b8e8f5698f990942f1ddf569527893adb79b170a322eb3b8554e"; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath mtl + parsec syb utf8-string + ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; }) {}; "protocol-buffers-descriptor_2_1_4" = callPackage @@ -150522,7 +151196,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor" = callPackage + "protocol-buffers-descriptor_2_1_9" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -150531,6 +151205,22 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + jailbreak = true; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protocol-buffers-descriptor" = callPackage + ({ mkDerivation, base, bytestring, containers, protocol-buffers }: + mkDerivation { + pname = "protocol-buffers-descriptor"; + version = "2.1.12"; + sha256 = "b8898165f0915b2b2865f6373c79d8c71c0fcbaa139c1f319a7d7f9168fc5c61"; + libraryHaskellDepends = [ + base bytestring containers protocol-buffers + ]; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; @@ -150770,8 +151460,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20151129"; - sha256 = "a1b6dfca39241f124f2174dbf9368551e9d3bec1e52e9db0fc01ca98f1c2e06c"; + version = "0.20151212"; + sha256 = "7c45ec12c38607dea637a87f1e5de578e1d398f93377ad9e108afa0f53a16512"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -153556,7 +154246,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "raw-strings-qq" = callPackage + "raw-strings-qq_1_0_2" = callPackage ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "raw-strings-qq"; @@ -153566,6 +154256,20 @@ self: { homepage = "https://github.com/23Skidoo/raw-strings-qq"; description = "Raw string literals for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "raw-strings-qq" = callPackage + ({ mkDerivation, base, HUnit, template-haskell }: + mkDerivation { + pname = "raw-strings-qq"; + version = "1.1"; + sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base HUnit ]; + homepage = "https://github.com/23Skidoo/raw-strings-qq"; + description = "Raw string literals for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "rawstring-qm" = callPackage @@ -154903,6 +155607,7 @@ self: { testHaskellDepends = [ base containers dependent-map MemoTrie mtl ref-tf ]; + jailbreak = true; homepage = "https://github.com/ryantrinkle/reflex"; description = "Higher-order Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; @@ -156599,17 +157304,16 @@ self: { "repl-toolkit" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, directory , exceptions, filepath, functor-monadic, ListLike, listsafe - , monad-loops, mtl, numericpeano, parsec, semigroupoids, text - , transformers + , monad-loops, mtl, parsec, semigroupoids, text, transformers }: mkDerivation { pname = "repl-toolkit"; - version = "0.5.0.0"; - sha256 = "781353e8eccb38ce0d068f754852d5d00e2f829a61d1e89660bdba4fc6811254"; + version = "1.0.0.1"; + sha256 = "f6b6c55a73c4408381204b22edf05a8b2681eef23ec7631c2a919b28609be79a"; libraryHaskellDepends = [ aeson base bytestring data-default directory exceptions filepath - functor-monadic ListLike listsafe monad-loops mtl numericpeano - parsec semigroupoids text transformers + functor-monadic ListLike listsafe monad-loops mtl parsec + semigroupoids text transformers ]; homepage = "https://github.com/ombocomp/repl-toolkit"; description = "Toolkit for quickly whipping up config files and command-line interfaces"; @@ -158573,6 +159277,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "rev-state_0_1_1" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "rev-state"; + version = "0.1.1"; + sha256 = "844626648793fd5a939e85aa58a52bc3a9511398755b2012bb3e56164cfb9934"; + libraryHaskellDepends = [ base mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/DanBurton/rev-state#readme"; + description = "Reverse State monad transformer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "revdectime" = callPackage ({ mkDerivation, base, old-time }: mkDerivation { @@ -159354,23 +160072,21 @@ self: { }) {}; "rose-trees" = callPackage - ({ mkDerivation, base, containers, criterion, mtl, QuickCheck + ({ mkDerivation, base, containers, deepseq, mtl, QuickCheck , quickcheck-instances, semigroupoids, semigroups, sets, tasty , tasty-quickcheck, witherable }: mkDerivation { pname = "rose-trees"; - version = "0.0.2"; - sha256 = "4a8a9c8afc4bff994e1bd8230ba6534ccddcca4f5718507a99c1fbd491cd7fde"; - revision = "1"; - editedCabalFile = "43c7fc14a19af14fc5c244eeda5efea6e7279337c31580d7bd95b3cfa4e8bfab"; + version = "0.0.3"; + sha256 = "f373600456dc69e3d2acf3abd949781a7b0365b412084f98a1ca367cae01ee33"; libraryHaskellDepends = [ - base containers criterion mtl QuickCheck quickcheck-instances + base containers deepseq mtl QuickCheck quickcheck-instances semigroupoids semigroups sets witherable ]; testHaskellDepends = [ - base containers QuickCheck quickcheck-instances semigroupoids - semigroups sets tasty tasty-quickcheck witherable + base containers deepseq QuickCheck quickcheck-instances + semigroupoids semigroups sets tasty tasty-quickcheck witherable ]; description = "A collection of rose tree structures"; license = stdenv.lib.licenses.bsd3; @@ -160996,8 +161712,8 @@ self: { }: mkDerivation { pname = "sbp"; - version = "0.52.0"; - sha256 = "b4c4629044e230c950b5a71c7baf1226bec6ea68415d9e9c82b6c69f8fbddd7e"; + version = "0.52.1"; + sha256 = "72e53ab77cf026fc5bde9899a5a49a35bbe6a2e3853022b9d62e238eee8450f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -162380,15 +163096,14 @@ self: { }: mkDerivation { pname = "sdl2-compositor"; - version = "1.2.0.1"; - sha256 = "55d3242e8b119b2cd0b4a5d198fb52c38bf36931aef30b6d250334373931a4a3"; + version = "1.2.0.3"; + sha256 = "c2f4ee694f2ee8444b6e2b5af51f0a86f415745181e7734e83dcc129cd655d12"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base lens linear lrucache QuickCheck sdl2 sdl2-ttf StateVar stm text transformers ]; - jailbreak = true; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -164215,6 +164930,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-github" = callPackage + ({ mkDerivation, aeson, base, either, hspec, http-link-header + , QuickCheck, servant, servant-client, text, transformers + }: + mkDerivation { + pname = "servant-github"; + version = "0.1.0.2"; + sha256 = "3d1c03791297bcde37c7ef369b0e672d00122ac17b4f176c6a3fa52a9dba4cd8"; + libraryHaskellDepends = [ + aeson base either http-link-header servant servant-client text + transformers + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/finlay/servant-github#readme"; + description = "Bindings to GitHub API using servant"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-jquery_0_2_2_1" = callPackage ({ mkDerivation, aeson, base, filepath, hspec, language-ecmascript , lens, servant, servant-server, stm, transformers, warp @@ -166016,6 +166749,8 @@ self: { pname = "shakespeare"; version = "2.0.7"; sha256 = "7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668"; + revision = "1"; + editedCabalFile = "466ed38d1ca4b1fcc297793cfb3508c29b1ddb9714432c2f872ce7b656b1c57c"; libraryHaskellDepends = [ aeson base blaze-html blaze-markup bytestring containers directory exceptions ghc-prim parsec process scientific template-haskell text @@ -166577,7 +167312,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly" = callPackage + "shelly_1_6_4_1" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -166606,6 +167341,38 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shelly" = callPackage + ({ mkDerivation, async, base, bytestring, containers, directory + , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async + , lifted-base, monad-control, mtl, process, system-fileio + , system-filepath, text, time, transformers, transformers-base + , unix-compat + }: + mkDerivation { + pname = "shelly"; + version = "1.6.5"; + sha256 = "bdfd09b01f3de8e7e58e98591ab1a42ad5a74308ff29f19acd16d7cc85b71cdc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring containers directory enclosed-exceptions + exceptions lifted-async lifted-base monad-control mtl process + system-fileio system-filepath text time transformers + transformers-base unix-compat + ]; + testHaskellDepends = [ + async base bytestring containers directory enclosed-exceptions + exceptions hspec HUnit lifted-async lifted-base monad-control mtl + process system-fileio system-filepath text time transformers + transformers-base unix-compat + ]; + doCheck = false; + homepage = "https://github.com/yesodweb/Shelly.hs"; + description = "shell-like (systems) programming in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "shelly-extra" = callPackage @@ -168504,19 +169271,20 @@ self: { ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , bloomfilter, bytestring, conduit, conduit-extra, containers , directory, filepath, http-conduit, http-types - , optparse-applicative, stringsearch, terminal-size, text - , transformers + , optparse-applicative, resourcet, stringsearch, terminal-size + , text, transformers }: mkDerivation { pname = "sloane"; - version = "4.1.0"; - sha256 = "3640b64b30dbc01fc1c1dddad0334a1930c6a708b80c8d91f03adee0bf60b17a"; + version = "4.1.2"; + sha256 = "3b02c1a095e23ba872bd8757bf0ef91362ce342f83e873496fe9166b639a09cc"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bloomfilter bytestring conduit conduit-extra containers directory filepath http-conduit http-types - optparse-applicative stringsearch terminal-size text transformers + optparse-applicative resourcet stringsearch terminal-size text + transformers ]; homepage = "http://github.com/akc/sloane"; description = "A command line interface to Sloane's OEIS"; @@ -169987,6 +170755,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "snaplet-fay_0_3_3_13" = callPackage + ({ mkDerivation, aeson, base, bytestring, configurator, directory + , fay, filepath, mtl, snap, snap-core, transformers + }: + mkDerivation { + pname = "snaplet-fay"; + version = "0.3.3.13"; + sha256 = "39810748b7177b45a0fab785e48ac497d81587e48dde9dc8ad75e8d704bdda3f"; + libraryHaskellDepends = [ + aeson base bytestring configurator directory fay filepath mtl snap + snap-core transformers + ]; + homepage = "https://github.com/faylang/snaplet-fay"; + description = "Fay integration for Snap with request- and pre-compilation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "snaplet-ghcjs" = callPackage ({ mkDerivation, base, directory, filepath, lens, mtl, process , snap, snap-core, string-conversions, transformers @@ -171267,7 +172053,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sourcemap" = callPackage + "sourcemap_0_1_3_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, process, text , unordered-containers, utf8-string }: @@ -171283,9 +172069,10 @@ self: { ]; description = "Implementation of source maps as proposed by Google and Mozilla"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sourcemap_0_1_5" = callPackage + "sourcemap" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, process, text , unordered-containers, utf8-string }: @@ -171300,9 +172087,9 @@ self: { testHaskellDepends = [ aeson base bytestring process text unordered-containers utf8-string ]; + doCheck = false; description = "Implementation of source maps as proposed by Google and Mozilla"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sousit" = callPackage @@ -173157,7 +173944,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack" = callPackage + "stack_0_1_10_0" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, bifunctors, binary , binary-tagged, blaze-builder, byteable, bytestring, Cabal @@ -173223,6 +174010,76 @@ self: { homepage = "http://haskellstack.org"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "stack" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, bifunctors, binary + , binary-tagged, blaze-builder, byteable, bytestring, Cabal + , conduit, conduit-combinators, conduit-extra, containers + , cryptohash, cryptohash-conduit, deepseq, directory, edit-distance + , either, email-validate, enclosed-exceptions, exceptions, extra + , fast-logger, file-embed, filelock, filepath, fsnotify, gitrev + , hashable, hastache, hpc, hspec, http-client, http-client-tls + , http-conduit, http-types, lifted-base, monad-control + , monad-logger, monad-loops, mtl, old-locale, optparse-applicative + , optparse-simple, path, persistent, persistent-sqlite + , persistent-template, pretty, process, project-template + , QuickCheck, resourcet, retry, safe, semigroups, split, stm + , streaming-commons, tar, template-haskell, temporary, text, time + , transformers, transformers-base, unix, unix-compat + , unordered-containers, uuid, vector, vector-binary-instances, void + , word8, yaml, zlib + }: + mkDerivation { + pname = "stack"; + version = "0.1.10.1"; + sha256 = "03d3f1cd03cbb70364f013aa6ccaefa07397a76984bc8b7ce51376e0bdc51a7c"; + revision = "3"; + editedCabalFile = "bc374c4faac1181394f1dfecfda9bf3d3e10176c2ff19410a36d12795a68d05b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring bifunctors binary binary-tagged blaze-builder + byteable bytestring Cabal conduit conduit-combinators conduit-extra + containers cryptohash cryptohash-conduit deepseq directory + edit-distance either email-validate enclosed-exceptions exceptions + extra fast-logger file-embed filelock filepath fsnotify hashable + hastache hpc http-client http-client-tls http-conduit http-types + lifted-base monad-control monad-logger monad-loops mtl old-locale + optparse-applicative path persistent persistent-sqlite + persistent-template pretty process project-template resourcet retry + safe semigroups split stm streaming-commons tar template-haskell + temporary text time transformers transformers-base unix unix-compat + unordered-containers uuid vector vector-binary-instances void word8 + yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal conduit containers directory either + exceptions filelock filepath gitrev hashable http-client + http-conduit lifted-base monad-control monad-logger mtl old-locale + optparse-applicative optparse-simple path process resourcet split + text transformers unordered-containers + ]; + testHaskellDepends = [ + async base bytestring Cabal conduit conduit-extra containers + cryptohash directory exceptions filepath hspec http-conduit + monad-logger optparse-applicative path process QuickCheck resourcet + retry temporary text transformers unix-compat + ]; + doCheck = false; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "http://haskellstack.org"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -173278,8 +174135,8 @@ self: { }: mkDerivation { pname = "stack-run-auto"; - version = "0.1.0.0"; - sha256 = "2233841a0e6fc3bf7fcf38d42899a7e9d89e3f0c3e02c3eda44279d1d711d0e0"; + version = "0.1.1.0"; + sha256 = "2656adb765aa9428868443709e29b6ee0846150f43b99a797272f5ad98b10917"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -174364,6 +175221,24 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "statsd-client" = callPackage + ({ mkDerivation, base, byteable, bytestring, crypto-api, cryptohash + , digest-pure, DRBG, network, network-uri, old-time, random + , time-units + }: + mkDerivation { + pname = "statsd-client"; + version = "0.2.0.1"; + sha256 = "7ef148b3909594fe4e845a1ebc49041af5cacaf1c557b4460f117a35a59457a5"; + libraryHaskellDepends = [ + base byteable bytestring crypto-api cryptohash digest-pure DRBG + network network-uri old-time random time-units + ]; + homepage = "https://github.com/keithduncan/statsd-client"; + description = "Statsd UDP client"; + license = stdenv.lib.licenses.mit; + }) {}; + "statsd-datadog" = callPackage ({ mkDerivation, base, bytestring, monad-control, network, text , transformers-base @@ -174716,7 +175591,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit" = callPackage + "stm-conduit_2_6_1" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -174739,13 +175614,13 @@ self: { test-framework-quickcheck2 transformers ]; doHaddock = false; - doCheck = false; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit_2_7_0" = callPackage + "stm-conduit" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -174767,10 +175642,10 @@ self: { resourcet stm stm-chans test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + doHaddock = false; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-containers_0_2_4" = callPackage @@ -174918,24 +175793,6 @@ self: { }) {}; "stm-firehose" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, hspec, http-types - , HUnit, resourcet, stm, stm-chans, stm-conduit, transformers, wai - , wai-conduit, warp - }: - mkDerivation { - pname = "stm-firehose"; - version = "0.3.0"; - sha256 = "11c9d5e9d919b86efbb3cdd05e9889d3a648aae4d13c93ed0eabcc71d7452999"; - libraryHaskellDepends = [ - base blaze-builder conduit http-types resourcet stm stm-chans - stm-conduit transformers wai wai-conduit warp - ]; - testHaskellDepends = [ base hspec HUnit stm ]; - description = "Conduits and STM operations for fire hoses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "stm-firehose_0_3_0_2" = callPackage ({ mkDerivation, base, blaze-builder, conduit, hspec, http-types , HUnit, resourcet, stm, stm-chans, stm-conduit, transformers, wai , wai-conduit, warp @@ -174952,7 +175809,6 @@ self: { homepage = "https://github.com/bartavelle/stm-firehose"; description = "Conduits and STM operations for fire hoses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-io-hooks" = callPackage @@ -176319,6 +177175,7 @@ self: { executableHaskellDepends = [ applicative-quoters base descriptive ghc-prim haskell-src-exts text ]; + jailbreak = true; homepage = "https://github.com/chrisdone/structured-haskell-mode"; description = "Structured editing Emacs mode for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -176596,6 +177453,7 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; @@ -176626,13 +177484,14 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stylish-haskell" = callPackage + "stylish-haskell_0_5_14_3" = callPackage ({ mkDerivation, aeson, base, bytestring, cmdargs, containers , directory, filepath, haskell-src-exts, HUnit, mtl, strict, syb , test-framework, test-framework-hunit, yaml @@ -176656,12 +177515,14 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stylish-haskell_0_5_14_4" = callPackage + "stylish-haskell" = callPackage ({ mkDerivation, aeson, base, bytestring, cmdargs, containers , directory, filepath, haskell-src-exts, HUnit, mtl, strict, syb , test-framework, test-framework-hunit, yaml @@ -176685,11 +177546,9 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; - jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylized" = callPackage @@ -176816,8 +177675,8 @@ self: { }: mkDerivation { pname = "success"; - version = "0.2.2"; - sha256 = "0c1d6936db654b732c3eee92090b0454d0e0734308e07b28d52d22b25c54c859"; + version = "0.2.4"; + sha256 = "244ca46dd6b1a49ad765a36dcc1952c815ba12b33a2c3eb1c0c5e7ed1a2a3bf6"; libraryHaskellDepends = [ base monad-control mtl transformers transformers-base ]; @@ -177230,8 +178089,8 @@ self: { }: mkDerivation { pname = "svgcairo"; - version = "0.13.0.3"; - sha256 = "9fd94d9aad09a26c4b6d4abf979d68d12b7265fbc8171093db448c620df96c49"; + version = "0.13.0.4"; + sha256 = "a366bb2592d9bd398183eefc9407442cfeaddd5b39e9f898081c788c691126a6"; libraryHaskellDepends = [ base cairo glib mtl text ]; libraryPkgconfigDepends = [ librsvg ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -177795,8 +178654,8 @@ self: { }: mkDerivation { pname = "syntactic"; - version = "3.2"; - sha256 = "ed6ec0f95c7d4a63610317fe115a0380d75a39ffa1ef35529c96ca650bd433c4"; + version = "3.2.1"; + sha256 = "4e7a38e32637364913a6bc4f9f802fdcb7b5eb21f2a9a2083356f12e1129df46"; libraryHaskellDepends = [ base constraints containers data-hash deepseq mtl template-haskell tree-view @@ -179697,10 +180556,8 @@ self: { }: mkDerivation { pname = "tasty-fail-fast"; - version = "0.0.1"; - sha256 = "c0bc9ed51c3f5d201ebcced0b4aeac0df48fcec7748fde9975ef15d8080f0808"; - revision = "1"; - editedCabalFile = "ac30bc385f5117e0d82d84786af687e8b282d5b325fce5d2a4d300673666aa44"; + version = "0.0.2"; + sha256 = "28e463b3e85e356f1a0676a4accd7ecc002814dc0487323613f0c6aacc153ac6"; libraryHaskellDepends = [ base containers stm tagged tasty ]; testHaskellDepends = [ base directory tasty tasty-golden tasty-hunit tasty-tap @@ -181660,7 +182517,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_4" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -181682,6 +182539,31 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "texmath" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.4.1"; + sha256 = "45a9c779775e4e6effd7606bef5c179524b4fb88dca952c2decd3fa82e6c94f5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; }) {}; "texrunner" = callPackage @@ -182232,6 +183114,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text-show_2_1_2" = callPackage + ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors + , bytestring, bytestring-builder, containers, generic-deriving + , ghc-prim, hspec, integer-gmp, nats, QuickCheck + , quickcheck-instances, semigroups, tagged, template-haskell, text + , transformers, transformers-compat, void + }: + mkDerivation { + pname = "text-show"; + version = "2.1.2"; + sha256 = "76c1ce631c6932816dc241b290400e7200d7c79fd50ec03f51964e244fae320d"; + libraryHaskellDepends = [ + array base base-compat bytestring bytestring-builder containers + generic-deriving ghc-prim integer-gmp nats semigroups tagged + template-haskell text transformers void + ]; + testHaskellDepends = [ + array base base-compat base-orphans bifunctors bytestring + bytestring-builder generic-deriving ghc-prim hspec nats QuickCheck + quickcheck-instances tagged text transformers transformers-compat + void + ]; + jailbreak = true; + homepage = "https://github.com/RyanGlScott/text-show"; + description = "Efficient conversion of values into Text"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "text-show-instances" = callPackage ({ mkDerivation, base, base-compat, bifunctors, binary, bytestring , containers, directory, ghc-prim, haskeline, hoopl, hpc, hspec @@ -183598,8 +184509,8 @@ self: { }: mkDerivation { pname = "tickle"; - version = "0.0.4"; - sha256 = "9261e1a6c3e3f317b6e9733a7d4e2ff2b3bad9669db4741d85e64e6fb933f587"; + version = "0.0.5"; + sha256 = "bf8c57ddea14842bc5e5e2099c5fbc8e9c85544f3daad57a33ba1db6fa244102"; libraryHaskellDepends = [ base bifunctors bytestring lens mtl semigroupoids semigroups transformers validation @@ -183607,7 +184518,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - homepage = "https://github.com/nicta/tickle"; + homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -184118,26 +185029,53 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timelike" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "timelike"; + version = "0.1.0"; + sha256 = "6588260531b2821ab33fb92b6587d971c68334f1b07daba56ebf7418641d6036"; + libraryHaskellDepends = [ base transformers ]; + homepage = "http://hub.darcs.net/esz/timelike"; + description = "Type classes for types representing time"; + license = stdenv.lib.licenses.asl20; + }) {}; + + "timelike-time" = callPackage + ({ mkDerivation, base, time, timelike, transformers }: + mkDerivation { + pname = "timelike-time"; + version = "0.1.0"; + sha256 = "25c4b9ed4eb5ab0121973a2b54c19ec451c1ac9e0e54ce62f211814732ccca16"; + libraryHaskellDepends = [ base time timelike transformers ]; + homepage = "http://hub.darcs.net/esz/timelike-time"; + description = "Timelike interface for the time library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "timemap" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, QuickCheck - , quickcheck-instances, stm, tasty, tasty-hunit, tasty-quickcheck - , time, unordered-containers + ({ mkDerivation, base, containers, focus, hashable, list-t + , QuickCheck, quickcheck-instances, stm, stm-containers, tasty + , tasty-hunit, tasty-quickcheck, time, unordered-containers }: mkDerivation { pname = "timemap"; - version = "0.0.0"; - sha256 = "f0b85eca4fdea0270897e0b15675f7894b193695968ddb6ac5f7acff73b64cc6"; + version = "0.0.2"; + sha256 = "089ec15bb8c6a4da17ef7619fa1b42dc4288ce630a261270f2ac6752a8387be4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers hashable hashtables stm time unordered-containers + base containers focus hashable list-t stm stm-containers time + unordered-containers ]; executableHaskellDepends = [ - base containers hashable hashtables stm time unordered-containers + base containers focus hashable list-t stm stm-containers time + unordered-containers ]; testHaskellDepends = [ - base containers hashable hashtables QuickCheck quickcheck-instances - stm tasty tasty-hunit tasty-quickcheck time unordered-containers + base containers focus hashable list-t QuickCheck + quickcheck-instances stm stm-containers tasty tasty-hunit + tasty-quickcheck time unordered-containers ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; @@ -184480,8 +185418,8 @@ self: { }: mkDerivation { pname = "tip-lib"; - version = "0.2.1"; - sha256 = "007beb1850acd1aeb370c831f9e801e580e96d295b5b3750db47e8e658c207f8"; + version = "0.2.2"; + sha256 = "66698d1000e582542f3ef838960edc66ae3874eb6b21f169ed8497fd2c2cc12b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -184567,16 +185505,13 @@ self: { }) {}; "tld" = callPackage - ({ mkDerivation, base, containers, network-uri, template-haskell - , text - }: + ({ mkDerivation, base, containers, HUnit, network-uri, text }: mkDerivation { pname = "tld"; - version = "0.2.0.0"; - sha256 = "3d02c17a2f330e21e840177fccc539d78347340125992aaa6238ab9f2b2456e9"; - libraryHaskellDepends = [ - base containers network-uri template-haskell text - ]; + version = "0.3.0.0"; + sha256 = "feb269cd135796d7a378a01150ca89fdea380e4e7fa67b031b299fcd16acac5e"; + libraryHaskellDepends = [ base containers network-uri text ]; + testHaskellDepends = [ base HUnit network-uri text ]; description = "This project separates subdomains, domains, and top-level-domains from URLs"; license = stdenv.lib.licenses.mit; }) {}; @@ -184794,8 +185729,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.3.3"; - sha256 = "9f03fb059198e1f3d866d1297f86fca3204d07e7cc5e8f7e8ad878be48f1ca24"; + version = "1.3.4"; + sha256 = "49fff2bd6b420bb57f7cc78445f9a17547a5ff4a72e29135695c9cc2d91e19c1"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class memory mtl network transformers x509 x509-store @@ -185981,28 +186916,55 @@ self: { "tries" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, composition - , composition-extra, containers, criterion, keys, mtl, QuickCheck - , quickcheck-instances, rose-trees, semigroups, sets, tasty - , tasty-quickcheck + , composition-extra, containers, deepseq, hashable, keys, mtl + , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets + , tasty, tasty-quickcheck, unordered-containers }: mkDerivation { pname = "tries"; - version = "0.0.2"; - sha256 = "ce556583fe46ec5bf0d980dd7d5c8dfefb451989d60c9f772a7f83ef57ce394e"; + version = "0.0.3"; + sha256 = "45a90df3926415f24454fdeaf838d3982c8c441d4582b635a13f5f5ba1319971"; libraryHaskellDepends = [ base bytestring bytestring-trie composition composition-extra - containers criterion keys mtl QuickCheck quickcheck-instances - rose-trees semigroups sets + containers deepseq hashable keys QuickCheck quickcheck-instances + rose-trees semigroups sets unordered-containers ]; testHaskellDepends = [ base bytestring bytestring-trie composition composition-extra - containers keys mtl QuickCheck quickcheck-instances rose-trees - semigroups sets tasty tasty-quickcheck + containers deepseq hashable keys mtl QuickCheck + quickcheck-instances rose-trees semigroups sets tasty + tasty-quickcheck unordered-containers ]; description = "Various trie implementations in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; + "tries_0_0_4" = callPackage + ({ mkDerivation, base, bytestring, bytestring-trie, composition + , composition-extra, containers, deepseq, hashable, keys, mtl + , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets + , tasty, tasty-quickcheck, unordered-containers + }: + mkDerivation { + pname = "tries"; + version = "0.0.4"; + sha256 = "6be9638a03b35effe69c9bbfc33b00fe92156211945b83dee871e70cf266f94a"; + libraryHaskellDepends = [ + base bytestring bytestring-trie composition composition-extra + containers deepseq hashable keys QuickCheck quickcheck-instances + rose-trees semigroups sets unordered-containers + ]; + testHaskellDepends = [ + base bytestring bytestring-trie composition composition-extra + containers deepseq hashable keys mtl QuickCheck + quickcheck-instances rose-trees semigroups sets tasty + tasty-quickcheck unordered-containers + ]; + description = "Various trie implementations in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "trifecta_1_5_1_3" = callPackage ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base , blaze-builder, blaze-html, blaze-markup, bytestring, charset @@ -187366,21 +188328,33 @@ self: { }) {}; "type-combinators" = callPackage - ({ mkDerivation, base, containers, mtl, template-haskell - , transformers - }: + ({ mkDerivation, base }: mkDerivation { pname = "type-combinators"; - version = "0.1.2.1"; - sha256 = "67e8b5b1a92a4e578ab741d11ad883587dbf4451dc5a14774733181e0e570420"; - libraryHaskellDepends = [ - base containers mtl template-haskell transformers - ]; + version = "0.2.0.0"; + sha256 = "0b0b07f8ac2bc3237114753f8f9e2d8f41cdc4c97d3bd5cd4725beaaa4b7c99a"; + libraryHaskellDepends = [ base ]; homepage = "https://github.com/kylcarte/type-combinators"; description = "A collection of data types for type-level programming"; license = stdenv.lib.licenses.bsd3; }) {}; + "type-combinators-quote" = callPackage + ({ mkDerivation, base, haskell-src-meta, template-haskell + , type-combinators + }: + mkDerivation { + pname = "type-combinators-quote"; + version = "0.1.0.0"; + sha256 = "246e8b50dbcebb5bf2c71c8827c66dc740a2e717dac4210da86308c7946c620d"; + libraryHaskellDepends = [ + base haskell-src-meta template-haskell type-combinators + ]; + homepage = "https://github.com/kylcarte/type-combinators-quote"; + description = "Quasiquoters for the 'type-combinators' package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "type-digits" = callPackage ({ mkDerivation, base, template-haskell, type-spine }: mkDerivation { @@ -187876,6 +188850,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typed-wire-utils" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, text + , time + }: + mkDerivation { + pname = "typed-wire-utils"; + version = "0.1.0.0"; + sha256 = "26edf29617e27d569f4e44d88b0aadc7d028476ae5eb9dbabbb7c605a71ab230"; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring text time + ]; + homepage = "http://github.com/typed-wire/hs-typed-wire-utils#readme"; + description = "Haskell utility library required for code generated by typed-wire compiler"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "typedquery" = callPackage ({ mkDerivation, aeson, base, bytestring, haskell-src-meta, parsec , template-haskell, text, transformers @@ -188050,8 +189040,10 @@ self: { }: mkDerivation { pname = "tz"; - version = "0.0.0.10"; - sha256 = "1597ab0c2b6606492b65d2c39be5ae8dcf50734dee2cd4e0de5b691241544096"; + version = "0.1.0.1"; + sha256 = "2efcdae6fbeb7986ae5486de1eb090d646d60519070006379f40e72678fd490c"; + revision = "1"; + editedCabalFile = "485b8652e895108a5c360180fe992cc0f7583889c6d88cd749bf68cfde8f0baa"; libraryHaskellDepends = [ base binary bytestring containers deepseq template-haskell time tzdata vector @@ -188061,7 +189053,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; - jailbreak = true; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; @@ -188110,23 +189101,20 @@ self: { }) {}; "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, criterion, data-default - , deepseq, derive, file-embed, filepath, HUnit, pcre-light, syb - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, yaml + ({ mkDerivation, aeson, base, bytestring, data-default, derive + , file-embed, filepath, HUnit, pcre-light, tasty, tasty-hunit + , tasty-quickcheck, text, yaml }: mkDerivation { pname = "ua-parser"; - version = "0.5"; - sha256 = "6e5925c3b4c7e195801dc4b9fcd240717e25d138fa14ae03b01eff97f476923a"; + version = "0.7"; + sha256 = "586ae0c948af8a2c671331aeebe85c663a24e5d40c8a71a943ee2520b4d4aa57"; libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light syb text - yaml + aeson base bytestring data-default file-embed pcre-light text yaml ]; testHaskellDepends = [ - aeson base bytestring criterion data-default deepseq derive - file-embed filepath HUnit pcre-light syb test-framework - test-framework-hunit test-framework-quickcheck2 text yaml + aeson base bytestring data-default derive file-embed filepath HUnit + pcre-light tasty tasty-hunit tasty-quickcheck text yaml ]; jailbreak = true; description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; @@ -188570,6 +189558,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "unbreak" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring + , bytestring, cereal, cmdargs, cryptonite, memory, process, text + , unix + }: + mkDerivation { + pname = "unbreak"; + version = "0.3.0"; + sha256 = "63de23dd0adf5183498b6ba37efe5bc867d935b5a56b839d4ae553d8918ec91c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base base64-bytestring bytestring cereal + cryptonite memory process text unix + ]; + executableHaskellDepends = [ base bytestring cmdargs ]; + description = "Secure editing of remote documents with unstable connection"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "unexceptionalio" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -188832,10 +189840,8 @@ self: { }: mkDerivation { pname = "uniform-io"; - version = "1.0.0.0"; - sha256 = "758c265cc4838f2536c9adfe0c4e0e3839b4c29c2241ad89ab941925a62ceb1e"; - revision = "1"; - editedCabalFile = "7646b537e81dab11156af68670fd508a81521543536f1fe3e4d45c545616f6be"; + version = "1.0.1.0"; + sha256 = "6c772b6b8a6876e41935267a789dfc466fdccc3f78e80098eabcacaf0675cc76"; libraryHaskellDepends = [ attoparsec base bytestring data-default-class iproute network transformers word8 @@ -190281,13 +191287,13 @@ self: { }: mkDerivation { pname = "userid"; - version = "0.1.2.2"; - sha256 = "21d4ee5ccf8643b41288ffb4bae5180ff1e94fe81ee2b56461fe1f345c9bdffb"; + version = "0.1.2.3"; + sha256 = "7d1e9e276ff47ec4717d74432075c568b6859388c8a74057f3efa1a9e80106a3"; libraryHaskellDepends = [ aeson base boomerang lens safecopy web-routes web-routes-th ]; homepage = "http://www.github.com/Happstack/userid"; - description = "A library which provides the UserId type and useful instances for web development"; + description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -191180,8 +192186,8 @@ self: { }: mkDerivation { pname = "vado"; - version = "0.0.5"; - sha256 = "7262e756a473b28f3998c6f90c8c04437e77efe5fc7e13f72fd06388ca65781d"; + version = "0.0.6"; + sha256 = "cc9b6ffa83eaedf2c793a93e47b8341b2f8014382aaae63a46b4028c3e86212c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -192850,8 +193856,8 @@ self: { ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }: mkDerivation { pname = "vte"; - version = "0.13.0.2"; - sha256 = "70e8f81e5e44beb9eba66959792af7648ab9238c758ed359bda3f78933427ef0"; + version = "0.13.0.3"; + sha256 = "70efa9daec459aa3d7d49e767af2449752c62f47985d5bac9ef50fc1cdb4f90f"; libraryHaskellDepends = [ base glib gtk pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -192864,8 +193870,8 @@ self: { ({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, pango, vte }: mkDerivation { pname = "vtegtk3"; - version = "0.13.0.2"; - sha256 = "ef3b367f9806012308816bb6315a56c0f51f5648f6f60a3726ac5a54b4b97536"; + version = "0.13.0.3"; + sha256 = "d712bf11446133f3146985db6ced3d932cf8f65d6a81900f4b65bb6e914c176a"; libraryHaskellDepends = [ base glib gtk3 pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -194488,6 +195494,55 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "wai-middleware-caching" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, wai }: + mkDerivation { + pname = "wai-middleware-caching"; + version = "0.1.0.1"; + sha256 = "831cf0efc1fcbf5a43ef19f313427f1fcca1d3d5312f7cf4e05294984ccd3d83"; + libraryHaskellDepends = [ base blaze-builder bytestring wai ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; + description = "WAI Middleware to cache things"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "wai-middleware-caching-lru" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types + , lrucache, text, wai, wai-middleware-caching + }: + mkDerivation { + pname = "wai-middleware-caching-lru"; + version = "0.1.0.0"; + sha256 = "377dc842f5ad77b98e8a817e092c891ccfd0da978fb9f69a380f001a95da28d3"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types lrucache text wai + wai-middleware-caching + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-lru#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "wai-middleware-caching-redis" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, hedis, http-types + , text, wai, wai-middleware-caching + }: + mkDerivation { + pname = "wai-middleware-caching-redis"; + version = "0.2.0.0"; + sha256 = "6ff53783db20d8f0ff00514ea2679f7022ca59eb20ffad22628ac17c13bf7c4c"; + libraryHaskellDepends = [ + base blaze-builder bytestring hedis http-types text wai + wai-middleware-caching + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-redis#readme"; + description = "Cache Wai Middleware using Redis backend"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-middleware-catch" = callPackage ({ mkDerivation, base, bytestring, http-types, lifted-base, wai }: mkDerivation { @@ -194534,36 +195589,38 @@ self: { "wai-middleware-content-type" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-html, bytestring - , clay, containers, exceptions, hspec, hspec-wai, http-media + , clay, exceptions, hashable, hspec, hspec-wai, http-media , http-types, lucid, mmorph, monad-control, monad-logger, mtl , pandoc, pandoc-types, resourcet, shakespeare, tasty, tasty-hspec - , text, transformers, transformers-base, urlpath, wai - , wai-transformers, wai-util, warp + , text, transformers, transformers-base, unordered-containers + , urlpath, wai, wai-transformers, wai-util, warp }: mkDerivation { pname = "wai-middleware-content-type"; - version = "0.1.0.1"; - sha256 = "4c2fe853b078648b2f916da3fd174d5cfa01153edd136e587f4aae54cf1c579e"; + version = "0.1.1.1"; + sha256 = "a2b7855f48904918133311c1498e0b028d4cf8b6c0c45d660872198fbcd50b40"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions http-media http-types lucid mmorph monad-control + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable http-media http-types lucid mmorph monad-control monad-logger mtl pandoc resourcet shakespeare text transformers - transformers-base urlpath wai wai-transformers wai-util + transformers-base unordered-containers urlpath wai wai-transformers + wai-util ]; executableHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions http-media http-types lucid mmorph monad-control + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable http-media http-types lucid mmorph monad-control monad-logger mtl pandoc resourcet shakespeare text transformers - transformers-base urlpath wai wai-transformers wai-util warp + transformers-base unordered-containers urlpath wai wai-transformers + wai-util warp ]; testHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions hspec hspec-wai http-media http-types lucid mmorph + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable hspec hspec-wai http-media http-types lucid mmorph monad-control monad-logger mtl pandoc pandoc-types resourcet shakespeare tasty tasty-hspec text transformers transformers-base - urlpath wai wai-transformers wai-util warp + unordered-containers urlpath wai wai-transformers wai-util warp ]; description = "Route to different middlewares based on the incoming Accept header"; license = stdenv.lib.licenses.bsd3; @@ -194599,7 +195656,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-crowd" = callPackage + "wai-middleware-crowd_0_1_2_1" = callPackage ({ mkDerivation, authenticate, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, clientsession , containers, cookie, gitrev, http-client, http-client-tls @@ -194626,10 +195683,10 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-crowd_0_1_3" = callPackage + "wai-middleware-crowd" = callPackage ({ mkDerivation, authenticate, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, clientsession , containers, cookie, gitrev, http-client, http-client-tls @@ -194656,7 +195713,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -194959,17 +196016,26 @@ self: { }) {}; "wai-middleware-verbs" = callPackage - ({ mkDerivation, base, containers, errors, exceptions, http-types - , mmorph, monad-logger, mtl, resourcet, transformers - , transformers-base, wai, wai-transformers + ({ mkDerivation, base, errors, exceptions, hashable, http-types + , mmorph, monad-logger, mtl, resourcet, text, transformers + , transformers-base, unordered-containers, wai + , wai-middleware-content-type, wai-transformers, warp }: mkDerivation { pname = "wai-middleware-verbs"; - version = "0.1.0"; - sha256 = "af304d24cf761465cae236b4a8d59a05cd8d74870a8c96f76f5b7fcbbab7d88e"; + version = "0.1.1"; + sha256 = "cc1e6be505f4c23f45467d55d55497d844f8c79cd2d855a23d191351e1126184"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base containers errors exceptions http-types mmorph monad-logger - mtl resourcet transformers transformers-base wai wai-transformers + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet transformers transformers-base unordered-containers wai + wai-transformers + ]; + executableHaskellDepends = [ + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet text transformers transformers-base unordered-containers + wai wai-middleware-content-type wai-transformers warp ]; description = "Route different middleware responses based on the incoming HTTP verb"; license = stdenv.lib.licenses.bsd3; @@ -195228,27 +196294,21 @@ self: { }) {}; "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, entropy - , http-types, postgresql-session, postgresql-simple, text, time - , transformers, vault, wai, wai-session, warp + ({ mkDerivation, base, bytestring, cereal, cookie, entropy + , postgresql-session, postgresql-simple, text, time, transformers + , wai, wai-session }: mkDerivation { pname = "wai-session-postgresql"; - version = "0.1.0.1"; - sha256 = "3a0651e2757d4a83d8dac6aebc61607b38207549dbdb2904ccbd0f410785bdfe"; - isLibrary = true; - isExecutable = true; + version = "0.1.1.0"; + sha256 = "4a4adeddde9b3c6fe54599daa18a0d9abe8386fdd594475913d79658f29b8a58"; libraryHaskellDepends = [ - base bytestring cereal entropy postgresql-simple text time - transformers wai-session - ]; - executableHaskellDepends = [ - base bytestring data-default entropy http-types postgresql-simple - text vault wai wai-session warp + base bytestring cereal cookie entropy postgresql-simple text time + transformers wai wai-session ]; testHaskellDepends = [ base postgresql-session ]; jailbreak = true; - homepage = "https://github.com/hce/postgresql-session"; + homepage = "https://github.com/hce/postgresql-session#readme"; description = "PostgreSQL backed Wai session store"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -197203,19 +198263,16 @@ self: { }) {}; "webcrank-dispatch" = callPackage - ({ mkDerivation, base, bytestring, mtl, path-pieces, reroute, text + ({ mkDerivation, base, hvect, mtl, path-pieces, reroute, text , unordered-containers }: mkDerivation { pname = "webcrank-dispatch"; - version = "0.1"; - sha256 = "f324088d07a0986b982a73d931b98f8276eda379e2715f48233c9a262a7393f0"; - revision = "1"; - editedCabalFile = "50b6b56e1fccc20a2986ea93b04410b8131ea5f2f4df94df538c6b2369400fa8"; + version = "0.2"; + sha256 = "13328e0f7570a29b9938b8effecc6eeadd3d14555cbefc6e3707c98d7695b7ae"; libraryHaskellDepends = [ - base bytestring mtl path-pieces reroute text unordered-containers + base hvect mtl path-pieces reroute text unordered-containers ]; - jailbreak = true; homepage = "https://github.com/webcrank/webcrank-dispatch.hs"; description = "A simple request dispatcher"; license = stdenv.lib.licenses.bsd3; @@ -197511,6 +198568,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "webfinger-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, data-default-class + , hashable, http-client, http-client-tls, http-types, text + , unordered-containers, uri-bytestring + }: + mkDerivation { + pname = "webfinger-client"; + version = "0.1.0.0"; + sha256 = "e3b1a231ebe4bc957eddcf24a19ee5d90134b9a95984a75a945c8dc4b17a56e0"; + libraryHaskellDepends = [ + aeson base bytestring data-default-class hashable http-client + http-client-tls http-types text unordered-containers uri-bytestring + ]; + homepage = "http://hub.darcs.net/fr33domlover/webfinger-client"; + description = "WebFinger client library"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "webidl" = callPackage ({ mkDerivation, base, bytestring, HSFFIG, LEXER, parsec, pretty , utf8-env, utf8-string @@ -197561,8 +198636,8 @@ self: { }: mkDerivation { pname = "webkit"; - version = "0.14.1.0"; - sha256 = "249fb5e5817e3f85a17abe32f100aafc9f853c6cf83f30a11c9adf846dd3b4d6"; + version = "0.14.1.1"; + sha256 = "c80dd015ecbf02b7d018afd1679df78a8c1ce17e3ae6b943f23d4da2ef867e44"; libraryHaskellDepends = [ base bytestring cairo glib gtk mtl pango text transformers ]; @@ -197577,8 +198652,8 @@ self: { ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, webkit }: mkDerivation { pname = "webkit-javascriptcore"; - version = "0.13.1.0"; - sha256 = "b0a7c41c9c22cb1aa4697e6d30ace424bc73b15416cf98790e148c9bec10bed7"; + version = "0.13.1.1"; + sha256 = "c54491817b539f2ae5ff75f082ff18efc68038146553e300462a3a8d808ff730"; libraryHaskellDepends = [ base glib gtk webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; @@ -197592,8 +198667,8 @@ self: { }: mkDerivation { pname = "webkitgtk3"; - version = "0.14.1.0"; - sha256 = "d5d293fff2a7df1e870c6076dc4cafbe7bbc07098a3f66c81942c01e0ebbbe99"; + version = "0.14.1.1"; + sha256 = "a8edd6470fe9a6c82f98bc331d23f6c6fb6978b6d63f03f010e0c7e1000eb216"; libraryHaskellDepends = [ base bytestring cairo glib gtk3 mtl pango text transformers ]; @@ -197610,8 +198685,8 @@ self: { }: mkDerivation { pname = "webkitgtk3-javascriptcore"; - version = "0.13.1.0"; - sha256 = "caf9cc5074e51f27abb3ea52f60b8e737ca7323b96bf0862ba1713354bf835b5"; + version = "0.13.1.1"; + sha256 = "0a1583d61f20c8cf0f84443210711222a9f0dc1d8a99a85944c01f487aaa8b79"; libraryHaskellDepends = [ base glib gtk3 webkitgtk3 ]; libraryPkgconfigDepends = [ webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -198675,14 +199750,14 @@ self: { , amazonka-swf, base, basic-prelude, bytestring, conduit , conduit-extra, exceptions, fast-logger, formatting, http-conduit , http-types, lens, monad-control, monad-logger, mtl, mtl-compat - , optparse-applicative, resourcet, safe, shelly, tasty, tasty-hunit - , text, time, transformers, transformers-base, unordered-containers - , uuid, yaml + , optparse-applicative, resourcet, safe, shelly, system-filepath + , tasty, tasty-hunit, text, time, transformers, transformers-base + , unordered-containers, uuid, yaml, zlib }: mkDerivation { pname = "wolf"; - version = "0.2.2"; - sha256 = "73a4d33c24eef17da4f09544f478a65ab73935cc720f94d7a62977917b80428b"; + version = "0.2.3"; + sha256 = "53c53f00ccc4ad27efc9164d90722174d28f7bad1850a1659f177d9c4d070fd3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198695,7 +199770,8 @@ self: { ]; executableHaskellDepends = [ aeson amazonka-core base basic-prelude bytestring - optparse-applicative resourcet shelly text transformers yaml + optparse-applicative resourcet shelly system-filepath text + transformers yaml zlib ]; testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; homepage = "https://github.com/swift-nav/wolf"; @@ -200247,8 +201323,8 @@ self: { }: mkDerivation { pname = "xkbcommon"; - version = "0.0.1"; - sha256 = "2503e70f4a602c7c9d77b998ced4888a28e9d793323f41af970808f34d091bb2"; + version = "0.0.2"; + sha256 = "98e0a2e42bc6a08a56416882a89165adfdf12a762fd93ece076edf37b814dfd8"; libraryHaskellDepends = [ base bytestring cpphs data-flags filepath process storable-record template-haskell text transformers @@ -200434,6 +201510,39 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "xlsx_0_2_0" = callPackage + ({ mkDerivation, base, binary-search, bytestring, conduit + , containers, data-default, digest, HUnit, lens, mtl, old-locale + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, utf8-string, vector, xml-conduit, xml-types + , zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.0"; + sha256 = "6f76eefb933916fe14569a5dfb408716cb5e9481be34f886219f770d64fa16de"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens mtl old-locale text time transformers utf8-string + vector xml-conduit xml-types zip-archive zlib + ]; + executableHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens old-locale text time transformers utf8-string vector + xml-conduit xml-types zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit lens smallcheck tasty tasty-hunit + tasty-smallcheck time vector xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "xlsx-templater" = callPackage ({ mkDerivation, base, bytestring, conduit, containers , data-default, parsec, text, time, transformers, xlsx @@ -202518,16 +203627,13 @@ self: { ({ mkDerivation, base, blank-canvas, stm, text, time, Yampa }: mkDerivation { pname = "yampa-canvas"; - version = "0.2"; - sha256 = "8ac4654effc73092ab61e13655d74363744f37e998a9a68b6024db7c825ff49a"; + version = "0.2.2"; + sha256 = "167c8dc3992d98d879eb281b27a0dbf6fde21ca69992e384df4b5babcdda3e3c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blank-canvas stm time Yampa ]; - executableHaskellDepends = [ - base blank-canvas stm text time Yampa - ]; - jailbreak = true; - description = "blank-canvas frontend for yampa"; + executableHaskellDepends = [ base blank-canvas text Yampa ]; + description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -205839,18 +206945,21 @@ self: { }) {}; "yesod-csp" = callPackage - ({ mkDerivation, base, hspec, network-uri, semigroups, text, yesod - , yesod-core, yesod-test + ({ mkDerivation, attoparsec, base, hspec, mono-traversable + , network-uri, semigroups, syb, template-haskell, text, uniplate + , yesod, yesod-core, yesod-test }: mkDerivation { pname = "yesod-csp"; - version = "0.1.1.0"; - sha256 = "02338c3b027e18381f098d450b2431ea1127ec49c77fc6e25fcab36f0a84ca94"; + version = "0.2.0.0"; + sha256 = "3804bdbc7b2f40a707c0af2bd6c2586abdc49c0f2eada5b24c488ed126e37280"; libraryHaskellDepends = [ - base network-uri semigroups text yesod yesod-core + attoparsec base mono-traversable network-uri semigroups syb + template-haskell text uniplate yesod yesod-core ]; testHaskellDepends = [ - base hspec network-uri semigroups yesod yesod-test + attoparsec base hspec network-uri semigroups template-haskell yesod + yesod-test ]; description = "Add CSP headers to Yesod apps"; license = stdenv.lib.licenses.mit; From 1ba77bf6cb0f38bf21510623ac4ce59e0c1496b1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 10 Dec 2015 21:27:13 +0100 Subject: [PATCH 265/707] Add LTS Haskell 3.17. --- pkgs/top-level/haskell-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 997baa7eaa9..c35ee45204d 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -304,6 +304,9 @@ rec { lts-3_16 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.16.nix { }; }; + lts-3_17 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.17.nix { }; + }; }; } From db52259a9df5a513bd8fb3fe8113e327bb88d411 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 13 Dec 2015 19:28:35 +0100 Subject: [PATCH 266/707] Add LTS Haskell 3.18. --- pkgs/top-level/haskell-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index c35ee45204d..ad29a94b199 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -307,6 +307,9 @@ rec { lts-3_17 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.17.nix { }; }; + lts-3_18 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.18.nix { }; + }; }; } From c58c68a037e9d24b05a78003348e20d2f19e0216 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 21:49:33 +0100 Subject: [PATCH 267/707] haskell.lib.addPkgconfigDepends: fix broken function The function is supposed to modify pkgconfigDepends, not buildInputs. --- pkgs/development/haskell-modules/lib.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix index 7ac30668d8f..a3e1b56104d 100644 --- a/pkgs/development/haskell-modules/lib.nix +++ b/pkgs/development/haskell-modules/lib.nix @@ -33,7 +33,7 @@ rec { addBuildDepends = drv: xs: overrideCabal drv (drv: { buildDepends = (drv.buildDepends or []) ++ xs; }); addPkgconfigDepend = drv: x: addPkgconfigDepends drv [x]; - addPkgconfigDepends = drv: xs: overrideCabal drv (drv: { buildDepends = (drv.pkgconfigDepends or []) ++ xs; }); + addPkgconfigDepends = drv: xs: overrideCabal drv (drv: { pkgconfigDepends = (drv.pkgconfigDepends or []) ++ xs; }); enableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f-${x}") "-f${x}"; disableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f${x}") "-f-${x}"; From fc2b8edb1a087fcd199c70851c950ffd90002a44 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Dec 2015 21:58:45 +0100 Subject: [PATCH 268/707] Clean up overrides for Haskell gio, glib, and gtk. --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 41fdfad528a..4a164beb246 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -248,9 +248,13 @@ self: super: { jwt = dontCheck super.jwt; # https://github.com/NixOS/cabal2nix/issues/136 - glib = addBuildDepends super.glib [pkgs.pkgconfig pkgs.glib]; + gio = addPkgconfigDepend super.gio pkgs.glib; + gio_0_13_0_3 = addPkgconfigDepend super.gio_0_13_0_3 pkgs.glib; + gio_0_13_0_4 = addPkgconfigDepend super.gio_0_13_0_4 pkgs.glib; + gio_0_13_1_0 = addPkgconfigDepend super.gio_0_13_1_0 pkgs.glib; + glib = addPkgconfigDepend super.glib pkgs.glib; gtk3 = super.gtk3.override { inherit (pkgs) gtk3; }; - gtk = addBuildDepends super.gtk [pkgs.pkgconfig pkgs.gtk]; + gtk = addPkgconfigDepend super.gtk pkgs.gtk; gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; }; # Need WebkitGTK, not just webkit. From b67ac40a8230e2e16ed66f5bb01f0e3f94b2780a Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 17 Dec 2015 09:01:49 +0900 Subject: [PATCH 269/707] erlangR18: 18.0 -> 18.2 --- pkgs/development/interpreters/erlang/R18.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix index 670df423a9b..2fc91d6a2db 100644 --- a/pkgs/development/interpreters/erlang/R18.nix +++ b/pkgs/development/interpreters/erlang/R18.nix @@ -19,11 +19,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}" + "${optionalString javacSupport "-javac"}"; - version = "18.0"; + version = "18.2"; src = fetchurl { url = "http://www.erlang.org/download/otp_src_${version}.tar.gz"; - sha256 = "1ahi865ii3iqzd00yyn3nrxjb9qa2by9d7ixssvqw8ag9firvdm0"; + sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3"; }; buildInputs = @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { postInstall = let manpages = fetchurl { url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz"; - sha256 = "0wsnp7sp21ydinwkg3rkazyrs382pdzwra9apikkhs70dv1hwkz4"; + sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n"; }; in '' ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call @@ -73,6 +73,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.erlang.org/"; + downloadPage = "http://www.erlang.org/download.html"; description = "Programming language used for massively scalable soft real-time systems"; longDescription = '' From 61176d89873543ab0c805b1d193c078a6bc34c4a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 Dec 2015 16:20:44 -0800 Subject: [PATCH 270/707] Revert "haskellPackages.git-annex: Do not use lsof on Darwin" This reverts commit fd45c7b82b65c31a5be7854d8566260b781c6d6b. --- pkgs/development/haskell-modules/configuration-common.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4a164beb246..f7fe236da35 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -66,13 +66,11 @@ self: super: { # build which has the assistant to be used in the top-level. git-annex_5_20150727 = (disableCabalFlag super.git-annex_5_20150727 "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; - lsof = if pkgs.stdenv.isLinux then self.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; git-annex = (disableCabalFlag super.git-annex "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; - lsof = if pkgs.stdenv.isLinux then self.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; From 09aff6c104eba3f68f0a8054834376db505af62e Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Mon, 16 Nov 2015 15:44:25 -0600 Subject: [PATCH 271/707] pcb: init at 20140316 --- .../science/electronics/pcb/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/applications/science/electronics/pcb/default.nix diff --git a/pkgs/applications/science/electronics/pcb/default.nix b/pkgs/applications/science/electronics/pcb/default.nix new file mode 100644 index 00000000000..257d6993ff5 --- /dev/null +++ b/pkgs/applications/science/electronics/pcb/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, gtk, bison, intltool, flex, netpbm, imagemagick, dbus, xlibsWrapper, mesa, shared_mime_info, tcl, tk, gnome, pangox_compat, gd, xorg }: + +stdenv.mkDerivation rec { + name = "pcb-${version}"; + version = "20140316"; + + src = fetchurl { + url = "http://ftp.geda-project.org/pcb/pcb-20140316/${name}.tar.gz"; + sha256 = "0l6944hq79qsyp60i5ai02xwyp8l47q7xdm3js0jfkpf72ag7i42"; + }; + + buildInputs = [ pkgconfig gtk bison intltool flex netpbm imagemagick dbus xlibsWrapper mesa tcl shared_mime_info tk gnome.gtkglext pangox_compat gd xorg.libXmu ]; + + configureFlags = ["--disable-update-desktop-database"]; + + meta = with stdenv.lib; { + description = "Printed Circuit Board editor"; + homepage = http://pcb.geda-project.org/; + maintainers = with maintainers; [ mog ]; + platforms = platforms.linux; + license = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b217170baab..1fb1dbaf3c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14845,6 +14845,8 @@ let ngspice = callPackage ../applications/science/electronics/ngspice { }; + pcb = callPackage ../applications/science/electronics/pcb { }; + qucs = callPackage ../applications/science/electronics/qucs { }; xoscope = callPackage ../applications/science/electronics/xoscope { }; From 0a81a0d8ffa824217e0a2fe58972467a7a92b966 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 19:08:06 -0600 Subject: [PATCH 272/707] kde5: Frameworks 5.17, Plasma 5.5.1, Applications 15.12.0 The stable `kde5` attribute is updated to these versions. The old versions have been removed. --- pkgs/applications/kde-apps-15.08/ark.nix | 58 - .../kde-apps-15.08/baloo-widgets.nix | 35 - pkgs/applications/kde-apps-15.08/default.nix | 56 - .../kde-apps-15.08/dolphin-plugins.nix | 31 - pkgs/applications/kde-apps-15.08/dolphin.nix | 70 - pkgs/applications/kde-apps-15.08/fetchsrcs.sh | 56 - .../kde-apps-15.08/ffmpegthumbs.nix | 27 - pkgs/applications/kde-apps-15.08/gpgmepp.nix | 21 - pkgs/applications/kde-apps-15.08/gwenview.nix | 44 - pkgs/applications/kde-apps-15.08/kate.nix | 69 - pkgs/applications/kde-apps-15.08/kde-app.nix | 23 - .../kde-apps-15.08/kde-locale-4.nix | 20 - .../kde-apps-15.08/kde-locale-5.nix | 17 - .../kdegraphics-thumbnailers.nix | 29 - .../0001-old-kde4-cmake-policies.patch | 56 - .../kdelibs/0002-polkit-install-path.patch | 25 - .../kdelibs/0003-remove_xdg_impurities.patch | 47 - .../kde-apps-15.08/kdelibs/default.nix | 43 - .../kdelibs/polkit-install.patch | 12 - .../kde-apps-15.08/kdelibs/setup-hook.sh | 10 - pkgs/applications/kde-apps-15.08/kgpg.nix | 38 - pkgs/applications/kde-apps-15.08/konsole.nix | 68 - .../applications/kde-apps-15.08/ksnapshot.nix | 29 - pkgs/applications/kde-apps-15.08/l10n.nix | 231 -- .../applications/kde-apps-15.08/libkdcraw.nix | 27 - .../applications/kde-apps-15.08/libkexiv2.nix | 27 - pkgs/applications/kde-apps-15.08/libkipi.nix | 25 - pkgs/applications/kde-apps-15.08/okular.nix | 41 - .../kde-apps-15.08/oxygen-icons.nix | 13 - .../kde-apps-15.08/print-manager.nix | 47 - pkgs/applications/kde-apps-15.08/srcs.nix | 1981 ----------------- pkgs/desktops/plasma-5.4/bluedevil.nix | 23 - pkgs/desktops/plasma-5.4/breeze-qt4.nix | 29 - pkgs/desktops/plasma-5.4/breeze-qt5.nix | 21 - pkgs/desktops/plasma-5.4/default.nix | 86 - pkgs/desktops/plasma-5.4/fetchsrcs.sh | 57 - pkgs/desktops/plasma-5.4/kde-cli-tools.nix | 27 - .../kde-gtk-config/0001-follow-symlinks.patch | 39 - .../plasma-5.4/kde-gtk-config/default.nix | 28 - pkgs/desktops/plasma-5.4/kdecoration.nix | 6 - pkgs/desktops/plasma-5.4/kdeplasma-addons.nix | 21 - pkgs/desktops/plasma-5.4/kgamma5.nix | 9 - pkgs/desktops/plasma-5.4/khelpcenter.nix | 20 - pkgs/desktops/plasma-5.4/khotkeys.nix | 16 - pkgs/desktops/plasma-5.4/kinfocenter.nix | 24 - pkgs/desktops/plasma-5.4/kmenuedit.nix | 19 - pkgs/desktops/plasma-5.4/kscreen.nix | 22 - pkgs/desktops/plasma-5.4/ksshaskpass.nix | 13 - pkgs/desktops/plasma-5.4/ksysguard.nix | 21 - pkgs/desktops/plasma-5.4/kwayland.nix | 14 - .../0001-qdiriterator-follow-symlinks.patch | 25 - pkgs/desktops/plasma-5.4/kwin/default.nix | 33 - pkgs/desktops/plasma-5.4/kwrited.nix | 10 - .../plasma-5.4/libkscreen/default.nix | 18 - .../libkscreen/libkscreen-backend-path.patch | 130 -- .../0001-qdiriterator-follow-symlinks.patch | 25 - .../plasma-5.4/libksysguard/default.nix | 21 - pkgs/desktops/plasma-5.4/milou.nix | 17 - pkgs/desktops/plasma-5.4/oxygen-fonts.nix | 12 - pkgs/desktops/plasma-5.4/oxygen.nix | 20 - .../plasma-desktop/0001-hwclock.patch | 36 - .../plasma-desktop/0002-zoneinfo.patch | 30 - .../0003-qt-5.5-QML-import-paths.patch | 67 - .../plasma-5.4/plasma-desktop/default.nix | 59 - .../plasma-5.4/plasma-mediacenter.nix | 23 - ...-mobile-broadband-provider-info-path.patch | 25 - .../desktops/plasma-5.4/plasma-nm/default.nix | 36 - pkgs/desktops/plasma-5.4/plasma-pa.nix | 17 - .../plasma-workspace-wallpapers.nix | 10 - .../0001-startkde-NixOS-patches.patch | 401 ---- .../0002-qt-5.5-QML-import-paths.patch | 123 - .../plasma-5.4/plasma-workspace/default.nix | 63 - pkgs/desktops/plasma-5.4/polkit-kde-agent.nix | 31 - pkgs/desktops/plasma-5.4/powerdevil.nix | 20 - pkgs/desktops/plasma-5.4/setup-hook.sh | 1 - pkgs/desktops/plasma-5.4/srcs.nix | 301 --- pkgs/desktops/plasma-5.4/systemsettings.nix | 21 - .../libraries/kde-frameworks-5.15/attica.nix | 11 - .../libraries/kde-frameworks-5.15/baloo.nix | 25 - .../kde-frameworks-5.15/bluez-qt.nix | 17 - .../libraries/kde-frameworks-5.15/default.nix | 112 - .../0001-extra-cmake-modules-paths.patch | 74 - .../extra-cmake-modules/default.nix | 18 - .../extra-cmake-modules/setup-hook.sh | 27 - .../kde-frameworks-5.15/fetchsrcs.sh | 57 - .../frameworkintegration.nix | 17 - .../kde-frameworks-5.15/kactivities.nix | 22 - .../libraries/kde-frameworks-5.15/kapidox.nix | 12 - .../kde-frameworks-5.15/karchive.nix | 11 - .../kde-frameworks-5.15/kauth/default.nix | 16 - .../kauth/kauth-policy-install.patch | 13 - .../kde-frameworks-5.15/kbookmarks.nix | 25 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.15/kcmutils/default.nix | 17 - .../libraries/kde-frameworks-5.15/kcodecs.nix | 11 - .../kde-frameworks-5.15/kcompletion.nix | 14 - .../libraries/kde-frameworks-5.15/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kconfigwidgets/default.nix | 17 - .../kde-frameworks-5.15/kcoreaddons.nix | 13 - .../libraries/kde-frameworks-5.15/kcrash.nix | 16 - .../kde-frameworks-5.15/kdbusaddons.nix | 17 - .../kde-frameworks-5.15/kdeclarative.nix | 22 - .../libraries/kde-frameworks-5.15/kded.nix | 19 - .../kde-frameworks-5.15/kdelibs4support.nix | 32 - .../kde-frameworks-5.15/kdesignerplugin.nix | 31 - .../libraries/kde-frameworks-5.15/kdesu.nix | 13 - .../kde-frameworks-5.15/kdewebkit.nix | 13 - .../libraries/kde-frameworks-5.15/kdnssd.nix | 13 - .../kde-frameworks-5.15/kdoctools/default.nix | 20 - .../kdoctools-no-find-docbook-xml.patch | 12 - .../kdoctools/setup-hook.sh | 5 - .../kde-frameworks-5.15/kemoticons.nix | 17 - .../kde-frameworks-5.15/kfilemetadata.nix | 13 - .../kde-frameworks-5.15/kglobalaccel.nix | 23 - .../kde-frameworks-5.15/kguiaddons.nix | 13 - .../libraries/kde-frameworks-5.15/khtml.nix | 21 - .../libraries/kde-frameworks-5.15/ki18n.nix | 16 - .../kde-frameworks-5.15/kiconthemes.nix | 13 - .../kde-frameworks-5.15/kidletime.nix | 15 - .../kde-frameworks-5.15/kimageformats.nix | 13 - .../kinit/0001-kinit-libpath.patch | 42 - .../kde-frameworks-5.15/kinit/default.nix | 17 - .../libraries/kde-frameworks-5.15/kio.nix | 30 - .../kde-frameworks-5.15/kitemmodels.nix | 11 - .../kde-frameworks-5.15/kitemviews.nix | 11 - .../kde-frameworks-5.15/kjobwidgets.nix | 16 - .../libraries/kde-frameworks-5.15/kjs.nix | 16 - .../kde-frameworks-5.15/kjsembed.nix | 17 - .../kde-frameworks-5.15/kmediaplayer.nix | 15 - .../kde-frameworks-5.15/knewstuff.nix | 17 - .../kde-frameworks-5.15/knotifications.nix | 21 - .../kde-frameworks-5.15/knotifyconfig.nix | 13 - .../kpackage/0001-allow-external-paths.patch | 25 - .../0002-qdiriterator-follow-symlinks.patch | 39 - .../kde-frameworks-5.15/kpackage/default.nix | 26 - .../libraries/kde-frameworks-5.15/kparts.nix | 17 - .../libraries/kde-frameworks-5.15/kpeople.nix | 15 - .../kde-frameworks-5.15/kplotting.nix | 11 - .../libraries/kde-frameworks-5.15/kpty.nix | 10 - .../libraries/kde-frameworks-5.15/kross.nix | 14 - .../libraries/kde-frameworks-5.15/krunner.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kservice/0002-no-canonicalize-path.patch | 25 - .../kde-frameworks-5.15/kservice/default.nix | 19 - .../kservice/setup-hook.sh | 43 - .../0001-no-qcoreapplication.patch | 48 - .../ktexteditor/default.nix | 18 - .../kde-frameworks-5.15/ktextwidgets.nix | 16 - .../kde-frameworks-5.15/kunitconversion.nix | 10 - .../libraries/kde-frameworks-5.15/kwallet.nix | 21 - .../kde-frameworks-5.15/kwidgetsaddons.nix | 11 - .../kde-frameworks-5.15/kwindowsystem.nix | 13 - .../libraries/kde-frameworks-5.15/kxmlgui.nix | 17 - .../kde-frameworks-5.15/kxmlrpcclient.nix | 10 - .../kde-frameworks-5.15/modemmanager-qt.nix | 13 - .../kde-frameworks-5.15/networkmanager-qt.nix | 13 - .../plasma-framework/default.nix | 25 - .../libraries/kde-frameworks-5.15/solid.nix | 17 - .../libraries/kde-frameworks-5.15/sonnet.nix | 13 - .../libraries/kde-frameworks-5.15/srcs.nix | 549 ----- .../kde-frameworks-5.15/threadweaver.nix | 11 - pkgs/top-level/all-packages.nix | 14 +- 163 files changed, 7 insertions(+), 7621 deletions(-) delete mode 100644 pkgs/applications/kde-apps-15.08/ark.nix delete mode 100644 pkgs/applications/kde-apps-15.08/baloo-widgets.nix delete mode 100644 pkgs/applications/kde-apps-15.08/default.nix delete mode 100644 pkgs/applications/kde-apps-15.08/dolphin-plugins.nix delete mode 100644 pkgs/applications/kde-apps-15.08/dolphin.nix delete mode 100755 pkgs/applications/kde-apps-15.08/fetchsrcs.sh delete mode 100644 pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix delete mode 100644 pkgs/applications/kde-apps-15.08/gpgmepp.nix delete mode 100644 pkgs/applications/kde-apps-15.08/gwenview.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kate.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kde-app.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kde-locale-4.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kde-locale-5.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/default.nix delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch delete mode 100644 pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh delete mode 100644 pkgs/applications/kde-apps-15.08/kgpg.nix delete mode 100644 pkgs/applications/kde-apps-15.08/konsole.nix delete mode 100644 pkgs/applications/kde-apps-15.08/ksnapshot.nix delete mode 100644 pkgs/applications/kde-apps-15.08/l10n.nix delete mode 100644 pkgs/applications/kde-apps-15.08/libkdcraw.nix delete mode 100644 pkgs/applications/kde-apps-15.08/libkexiv2.nix delete mode 100644 pkgs/applications/kde-apps-15.08/libkipi.nix delete mode 100644 pkgs/applications/kde-apps-15.08/okular.nix delete mode 100644 pkgs/applications/kde-apps-15.08/oxygen-icons.nix delete mode 100644 pkgs/applications/kde-apps-15.08/print-manager.nix delete mode 100644 pkgs/applications/kde-apps-15.08/srcs.nix delete mode 100644 pkgs/desktops/plasma-5.4/bluedevil.nix delete mode 100644 pkgs/desktops/plasma-5.4/breeze-qt4.nix delete mode 100644 pkgs/desktops/plasma-5.4/breeze-qt5.nix delete mode 100644 pkgs/desktops/plasma-5.4/default.nix delete mode 100755 pkgs/desktops/plasma-5.4/fetchsrcs.sh delete mode 100644 pkgs/desktops/plasma-5.4/kde-cli-tools.nix delete mode 100644 pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch delete mode 100644 pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/kdecoration.nix delete mode 100644 pkgs/desktops/plasma-5.4/kdeplasma-addons.nix delete mode 100644 pkgs/desktops/plasma-5.4/kgamma5.nix delete mode 100644 pkgs/desktops/plasma-5.4/khelpcenter.nix delete mode 100644 pkgs/desktops/plasma-5.4/khotkeys.nix delete mode 100644 pkgs/desktops/plasma-5.4/kinfocenter.nix delete mode 100644 pkgs/desktops/plasma-5.4/kmenuedit.nix delete mode 100644 pkgs/desktops/plasma-5.4/kscreen.nix delete mode 100644 pkgs/desktops/plasma-5.4/ksshaskpass.nix delete mode 100644 pkgs/desktops/plasma-5.4/ksysguard.nix delete mode 100644 pkgs/desktops/plasma-5.4/kwayland.nix delete mode 100644 pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/plasma-5.4/kwin/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/kwrited.nix delete mode 100644 pkgs/desktops/plasma-5.4/libkscreen/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch delete mode 100644 pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/plasma-5.4/libksysguard/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/milou.nix delete mode 100644 pkgs/desktops/plasma-5.4/oxygen-fonts.nix delete mode 100644 pkgs/desktops/plasma-5.4/oxygen.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-desktop/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-mediacenter.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-nm/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-pa.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix delete mode 100644 pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch delete mode 100644 pkgs/desktops/plasma-5.4/plasma-workspace/default.nix delete mode 100644 pkgs/desktops/plasma-5.4/polkit-kde-agent.nix delete mode 100644 pkgs/desktops/plasma-5.4/powerdevil.nix delete mode 100644 pkgs/desktops/plasma-5.4/setup-hook.sh delete mode 100644 pkgs/desktops/plasma-5.4/srcs.nix delete mode 100644 pkgs/desktops/plasma-5.4/systemsettings.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/attica.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/baloo.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh delete mode 100755 pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/karchive.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kauth/kauth-policy-install.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kded.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/khtml.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kidletime.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kio.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kjs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kpackage/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kparts.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kpeople.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kplotting.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kpty.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kross.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/krunner.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/solid.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/srcs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix diff --git a/pkgs/applications/kde-apps-15.08/ark.nix b/pkgs/applications/kde-apps-15.08/ark.nix deleted file mode 100644 index 36a1ca7cfbd..00000000000 --- a/pkgs/applications/kde-apps-15.08/ark.nix +++ /dev/null @@ -1,58 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, karchive -, kconfig -, kcrash -, kdbusaddons -, ki18n -, kiconthemes -, khtml -, kio -, kservice -, kpty -, kwidgetsaddons -, libarchive -, p7zip -, unrar -, unzipNLS -, zip -}: - -let PATH = lib.makeSearchPath "bin" [ - p7zip unrar unzipNLS zip - ]; -in - -kdeApp { - name = "ark"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - karchive - kconfig - kcrash - kdbusaddons - kiconthemes - kservice - kpty - kwidgetsaddons - libarchive - ]; - propagatedBuildInputs = [ - khtml - ki18n - kio - ]; - postInstall = '' - wrapQtProgram "$out/bin/ark" \ - --prefix PATH : "${PATH}" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/baloo-widgets.nix b/pkgs/applications/kde-apps-15.08/baloo-widgets.nix deleted file mode 100644 index a24928160df..00000000000 --- a/pkgs/applications/kde-apps-15.08/baloo-widgets.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kconfig -, kio -, ki18n -, kservice -, kfilemetadata -, baloo -, kdelibs4support -}: - -kdeApp { - name = "baloo-widgets"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig - kservice - ]; - propagatedBuildInputs = [ - baloo - kdelibs4support - kfilemetadata - ki18n - kio - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/default.nix b/pkgs/applications/kde-apps-15.08/default.nix deleted file mode 100644 index 8694ee0b264..00000000000 --- a/pkgs/applications/kde-apps-15.08/default.nix +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./manifest.sh to point to the updated URL. Upstream sometimes -# releases updates that include only the changed packages; in this case, -# multiple URLs can be provided and the results will be merged. -# 2. Run ./manifest.sh and ./dependencies.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - kdeApp = import ./kde-app.nix { - inherit stdenv lib; - inherit debug srcs; - }; - - packages = self: with self; { - kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; - - ark = callPackage ./ark.nix {}; - baloo-widgets = callPackage ./baloo-widgets.nix {}; - dolphin = callPackage ./dolphin.nix {}; - dolphin-plugins = callPackage ./dolphin-plugins.nix {}; - ffmpegthumbs = callPackage ./ffmpegthumbs.nix {}; - gpgmepp = callPackage ./gpgmepp.nix {}; - gwenview = callPackage ./gwenview.nix {}; - kate = callPackage ./kate.nix {}; - kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; - kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; - konsole = callPackage ./konsole.nix {}; - ksnapshot = callPackage ./ksnapshot.nix {}; - libkdcraw = callPackage ./libkdcraw.nix {}; - libkexiv2 = callPackage ./libkexiv2.nix {}; - libkipi = callPackage ./libkipi.nix {}; - okular = callPackage ./okular.nix {}; - oxygen-icons = callPackage ./oxygen-icons.nix {}; - print-manager = callPackage ./print-manager.nix {}; - - l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); - }; - - newScope = scope: pkgs.kf515.newScope ({ inherit kdeApp; } // scope); - -in lib.makeScope newScope packages diff --git a/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix b/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix deleted file mode 100644 index 72a08c73261..00000000000 --- a/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kxmlgui -, ki18n -, kio -, kdelibs4support -, dolphin -}: - -kdeApp { - name = "dolphin-plugins"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kxmlgui - dolphin - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kio - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/dolphin.nix b/pkgs/applications/kde-apps-15.08/dolphin.nix deleted file mode 100644 index 3218146f510..00000000000 --- a/pkgs/applications/kde-apps-15.08/dolphin.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, kinit -, kcmutils -, kcoreaddons -, knewstuff -, ki18n -, kdbusaddons -, kbookmarks -, kconfig -, kio -, kparts -, solid -, kiconthemes -, kcompletion -, ktexteditor -, kwindowsystem -, knotifications -, kactivities -, phonon -, baloo -, baloo-widgets -, kfilemetadata -, kdelibs4support -}: - -kdeApp { - name = "dolphin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kinit - kcmutils - kcoreaddons - knewstuff - kdbusaddons - kbookmarks - kconfig - kparts - solid - kiconthemes - kcompletion - knotifications - phonon - baloo-widgets - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kfilemetadata - ki18n - kio - ktexteditor - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/dolphin" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh b/pkgs/applications/kde-apps-15.08/fetchsrcs.sh deleted file mode 100755 index 126753e3ccc..00000000000 --- a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh +++ /dev/null @@ -1,56 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/stable/applications/15.08.3/ http://download.kde.org/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz -A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix b/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix deleted file mode 100644 index 64f7961e7c7..00000000000 --- a/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, ffmpeg -}: - -kdeApp { - name = "ffmpegthumbs"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - ffmpeg - ]; - meta = { - license = with lib.licenses; [ gpl2 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/gpgmepp.nix b/pkgs/applications/kde-apps-15.08/gpgmepp.nix deleted file mode 100644 index ac14573dcaa..00000000000 --- a/pkgs/applications/kde-apps-15.08/gpgmepp.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, boost -, gpgme -}: - -kdeApp { - name = "gpgmepp"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - boost - gpgme - ]; - meta = { - license = with lib.licenses; [ lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/gwenview.nix b/pkgs/applications/kde-apps-15.08/gwenview.nix deleted file mode 100644 index 732ac11e96d..00000000000 --- a/pkgs/applications/kde-apps-15.08/gwenview.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, baloo -, exiv2 -, kactivities -, kdelibs4support -, kio -, lcms2 -, phonon -, qtsvg -, qtx11extras -}: - -kdeApp { - name = "gwenview"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - exiv2 - lcms2 - phonon - qtsvg - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kio - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/gwenview" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kate.nix b/pkgs/applications/kde-apps-15.08/kate.nix deleted file mode 100644 index 91eeb2314a4..00000000000 --- a/pkgs/applications/kde-apps-15.08/kate.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, qtscript -, kactivities -, kconfig -, kcrash -, kguiaddons -, kiconthemes -, ki18n -, kinit -, kjobwidgets -, kio -, kparts -, ktexteditor -, kwindowsystem -, kxmlgui -, kdbusaddons -, kwallet -, plasma-framework -, kitemmodels -, knotifications -, threadweaver -, knewstuff -, libgit2 -}: - -kdeApp { - name = "kate"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - qtscript - kconfig - kcrash - kguiaddons - kiconthemes - kinit - kjobwidgets - kparts - kxmlgui - kdbusaddons - kwallet - kitemmodels - knotifications - threadweaver - knewstuff - libgit2 - ]; - propagatedBuildInputs = [ - kactivities - ki18n - kio - ktexteditor - kwindowsystem - plasma-framework - ]; - postInstall = '' - wrapQtProgram "$out/bin/kate" - wrapQtProgram "$out/bin/kwrite" - ''; - meta = { - license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kde-app.nix b/pkgs/applications/kde-apps-15.08/kde-app.nix deleted file mode 100644 index 242f3d9c793..00000000000 --- a/pkgs/applications/kde-apps-15.08/kde-app.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, lib, debug, srcs }: - -args: - -let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; -in -stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); -}) diff --git a/pkgs/applications/kde-apps-15.08/kde-locale-4.nix b/pkgs/applications/kde-apps-15.08/kde-locale-4.nix deleted file mode 100644 index 4b612ee3e3c..00000000000 --- a/pkgs/applications/kde-apps-15.08/kde-locale-4.nix +++ /dev/null @@ -1,20 +0,0 @@ -name: args: - -{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt4"; - - nativeBuildInputs = - [ automoc4 cmake gettext perl ] - ++ (args.nativeBuildInputs or []); - buildInputs = - [ kdelibs ] - ++ (args.buildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; -}) diff --git a/pkgs/applications/kde-apps-15.08/kde-locale-5.nix b/pkgs/applications/kde-apps-15.08/kde-locale-5.nix deleted file mode 100644 index 522fc542aeb..00000000000 --- a/pkgs/applications/kde-apps-15.08/kde-locale-5.nix +++ /dev/null @@ -1,17 +0,0 @@ -name: args: - -{ kdeApp, cmake, extra-cmake-modules, gettext, kdoctools }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt5"; - - nativeBuildInputs = - [ cmake extra-cmake-modules gettext kdoctools ] - ++ (args.nativeBuildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(4)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; -}) diff --git a/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix b/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix deleted file mode 100644 index 027b8248c5c..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkexiv2 -, libkdcraw -}: - -kdeApp { - name = "kdegraphics-thumbnailers"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkexiv2 - libkdcraw - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch deleted file mode 100644 index b7d7300e9a8..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch +++ /dev/null @@ -1,56 +0,0 @@ -From b43c49109694940f0a26240753e879eb629dd02d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 7 Sep 2015 13:54:57 -0500 -Subject: [PATCH 1/2] old kde4 cmake policies - ---- - cmake/modules/FindKDE4Internal.cmake | 33 +++++++++++++++++++++++++++++++++ - 1 file changed, 33 insertions(+) - -diff --git a/cmake/modules/FindKDE4Internal.cmake b/cmake/modules/FindKDE4Internal.cmake -index 7d54b9b..c435571 100644 ---- a/cmake/modules/FindKDE4Internal.cmake -+++ b/cmake/modules/FindKDE4Internal.cmake -@@ -345,6 +345,39 @@ - # Redistribution and use is allowed according to the terms of the BSD license. - # For details see the accompanying COPYING-CMAKE-SCRIPTS file. - -+# this is required now by cmake 2.6 and so must not be skipped by if(KDE4_FOUND) below -+cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR) -+# set the cmake policies to the 2.4.x compatibility settings (may change for KDE 4.3) -+cmake_policy(VERSION 2.4.5) -+ -+# CMake 2.6, set compatibility behaviour to cmake 2.4 -+# this must be executed always, because the CMAKE_MINIMUM_REQUIRED() command above -+# resets the policy settings, so we get a lot of warnings -+ -+# CMP0000: don't require cmake_minimum_version() directly in the top level CMakeLists.txt, FindKDE4Internal.cmake is good enough -+cmake_policy(SET CMP0000 OLD) -+# CMP0002: in KDE4 we have multiple targets with the same name for the unit tests -+cmake_policy(SET CMP0002 OLD) -+# CMP0003: add the link paths to the link command as with cmake 2.4 -+cmake_policy(SET CMP0003 OLD) -+# CMP0005: keep escaping behaviour for definitions added via add_definitions() -+cmake_policy(SET CMP0005 OLD) -+# since cmake 2.6.3: NEW behaviour is that setting policies doesn't "escape" the file -+# where this is done, macros and functions are executed with the policies as they -+# were when the were defined. Keep the OLD behaviour so we can set the policies here -+# for all KDE software without the big warning -+cmake_policy(SET CMP0011 OLD) -+ -+# since cmake 2.8.4: when include()ing from inside cmake's module dir, prefer the files -+# in this directory over those from CMAKE_MODULE_PATH -+cmake_policy(SET CMP0017 NEW) -+ -+# since cmake 3.0: use of the LOCATION target property is disallowed while it is used in KDE4Macros.cmake -+if (POLICY CMP0026) -+ cmake_policy(SET CMP0026 OLD) -+endif (POLICY CMP0026) -+ -+ - # Only do something if it hasn't been found yet - if(NOT KDE4_FOUND) - --- -2.5.0 - diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch b/pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch deleted file mode 100644 index ff0306ea148..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From fab35bac146a817f3af80f45531355fd70cd226b Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 7 Sep 2015 13:56:03 -0500 -Subject: [PATCH 2/2] polkit install path - ---- - kdecore/auth/ConfigureChecks.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/kdecore/auth/ConfigureChecks.cmake b/kdecore/auth/ConfigureChecks.cmake -index 7cf9cb5..c8334ae 100644 ---- a/kdecore/auth/ConfigureChecks.cmake -+++ b/kdecore/auth/ConfigureChecks.cmake -@@ -150,7 +150,7 @@ elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "POLKITQT-1") - ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR - ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) - -- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING -+ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING - "Where policy files generated by KAuth will be installed" FORCE) - elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") - set (KAUTH_COMPILING_FAKE_BACKEND TRUE) --- -2.5.0 - diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch deleted file mode 100644 index a79d7b2b7d1..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/kdecore/kernel/kstandarddirs.cpp b/kdecore/kernel/kstandarddirs.cpp -index ab8f76d..2ae5089 100644 ---- a/kdecore/kernel/kstandarddirs.cpp -+++ b/kdecore/kernel/kstandarddirs.cpp -@@ -1768,12 +1768,6 @@ void KStandardDirs::addKDEDefaults() - else - { - xdgdirList.clear(); -- xdgdirList.append(QString::fromLatin1("/etc/xdg")); --#ifdef Q_WS_WIN -- xdgdirList.append(installPath("kdedir") + QString::fromLatin1("etc/xdg")); --#else -- xdgdirList.append(QFile::decodeName(KDESYSCONFDIR "/xdg")); --#endif - } - - QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); -@@ -1821,10 +1815,6 @@ void KStandardDirs::addKDEDefaults() - } - } else { - xdgdirList = kdedirDataDirs; --#ifndef Q_WS_WIN -- xdgdirList.append(QString::fromLatin1("/usr/local/share/")); -- xdgdirList.append(QString::fromLatin1("/usr/share/")); --#endif - } - - localXdgDir = readEnvPath("XDG_DATA_HOME"); -diff --git a/solid/solid/xdgbasedirs.cpp b/solid/solid/xdgbasedirs.cpp -index 4c9cad9..6849d45 100644 ---- a/solid/solid/xdgbasedirs.cpp -+++ b/solid/solid/xdgbasedirs.cpp -@@ -70,12 +70,12 @@ QStringList Solid::XdgBaseDirs::systemPathList( const char *resource ) - { - if ( qstrncmp( "data", resource, 4 ) == 0 ) { - if ( instance()->mDataDirs.isEmpty() ) { -- instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "/usr/local/share:/usr/share" ); -+ instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "" ); - } - return instance()->mDataDirs; - } else if ( qstrncmp( "config", resource, 6 ) == 0 ) { - if ( instance()->mConfigDirs.isEmpty() ) { -- instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "/etc/xdg" ); -+ instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "" ); - } - return instance()->mConfigDirs; - } diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/default.nix b/pkgs/applications/kde-apps-15.08/kdelibs/default.nix deleted file mode 100644 index a30b19774f2..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ kdeApp, attica, attr, automoc4, avahi, bison, cmake -, docbook_xml_dtd_42, docbook_xsl, flex, giflib, ilmbase -, libdbusmenu_qt, libjpeg, libxml2, libxslt, perl, phonon, pkgconfig -, polkit_qt4, qca2, qt4, shared_desktop_ontologies, shared_mime_info -, soprano, strigi, udev, xz -, lib -}: - -kdeApp { - name = "kdelibs"; - - buildInputs = [ - attica attr avahi giflib libdbusmenu_qt libjpeg libxml2 - polkit_qt4 qca2 shared_desktop_ontologies udev xz - ]; - propagatedBuildInputs = [ qt4 soprano phonon strigi ]; - nativeBuildInputs = [ - automoc4 bison cmake flex libxslt perl pkgconfig shared_mime_info - ]; - - patches = [ - ./0001-old-kde4-cmake-policies.patch - ./0002-polkit-install-path.patch - ./0003-remove_xdg_impurities.patch - ]; - - # cmake does not detect path to `ilmbase` - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - - cmakeFlags = [ - "-DDOCBOOKXML_CURRENTDTD_DIR=${docbook_xml_dtd_42}/xml/dtd/docbook" - "-DDOCBOOKXSL_DIR=${docbook_xsl}/xml/xsl/docbook" - "-DWITH_SOLID_UDISKS2=ON" - "-DKDE_DEFAULT_HOME=.kde" - ]; - - setupHook = ./setup-hook.sh; - - meta = { - licenses = with lib.licenses; [ gpl2 fdl12 lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch b/pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch deleted file mode 100644 index d2ecac663ec..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru -x '*~' kdelibs-4.6.90-orig/kdecore/auth/ConfigureChecks.cmake kdelibs-4.6.90/kdecore/auth/ConfigureChecks.cmake ---- kdelibs-4.6.90-orig/kdecore/auth/ConfigureChecks.cmake 2011-05-20 22:24:54.000000000 +0200 -+++ kdelibs-4.6.90/kdecore/auth/ConfigureChecks.cmake 2011-07-12 14:03:00.000000000 +0200 -@@ -139,7 +139,7 @@ - ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR - ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) - -- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING -+ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING - "Where policy files generated by KAuth will be installed" FORCE) - elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") - set (KAUTH_COMPILING_FAKE_BACKEND TRUE) diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh b/pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh deleted file mode 100644 index e0a75dc8acd..00000000000 --- a/pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh +++ /dev/null @@ -1,10 +0,0 @@ -addQt4Plugins() { - if [[ -d "$1/lib/qt4/plugins" ]]; then - propagatedUserEnvPkgs+=" $1" - fi - - if [[ -d "$1/lib/kde4/plugins" ]]; then - propagatedUserEnvPkgs+=" $1" - fi -} -envHooks+=(addQt4Plugins) diff --git a/pkgs/applications/kde-apps-15.08/kgpg.nix b/pkgs/applications/kde-apps-15.08/kgpg.nix deleted file mode 100644 index 3ee92519718..00000000000 --- a/pkgs/applications/kde-apps-15.08/kgpg.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, makeWrapper -, perl -, pkgconfig -, boost -, gpgme -, kdelibs -, kdepimlibs -, gnupg -}: - -kdeApp { - name = "kgpg"; - nativeBuildInputs = [ - automoc4 - cmake - makeWrapper - perl - pkgconfig - ]; - buildInputs = [ - boost - gpgme - kdelibs - kdepimlibs - ]; - postInstall = '' - wrapProgram "$out/bin/kgpg" \ - --prefix PATH : "${gnupg}/bin" - ''; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/konsole.nix b/pkgs/applications/kde-apps-15.08/konsole.nix deleted file mode 100644 index 4b4cba2a377..00000000000 --- a/pkgs/applications/kde-apps-15.08/konsole.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, qtscript -, kbookmarks -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kguiaddons -, ki18n -, kiconthemes -, kinit -, kdelibs4support -, kio -, knotifications -, knotifyconfig -, kparts -, kpty -, kservice -, ktextwidgets -, kwidgetsaddons -, kwindowsystem -, kxmlgui -}: - -kdeApp { - name = "konsole"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - qtscript - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kguiaddons - kiconthemes - kinit - kio - knotifications - knotifyconfig - kparts - kpty - kservice - ktextwidgets - kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/konsole" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/ksnapshot.nix b/pkgs/applications/kde-apps-15.08/ksnapshot.nix deleted file mode 100644 index b757f4f0403..00000000000 --- a/pkgs/applications/kde-apps-15.08/ksnapshot.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkipi -, libXfixes -}: - -kdeApp { - name = "ksnapshot"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkipi - libXfixes - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/l10n.nix b/pkgs/applications/kde-apps-15.08/l10n.nix deleted file mode 100644 index 7a9f1c36cbf..00000000000 --- a/pkgs/applications/kde-apps-15.08/l10n.nix +++ /dev/null @@ -1,231 +0,0 @@ -{ callPackage, pkgs, lib }: - -let - - kdeLocale4 = import ./kde-locale-4.nix; - kdeLocale5 = import ./kde-locale-5.nix; - -in - -lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { - ar = { - qt4 = callPackage (kdeLocale4 "ar" {}) {}; - qt5 = callPackage (kdeLocale5 "ar" {}) {}; - }; - bg = { - qt4 = callPackage (kdeLocale4 "bg" {}) {}; - qt5 = callPackage (kdeLocale5 "bg" {}) {}; - }; - bs = { - qt4 = callPackage (kdeLocale4 "bs" {}) {}; - qt5 = callPackage (kdeLocale5 "bs" {}) {}; - }; - ca = { - qt4 = callPackage (kdeLocale4 "ca" {}) {}; - qt5 = callPackage (kdeLocale5 "ca" {}) {}; - }; - ca_valencia = { - qt4 = callPackage (kdeLocale4 "ca_valencia" {}) {}; - qt5 = callPackage (kdeLocale5 "ca_valencia" {}) {}; - }; - cs = { - qt4 = callPackage (kdeLocale4 "cs" {}) {}; - qt5 = callPackage (kdeLocale5 "cs" {}) {}; - }; - da = { - qt4 = callPackage (kdeLocale4 "da" {}) {}; - qt5 = callPackage (kdeLocale5 "da" {}) {}; - }; - de = { - qt4 = callPackage (kdeLocale4 "de" {}) {}; - qt5 = callPackage (kdeLocale5 "de" {}) {}; - }; - el = { - qt4 = callPackage (kdeLocale4 "el" {}) {}; - qt5 = callPackage (kdeLocale5 "el" {}) {}; - }; - en_GB = { - qt4 = callPackage (kdeLocale4 "en_GB" {}) {}; - qt5 = callPackage (kdeLocale5 "en_GB" {}) {}; - }; - eo = { - qt4 = callPackage (kdeLocale4 "eo" {}) {}; - qt5 = callPackage (kdeLocale5 "eo" {}) {}; - }; - es = { - qt4 = callPackage (kdeLocale4 "es" {}) {}; - qt5 = callPackage (kdeLocale5 "es" {}) {}; - }; - et = { - qt4 = callPackage (kdeLocale4 "et" {}) {}; - qt5 = callPackage (kdeLocale5 "et" {}) {}; - }; - eu = { - qt4 = callPackage (kdeLocale4 "eu" {}) {}; - qt5 = callPackage (kdeLocale5 "eu" {}) {}; - }; - fa = { - qt4 = callPackage (kdeLocale4 "fa" {}) {}; - qt5 = callPackage (kdeLocale5 "fa" {}) {}; - }; - fi = { - qt4 = callPackage (kdeLocale4 "fi" {}) {}; - qt5 = callPackage (kdeLocale5 "fi" {}) {}; - }; - fr = { - qt4 = callPackage (kdeLocale4 "fr" {}) {}; - qt5 = callPackage (kdeLocale5 "fr" {}) {}; - }; - ga = { - qt4 = callPackage (kdeLocale4 "ga" {}) {}; - qt5 = callPackage (kdeLocale5 "ga" {}) {}; - }; - gl = { - qt4 = callPackage (kdeLocale4 "gl" {}) {}; - qt5 = callPackage (kdeLocale5 "gl" {}) {}; - }; - he = { - qt4 = callPackage (kdeLocale4 "he" {}) {}; - qt5 = callPackage (kdeLocale5 "he" {}) {}; - }; - hi = { - qt4 = callPackage (kdeLocale4 "hi" {}) {}; - qt5 = callPackage (kdeLocale5 "hi" {}) {}; - }; - hr = { - qt4 = callPackage (kdeLocale4 "hr" {}) {}; - qt5 = callPackage (kdeLocale5 "hr" {}) {}; - }; - hu = { - qt4 = callPackage (kdeLocale4 "hu" {}) {}; - qt5 = callPackage (kdeLocale5 "hu" {}) {}; - }; - ia = { - qt4 = callPackage (kdeLocale4 "ia" {}) {}; - qt5 = callPackage (kdeLocale5 "ia" {}) {}; - }; - id = { - qt4 = callPackage (kdeLocale4 "id" {}) {}; - qt5 = callPackage (kdeLocale5 "id" {}) {}; - }; - is = { - qt4 = callPackage (kdeLocale4 "is" {}) {}; - qt5 = callPackage (kdeLocale5 "is" {}) {}; - }; - it = { - qt4 = callPackage (kdeLocale4 "it" {}) {}; - qt5 = callPackage (kdeLocale5 "it" {}) {}; - }; - ja = { - qt4 = callPackage (kdeLocale4 "ja" {}) {}; - qt5 = callPackage (kdeLocale5 "ja" {}) {}; - }; - kk = { - qt4 = callPackage (kdeLocale4 "kk" {}) {}; - qt5 = callPackage (kdeLocale5 "kk" {}) {}; - }; - km = { - qt4 = callPackage (kdeLocale4 "km" {}) {}; - qt5 = callPackage (kdeLocale5 "km" {}) {}; - }; - ko = { - qt4 = callPackage (kdeLocale4 "ko" {}) {}; - qt5 = callPackage (kdeLocale5 "ko" {}) {}; - }; - lt = { - qt4 = callPackage (kdeLocale4 "lt" {}) {}; - qt5 = callPackage (kdeLocale5 "lt" {}) {}; - }; - lv = { - qt4 = callPackage (kdeLocale4 "lv" {}) {}; - qt5 = callPackage (kdeLocale5 "lv" {}) {}; - }; - mr = { - qt4 = callPackage (kdeLocale4 "mr" {}) {}; - qt5 = callPackage (kdeLocale5 "mr" {}) {}; - }; - nb = { - qt4 = callPackage (kdeLocale4 "nb" {}) {}; - qt5 = callPackage (kdeLocale5 "nb" {}) {}; - }; - nds = { - qt4 = callPackage (kdeLocale4 "nds" {}) {}; - qt5 = callPackage (kdeLocale5 "nds" {}) {}; - }; - nl = { - qt4 = callPackage (kdeLocale4 "nl" {}) {}; - qt5 = callPackage (kdeLocale5 "nl" {}) {}; - }; - nn = { - qt4 = callPackage (kdeLocale4 "nn" {}) {}; - qt5 = callPackage (kdeLocale5 "nn" {}) {}; - }; - pa = { - qt4 = callPackage (kdeLocale4 "pa" {}) {}; - qt5 = callPackage (kdeLocale5 "pa" {}) {}; - }; - pl = { - qt4 = callPackage (kdeLocale4 "pl" {}) {}; - qt5 = callPackage (kdeLocale5 "pl" {}) {}; - }; - pt = { - qt4 = callPackage (kdeLocale4 "pt" {}) {}; - qt5 = callPackage (kdeLocale5 "pt" {}) {}; - }; - pt_BR = { - qt4 = callPackage (kdeLocale4 "pt_BR" {}) {}; - qt5 = callPackage (kdeLocale5 "pt_BR" {}) {}; - }; - ro = { - qt4 = callPackage (kdeLocale4 "ro" {}) {}; - qt5 = callPackage (kdeLocale5 "ro" {}) {}; - }; - ru = { - qt4 = callPackage (kdeLocale4 "ru" {}) {}; - qt5 = callPackage (kdeLocale5 "ru" {}) {}; - }; - sk = { - qt4 = callPackage (kdeLocale4 "sk" {}) {}; - qt5 = callPackage (kdeLocale5 "sk" {}) {}; - }; - sl = { - qt4 = callPackage (kdeLocale4 "sl" {}) {}; - qt5 = callPackage (kdeLocale5 "sl" {}) {}; - }; - sr = { - qt4 = callPackage (kdeLocale4 "sr" {}) {}; - qt5 = callPackage (kdeLocale5 "sr" { - preConfigure = '' - sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt - ''; - }) {}; - }; - sv = { - qt4 = callPackage (kdeLocale4 "sv" {}) {}; - qt5 = callPackage (kdeLocale5 "sv" {}) {}; - }; - tr = { - qt4 = callPackage (kdeLocale4 "tr" {}) {}; - qt5 = callPackage (kdeLocale5 "tr" {}) {}; - }; - ug = { - qt4 = callPackage (kdeLocale4 "ug" {}) {}; - qt5 = callPackage (kdeLocale5 "ug" {}) {}; - }; - uk = { - qt4 = callPackage (kdeLocale4 "uk" {}) {}; - qt5 = callPackage (kdeLocale5 "uk" {}) {}; - }; - wa = { - qt4 = callPackage (kdeLocale4 "wa" {}) {}; - qt5 = callPackage (kdeLocale5 "wa" {}) {}; - }; - zh_CN = { - qt4 = callPackage (kdeLocale4 "zh_CN" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_CN" {}) {}; - }; - zh_TW = { - qt4 = callPackage (kdeLocale4 "zh_TW" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_TW" {}) {}; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkdcraw.nix b/pkgs/applications/kde-apps-15.08/libkdcraw.nix deleted file mode 100644 index 8b19e9f90c6..00000000000 --- a/pkgs/applications/kde-apps-15.08/libkdcraw.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, libraw -, kdelibs -}: - -kdeApp { - name = "libkdcraw"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libraw - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkexiv2.nix b/pkgs/applications/kde-apps-15.08/libkexiv2.nix deleted file mode 100644 index 8ed84236955..00000000000 --- a/pkgs/applications/kde-apps-15.08/libkexiv2.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, exiv2 -, kdelibs -}: - -kdeApp { - name = "libkexiv2"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - exiv2 - kdelibs - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkipi.nix b/pkgs/applications/kde-apps-15.08/libkipi.nix deleted file mode 100644 index a9053b467f9..00000000000 --- a/pkgs/applications/kde-apps-15.08/libkipi.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -}: - -kdeApp { - name = "libkipi"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/okular.nix b/pkgs/applications/kde-apps-15.08/okular.nix deleted file mode 100644 index 0691325d7a5..00000000000 --- a/pkgs/applications/kde-apps-15.08/okular.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qimageblitz -, poppler_qt4 -, libspectre -, libkexiv2 -, djvulibre -, libtiff -, freetype -, ebook_tools -}: - -kdeApp { - name = "okular"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - qimageblitz - poppler_qt4 - libspectre - libkexiv2 - djvulibre - libtiff - freetype - ebook_tools - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/oxygen-icons.nix b/pkgs/applications/kde-apps-15.08/oxygen-icons.nix deleted file mode 100644 index 4f9a92dffdd..00000000000 --- a/pkgs/applications/kde-apps-15.08/oxygen-icons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeApp -, lib -, cmake -}: - -kdeApp { - name = "oxygen-icons"; - nativeBuildInputs = [ cmake ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/print-manager.nix b/pkgs/applications/kde-apps-15.08/print-manager.nix deleted file mode 100644 index b4eab372789..00000000000 --- a/pkgs/applications/kde-apps-15.08/print-manager.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, qtdeclarative -, cups -, kconfig -, kconfigwidgets -, kdbusaddons -, kiconthemes -, ki18n -, kcmutils -, kio -, knotifications -, plasma-framework -, kwidgetsaddons -, kwindowsystem -, kitemviews -}: - -kdeApp { - name = "print-manager"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - cups - kconfig - kconfigwidgets - kdbusaddons - kiconthemes - kcmutils - knotifications - kwidgetsaddons - kitemviews - ]; - propagatedBuildInputs = [ - ki18n - kio - kwindowsystem - plasma-framework - qtdeclarative - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/srcs.nix b/pkgs/applications/kde-apps-15.08/srcs.nix deleted file mode 100644 index d0187495729..00000000000 --- a/pkgs/applications/kde-apps-15.08/srcs.nix +++ /dev/null @@ -1,1981 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - akonadi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-15.08.3.tar.xz"; - sha256 = "0v7zwvixfpf5fskxlamvmyaagb2vxqkw81fzsb4yiyq8493lm0mf"; - name = "akonadi-15.08.3.tar.xz"; - }; - }; - akonadi-calendar = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-calendar-15.08.3.tar.xz"; - sha256 = "11mp32k71pa9f6gkqmm1dkia1ljcr9wdx4iyb9ys8fm580xxk5gv"; - name = "akonadi-calendar-15.08.3.tar.xz"; - }; - }; - akonadi-search = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-search-15.08.3.tar.xz"; - sha256 = "10iwmb76yijqpagvsjgwyksq1j3j61ihv2hmi09z44zz4w171vzb"; - name = "akonadi-search-15.08.3.tar.xz"; - }; - }; - amor = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/amor-15.08.3.tar.xz"; - sha256 = "0jci7yvxc1z7kcs1sw85dvsvz2c2ak2szxlf5bz09msgpxgb0xxc"; - name = "amor-15.08.3.tar.xz"; - }; - }; - analitza = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/analitza-15.08.3.tar.xz"; - sha256 = "174s4qd0j6yx4r8vn7ak598d5kiyhqzy2cc4l7iynpyqs28ybpwi"; - name = "analitza-15.08.3.tar.xz"; - }; - }; - ark = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ark-15.08.3.tar.xz"; - sha256 = "0w61ifdwhv6prnxryqsz4ka7508jj4w3zj4c2x34lv2g9q05fw21"; - name = "ark-15.08.3.tar.xz"; - }; - }; - artikulate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/artikulate-15.08.3.tar.xz"; - sha256 = "0bsdjjr5zyl57iagxd1vb1g5zz1w6k85788pwp1rkvwwv7qmdcng"; - name = "artikulate-15.08.3.tar.xz"; - }; - }; - audiocd-kio = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/audiocd-kio-15.08.3.tar.xz"; - sha256 = "09v5a6r8ks5zaxd1p35wqngnaprfww0wvzkjlxs0j2wf7v4in0kb"; - name = "audiocd-kio-15.08.3.tar.xz"; - }; - }; - baloo-widgets = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/baloo-widgets-15.08.3.tar.xz"; - sha256 = "0lavpqv798cfnfpdxn7ypwh77550kky2ar7l3nsi5jczkk2n0kza"; - name = "baloo-widgets-15.08.3.tar.xz"; - }; - }; - blinken = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz"; - sha256 = "00r2yjvj3g1lj0lzvwf0xjgras8fmqllgdy5d8ij5ihg7bb9l3rq"; - name = "blinken-15.08.3.tar.xz"; - }; - }; - bomber = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/bomber-15.08.3.tar.xz"; - sha256 = "084prrbpc5wscbh4w04r4452fs7zkklmfc1mga1ba2wp1fpf24yc"; - name = "bomber-15.08.3.tar.xz"; - }; - }; - bovo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/bovo-15.08.3.tar.xz"; - sha256 = "0fzwp9n0fn16z3r60ry9zn1acs76dyzrkrl45jv927zk4x7pk5vi"; - name = "bovo-15.08.3.tar.xz"; - }; - }; - cantor = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/cantor-15.08.3.tar.xz"; - sha256 = "0fyy7wda6cd1vnw8whnadfa4hlw5yjw3npv0wdnxql426ig33dd1"; - name = "cantor-15.08.3.tar.xz"; - }; - }; - cervisia = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/cervisia-15.08.3.tar.xz"; - sha256 = "083cw5yh63lkkgv68hynnkx9b8y9myz5h92vbh17vrza07w94zmi"; - name = "cervisia-15.08.3.tar.xz"; - }; - }; - dolphin = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dolphin-15.08.3.tar.xz"; - sha256 = "188a7yhk93rw8hhab852357jgygji5g45irs063hg47k1kms5vgm"; - name = "dolphin-15.08.3.tar.xz"; - }; - }; - dolphin-plugins = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dolphin-plugins-15.08.3.tar.xz"; - sha256 = "1jgq418p72g804kkw10n3rawdky750fpq3wbwbdckxwjybanqd7y"; - name = "dolphin-plugins-15.08.3.tar.xz"; - }; - }; - dragon = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dragon-15.08.3.tar.xz"; - sha256 = "0agncn4c0dbrrnz1rjmnrz9hxlqpavb9nb6zxzcyn30ssmy553qg"; - name = "dragon-15.08.3.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ffmpegthumbs-15.08.3.tar.xz"; - sha256 = "15sbfhirys5qj25ns768agq2nanr6q1zyvmm4mbjqasl5rckxkmk"; - name = "ffmpegthumbs-15.08.3.tar.xz"; - }; - }; - filelight = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/filelight-15.08.3.tar.xz"; - sha256 = "0l6bvpxybcf1y2w12q8c9ixa5hgvs6sxa99hmyjxybj2icylr322"; - name = "filelight-15.08.3.tar.xz"; - }; - }; - gpgmepp = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/gpgmepp-15.08.3.tar.xz"; - sha256 = "03nl1zs9lsba0a9ba4qi5kn7l76g3135g7lbf9vfm9pvgl38bdfs"; - name = "gpgmepp-15.08.3.tar.xz"; - }; - }; - granatier = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/granatier-15.08.3.tar.xz"; - sha256 = "1k0pvvygzw5mzakpnrlwqc4rrdqkdbk5y5bw2r44m4594r5vkyfg"; - name = "granatier-15.08.3.tar.xz"; - }; - }; - gwenview = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/gwenview-15.08.3.tar.xz"; - sha256 = "1fdwh2ksivvliz46hzmha36kx1308ixz7zbmxiwfl0z4g49x28k6"; - name = "gwenview-15.08.3.tar.xz"; - }; - }; - jovie = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/jovie-15.08.3.tar.xz"; - sha256 = "1cxkgxkzj8g75jwbfzfc09fb9y3100yk56951vihifgbhilclh5r"; - name = "jovie-15.08.3.tar.xz"; - }; - }; - kaccessible = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccessible-15.08.3.tar.xz"; - sha256 = "16a9jvziq4xlc88ypd7qaqnx4dz5cr61l5gqkl3fhlrfc98aqnsm"; - name = "kaccessible-15.08.3.tar.xz"; - }; - }; - kaccounts-integration = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccounts-integration-15.08.3.tar.xz"; - sha256 = "146z5lgfy5gpwmyl7gx0qzv3za84g34rq5fqfj8xkw2ww65ncwgs"; - name = "kaccounts-integration-15.08.3.tar.xz"; - }; - }; - kaccounts-providers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccounts-providers-15.08.3.tar.xz"; - sha256 = "1nmdfb630k6bs0qzmzl1cl6xsz60nsk6w5kz5qildwgk6ll36dgx"; - name = "kaccounts-providers-15.08.3.tar.xz"; - }; - }; - kajongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kajongg-15.08.3.tar.xz"; - sha256 = "1xxqxwri5havnmdncqqpi8q0r69mnkf9qbpjzggxq4ciqc99hg8k"; - name = "kajongg-15.08.3.tar.xz"; - }; - }; - kalarmcal = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalarmcal-15.08.3.tar.xz"; - sha256 = "0vaz3b8wp02qbx4xjj5wqx9vsy7jibhiwr60gl8nimjnyczxnr01"; - name = "kalarmcal-15.08.3.tar.xz"; - }; - }; - kalgebra = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalgebra-15.08.3.tar.xz"; - sha256 = "1p1zq9lfwakawgnv99n17qxj7bx390pglk6v3j56l2p3zlsqjil1"; - name = "kalgebra-15.08.3.tar.xz"; - }; - }; - kalzium = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalzium-15.08.3.tar.xz"; - sha256 = "0bz8qv0nmf7ysh47zmwhvwwi7vnb3kd190ci1sg7xdm342xdzdi1"; - name = "kalzium-15.08.3.tar.xz"; - }; - }; - kamera = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kamera-15.08.3.tar.xz"; - sha256 = "1jlywxbsa52rqlzm0lmq2xbz18r56s0jgwylmwja5rjcm0wp58hz"; - name = "kamera-15.08.3.tar.xz"; - }; - }; - kanagram = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kanagram-15.08.3.tar.xz"; - sha256 = "1nlz18ih95ppc7csqzbiix4my7xin8plf5wn55x7pp8jj6q44l2d"; - name = "kanagram-15.08.3.tar.xz"; - }; - }; - kapman = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kapman-15.08.3.tar.xz"; - sha256 = "1i125fkk9lj2azlhcvjxdli53lay0073f81n9vv3fkjyfkmdch2d"; - name = "kapman-15.08.3.tar.xz"; - }; - }; - kapptemplate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kapptemplate-15.08.3.tar.xz"; - sha256 = "05hh09h58s4b32njf83viplmafbg4lw8zqp0qsyacdn37cid51a8"; - name = "kapptemplate-15.08.3.tar.xz"; - }; - }; - kate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kate-15.08.3.tar.xz"; - sha256 = "0d31ph43d83mn806yfpj7w630r7rwsj0js6qp9738865il5c4428"; - name = "kate-15.08.3.tar.xz"; - }; - }; - katomic = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/katomic-15.08.3.tar.xz"; - sha256 = "144vchhis0ngg49h1znabx2kp02jfqyh04lq9sdndaawa729d2f6"; - name = "katomic-15.08.3.tar.xz"; - }; - }; - kblackbox = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblackbox-15.08.3.tar.xz"; - sha256 = "16h4z8aagx8f161fyzzli0hdyqipsc9bl3pnicnkm9fcxlkrs1hj"; - name = "kblackbox-15.08.3.tar.xz"; - }; - }; - kblocks = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblocks-15.08.3.tar.xz"; - sha256 = "025zharfv24vvvq0jy7kzmxkif4nix7ck40if5x0hxbkn902mmjf"; - name = "kblocks-15.08.3.tar.xz"; - }; - }; - kblog = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblog-15.08.3.tar.xz"; - sha256 = "1bbkjg43dflqc3yxg96mphsmqzxrphp43m314cdrpka5pb39kdc9"; - name = "kblog-15.08.3.tar.xz"; - }; - }; - kbounce = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbounce-15.08.3.tar.xz"; - sha256 = "1rn0irm4by01k6k61iam2m27m5dc8i0fi025h4rwmyfqx9hn6f9i"; - name = "kbounce-15.08.3.tar.xz"; - }; - }; - kbreakout = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbreakout-15.08.3.tar.xz"; - sha256 = "069y45gyi92zm3hyil7ggm6gnimz7wj4g543lix4fx28kd7m044v"; - name = "kbreakout-15.08.3.tar.xz"; - }; - }; - kbruch = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbruch-15.08.3.tar.xz"; - sha256 = "0panrkmaid998i276wn3jsvmrhq1f7nj20yh9vva3mrc7y0bvhg3"; - name = "kbruch-15.08.3.tar.xz"; - }; - }; - kcachegrind = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcachegrind-15.08.3.tar.xz"; - sha256 = "0hjv28j5lcdxcmdihnyal03gqjfi8lfwxhdlxbzar9dr7r8azg4p"; - name = "kcachegrind-15.08.3.tar.xz"; - }; - }; - kcalc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalc-15.08.3.tar.xz"; - sha256 = "1in0b2i58s6sv6fz9z3bqaxby0d33arwmq4gazvc2kzhfxylq501"; - name = "kcalc-15.08.3.tar.xz"; - }; - }; - kcalcore = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalcore-15.08.3.tar.xz"; - sha256 = "07wpls28xw3pis9l3fmmn64af3n21nv53b9ip6ycflxn3xcqmap8"; - name = "kcalcore-15.08.3.tar.xz"; - }; - }; - kcalutils = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalutils-15.08.3.tar.xz"; - sha256 = "12h41bnp6vvqcfy8pm2nhqypaggaj7sgh22by8w75qvimb94ddiz"; - name = "kcalutils-15.08.3.tar.xz"; - }; - }; - kcharselect = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcharselect-15.08.3.tar.xz"; - sha256 = "0iy3n8pb5xa6aj1zhbxqpk278c5k4vs9bw0i8jww3id0cwggardn"; - name = "kcharselect-15.08.3.tar.xz"; - }; - }; - kcolorchooser = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcolorchooser-15.08.3.tar.xz"; - sha256 = "1wyjm4d47xm5lflrd63xgwll6xjpxgnc0h8xjk4rrc6nf43w6bn1"; - name = "kcolorchooser-15.08.3.tar.xz"; - }; - }; - kcontacts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcontacts-15.08.3.tar.xz"; - sha256 = "0j6ag6knz4z76md7bnizx5fwzsqavxbfz33hdpdw6606m5d66j5p"; - name = "kcontacts-15.08.3.tar.xz"; - }; - }; - kcron = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcron-15.08.3.tar.xz"; - sha256 = "04z8pq5mc1kjvhnkmzgymzs9inynxdkiddq70hs7y94fbfsq2rf0"; - name = "kcron-15.08.3.tar.xz"; - }; - }; - kdeartwork = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdeartwork-15.08.3.tar.xz"; - sha256 = "031v00f4b1jg5z7qlgycjsjiz1hyn6svm9n4mkiybrida2hf6gzv"; - name = "kdeartwork-15.08.3.tar.xz"; - }; - }; - kde-baseapps = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-baseapps-15.08.3.tar.xz"; - sha256 = "0n010z1b0hdj5rdw8p9y28vkai5knfwkgasrw8knvildcfifp913"; - name = "kde-baseapps-15.08.3.tar.xz"; - }; - }; - kde-base-artwork = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-base-artwork-15.08.3.tar.xz"; - sha256 = "054rc5llv2cxkc0yss8i7rnp6dp10srl0g6sxvwm4w9hvicxp1gg"; - name = "kde-base-artwork-15.08.3.tar.xz"; - }; - }; - kdebugsettings = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdebugsettings-15.08.3.tar.xz"; - sha256 = "0jy8gpydkis8jpb0vax6w41rj2hwwp8jvbiif438bvvfwyakx7dk"; - name = "kdebugsettings-15.08.3.tar.xz"; - }; - }; - kde-dev-scripts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-dev-scripts-15.08.3.tar.xz"; - sha256 = "1zc75alr7ap8i5njfn00d7rzvzmazyxq44zi7fs1p9zcv3lz3gli"; - name = "kde-dev-scripts-15.08.3.tar.xz"; - }; - }; - kde-dev-utils = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-dev-utils-15.08.3.tar.xz"; - sha256 = "06k6iwgaimryhm0lma5m2nmrj1gf9y0fbxnzswxl3cygsvabffyf"; - name = "kde-dev-utils-15.08.3.tar.xz"; - }; - }; - kdeedu-data = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz"; - sha256 = "1x91cqjjxaxdvh5fl3jlhnpj344r0j1qgmyw7x1cq05r3spdk47w"; - name = "kdeedu-data-15.08.3.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-mobipocket-15.08.3.tar.xz"; - sha256 = "0p1i57m86r21y8zd9lz6rr28ir0jqwy7nmlxkrkpllgd4r3xalhp"; - name = "kdegraphics-mobipocket-15.08.3.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-strigi-analyzer-15.08.3.tar.xz"; - sha256 = "1nsi48i2qpa3gddwy3ib7a59i8a96p49nm48xisn2sym34mi31cq"; - name = "kdegraphics-strigi-analyzer-15.08.3.tar.xz"; - }; - }; - kdegraphics-thumbnailers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-thumbnailers-15.08.3.tar.xz"; - sha256 = "1ffs3ck1zl4795w73gjiwc146a6f2iqqiy4grmgnmg89irbqcnv7"; - name = "kdegraphics-thumbnailers-15.08.3.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ar-15.08.3.tar.xz"; - sha256 = "0kp82s1h3rmlizm7kb4f5iyr8ljlysic7vqawzv8qnga00w0r90f"; - name = "kde-l10n-ar-15.08.3.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bg-15.08.3.tar.xz"; - sha256 = "1769sr2qh3qblz28m104a3jgc0fg4bwy4annfyr2n48sizyan3qd"; - name = "kde-l10n-bg-15.08.3.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bs-15.08.3.tar.xz"; - sha256 = "16lgja0cnf8v4szyb2nhlwzpnrzxhhbvjd7w6j0ryfrnrxfd6x7n"; - name = "kde-l10n-bs-15.08.3.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca-15.08.3.tar.xz"; - sha256 = "03hy9qi1lnwv73vn9phrcwr8m0jcj65d18jci01pvbpaj483pmxk"; - name = "kde-l10n-ca-15.08.3.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca@valencia-15.08.3.tar.xz"; - sha256 = "0h47xlgmlk527mafs834fswplpb8mrma4li247n1lyabyz6m6vhd"; - name = "kde-l10n-ca_valencia-15.08.3.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-cs-15.08.3.tar.xz"; - sha256 = "0w403x63nj27iv0lag691a88q15sf5jq0hqylgijcsl6djf1jd66"; - name = "kde-l10n-cs-15.08.3.tar.xz"; - }; - }; - kde-l10n-da = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-da-15.08.3.tar.xz"; - sha256 = "0v3rqc9mzg748qj0g1qm5g2qzjwlhrspkq4dryj792nj5d81xlmx"; - name = "kde-l10n-da-15.08.3.tar.xz"; - }; - }; - kde-l10n-de = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-de-15.08.3.tar.xz"; - sha256 = "0mvdf3ixc5nfrbv5j84pb668wkckcliswcdgd2laasv3s7a57mrg"; - name = "kde-l10n-de-15.08.3.tar.xz"; - }; - }; - kde-l10n-el = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-el-15.08.3.tar.xz"; - sha256 = "0ywgk884l4kvqgaags7k87pm00241pygx630mc4ssrsw3nplv5lh"; - name = "kde-l10n-el-15.08.3.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-en_GB-15.08.3.tar.xz"; - sha256 = "002apvwkmmjqk0z5zrbbrri2wndg439xiwgkdr110a0hvak5v0nl"; - name = "kde-l10n-en_GB-15.08.3.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eo-15.08.3.tar.xz"; - sha256 = "144lrkjchx4gxzj7isfyrcmbbmpgy4a1v1v9cc4a8hf9c1kxzglk"; - name = "kde-l10n-eo-15.08.3.tar.xz"; - }; - }; - kde-l10n-es = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-es-15.08.3.tar.xz"; - sha256 = "160zsf6gss1ngz7pj4gykba83mwdi2id406plab5xznkqyanmp1v"; - name = "kde-l10n-es-15.08.3.tar.xz"; - }; - }; - kde-l10n-et = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-et-15.08.3.tar.xz"; - sha256 = "19gaswa1l5rlbh2k0b2bvbwafp6rnq3l6h5dv8q4yqhz1wsxcssr"; - name = "kde-l10n-et-15.08.3.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eu-15.08.3.tar.xz"; - sha256 = "1mrq2psh5n8gp1iqz41ilqwalpcyznjjqwmv2grf4ay9ss3ljbq0"; - name = "kde-l10n-eu-15.08.3.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fa-15.08.3.tar.xz"; - sha256 = "0axhz589y8zwl45hgi6wfy7ns50d1d3837j5mbl6ghvgs2bayfrj"; - name = "kde-l10n-fa-15.08.3.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fi-15.08.3.tar.xz"; - sha256 = "1xk5isp34xmv6rj2xsfjsjfwzbnc3db7jx2kp0a046n1ysv9g6q5"; - name = "kde-l10n-fi-15.08.3.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fr-15.08.3.tar.xz"; - sha256 = "1bwp3d0c9654f7m8670gasba67zrhwggvzz3rrcl2x188a10483x"; - name = "kde-l10n-fr-15.08.3.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ga-15.08.3.tar.xz"; - sha256 = "1zgk73ykybjxpl9zh7g5i86ygfvqiaimhg2nxxnb82maq2ba8p7y"; - name = "kde-l10n-ga-15.08.3.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-gl-15.08.3.tar.xz"; - sha256 = "0czfkcki0qd48rhn7nxww8961gn7lw06ydnd7d7a4isq9aw6649q"; - name = "kde-l10n-gl-15.08.3.tar.xz"; - }; - }; - kde-l10n-he = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-he-15.08.3.tar.xz"; - sha256 = "0p89y331kbkkl8pbdsqjpf30qqdgpzrchnmpl3wvkv6zgq0m58i7"; - name = "kde-l10n-he-15.08.3.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hi-15.08.3.tar.xz"; - sha256 = "0n7p1vndyfmddcgm182nmbxppjiqpq2agm8dziddxvqsmb2pmrfg"; - name = "kde-l10n-hi-15.08.3.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hr-15.08.3.tar.xz"; - sha256 = "0nz0jj90zky4r5zphcy7pyblx00xh2i90fklddz1519afzxjzvc6"; - name = "kde-l10n-hr-15.08.3.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hu-15.08.3.tar.xz"; - sha256 = "0v4273knbz9q0jqwgljhxwwryfp4y5nd791qf4nnci8zngyrkwi4"; - name = "kde-l10n-hu-15.08.3.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ia-15.08.3.tar.xz"; - sha256 = "1h4y8b0pn4a19cnvbgsr6ypcy77b3wfh0jn34rnbnvzmwgbbsdgq"; - name = "kde-l10n-ia-15.08.3.tar.xz"; - }; - }; - kde-l10n-id = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-id-15.08.3.tar.xz"; - sha256 = "1rcrpm05lwn4caaxg9zshvn7wvyjx2a580axyxfaldqbgzr4s4nl"; - name = "kde-l10n-id-15.08.3.tar.xz"; - }; - }; - kde-l10n-is = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-is-15.08.3.tar.xz"; - sha256 = "1g40y3y9v88zi2ikzldi818khh4v1sgwfxajx7g37b8f713d5mk3"; - name = "kde-l10n-is-15.08.3.tar.xz"; - }; - }; - kde-l10n-it = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-it-15.08.3.tar.xz"; - sha256 = "1qb42pkj0b4nl6bf5dq5aiirm58divgz1xacrnrlgmis10rm04w6"; - name = "kde-l10n-it-15.08.3.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ja-15.08.3.tar.xz"; - sha256 = "0d4yd9x6gsabfhz22vbab7m30m31c92azhkchnxf4yhwa7x50aay"; - name = "kde-l10n-ja-15.08.3.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-kk-15.08.3.tar.xz"; - sha256 = "00gwacqv00mqm262iard2jbfdwz7m5cap08k0iyw931kccdlg5k4"; - name = "kde-l10n-kk-15.08.3.tar.xz"; - }; - }; - kde-l10n-km = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-km-15.08.3.tar.xz"; - sha256 = "0mc0w39262n00q1l8qkjgfwh7w3kwpfzq1y5qsldg948lppk8i5l"; - name = "kde-l10n-km-15.08.3.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ko-15.08.3.tar.xz"; - sha256 = "1bzkx74ymbwazpwm0pdjgq1pqi3x7wlq9v0h63q53wx89ald7lzj"; - name = "kde-l10n-ko-15.08.3.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lt-15.08.3.tar.xz"; - sha256 = "0xkrxp815pbssb1myfchzjyxxgswznvimxdi29kckprsfhrycss9"; - name = "kde-l10n-lt-15.08.3.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lv-15.08.3.tar.xz"; - sha256 = "0rrnydq93rwg1j19vyw2g8d1zmql8yrdiqar6qsck5jljdhwzynv"; - name = "kde-l10n-lv-15.08.3.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-mr-15.08.3.tar.xz"; - sha256 = "1kwypcdd3myw53gd0cwz8v43cfdfqhnnq5qrwcfyv6myv2sf1xg4"; - name = "kde-l10n-mr-15.08.3.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nb-15.08.3.tar.xz"; - sha256 = "0blhr196gi1f3m8big82gf01qghj5f3nd8nzxx7i96lmvdc3k8na"; - name = "kde-l10n-nb-15.08.3.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nds-15.08.3.tar.xz"; - sha256 = "117xh1vh3fb23v7i6n9ljn4va3jvqy55mbz3zc997df79mkq0c02"; - name = "kde-l10n-nds-15.08.3.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nl-15.08.3.tar.xz"; - sha256 = "1zjjsq8p5ipj5rn9wl9jsixx1pj0ffdnq2myhb727z5lw07nafy9"; - name = "kde-l10n-nl-15.08.3.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nn-15.08.3.tar.xz"; - sha256 = "198x0kdj7w7iqx43llnwb01wshfzjkv2vdazyh7ip86r8whxrika"; - name = "kde-l10n-nn-15.08.3.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pa-15.08.3.tar.xz"; - sha256 = "0i69lf888p4sahms347r1wadni5zg7d9w9a9vv02g7lk193n3r07"; - name = "kde-l10n-pa-15.08.3.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pl-15.08.3.tar.xz"; - sha256 = "13b28slaqgwnqi2vw7mclyrbgrfhbpv5w4wb6l1mk6kv6ksh48a2"; - name = "kde-l10n-pl-15.08.3.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt-15.08.3.tar.xz"; - sha256 = "046v644pqvg6nfc767mpgzn8bsrgakmqs94x55cg1y76q5v7fncs"; - name = "kde-l10n-pt-15.08.3.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt_BR-15.08.3.tar.xz"; - sha256 = "0kp71wgyrvbvrrlj46fnbjc7bh04wvqdnrv8grxc7zbn037m1kax"; - name = "kde-l10n-pt_BR-15.08.3.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ro-15.08.3.tar.xz"; - sha256 = "0h3l3yb72v8lg6jzsczm37zilsidihjlfpaxbmjvyka440m3rhgz"; - name = "kde-l10n-ro-15.08.3.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ru-15.08.3.tar.xz"; - sha256 = "0drxf6jpd6gd7wnqz3pa2f3x9ay1bsfycyahsbqny6vkqbas18rn"; - name = "kde-l10n-ru-15.08.3.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sk-15.08.3.tar.xz"; - sha256 = "0jv5blx2biwpvazr6cc8kmvgqjp3ixmf547q453wkyrss9sg6n7y"; - name = "kde-l10n-sk-15.08.3.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sl-15.08.3.tar.xz"; - sha256 = "1nnjxwhidfw5iyp1rl5sdqpkk3jn1p4csa7v05qssydplqz86plp"; - name = "kde-l10n-sl-15.08.3.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sr-15.08.3.tar.xz"; - sha256 = "0dqca94al2x68jyb7zq52vf2zirqlh6bqcgrnvd2h3gkz8yifgkf"; - name = "kde-l10n-sr-15.08.3.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sv-15.08.3.tar.xz"; - sha256 = "1xa31mdcmlw955ybzfpas7fq38ffh9s00v1jvzpys008hhs5y4mr"; - name = "kde-l10n-sv-15.08.3.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-tr-15.08.3.tar.xz"; - sha256 = "0hfl5jbwkfhwpv1kbbcvinzbp6vks7kfn0s8n6c989icnr4y6p18"; - name = "kde-l10n-tr-15.08.3.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ug-15.08.3.tar.xz"; - sha256 = "0aznwrbzvw4zh20zgrmbyvwg0f639vibsq7vf38z3bn1acw22cyh"; - name = "kde-l10n-ug-15.08.3.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-uk-15.08.3.tar.xz"; - sha256 = "01h65ysizlcfbn3iim3pgs17y8l8q7qnsf1skqwh6ryib3z20l7d"; - name = "kde-l10n-uk-15.08.3.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-wa-15.08.3.tar.xz"; - sha256 = "0pm4fcziv3jci6vdggxk1mlhfpppm1pgk035rzg8004yhj84mds1"; - name = "kde-l10n-wa-15.08.3.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_CN-15.08.3.tar.xz"; - sha256 = "0cnahayw2nf23r7gks34y3llqsiljxv0v20v26nwarj7dcj4r7zv"; - name = "kde-l10n-zh_CN-15.08.3.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_TW-15.08.3.tar.xz"; - sha256 = "1sbfwwvqr6arckzdhs77ar9yz66f4bv1xndw05lpj899k3vd6mp4"; - name = "kde-l10n-zh_TW-15.08.3.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.14"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdelibs-4.14.14.tar.xz"; - sha256 = "055nq12rgilcb3m8gwjxwpalrj7bv2hjvf2h0axba4bjjl99n6b3"; - name = "kdelibs-4.14.14.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenetwork-filesharing-15.08.3.tar.xz"; - sha256 = "0fh11nrlmariyy1rn1ncsjzydidpfwqhr6r73mi8mqbry7vm1kp5"; - name = "kdenetwork-filesharing-15.08.3.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenetwork-strigi-analyzers-15.08.3.tar.xz"; - sha256 = "0adrr6clw75rqjcw1611xwzxb2ma6c4jcawrl5k3xa46qg37g4gk"; - name = "kdenetwork-strigi-analyzers-15.08.3.tar.xz"; - }; - }; - kdenlive = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenlive-15.08.3.tar.xz"; - sha256 = "0k8x3wipndrg2d424i16bbnnjfv3b43v48jrid28r9vas4b7xghk"; - name = "kdenlive-15.08.3.tar.xz"; - }; - }; - kdepim = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepim-15.08.3.tar.xz"; - sha256 = "1rpscplpawlqcya17p27gf25rqrv819xrp6vdk44c9p9jw31q4hz"; - name = "kdepim-15.08.3.tar.xz"; - }; - }; - kdepimlibs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepimlibs-15.08.3.tar.xz"; - sha256 = "0ad20g2wngf265zflaq8h2s25p911llaknf0ni3r63nb4px4jhlw"; - name = "kdepimlibs-15.08.3.tar.xz"; - }; - }; - kdepim-runtime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepim-runtime-15.08.3.tar.xz"; - sha256 = "0lrwkkjgw8w5r5wgl5d006ainy5dnkpz8kdvbmbgb4hpvj79zba1"; - name = "kdepim-runtime-15.08.3.tar.xz"; - }; - }; - kde-runtime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-runtime-15.08.3.tar.xz"; - sha256 = "0n9nkbmdyf49aw1d85y8g9mx3rs3xnsy34izrbnwa35q9sjg3bsr"; - name = "kde-runtime-15.08.3.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-kioslaves-15.08.3.tar.xz"; - sha256 = "04kyfham56hzwyqydgplqkmn3888wfxsr4hl1690w61qx8m60x3a"; - name = "kdesdk-kioslaves-15.08.3.tar.xz"; - }; - }; - kdesdk-strigi-analyzers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-strigi-analyzers-15.08.3.tar.xz"; - sha256 = "0dy60s6idbhy3anxqkk8cjrsnb5p1gizhzrxlq9kv2sk3rld1pxc"; - name = "kdesdk-strigi-analyzers-15.08.3.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-thumbnailers-15.08.3.tar.xz"; - sha256 = "077p0alajih4pq3g6k24a3cmsz61kb32iq1mzlkrbq8myadrkz86"; - name = "kdesdk-thumbnailers-15.08.3.tar.xz"; - }; - }; - kde-wallpapers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-wallpapers-15.08.3.tar.xz"; - sha256 = "14wm02ywncd4n0ppwgzag467vp5h0005csnl6na2bb2qrcplpbjd"; - name = "kde-wallpapers-15.08.3.tar.xz"; - }; - }; - kdewebdev = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdewebdev-15.08.3.tar.xz"; - sha256 = "1nsfmff34wpb9cmrmlj32yqihx4aha0bkn7h0j2jvkhqqnwxr802"; - name = "kdewebdev-15.08.3.tar.xz"; - }; - }; - kdf = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdf-15.08.3.tar.xz"; - sha256 = "05lfhivnj332m7br03pm0jflsdsv2kvzxadiic8gmm05yvx6k442"; - name = "kdf-15.08.3.tar.xz"; - }; - }; - kdiamond = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdiamond-15.08.3.tar.xz"; - sha256 = "1i2wr0fcqi8sji82m6frknvjd8dyvx9p0a8m2b75a5bl4ww95k0b"; - name = "kdiamond-15.08.3.tar.xz"; - }; - }; - kfloppy = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kfloppy-15.08.3.tar.xz"; - sha256 = "0gbagm6jkjj4gmpq0asjgngn3np5b77hry733krzglawdf4dh7jh"; - name = "kfloppy-15.08.3.tar.xz"; - }; - }; - kfourinline = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kfourinline-15.08.3.tar.xz"; - sha256 = "01d94irpyq3z01yvcffw3h5qm8mbcipb855wi3na2ply8jm1kj1s"; - name = "kfourinline-15.08.3.tar.xz"; - }; - }; - kgeography = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgeography-15.08.3.tar.xz"; - sha256 = "1wfq98dhs2g1k8gw1p98slgyf3f1amwrkqf4ja4hsm4lcxqhmrh5"; - name = "kgeography-15.08.3.tar.xz"; - }; - }; - kget = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kget-15.08.3.tar.xz"; - sha256 = "1wrpjm2hjhl7bz70ga71xmys7jnwq9xyvdr7glb3032z2w52sld5"; - name = "kget-15.08.3.tar.xz"; - }; - }; - kgoldrunner = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgoldrunner-15.08.3.tar.xz"; - sha256 = "1xxgj46l3b7a8wmas7wsx8h9bg4hgcgiasx3dz27v870i01wzh7i"; - name = "kgoldrunner-15.08.3.tar.xz"; - }; - }; - kgpg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgpg-15.08.3.tar.xz"; - sha256 = "09am74pb3hs24z3npml98rsbsxzincn85wgvpym02f4gnc5abd42"; - name = "kgpg-15.08.3.tar.xz"; - }; - }; - khangman = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/khangman-15.08.3.tar.xz"; - sha256 = "0fyy37v0ljv1mvxfd4p6x6lflqfmsh703p9j0mb0bd2f6wswwa1l"; - name = "khangman-15.08.3.tar.xz"; - }; - }; - kholidays = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kholidays-15.08.3.tar.xz"; - sha256 = "0vf7pz6i2raw94mcxfzlk9s5hxnampx5lq5b5iyfad5d5vc24215"; - name = "kholidays-15.08.3.tar.xz"; - }; - }; - kidentitymanagement = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kidentitymanagement-15.08.3.tar.xz"; - sha256 = "0napyckxdv4vnj7n063qgiwa7xgwjab5qnz8rl1g60kidvvz7vw0"; - name = "kidentitymanagement-15.08.3.tar.xz"; - }; - }; - kig = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kig-15.08.3.tar.xz"; - sha256 = "15fws8yrdyz68qik1gf3fchrdfyk0mml9p923dzirb6faaz1sfpx"; - name = "kig-15.08.3.tar.xz"; - }; - }; - kigo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kigo-15.08.3.tar.xz"; - sha256 = "0h48kqadfhlm2jppld9ima4bbzgxnwcfg0y6zbhsvflavi6cpckn"; - name = "kigo-15.08.3.tar.xz"; - }; - }; - killbots = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/killbots-15.08.3.tar.xz"; - sha256 = "1zp68p83adi1qggs8j3pa5rgfdjqy5c4pmc9kp0ndcpk7hi7nwvz"; - name = "killbots-15.08.3.tar.xz"; - }; - }; - kimap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kimap-15.08.3.tar.xz"; - sha256 = "1wymg2s8yjckzc6zrb56fslbfbvzg41mi5fvnrf54d92lh4s90p0"; - name = "kimap-15.08.3.tar.xz"; - }; - }; - kio-extras = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kio-extras-15.08.3.tar.xz"; - sha256 = "0psi8hj9s961l9xga92g9amv95h0im3nm12fc6vh184h2by2gddf"; - name = "kio-extras-15.08.3.tar.xz"; - }; - }; - kiriki = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kiriki-15.08.3.tar.xz"; - sha256 = "1w9yb38wwi45f8dfsi7wvaq6l9crjb6v0kp74cmaljgvirs3mmjk"; - name = "kiriki-15.08.3.tar.xz"; - }; - }; - kiten = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kiten-15.08.3.tar.xz"; - sha256 = "0rj4rka4wk3zh0s04ry8r4hqhajsi53qv1ns6ra1mbl1v32bw20g"; - name = "kiten-15.08.3.tar.xz"; - }; - }; - kjumpingcube = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kjumpingcube-15.08.3.tar.xz"; - sha256 = "0ccf3zcc31n78ing87h16rjk5kylz7k36lvgp4c9w6w8ahmgzp8g"; - name = "kjumpingcube-15.08.3.tar.xz"; - }; - }; - kldap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kldap-15.08.3.tar.xz"; - sha256 = "1rnl40367fxq4cgqrrm27a93k3b6gns47gxv2afvjpq7dn142dc2"; - name = "kldap-15.08.3.tar.xz"; - }; - }; - klettres = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klettres-15.08.3.tar.xz"; - sha256 = "14bbjx20zn5gmxhkgarh7y75j5806rpzbbh0rj2w2lpav8ggma90"; - name = "klettres-15.08.3.tar.xz"; - }; - }; - klickety = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klickety-15.08.3.tar.xz"; - sha256 = "1vqflsi4k21qj91z7h6hprswpzr7zpdnpkvwwiw2v2zwi4p8m967"; - name = "klickety-15.08.3.tar.xz"; - }; - }; - klines = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klines-15.08.3.tar.xz"; - sha256 = "103wws54y0sal9w3ikbmksq0d2ndw34xpr972zjcmw06py4kx4kn"; - name = "klines-15.08.3.tar.xz"; - }; - }; - kmag = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmag-15.08.3.tar.xz"; - sha256 = "1hmyc2n8gspd46k4g3k6jh0cfy7r0v5x17l7xrvj45nmhhhnivc0"; - name = "kmag-15.08.3.tar.xz"; - }; - }; - kmahjongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmahjongg-15.08.3.tar.xz"; - sha256 = "07xsmd0zh9n01cy0fra2njz2qcgp1y7y5w9v4s2bkj3a4gd35ag8"; - name = "kmahjongg-15.08.3.tar.xz"; - }; - }; - kmailtransport = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmailtransport-15.08.3.tar.xz"; - sha256 = "0g8983wq7x4w19k0fxypsk69hi5nrxldvq0a49jna2g2yfxi8w5l"; - name = "kmailtransport-15.08.3.tar.xz"; - }; - }; - kmbox = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmbox-15.08.3.tar.xz"; - sha256 = "11fsvjmidb9s309wlcchgmb4viambqmw1njy6g5c2zpyfw9ryq8b"; - name = "kmbox-15.08.3.tar.xz"; - }; - }; - kmime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmime-15.08.3.tar.xz"; - sha256 = "16pfzjdiaa9z2nq564bcrb82f50zh1cd8zyx7jzwzzw6cspv5n0q"; - name = "kmime-15.08.3.tar.xz"; - }; - }; - kmines = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmines-15.08.3.tar.xz"; - sha256 = "18ld9y50axz77cspm1rccm0w21h01zihbh0880gf2vjqwcv1ifxc"; - name = "kmines-15.08.3.tar.xz"; - }; - }; - kmix = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmix-15.08.3.tar.xz"; - sha256 = "0mkh7jvn26d6i38zzinx2gh9bl50scis17maj56c9m67i4m0hlk9"; - name = "kmix-15.08.3.tar.xz"; - }; - }; - kmousetool = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmousetool-15.08.3.tar.xz"; - sha256 = "07ddvl9nmigqq12mz27x0gw3lhb8a6ilfmqlx5sm810cp7b4claq"; - name = "kmousetool-15.08.3.tar.xz"; - }; - }; - kmouth = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmouth-15.08.3.tar.xz"; - sha256 = "1m0y8fdyh1glh27azi700zzvdpki0chjphnq5gx9339hbf97bdi4"; - name = "kmouth-15.08.3.tar.xz"; - }; - }; - kmplot = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmplot-15.08.3.tar.xz"; - sha256 = "1zk8ccl2yhxgi18qkabjzm4ffcyg6flvvh3fy3hz7l1cikb6dza1"; - name = "kmplot-15.08.3.tar.xz"; - }; - }; - knavalbattle = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/knavalbattle-15.08.3.tar.xz"; - sha256 = "1g1dy0a0rvil31rj4s0z8gic9nb9xpx6xl7b91a36wj6cab57434"; - name = "knavalbattle-15.08.3.tar.xz"; - }; - }; - knetwalk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/knetwalk-15.08.3.tar.xz"; - sha256 = "0iapwmdy7i9dps3jf7ski75xdjg4bkp0fhz9njng11yx1g3a64qi"; - name = "knetwalk-15.08.3.tar.xz"; - }; - }; - kolf = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kolf-15.08.3.tar.xz"; - sha256 = "1akvicna1wzjcjdz2nz2mydmv9f39rff6jwcbj6blgdr1q56p4q7"; - name = "kolf-15.08.3.tar.xz"; - }; - }; - kollision = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kollision-15.08.3.tar.xz"; - sha256 = "1r9ijp1bgl20rv76if09695bkc5yrr99sn1s0193fjjh34fpd0w8"; - name = "kollision-15.08.3.tar.xz"; - }; - }; - kolourpaint = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kolourpaint-15.08.3.tar.xz"; - sha256 = "1miq2jvmqkgcwpzh2vzzb2dvmb8ziwr767ss5daqv540gpc8crjr"; - name = "kolourpaint-15.08.3.tar.xz"; - }; - }; - kompare = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kompare-15.08.3.tar.xz"; - sha256 = "067m9xrnx6smscsk7wq9d8j2sv0g7ayfrdjwf4xsfa5jz8fh32s5"; - name = "kompare-15.08.3.tar.xz"; - }; - }; - konquest = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/konquest-15.08.3.tar.xz"; - sha256 = "1v760lh6wx8kqyyrw2vb48n5x0ccl12dr3gy5dxyrs9sn0jpwz4r"; - name = "konquest-15.08.3.tar.xz"; - }; - }; - konsole = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/konsole-15.08.3.tar.xz"; - sha256 = "0kpizwk3vwp25sincqnjrmvrhwv2a7vgacnw4yp2bxvdqqrb4zhr"; - name = "konsole-15.08.3.tar.xz"; - }; - }; - kontactinterface = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kontactinterface-15.08.3.tar.xz"; - sha256 = "1www2daa48r43dii2fb9s0x2ll3bsvhxnllypcs2fy5gzaj6wrff"; - name = "kontactinterface-15.08.3.tar.xz"; - }; - }; - kopete = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kopete-15.08.3.tar.xz"; - sha256 = "1x05w7ls0298shwr10f0vcbxcd0rvfvgfcwz2c5jrgb1zf968k8c"; - name = "kopete-15.08.3.tar.xz"; - }; - }; - kpat = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kpat-15.08.3.tar.xz"; - sha256 = "16lmrlxxl3kibzflw3lvcbp7xmklr4jqwh1aqqxw5lbybkz2vnah"; - name = "kpat-15.08.3.tar.xz"; - }; - }; - kpimtextedit = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kpimtextedit-15.08.3.tar.xz"; - sha256 = "1q1a77wnwny7j777vrhbqlz6z1z7jmil8raii4nbrwjqpdw8fc92"; - name = "kpimtextedit-15.08.3.tar.xz"; - }; - }; - kppp = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kppp-15.08.3.tar.xz"; - sha256 = "0q5542f9aa98w94krib84yrjsk3ialaq43vd9bbdvf0j5wfzb276"; - name = "kppp-15.08.3.tar.xz"; - }; - }; - kqtquickcharts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kqtquickcharts-15.08.3.tar.xz"; - sha256 = "0ppifqc9bz8hljniw6h5a31k38qbij9ydpwjzpg11m0s8a4havmm"; - name = "kqtquickcharts-15.08.3.tar.xz"; - }; - }; - krdc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/krdc-15.08.3.tar.xz"; - sha256 = "1vcfx703bniac9l7g6cg031nb18blypxb1i84dwfjavr4ib2im8l"; - name = "krdc-15.08.3.tar.xz"; - }; - }; - kremotecontrol = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kremotecontrol-15.08.3.tar.xz"; - sha256 = "0nxbw1zl8lcc9nvj5damz7m5q6bijm8mjx7isccf7j6mjazdxcin"; - name = "kremotecontrol-15.08.3.tar.xz"; - }; - }; - kreversi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kreversi-15.08.3.tar.xz"; - sha256 = "1806m071wgnjg01lrjii9nh7spiwxm9cf0jl0gib7fk2cw9kw2fa"; - name = "kreversi-15.08.3.tar.xz"; - }; - }; - krfb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/krfb-15.08.3.tar.xz"; - sha256 = "0dil3qpkf8m9449aqawjrilwvickb3nl3msj2g3svdnfvak7cv61"; - name = "krfb-15.08.3.tar.xz"; - }; - }; - kross-interpreters = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kross-interpreters-15.08.3.tar.xz"; - sha256 = "1msy3xg5n5g2ax074g23j889dadqn4mbqa3r5mlmdaz9bnny1n9r"; - name = "kross-interpreters-15.08.3.tar.xz"; - }; - }; - kruler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kruler-15.08.3.tar.xz"; - sha256 = "1mr1pzn776a7xgq0rwqdn635s9y2bl0bh53i1c99h32jbxhn6fhb"; - name = "kruler-15.08.3.tar.xz"; - }; - }; - ksaneplugin = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksaneplugin-15.08.3.tar.xz"; - sha256 = "18mpjl21rmbw95zc2b8f9sgi2sh922p0qj8d3jfhs3gggjy5hjfb"; - name = "ksaneplugin-15.08.3.tar.xz"; - }; - }; - kscd = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kscd-15.08.3.tar.xz"; - sha256 = "0pqr342swpbwkqq7qwn7zs97kmbqpmwrlkkk0amaadgsfd9c9j40"; - name = "kscd-15.08.3.tar.xz"; - }; - }; - kshisen = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kshisen-15.08.3.tar.xz"; - sha256 = "0xx8lwxw4zfzwzaqdi1v7g00vzy74arfbfhvkxgs6k1gvhja0ckk"; - name = "kshisen-15.08.3.tar.xz"; - }; - }; - ksirk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksirk-15.08.3.tar.xz"; - sha256 = "1y6y0dcgvrpflfmircbf3nj7mjgvkbnddlmbxsws4h0737lqkg21"; - name = "ksirk-15.08.3.tar.xz"; - }; - }; - ksnakeduel = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksnakeduel-15.08.3.tar.xz"; - sha256 = "1zpz3fa9lp44iv5kxdwy1sk93bpkin9h64n6qj0lcpjj3f8a5cy5"; - name = "ksnakeduel-15.08.3.tar.xz"; - }; - }; - ksnapshot = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksnapshot-15.08.3.tar.xz"; - sha256 = "1xnbf73dr8z95kwq047zwjl0yml25nbnw5gnc319q2nlcnxk5gc3"; - name = "ksnapshot-15.08.3.tar.xz"; - }; - }; - kspaceduel = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kspaceduel-15.08.3.tar.xz"; - sha256 = "12dbdybqfd5klfg427q48rbv2s63ybanay8c5d44znwk5qi9wwf7"; - name = "kspaceduel-15.08.3.tar.xz"; - }; - }; - ksquares = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksquares-15.08.3.tar.xz"; - sha256 = "1jr7slw9ml01zffj5kjv56fmwq8snz0jxdkczr2crr15cljrsmwj"; - name = "ksquares-15.08.3.tar.xz"; - }; - }; - kstars = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kstars-15.08.3.tar.xz"; - sha256 = "17n2g1a53ps0cx1s62qz1s7yn8nn0sgq0p4ifdyq9rk5iwaq5yp8"; - name = "kstars-15.08.3.tar.xz"; - }; - }; - ksudoku = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksudoku-15.08.3.tar.xz"; - sha256 = "0rw02qdvv132i6gf2n1v37b7rmahzmmz5jx174j1syda4wwpyhgr"; - name = "ksudoku-15.08.3.tar.xz"; - }; - }; - ksystemlog = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksystemlog-15.08.3.tar.xz"; - sha256 = "12gacxya366rln3q9m2vzv28irrwnsj4lb1pqymxvsfyijfsjd7x"; - name = "ksystemlog-15.08.3.tar.xz"; - }; - }; - kteatime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kteatime-15.08.3.tar.xz"; - sha256 = "1yij4230wc7qc9wzj5kam6jjv97xdcnz57j0kpa54iw1c3camwlx"; - name = "kteatime-15.08.3.tar.xz"; - }; - }; - ktimer = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktimer-15.08.3.tar.xz"; - sha256 = "06p2dar8ry4xrkn21npxsnfkxq92sg66lmrnhqpkzv3dcvz98n50"; - name = "ktimer-15.08.3.tar.xz"; - }; - }; - ktnef = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktnef-15.08.3.tar.xz"; - sha256 = "1r68cms5hv8drrdl2zhz8q9hsiln63c1rylbv68dxjz44w5jsw84"; - name = "ktnef-15.08.3.tar.xz"; - }; - }; - ktouch = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktouch-15.08.3.tar.xz"; - sha256 = "07piq43fngk7i5568vqpsd0xhfmfbwm4gwbdgvg0qx5cm2np00pp"; - name = "ktouch-15.08.3.tar.xz"; - }; - }; - ktp-accounts-kcm = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-accounts-kcm-15.08.3.tar.xz"; - sha256 = "04q89vay1936rr94g9n54japqml7b40p8qh2nh8wc13vbiiffbq0"; - name = "ktp-accounts-kcm-15.08.3.tar.xz"; - }; - }; - ktp-approver = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-approver-15.08.3.tar.xz"; - sha256 = "131gb9h8pqa2ac4kv8by5wa5f9cdv32413d2039ggkc0zfhyqlbb"; - name = "ktp-approver-15.08.3.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-auth-handler-15.08.3.tar.xz"; - sha256 = "1k9y83miwy77c2pjm8frm6zbkddm463bkdr08lrl3cf9y0azj6xl"; - name = "ktp-auth-handler-15.08.3.tar.xz"; - }; - }; - ktp-common-internals = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-common-internals-15.08.3.tar.xz"; - sha256 = "1p1qg4nkjmly7iilx6nra0qwn7g6kdwn4hw6bs2ikdvsg36kkr72"; - name = "ktp-common-internals-15.08.3.tar.xz"; - }; - }; - ktp-contact-list = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-contact-list-15.08.3.tar.xz"; - sha256 = "15g7nnz8bggscpba74vk6riizv9xn5ndar1lkay77ikfbbyhb0x6"; - name = "ktp-contact-list-15.08.3.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-contact-runner-15.08.3.tar.xz"; - sha256 = "09angbgm877x81wqsbn7cpg75skiv7x4war1lq1yma6nirs7369p"; - name = "ktp-contact-runner-15.08.3.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-desktop-applets-15.08.3.tar.xz"; - sha256 = "18x08b38s46pz6crd1qg1b6qy7xxfhhp0pk2hsc5v4s7j931q8v9"; - name = "ktp-desktop-applets-15.08.3.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-filetransfer-handler-15.08.3.tar.xz"; - sha256 = "1w7hnhbjmnl7ba1357b6q440266fgh7kyim9cn919i89aah2d11y"; - name = "ktp-filetransfer-handler-15.08.3.tar.xz"; - }; - }; - ktp-kded-module = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-kded-module-15.08.3.tar.xz"; - sha256 = "0s86d0yad758hgzbd9nb9hpq8iglq8bcmy7wdn0ji2nyppprf0jc"; - name = "ktp-kded-module-15.08.3.tar.xz"; - }; - }; - ktp-send-file = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-send-file-15.08.3.tar.xz"; - sha256 = "15pc0p6f87hwh19kwf6wzd04rf96r2z7xj8h89y86xwirn02spgv"; - name = "ktp-send-file-15.08.3.tar.xz"; - }; - }; - ktp-text-ui = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-text-ui-15.08.3.tar.xz"; - sha256 = "04lxwq5cm7rg7xras47lngzn0pwfy6yp41lrybl2ywg9rvbdfv4s"; - name = "ktp-text-ui-15.08.3.tar.xz"; - }; - }; - ktuberling = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktuberling-15.08.3.tar.xz"; - sha256 = "0bs41wlriak2087r1q3zlkblcjl504g1dvhrxx3fymmxgxkir6k6"; - name = "ktuberling-15.08.3.tar.xz"; - }; - }; - kturtle = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kturtle-15.08.3.tar.xz"; - sha256 = "0i4n3k2rji85y0x5aacrpab4jxx5skh3c96yfb9190s6ick3s4jg"; - name = "kturtle-15.08.3.tar.xz"; - }; - }; - ktux = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktux-15.08.3.tar.xz"; - sha256 = "0dcida7qjwglra7b17hb15dn240nnbsryps49d9k0fmv7y8cdicd"; - name = "ktux-15.08.3.tar.xz"; - }; - }; - kubrick = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kubrick-15.08.3.tar.xz"; - sha256 = "07bq203ds77v41nqjrydlls25whhpmaqq4wvqqnafz6j3122972m"; - name = "kubrick-15.08.3.tar.xz"; - }; - }; - kuser = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kuser-15.08.3.tar.xz"; - sha256 = "1lhrrrfg0zfkxv87kclfz7lw57knhalfclik9g2g84mjd2mrp23c"; - name = "kuser-15.08.3.tar.xz"; - }; - }; - kwalletmanager = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kwalletmanager-15.08.3.tar.xz"; - sha256 = "1wh4gkqyz003qx50q4m35987rabjh80npg1hiqmybz60syq1bash"; - name = "kwalletmanager-15.08.3.tar.xz"; - }; - }; - kwordquiz = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kwordquiz-15.08.3.tar.xz"; - sha256 = "1fr68aq6f1ilfvfvcxvjg90dpwsig36nxb5v35rbpg1kjz8lxdl3"; - name = "kwordquiz-15.08.3.tar.xz"; - }; - }; - libkcddb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkcddb-15.08.3.tar.xz"; - sha256 = "0yspqyj11q4l5b0hmy9068hg7kkbqwy5zq72clbf30lys6h9mqb6"; - name = "libkcddb-15.08.3.tar.xz"; - }; - }; - libkcompactdisc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkcompactdisc-15.08.3.tar.xz"; - sha256 = "1fvf219dj1dbl69nmdyzvyds9c1f77zqzqwv2l87brk5syshsywp"; - name = "libkcompactdisc-15.08.3.tar.xz"; - }; - }; - libkdcraw = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdcraw-15.08.3.tar.xz"; - sha256 = "0m1zc23k68gm0hrdl18sizw5qnpa216m03lzik92m50msndz34bc"; - name = "libkdcraw-15.08.3.tar.xz"; - }; - }; - libkdeedu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdeedu-15.08.3.tar.xz"; - sha256 = "1z8dp47900ybppnkpbfvckjkiib9q0ggqm0m83vbmgwzanx7k7sn"; - name = "libkdeedu-15.08.3.tar.xz"; - }; - }; - libkdegames = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdegames-15.08.3.tar.xz"; - sha256 = "1jg6z4qfagijkr1b2hd05sr0jdb0qvfn1dphd43ma6gi7bl5khn4"; - name = "libkdegames-15.08.3.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkeduvocdocument-15.08.3.tar.xz"; - sha256 = "1b16p9m14v8w0qg1v9jwiiljvpc2samlrcp6bszrld02ghii5649"; - name = "libkeduvocdocument-15.08.3.tar.xz"; - }; - }; - libkexiv2 = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkexiv2-15.08.3.tar.xz"; - sha256 = "0q44gjhdjiy74q5a40kmmcry0m0pnzw454j5ynrimd3nk8r2l6nl"; - name = "libkexiv2-15.08.3.tar.xz"; - }; - }; - libkface = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkface-15.08.3.tar.xz"; - sha256 = "0jiv41f1mqf4813m882v84vczkyxmbmjf8bf7d5iq13i9xr190wg"; - name = "libkface-15.08.3.tar.xz"; - }; - }; - libkgeomap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkgeomap-15.08.3.tar.xz"; - sha256 = "1jscbp31q91viv2ym09zal4c0vx8xx3lqd4vg78mr9591y1bgr7l"; - name = "libkgeomap-15.08.3.tar.xz"; - }; - }; - libkipi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkipi-15.08.3.tar.xz"; - sha256 = "1v70k9xx8va0xk3439sqllh9sl9sx56bayl0b24gkdc3ddj8l0rk"; - name = "libkipi-15.08.3.tar.xz"; - }; - }; - libkmahjongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkmahjongg-15.08.3.tar.xz"; - sha256 = "05zff791i1jih5abx6ywfagxh1rwc38nblfcfci66pqvknmya2x1"; - name = "libkmahjongg-15.08.3.tar.xz"; - }; - }; - libkomparediff2 = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkomparediff2-15.08.3.tar.xz"; - sha256 = "03aaz64s6f3xc6kv188p301qivnjh27xd8jpmj6yq98laj3v2xrl"; - name = "libkomparediff2-15.08.3.tar.xz"; - }; - }; - libksane = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libksane-15.08.3.tar.xz"; - sha256 = "01x24gxk0xj6j9zwyyavklphykgjb3w0wra61ivyrsim1za8y0qa"; - name = "libksane-15.08.3.tar.xz"; - }; - }; - lokalize = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/lokalize-15.08.3.tar.xz"; - sha256 = "1xzxbgiq5q1v578d9w9pir279n05z2dyqlgq98213zhama6df18z"; - name = "lokalize-15.08.3.tar.xz"; - }; - }; - lskat = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/lskat-15.08.3.tar.xz"; - sha256 = "1kag1wqr5m1r7s3i29h8ls2zrva2whmaxjj400zgn9j404dyjmmd"; - name = "lskat-15.08.3.tar.xz"; - }; - }; - marble = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/marble-15.08.3.tar.xz"; - sha256 = "0i18wss2zq3nfaxr9h7bnj3nb4ib07d3rylphhbjpi766z6k2cbl"; - name = "marble-15.08.3.tar.xz"; - }; - }; - mplayerthumbs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/mplayerthumbs-15.08.3.tar.xz"; - sha256 = "03zda3iy20zq42kn51894yzsbmyq92gvrlzs2hm7fyp5lv199ybm"; - name = "mplayerthumbs-15.08.3.tar.xz"; - }; - }; - okteta = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/okteta-15.08.3.tar.xz"; - sha256 = "11540qlv95iwzmwi17ncbgklakywwdj4r4iylnkpw7fv4sx6fhrd"; - name = "okteta-15.08.3.tar.xz"; - }; - }; - okular = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/okular-15.08.3.tar.xz"; - sha256 = "1inbvcyafa8dfy7kignb2ksc984kriax7n2qrz3rxydw9n0r6bi5"; - name = "okular-15.08.3.tar.xz"; - }; - }; - oxygen-icons = { - version = "15.04.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz"; - sha256 = "07npzyrbw2fn1qd04imnv7cz0sisk7yllrwr2y21yr2i1gbncfqk"; - name = "oxygen-icons-15.04.3.tar.xz"; - }; - }; - palapeli = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/palapeli-15.08.3.tar.xz"; - sha256 = "167svcjz7a8x032585jx63m94jy3xza5zb1b61rchn2xxbar7fx9"; - name = "palapeli-15.08.3.tar.xz"; - }; - }; - parley = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/parley-15.08.3.tar.xz"; - sha256 = "07gshvn8c3ifyzfkscakc1x7kgbzgxcxx12f05n56nm60rbq89w5"; - name = "parley-15.08.3.tar.xz"; - }; - }; - picmi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/picmi-15.08.3.tar.xz"; - sha256 = "0cjj6xrdacvwpc6v6xb88j31m60k4gimc7k4hlmyv102vvagmv8y"; - name = "picmi-15.08.3.tar.xz"; - }; - }; - poxml = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/poxml-15.08.3.tar.xz"; - sha256 = "0vls7kdqswwx9cnn8iw1iwq9jl861cmzjk2avrdllpsa4vbjfxal"; - name = "poxml-15.08.3.tar.xz"; - }; - }; - print-manager = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/print-manager-15.08.3.tar.xz"; - sha256 = "19jw5xpwhblxfdh1kf6dniwy3pqmqaq7cimdn8zrzliclfjdfq2m"; - name = "print-manager-15.08.3.tar.xz"; - }; - }; - rocs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/rocs-15.08.3.tar.xz"; - sha256 = "0qb0krn9cw5jn9djf3drg7c28lxnb6ih2a6q9a6wdl7snc4cxp5r"; - name = "rocs-15.08.3.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/signon-kwallet-extension-15.08.3.tar.xz"; - sha256 = "0h7ixsxd2d9x4lqxilrajaxw260gdpj6lp68qgkq2vfv4v2hnfpv"; - name = "signon-kwallet-extension-15.08.3.tar.xz"; - }; - }; - step = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/step-15.08.3.tar.xz"; - sha256 = "092byp3y91ljp91n1qp3clsgi5bvfp9c8q90y14llkk3693nq6qa"; - name = "step-15.08.3.tar.xz"; - }; - }; - superkaramba = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/superkaramba-15.08.3.tar.xz"; - sha256 = "1z9pz9syqlz180hb0imvabag3cmwfix89811vbz9lqwa91a4i199"; - name = "superkaramba-15.08.3.tar.xz"; - }; - }; - svgpart = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/svgpart-15.08.3.tar.xz"; - sha256 = "0pdj8dlxdws7ccafj4nldi3xwdzsmbyi2c079ddq3pbrglm2r16h"; - name = "svgpart-15.08.3.tar.xz"; - }; - }; - sweeper = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/sweeper-15.08.3.tar.xz"; - sha256 = "0mmhw0d63b3m88x9wv2dynp1xm04f0kkhp6iqnm69y91wdgy7kq5"; - name = "sweeper-15.08.3.tar.xz"; - }; - }; - syndication = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/syndication-15.08.3.tar.xz"; - sha256 = "05hjxpfyqd8z4q0142n5f97qcwpfwr131xxpvsj1pzrqrx52im27"; - name = "syndication-15.08.3.tar.xz"; - }; - }; - umbrello = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/umbrello-15.08.3.tar.xz"; - sha256 = "0pk4xc7sn1b1i1waxngrna33lhs2p03ny0vqm159qfhqawb3fpyg"; - name = "umbrello-15.08.3.tar.xz"; - }; - }; - zeroconf-ioslave = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/zeroconf-ioslave-15.08.3.tar.xz"; - sha256 = "1vbag0ajhr1b3psg4232j7y0nnff6gdn32r4212ybfzaxnh51479"; - name = "zeroconf-ioslave-15.08.3.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/plasma-5.4/bluedevil.nix b/pkgs/desktops/plasma-5.4/bluedevil.nix deleted file mode 100644 index d099e95a16b..00000000000 --- a/pkgs/desktops/plasma-5.4/bluedevil.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons -, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework -, qtdeclarative, shared_mime_info -}: - -plasmaPackage { - name = "bluedevil"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper shared_mime_info - ]; - buildInputs = [ - kcoreaddons kdbusaddons kded kiconthemes knotifications - kwidgetsaddons - ]; - propagatedBuildInputs = [ - bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/bluedevil-wizard" - wrapQtProgram "$out/bin/bluedevil-sendfile" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/breeze-qt4.nix b/pkgs/desktops/plasma-5.4/breeze-qt4.nix deleted file mode 100644 index f8092bc9d37..00000000000 --- a/pkgs/desktops/plasma-5.4/breeze-qt4.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ plasmaPackage -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qt4 -, xproto -}: - -plasmaPackage { - name = "breeze-qt4"; - sname = "breeze"; - buildInputs = [ - kdelibs - qt4 - xproto - ]; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - cmakeFlags = [ - "-DUSE_KDE4=ON" - "-DQT_QMAKE_EXECUTABLE=${qt4}/bin/qmake" - ]; -} diff --git a/pkgs/desktops/plasma-5.4/breeze-qt5.nix b/pkgs/desktops/plasma-5.4/breeze-qt5.nix deleted file mode 100644 index f50179ef64c..00000000000 --- a/pkgs/desktops/plasma-5.4/breeze-qt5.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, frameworkintegration -, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons -, ki18n, kwindowsystem, makeQtWrapper, qtx11extras -}: - -plasmaPackage { - name = "breeze-qt5"; - sname = "breeze"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons - ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; - cmakeFlags = [ "-DUSE_Qt4=OFF" ]; - postInstall = '' - wrapQtProgram "$out/bin/breeze-settings5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/default.nix b/pkgs/desktops/plasma-5.4/default.nix deleted file mode 100644 index 570134d824f..00000000000 --- a/pkgs/desktops/plasma-5.4/default.nix +++ /dev/null @@ -1,86 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv symlinkJoin; - - kf5 = pkgs.kf514; - kdeApps = pkgs.kdeApps_15_08; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - plasmaPackage = args: - let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - setupHook = args.setupHook or ./setup-hook.sh; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ttuegel ]; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - addPackages = self: with self; { - bluedevil = callPackage ./bluedevil.nix {}; - breeze-qt4 = callPackage ./breeze-qt4.nix {}; - breeze-qt5 = callPackage ./breeze-qt5.nix {}; - breeze = - let version = (builtins.parseDrvName breeze-qt5.name).version; - in symlinkJoin "breeze-${version}" [ breeze-qt4 breeze-qt5 ]; - kde-cli-tools = callPackage ./kde-cli-tools.nix {}; - kde-gtk-config = callPackage ./kde-gtk-config {}; - kdecoration = callPackage ./kdecoration.nix {}; - kdeplasma-addons = callPackage ./kdeplasma-addons.nix {}; - kgamma5 = callPackage ./kgamma5.nix {}; - khelpcenter = callPackage ./khelpcenter.nix {}; - khotkeys = callPackage ./khotkeys.nix {}; - kinfocenter = callPackage ./kinfocenter.nix {}; - kmenuedit = callPackage ./kmenuedit.nix {}; - kscreen = callPackage ./kscreen.nix {}; - ksshaskpass = callPackage ./ksshaskpass.nix {}; - ksysguard = callPackage ./ksysguard.nix {}; - kwayland = callPackage ./kwayland.nix {}; - kwin = callPackage ./kwin {}; - kwrited = callPackage ./kwrited.nix {}; - libkscreen = callPackage ./libkscreen {}; - libksysguard = callPackage ./libksysguard {}; - milou = callPackage ./milou.nix {}; - oxygen = callPackage ./oxygen.nix {}; - oxygen-fonts = callPackage ./oxygen-fonts.nix {}; - plasma-desktop = callPackage ./plasma-desktop {}; - plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; - plasma-nm = callPackage ./plasma-nm {}; - plasma-pa = callPackage ./plasma-pa.nix {}; - plasma-workspace = callPackage ./plasma-workspace {}; - plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; - polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; - powerdevil = callPackage ./powerdevil.nix {}; - systemsettings = callPackage ./systemsettings.nix {}; - }; - - newScope = scope: kdeApps.newScope ({ inherit plasmaPackage; } // scope); - -in lib.makeScope newScope addPackages diff --git a/pkgs/desktops/plasma-5.4/fetchsrcs.sh b/pkgs/desktops/plasma-5.4/fetchsrcs.sh deleted file mode 100755 index db2db8f8e56..00000000000 --- a/pkgs/desktops/plasma-5.4/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.4.3/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/desktops/plasma-5.4/kde-cli-tools.nix b/pkgs/desktops/plasma-5.4/kde-cli-tools.nix deleted file mode 100644 index 7f19af6959e..00000000000 --- a/pkgs/desktops/plasma-5.4/kde-cli-tools.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcmutils, kconfig -, kdelibs4support, kdesu, kdoctools, ki18n, kiconthemes -, kwindowsystem, makeQtWrapper, qtsvg, qtx11extras -}: - -plasmaPackage { - name = "kde-cli-tools"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcmutils kconfig kdesu kiconthemes - ]; - propagatedBuildInputs = [ - kdelibs4support ki18n kwindowsystem qtsvg qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kmimetypefinder5" - wrapQtProgram "$out/bin/ksvgtopng5" - wrapQtProgram "$out/bin/ktraderclient5" - wrapQtProgram "$out/bin/kioclient5" - wrapQtProgram "$out/bin/kdecp5" - wrapQtProgram "$out/bin/keditfiletype5" - wrapQtProgram "$out/bin/kcmshell5" - wrapQtProgram "$out/bin/kdemv5" - wrapQtProgram "$out/bin/kstart5" - wrapQtProgram "$out/bin/kde-open5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch deleted file mode 100644 index 759eda4cc13..00000000000 --- a/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 33b25c2e3c7a002c7f726cd79fc4bab22b1299be Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Tue, 27 Oct 2015 18:07:54 -0500 -Subject: [PATCH] follow symlinks - ---- - src/appearancegtk2.cpp | 2 +- - src/iconthemesmodel.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/appearancegtk2.cpp b/src/appearancegtk2.cpp -index b1e0b52..095cddc 100644 ---- a/src/appearancegtk2.cpp -+++ b/src/appearancegtk2.cpp -@@ -73,7 +73,7 @@ QString AppearanceGTK2::themesGtkrcFile(const QString& themeName) const - QStringList themes=installedThemes(); - themes=themes.filter(QRegExp("/"+themeName+"/?$")); - if(themes.size()==1) { -- QDirIterator it(themes.first(), QDirIterator::Subdirectories); -+ QDirIterator it(themes.first(), QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while(it.hasNext()) { - it.next(); - if(it.fileName()=="gtkrc") { -diff --git a/src/iconthemesmodel.cpp b/src/iconthemesmodel.cpp -index 07c7ad7..b04d978 100644 ---- a/src/iconthemesmodel.cpp -+++ b/src/iconthemesmodel.cpp -@@ -46,7 +46,7 @@ QList IconThemesModel::installedThemesPaths() - - foreach(const QString& dir, dirs) { - QDir userIconsDir(dir); -- QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks); -+ QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs); - while(it.hasNext()) { - QString currentPath = it.next(); - QDir dir(currentPath); --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix b/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix deleted file mode 100644 index 6b41599994d..00000000000 --- a/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, glib -, gtk2 -, gtk3 -, karchive -, kcmutils -, kconfigwidgets -, ki18n -, kiconthemes -, kio -, knewstuff -}: - -plasmaPackage { - name = "kde-gtk-config"; - patches = [ ./0001-follow-symlinks.patch ]; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes - knewstuff - ]; - propagatedBuildInputs = [ ki18n kio ]; - cmakeFlags = [ - "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" - "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include" - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kdecoration.nix b/pkgs/desktops/plasma-5.4/kdecoration.nix deleted file mode 100644 index eb65f7f90af..00000000000 --- a/pkgs/desktops/plasma-5.4/kdecoration.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ plasmaPackage, extra-cmake-modules }: - -plasmaPackage { - name = "kdecoration"; - nativeBuildInputs = [ extra-cmake-modules ]; -} diff --git a/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix b/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix deleted file mode 100644 index d6a96a3276d..00000000000 --- a/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig -, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n -, kio, knewstuff, kross, krunner, kservice, kunitconversion -, plasma-framework, qtdeclarative, qtx11extras -}: - -plasmaPackage { - name = "kdeplasma-addons"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - ibus kconfig kconfigwidgets kcoreaddons kcmutils - knewstuff kservice kunitconversion - ]; - propagatedBuildInputs = [ - kdelibs4support kio kross krunner plasma-framework qtdeclarative - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kgamma5.nix b/pkgs/desktops/plasma-5.4/kgamma5.nix deleted file mode 100644 index 965c33e6eef..00000000000 --- a/pkgs/desktops/plasma-5.4/kgamma5.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kdelibs4support -, qtx11extras -}: - -plasmaPackage { - name = "kgamma5"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - propagatedBuildInputs = [ kdelibs4support qtx11extras ]; -} diff --git a/pkgs/desktops/plasma-5.4/khelpcenter.nix b/pkgs/desktops/plasma-5.4/khelpcenter.nix deleted file mode 100644 index 6ba860b9dfb..00000000000 --- a/pkgs/desktops/plasma-5.4/khelpcenter.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support -, khtml, kservice, makeQtWrapper -}: - -plasmaPackage { - name = "khelpcenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kinit kcmutils kservice - ]; - propagatedBuildInputs = [ kdelibs4support khtml ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/khelpcenter" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/khotkeys.nix b/pkgs/desktops/plasma-5.4/khotkeys.nix deleted file mode 100644 index 141320e6b3e..00000000000 --- a/pkgs/desktops/plasma-5.4/khotkeys.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui -, plasma-framework, plasma-workspace, qtx11extras -}: - -plasmaPackage { - name = "khotkeys"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kdbusaddons kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support kglobalaccel ki18n kio plasma-framework - plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kinfocenter.nix b/pkgs/desktops/plasma-5.4/kinfocenter.nix deleted file mode 100644 index ed717790cd0..00000000000 --- a/pkgs/desktops/plasma-5.4/kinfocenter.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons -, kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kpackage -, kservice, kwidgetsaddons, kxmlgui, libraw1394, makeQtWrapper -, pciutils, solid -}: - -plasmaPackage { - name = "kinfocenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcmutils kcompletion kconfig kconfigwidgets kcoreaddons - kdbusaddons kiconthemes kpackage kservice kwidgetsaddons - kxmlgui libraw1394 pciutils solid - ]; - propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ]; - postInstall = '' - wrapQtProgram "$out/bin/kinfocenter" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kmenuedit.nix b/pkgs/desktops/plasma-5.4/kmenuedit.nix deleted file mode 100644 index 3834ca1328f..00000000000 --- a/pkgs/desktops/plasma-5.4/kmenuedit.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui -, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper -}: - -plasmaPackage { - name = "kmenuedit"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kxmlgui kdbusaddons kiconthemes - ]; - propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kmenuedit" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kscreen.nix b/pkgs/desktops/plasma-5.4/kscreen.nix deleted file mode 100644 index dac7a6ba20a..00000000000 --- a/pkgs/desktops/plasma-5.4/kscreen.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets -, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui -, libkscreen, makeQtWrapper, qtdeclarative -}: - -plasmaPackage { - name = "kscreen"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kconfig kconfigwidgets kdbusaddons kwidgetsaddons kxmlgui - ]; - propagatedBuildInputs = [ kglobalaccel ki18n libkscreen qtdeclarative ]; - propagatedUserEnvPkgs = [ - libkscreen # D-Bus service - ]; - postInstall = '' - wrapQtProgram "$out/bin/kscreen-console" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/ksshaskpass.nix b/pkgs/desktops/plasma-5.4/ksshaskpass.nix deleted file mode 100644 index f274512e027..00000000000 --- a/pkgs/desktops/plasma-5.4/ksshaskpass.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcoreaddons -, ki18n, kwallet, kwidgetsaddons, makeQtWrapper -}: - -plasmaPackage { - name = "ksshaskpass"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kcoreaddons kwallet kwidgetsaddons ]; - propagatedBuildInputs = [ ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksshaskpass" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/ksysguard.nix b/pkgs/desktops/plasma-5.4/ksysguard.nix deleted file mode 100644 index 7af3584989c..00000000000 --- a/pkgs/desktops/plasma-5.4/ksysguard.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff -, kiconthemes, libksysguard, makeQtWrapper -}: - -plasmaPackage { - name = "ksysguard"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard - ]; - propagatedBuildInputs = [ kdelibs4support ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksysguardd" - wrapQtProgram "$out/bin/ksysguard" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kwayland.nix b/pkgs/desktops/plasma-5.4/kwayland.nix deleted file mode 100644 index e4d6eb631f9..00000000000 --- a/pkgs/desktops/plasma-5.4/kwayland.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, wayland -}: - -plasmaPackage { - name = "kwayland"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - wayland - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 797a32fc5f8..00000000000 --- a/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 78a4b554187c18fd86b62089f7730c4273fadd4c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:05:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - clients/aurorae/src/aurorae.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp -index 781c960..ad5f420 100644 ---- a/clients/aurorae/src/aurorae.cpp -+++ b/clients/aurorae/src/aurorae.cpp -@@ -211,7 +211,7 @@ void Helper::init() - // so let's try to locate our plugin: - QString pluginPath; - for (const QString &path : m_engine->importPathList()) { -- QDirIterator it(path, QDirIterator::Subdirectories); -+ QDirIterator it(path, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - QFileInfo fileInfo = it.fileInfo(); --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/kwin/default.nix b/pkgs/desktops/plasma-5.4/kwin/default.nix deleted file mode 100644 index 2ba35807ff8..00000000000 --- a/pkgs/desktops/plasma-5.4/kwin/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, epoxy -, kactivities, kcompletion, kcmutils, kconfig, kconfigwidgets -, kcoreaddons, kcrash, kdeclarative, kdecoration, kglobalaccel -, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications -, kpackage, kservice, kwayland, kwidgetsaddons, kwindowsystem -, kxmlgui, libinput, libICE, libSM, plasma-framework, qtdeclarative -, qtmultimedia, qtscript, qtx11extras, udev, wayland, xcb-util-cursor -, makeQtWrapper -}: - -plasmaPackage { - name = "kwin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - epoxy kcompletion kcmutils kconfig kconfigwidgets kcoreaddons - kcrash kdecoration kiconthemes kinit knewstuff knotifications - kpackage kservice kwayland kwidgetsaddons kxmlgui libinput libICE - libSM qtscript udev wayland xcb-util-cursor - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kwindowsystem - plasma-framework qtdeclarative qtmultimedia qtx11extras - ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/kwin_x11" - wrapQtProgram "$out/bin/kwin_wayland" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kwrited.nix b/pkgs/desktops/plasma-5.4/kwrited.nix deleted file mode 100644 index a6ed9d9bb28..00000000000 --- a/pkgs/desktops/plasma-5.4/kwrited.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcoreaddons, ki18n, kpty -, knotifications, kdbusaddons -}: - -plasmaPackage { - name = "kwrited"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ]; - propagatedBuildInputs = [ ki18n ]; -} diff --git a/pkgs/desktops/plasma-5.4/libkscreen/default.nix b/pkgs/desktops/plasma-5.4/libkscreen/default.nix deleted file mode 100644 index 9fccbd6834c..00000000000 --- a/pkgs/desktops/plasma-5.4/libkscreen/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, libXrandr -, qtx11extras -}: - -plasmaPackage { - name = "libkscreen"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - libXrandr - ]; - propagatedBuildInputs = [ - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch b/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch deleted file mode 100644 index d5797924d23..00000000000 --- a/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch +++ /dev/null @@ -1,130 +0,0 @@ -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 460022f..422a708 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -1,5 +1,7 @@ - include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${QT_INCLUDES}) - -+configure_file(config-libkscreen.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-libkscreen.h) -+ - set(libkscreen_SRCS - backendloader.cpp - config.cpp -diff --git a/src/backendloader.cpp b/src/backendloader.cpp -index b93e469..8aebc14 100644 ---- a/src/backendloader.cpp -+++ b/src/backendloader.cpp -@@ -16,6 +16,7 @@ - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * - *************************************************************************************/ - -+#include "config-libkscreen.h" - #include "backendloader.h" - #include "debug_p.h" - #include "backends/abstractbackend.h" -@@ -40,55 +41,54 @@ bool BackendLoader::init() - const QString backend = qgetenv("KSCREEN_BACKEND").constData(); - const QString backendFilter = QString::fromLatin1("KSC_%1*").arg(backend); - -- const QStringList paths = QCoreApplication::libraryPaths(); -- Q_FOREACH (const QString &path, paths) { -- const QDir dir(path + QDir::separator() + QLatin1String("/kf5/kscreen/"), -- backendFilter, -- QDir::SortFlags(QDir::QDir::NoSort), -- QDir::NoDotAndDotDot | QDir::Files); -- const QFileInfoList finfos = dir.entryInfoList(); -- Q_FOREACH (const QFileInfo &finfo, finfos) { -- // Skip "Fake" backend unless explicitly specified via KSCREEN_BACKEND -- if (backend.isEmpty() && finfo.fileName().contains(QLatin1String("KSC_Fake"))) { -- continue; -- } -+ QString path = QFile::decodeName(CMAKE_INSTALL_PREFIX "/" PLUGIN_INSTALL_DIR "/"); - -- // When on X11, skip the QScreen backend, instead use the XRandR backend, -- // if not specified in KSCREEN_BACKEND -- if (backend.isEmpty() && -- finfo.fileName().contains(QLatin1String("KSC_QScreen")) && -- QX11Info::isPlatformX11()) { -- continue; -- } -+ const QDir dir(path + QDir::separator() + QLatin1String("/kf5/kscreen/"), -+ backendFilter, -+ QDir::SortFlags(QDir::QDir::NoSort), -+ QDir::NoDotAndDotDot | QDir::Files); -+ const QFileInfoList finfos = dir.entryInfoList(); -+ Q_FOREACH (const QFileInfo &finfo, finfos) { -+ // Skip "Fake" backend unless explicitly specified via KSCREEN_BACKEND -+ if (backend.isEmpty() && finfo.fileName().contains(QLatin1String("KSC_Fake"))) { -+ continue; -+ } - -- // When not on X11, skip the XRandR backend, and fall back to QSCreen -- // if not specified in KSCREEN_BACKEND -- if (backend.isEmpty() && -- finfo.fileName().contains(QLatin1String("KSC_XRandR")) && -- !QX11Info::isPlatformX11()) { -- continue; -- } -+ // When on X11, skip the QScreen backend, instead use the XRandR backend, -+ // if not specified in KSCREEN_BACKEND -+ if (backend.isEmpty() && -+ finfo.fileName().contains(QLatin1String("KSC_QScreen")) && -+ QX11Info::isPlatformX11()) { -+ continue; -+ } -+ -+ // When not on X11, skip the XRandR backend, and fall back to QSCreen -+ // if not specified in KSCREEN_BACKEND -+ if (backend.isEmpty() && -+ finfo.fileName().contains(QLatin1String("KSC_XRandR")) && -+ !QX11Info::isPlatformX11()) { -+ continue; -+ } - -- QPluginLoader loader(finfo.filePath()); -- loader.load(); -- QObject *instance = loader.instance(); -- if (!instance) { -+ QPluginLoader loader(finfo.filePath()); -+ loader.load(); -+ QObject *instance = loader.instance(); -+ if (!instance) { -+ loader.unload(); -+ continue; -+ } -+ -+ s_backend = qobject_cast< AbstractBackend* >(instance); -+ if (s_backend) { -+ if (!s_backend->isValid()) { -+ qCDebug(KSCREEN) << "Skipping" << s_backend->name() << "backend"; -+ delete s_backend; -+ s_backend = 0; - loader.unload(); - continue; - } -- -- s_backend = qobject_cast< AbstractBackend* >(instance); -- if (s_backend) { -- if (!s_backend->isValid()) { -- qCDebug(KSCREEN) << "Skipping" << s_backend->name() << "backend"; -- delete s_backend; -- s_backend = 0; -- loader.unload(); -- continue; -- } -- qCDebug(KSCREEN) << "Loading" << s_backend->name() << "backend"; -- return true; -- } -+ qCDebug(KSCREEN) << "Loading" << s_backend->name() << "backend"; -+ return true; - } - } - -diff --git a/src/config-libkscreen.h.cmake b/src/config-libkscreen.h.cmake -new file mode 100644 -index 0000000..a99f3d1 ---- /dev/null -+++ b/src/config-libkscreen.h.cmake -@@ -0,0 +1,2 @@ -+#define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" -+#define PLUGIN_INSTALL_DIR "${PLUGIN_INSTALL_DIR}" diff --git a/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index fbbb11ae755..00000000000 --- a/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46164a50de4102d02ae9d1d480acdd4b12303db8 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:07:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - processui/scripting.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/processui/scripting.cpp b/processui/scripting.cpp -index efed8ff..841761a 100644 ---- a/processui/scripting.cpp -+++ b/processui/scripting.cpp -@@ -167,7 +167,7 @@ void Scripting::loadContextMenu() { - QStringList scripts; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "ksysguard/scripts/", QStandardPaths::LocateDirectory); - Q_FOREACH (const QString& dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - scripts.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/libksysguard/default.nix b/pkgs/desktops/plasma-5.4/libksysguard/default.nix deleted file mode 100644 index 373221b2b30..00000000000 --- a/pkgs/desktops/plasma-5.4/libksysguard/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kauth, kcompletion -, kconfigwidgets, kcoreaddons, kservice, kwidgetsaddons -, kwindowsystem, plasma-framework, qtscript, qtwebkit, qtx11extras -, kconfig, ki18n, kiconthemes -}: - -plasmaPackage { - name = "libksysguard"; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kservice - kwidgetsaddons qtscript qtwebkit - ]; - propagatedBuildInputs = [ - kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/milou.nix b/pkgs/desktops/plasma-5.4/milou.nix deleted file mode 100644 index 760de2d79ab..00000000000 --- a/pkgs/desktops/plasma-5.4/milou.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, qtscript, qtdeclarative -, kcoreaddons, ki18n, kdeclarative, kservice, plasma-framework -, krunner -}: - -plasmaPackage { - name = "milou"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - qtscript kcoreaddons kservice - ]; - propagatedBuildInputs = [ - kdeclarative ki18n krunner plasma-framework qtdeclarative - ]; -} diff --git a/pkgs/desktops/plasma-5.4/oxygen-fonts.nix b/pkgs/desktops/plasma-5.4/oxygen-fonts.nix deleted file mode 100644 index b1ccb6f5ffd..00000000000 --- a/pkgs/desktops/plasma-5.4/oxygen-fonts.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, fontforge -}: - -plasmaPackage { - name = "oxygen-fonts"; - nativeBuildInputs = [ - extra-cmake-modules - fontforge - ]; -} diff --git a/pkgs/desktops/plasma-5.4/oxygen.nix b/pkgs/desktops/plasma-5.4/oxygen.nix deleted file mode 100644 index 02918100408..00000000000 --- a/pkgs/desktops/plasma-5.4/oxygen.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig -, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion -, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras -}: - -plasmaPackage { - name = "oxygen"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfig kdecoration kguiaddons kwidgetsaddons - kservice kcompletion - ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/oxygen-demo5" - wrapQtProgram "$out/bin/oxygen-settings5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch deleted file mode 100644 index a0b1f880ba8..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 618d86f35b83ee9e57da12be9d0866e34e487b88 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 28 Aug 2015 10:16:38 -0500 -Subject: [PATCH 1/3] hwclock - ---- - kcms/dateandtime/helper.cpp | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index cec5ab8..fc4a6b9 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -48,10 +48,6 @@ - #include - #endif - --// We cannot rely on the $PATH environment variable, because D-Bus activation --// clears it. So we have to use a reasonable default. --static const QString exePath = QLatin1String("/usr/sbin:/usr/bin:/sbin:/bin"); -- - int ClockHelper::ntp( const QStringList& ntpServers, bool ntpEnabled ) - { - int ret = 0; -@@ -227,7 +223,7 @@ int ClockHelper::tzreset() - - void ClockHelper::toHwclock() - { -- QString hwclock = KStandardDirs::findExe("hwclock", exePath); -+ QString hwclock = "@hwclock@"; - if (!hwclock.isEmpty()) { - KProcess::execute(hwclock, QStringList() << "--systohc"); - } --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch deleted file mode 100644 index 900c4d095e8..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch +++ /dev/null @@ -1,30 +0,0 @@ -From decdc77a7e89b6f1bb3d49268b08a43daf4a7147 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 28 Aug 2015 10:16:53 -0500 -Subject: [PATCH 2/3] zoneinfo - ---- - kcms/dateandtime/helper.cpp | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index fc4a6b9..7b64d05 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -181,7 +181,12 @@ int ClockHelper::tz( const QString& selectedzone ) - - val = selectedzone; - #else -- QString tz = "/usr/share/zoneinfo/" + selectedzone; -+ // NixOS-specific path -+ QString tz = "/etc/zoneinfo/" + selectedzone; -+ if (!QFile::exists(tz)) { -+ // Standard Linux path -+ tz = "/usr/share/zoneinfo/" + selectedzone; -+ } - - if (QFile::exists(tz)) { // make sure the new TZ really exists - QFile::remove("/etc/localtime"); --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch deleted file mode 100644 index 6b143bd2eb0..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 4231d70ec08d9bbb367b222d9ef04454c1dc7328 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:45:36 -0500 -Subject: [PATCH 3/3] qt-5.5 QML import paths - ---- - applets/pager/package/contents/ui/main.qml | 2 +- - containments/desktop/package/contents/ui/FolderView.qml | 2 +- - containments/desktop/package/contents/ui/main.qml | 2 +- - containments/panel/contents/ui/main.qml | 2 +- - 4 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/applets/pager/package/contents/ui/main.qml b/applets/pager/package/contents/ui/main.qml -index 0c367c6..c9a82be 100644 ---- a/applets/pager/package/contents/ui/main.qml -+++ b/applets/pager/package/contents/ui/main.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddonsComponents - import org.kde.draganddrop 2.0 - import org.kde.plasma.private.pager 2.0 --import "utils.js" as Utils -+import "../code/utils.js" as Utils - - MouseArea { - id: root -diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml -index 578ec87..04e088c 100644 ---- a/containments/desktop/package/contents/ui/FolderView.qml -+++ b/containments/desktop/package/contents/ui/FolderView.qml -@@ -27,7 +27,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 - - import org.kde.private.desktopcontainment.folder 0.1 as Folder --import "FolderTools.js" as FolderTools -+import "../code/FolderTools.js" as FolderTools - - Item { - id: main -diff --git a/containments/desktop/package/contents/ui/main.qml b/containments/desktop/package/contents/ui/main.qml -index 8c42706..fc74433 100644 ---- a/containments/desktop/package/contents/ui/main.qml -+++ b/containments/desktop/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.draganddrop 2.0 as DragDrop - - import org.kde.private.desktopcontainment.desktop 0.1 as Desktop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root -diff --git a/containments/panel/contents/ui/main.qml b/containments/panel/contents/ui/main.qml -index 6a6f364..edba48e 100644 ---- a/containments/panel/contents/ui/main.qml -+++ b/containments/panel/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 - import org.kde.draganddrop 2.0 as DragDrop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix b/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix deleted file mode 100644 index 6aae2e20aaa..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix +++ /dev/null @@ -1,59 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils -, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons -, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications -, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon -, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras -, qtsvg, libXcursor, libXft, libxkbfile, xf86inputevdev -, xf86inputsynaptics, xinput, xkeyboard_config, xorgserver -, libcanberra_kde, libpulseaudio, makeQtWrapper, utillinux -, qtquick1, qtquickcontrols -}: - -plasmaPackage rec { - name = "plasma-desktop"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - attica boost fontconfig kcmutils kdbusaddons kded kitemmodels - knewstuff knotifications knotifyconfig kwallet libcanberra_kde - libXcursor libpulseaudio libXft libxkbfile phonon - qtsvg xf86inputevdev xf86inputsynaptics - xkeyboard_config xinput - ]; - propagatedBuildInputs = [ - baloo kactivities kauth kdeclarative kdelibs4support kemoticons - kglobalaccel ki18n kpeople krunner kwin plasma-framework - plasma-workspace qtdeclarative qtquick1 qtquickcontrols - qtx11extras - ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; - patches = [ - (substituteAll { - src = ./0001-hwclock.patch; - hwclock = "${utillinux}/sbin/hwclock"; - }) - ./0002-zoneinfo.patch - ./0003-qt-5.5-QML-import-paths.patch - ]; - NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ]; - cmakeFlags = [ - "-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg" - "-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg" - ]; - postInstall = '' - wrapQtProgram "$out/bin/kaccess" - wrapQtProgram "$out/bin/solid-action-desktop-gen" - wrapQtProgram "$out/bin/knetattach" - wrapQtProgram "$out/bin/krdb" - wrapQtProgram "$out/bin/kapplymousetheme" - wrapQtProgram "$out/bin/kfontinst" - wrapQtProgram "$out/bin/kcm-touchpad-list-devices" - wrapQtProgram "$out/bin/kfontview" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix b/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix deleted file mode 100644 index afd8a18bbbd..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig -, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice -, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia -, taglib -}: - -plasmaPackage rec { - name = "plasma-mediacenter"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kconfig kcoreaddons kguiaddons kservice - qtdeclarative qtmultimedia taglib - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kfilemetadata ki18n kio - plasma-framework - ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch deleted file mode 100644 index 79b5cfb437e..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From faf13c97ff1192a201843b9d52f4002dbd9022af Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 25 Oct 2015 09:09:27 -0500 -Subject: [PATCH] mobile-broadband-provider-info path - ---- - libs/editor/mobileproviders.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libs/editor/mobileproviders.cpp b/libs/editor/mobileproviders.cpp -index 568cb34..98a5992 100644 ---- a/libs/editor/mobileproviders.cpp -+++ b/libs/editor/mobileproviders.cpp -@@ -26,7 +26,7 @@ - - #include - --const QString MobileProviders::ProvidersFile = "/usr/share/mobile-broadband-provider-info/serviceproviders.xml"; -+const QString MobileProviders::ProvidersFile = "@mobile_broadband_provider_info@/share/mobile-broadband-provider-info/serviceproviders.xml"; - - bool localeAwareCompare(const QString & one, const QString & two) { - return one.localeAwareCompare(two) < 0; --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-nm/default.nix b/pkgs/desktops/plasma-5.4/plasma-nm/default.nix deleted file mode 100644 index 7e229d58052..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-nm/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, kcompletion, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdelibs4support, ki18n, kiconthemes, kinit, kio, kitemviews -, knotifications, kservice, kwallet, kwidgetsaddons, kwindowsystem -, kxmlgui, makeQtWrapper, mobile_broadband_provider_info -, modemmanager-qt, networkmanager-qt, openconnect, plasma-framework -, qtdeclarative, solid -}: - -plasmaPackage { - name = "plasma-nm"; - patches = [ - (substituteAll { - src = ./0001-mobile-broadband-provider-info-path.patch; - inherit mobile_broadband_provider_info; - }) - ]; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes - kinit kitemviews knotifications kservice kwallet kwidgetsaddons - kxmlgui mobile_broadband_provider_info modemmanager-qt - networkmanager-qt openconnect solid - ]; - propagatedBuildInputs = [ - kdeclarative kdelibs4support ki18n kio kwindowsystem plasma-framework - qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kde5-nm-connection-editor" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-pa.nix b/pkgs/desktops/plasma-5.4/plasma-pa.nix deleted file mode 100644 index aef6bfeb679..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-pa.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, glib, kconfigwidgets -, kcoreaddons, kdeclarative, kglobalaccel, ki18n, libpulseaudio -, plasma-framework -}: - -plasmaPackage { - name = "plasma-pa"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - glib kconfigwidgets kcoreaddons libpulseaudio - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n plasma-framework - ]; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix b/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix deleted file mode 100644 index bc87abcad15..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -}: - -plasmaPackage { - name = "plasma-workspace-wallpapers"; - nativeBuildInputs = [ - extra-cmake-modules - ]; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch b/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch deleted file mode 100644 index f66cb618927..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch +++ /dev/null @@ -1,401 +0,0 @@ -From 35efc2ce92ed698abb21a79aa6e6670e844ea776 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Thu, 27 Aug 2015 20:36:39 -0500 -Subject: [PATCH 1/2] startkde NixOS patches - ---- - startkde/startkde.cmake | 217 ++++++++++++++++++++---------------------------- - 1 file changed, 88 insertions(+), 129 deletions(-) - -diff --git a/startkde/startkde.cmake b/startkde/startkde.cmake -index 2c4c315..7733721 100644 ---- a/startkde/startkde.cmake -+++ b/startkde/startkde.cmake -@@ -1,8 +1,31 @@ --#!/bin/sh -+#!@bash@/bin/bash - # - # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) - # - -+set -x -+ -+# The KDE icon cache is supposed to update itself -+# automatically, but it uses the timestamp on the icon -+# theme directory as a trigger. Since in Nix the -+# timestamp is always the same, this doesn't work. So as -+# a workaround, nuke the icon cache on login. This isn't -+# perfect, since it may require logging out after -+# installing new applications to update the cache. -+# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html -+rm -fv $HOME/.cache/icon-cache.kcache -+ -+# Qt writes a weird ‘libraryPath’ line to -+# ~/.config/Trolltech.conf that causes the KDE plugin -+# paths of previous KDE invocations to be searched. -+# Obviously using mismatching KDE libraries is potentially -+# disastrous, so here we nuke references to the Nix store -+# in Trolltech.conf. A better solution would be to stop -+# Qt from doing this wackiness in the first place. -+if [ -e $HOME/.config/Trolltech.conf ]; then -+ @gnused@/bin/sed -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf -+fi -+ - if test "x$1" = x--failsafe; then - KDE_FAILSAFE=1 # General failsafe flag - KWIN_COMPOSE=N # Disable KWin's compositing -@@ -16,29 +39,16 @@ trap 'echo GOT SIGHUP' HUP - # we have to unset this for Darwin since it will screw up KDE's dynamic-loading - unset DYLD_FORCE_FLAT_NAMESPACE - --# in case we have been started with full pathname spec without being in PATH --bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` --if [ -n "$bindir" ]; then -- qbindir=`qtpaths --binaries-dir` -- qdbus=$qbindir/qdbus -- case $PATH in -- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; -- *) PATH=$bindir:$PATH; export PATH;; -- esac --else -- qdbus=qdbus --fi -- - # Check if a KDE session already is running and whether it's possible to connect to X --kcheckrunning -+@out@/bin/kcheckrunning - kcheckrunning_result=$? - if test $kcheckrunning_result -eq 0 ; then -- echo "KDE seems to be already running on this display." -- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null -+ echo "KDE seems to be already running on this display." -+ @xmessage@/bin/xmessage -geometry 500x100 "KDE seems to be already running on this display." - exit 1 - elif test $kcheckrunning_result -eq 2 ; then - echo "\$DISPLAY is not set or cannot connect to the X server." -- exit 1 -+ exit 1 - fi - - # Boot sequence: -@@ -56,13 +66,8 @@ fi - # * Then ksmserver is started which takes control of the rest of the startup sequence - - # We need to create config folder so we can write startupconfigkeys --if [ ${XDG_CONFIG_HOME} ]; then -- configDir=$XDG_CONFIG_HOME; --else -- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html --fi -- --mkdir -p $configDir -+configDir=$(@qttools@/bin/qtpaths --writable-path GenericConfigLocation) -+mkdir -p "$configDir" - - #This is basically setting defaults so we can use them with kstartupconfig5 - cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then -+ : # ok -+else -+ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -+ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -+ exit 1 -+fi -+ - ksplash_pid= - if test -z "$dl"; then - # the splashscreen and progress indicator - case "$ksplashrc_ksplash_engine" in - KSplashQML) -- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` -+ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` - ;; - None) - ;; -@@ -200,8 +189,7 @@ fi - # For anything else (that doesn't set env vars, or that needs a window manager), - # better use the Autostart folder. - --# TODO: Use GenericConfigLocation once we depend on Qt 5.4 --scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` -+scriptpath=$(@qttools@/bin/qtpaths --paths GenericConfigLocation | tr ':' '\n' | @gnused@/bin/sed 's,$,/plasma-workspace,g') - - # Add /env/ to the directory to locate the scripts to be sourced - for prefix in `echo $scriptpath`; do -@@ -231,7 +219,7 @@ usr_odir=$HOME/.fonts/kde-override - usr_fdir=$HOME/.fonts - - if test -n "$KDEDIRS"; then -- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` -+ kdedirs_first=`echo "$KDEDIRS" | @gnused@/bin/sed -e 's/:.*//'` - sys_odir=$kdedirs_first/share/fonts/override - sys_fdir=$kdedirs_first/share/fonts - else -@@ -244,23 +232,13 @@ fi - # add the user's dirs to the font path, as they might simply have been made - # read-only by the administrator, for whatever reason. - --test -d "$sys_odir" && xset +fp "$sys_odir" --test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") --test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") --test -d "$sys_fdir" && xset fp+ "$sys_fdir" -+test -d "$sys_odir" && @xset@/bin/xset +fp "$sys_odir" -+test -d "$usr_odir" && ( @mkfontdir@/bin/mkfontdir "$usr_odir" ; @xset@/bin/xset +fp "$usr_odir" ) -+test -d "$usr_fdir" && ( @mkfontdir@/bin/mkfontdir "$usr_fdir" ; @xset@/bin/xset fp+ "$usr_fdir" ) -+test -d "$sys_fdir" && @xset@/bin/xset fp+ "$sys_fdir" - - # Ask X11 to rebuild its font list. --xset fp rehash -- --# Set a left cursor instead of the standard X11 "X" cursor, since I've heard --# from some users that they're confused and don't know what to do. This is --# especially necessary on slow machines, where starting KDE takes one or two --# minutes until anything appears on the screen. --# --# If the user has overwritten fonts, the cursor font may be different now --# so don't move this up. --# --xsetroot -cursor_name left_ptr -+@xset@/bin/xset fp rehash - - # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap - if test -n "$GS_LIB" ; then -@@ -273,30 +251,6 @@ fi - - echo 'startkde: Starting up...' 1>&2 - --# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. --# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend --# to set it to a list of paths *not* including the KDE prefix if it's not /usr or --# /usr/local. --if test -z "$XDG_DATA_DIRS"; then -- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" --fi --export XDG_DATA_DIRS -- --# Make sure that D-Bus is running --# D-Bus autolaunch is broken --if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then -- eval `dbus-launch --sh-syntax --exit-with-session` --fi --if $qdbus >/dev/null 2>/dev/null; then -- : # ok --else -- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -- exit 1 --fi -- -- - # Mark that full KDE session is running (e.g. Konqueror preloading works only - # with full KDE running). The KDE_FULL_SESSION property can be detected by - # any X client connected to the same X session, even if not launched -@@ -321,11 +275,11 @@ fi - # - KDE_FULL_SESSION=true - export KDE_FULL_SESSION --xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true -+@xprop@/bin/xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true - - KDE_SESSION_VERSION=5 - export KDE_SESSION_VERSION --xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 -+@xprop@/bin/xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 - - KDE_SESSION_UID=`id -ru` - export KDE_SESSION_UID -@@ -335,11 +289,11 @@ export XDG_CURRENT_DESKTOP - - # At this point all the environment is ready, let's send it to kwalletd if running - if test -n "$PAM_KWALLET_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN - fi - # ...and also to kwalletd5 - if test -n "$PAM_KWALLET5_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN - fi - - # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -348,21 +302,26 @@ if test $? -ne 0; then - # Startup error - echo 'startkde: Could not sync environment to dbus.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not sync environment to dbus." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not sync environment to dbus." - exit 1 - fi - - # We set LD_BIND_NOW to increase the efficiency of kdeinit. - # kdeinit unsets this variable before loading applications. --LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup -+LD_BIND_NOW=true @kinit@/lib/libexec/kf5/start_kdeinit_wrapper --kded +kcminit_startup - if test $? -ne 0; then - # Startup error - echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." - exit 1 - fi - -+# (NixOS) We run kbuildsycoca5 before starting the user session because things -+# may be missing or moved if they have run nixos-rebuild and it may not be -+# possible for them to start Konsole to run it manually! -+@kservice@/bin/kbuildsycoca5 -+ - # finally, give the session control to the session manager - # see kdebase/ksmserver for the description of the rest of the startup sequence - # if the KDEWM environment variable has been set, then it will be used as KDE's -@@ -378,27 +337,27 @@ test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" - # lock now and do the rest of the KDE startup underneath the locker. - KSMSERVEROPTIONS="" - test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" --kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS -+@kinit@/bin/kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS - if test $? -eq 255; then - # Startup error - echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." - fi - --wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` -+wait_drkonqi=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` - - if test x"$wait_drkonqi"x = x"true"x ; then - # wait for remaining drkonqi instances with timeout (in seconds) -- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` -+ wait_drkonqi_timeout=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` - wait_drkonqi_counter=0 -- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do -+ while @qttools@/bin/qdbus | @gnugrep@/bin/grep "^[^w]*org.kde.drkonqi" > /dev/null ; do - sleep 5 - wait_drkonqi_counter=$((wait_drkonqi_counter+5)) - if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then - # ask remaining drkonqis to die in a graceful way -- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do -- $qdbus "$address" "/MainApplication" "quit" -+ @qttools@/bin/qdbus | @gnugrep@/bin/grep 'org.kde.drkonqi-' | while read address ; do -+ @qttools@/bin/qdbus "$address" "/MainApplication" "quit" - done - break - fi -@@ -410,21 +369,21 @@ echo 'startkde: Shutting down...' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - - # Clean up --kdeinit5_shutdown -+@kinit@/bin/kdeinit5_shutdown - - echo 'startkde: Running shutdown scripts...' 1>&2 - - # Run scripts found in /plasma-workspace/shutdown - for prefix in `echo "$scriptpath"`; do -- for file in `ls "$prefix"/shutdown 2> /dev/null | egrep -v '(~|\.bak)$'`; do -+ for file in `ls "$prefix"/shutdown 2> /dev/null | @gnugrep@/bin/egrep -v '(~|\.bak)$'`; do - test -x "$prefix/shutdown/$file" && "$prefix/shutdown/$file" - done - done - - unset KDE_FULL_SESSION --xprop -root -remove KDE_FULL_SESSION -+@xprop@/bin/xprop -root -remove KDE_FULL_SESSION - unset KDE_SESSION_VERSION --xprop -root -remove KDE_SESSION_VERSION -+@xprop@/bin/xprop -root -remove KDE_SESSION_VERSION - unset KDE_SESSION_UID - - echo 'startkde: Done.' 1>&2 --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch deleted file mode 100644 index 7614a2add9d..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,123 +0,0 @@ -From 033d3560d26ceabbd6da6310d326fec7a473df82 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:55:36 -0500 -Subject: [PATCH 2/2] qt-5.5 QML import paths - ---- - applets/analog-clock/contents/ui/analogclock.qml | 2 +- - applets/batterymonitor/package/contents/ui/BatteryItem.qml | 2 +- - applets/batterymonitor/package/contents/ui/CompactRepresentation.qml | 2 +- - applets/batterymonitor/package/contents/ui/PopupDialog.qml | 2 +- - applets/batterymonitor/package/contents/ui/batterymonitor.qml | 2 +- - applets/lock_logout/contents/ui/lockout.qml | 2 +- - applets/notifications/package/contents/ui/main.qml | 2 +- - applets/systemtray/package/contents/ui/main.qml | 2 +- - 8 files changed, 8 insertions(+), 8 deletions(-) - -diff --git a/applets/analog-clock/contents/ui/analogclock.qml b/applets/analog-clock/contents/ui/analogclock.qml -index edb3af9..7eb839d 100644 ---- a/applets/analog-clock/contents/ui/analogclock.qml -+++ b/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as PlasmaCalendar - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -diff --git a/applets/batterymonitor/package/contents/ui/BatteryItem.qml b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -index 8d43797..3322369 100644 ---- a/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -diff --git a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -index b4059cb..ae8eeaf 100755 ---- a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -diff --git a/applets/batterymonitor/package/contents/ui/PopupDialog.qml b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -index d4952c6..2b6586d 100644 ---- a/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -diff --git a/applets/batterymonitor/package/contents/ui/batterymonitor.qml b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -index a086581..6e1e8be 100755 ---- a/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -diff --git a/applets/lock_logout/contents/ui/lockout.qml b/applets/lock_logout/contents/ui/lockout.qml -index d243796..86475df 100644 ---- a/applets/lock_logout/contents/ui/lockout.qml -+++ b/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -diff --git a/applets/notifications/package/contents/ui/main.qml b/applets/notifications/package/contents/ui/main.qml -index 2871cdb..3f50856 100644 ---- a/applets/notifications/package/contents/ui/main.qml -+++ b/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml -index 2e26455..864c9c5 100644 ---- a/applets/systemtray/package/contents/ui/main.qml -+++ b/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix b/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix deleted file mode 100644 index 85f38b24e8c..00000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, baloo -, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime -, kjsembed, knewstuff, knotifyconfig, kpackage, krunner -, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient -, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt -, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland -, libksysguard, bash, coreutils, gnused, gnugrep, socat, kconfig -, kinit, kservice, makeQtWrapper, qttools, dbus_tools, mkfontdir, xmessage -, xprop, xrdb, xset, xsetroot, solid, qtquickcontrols -}: - -plasmaPackage rec { - name = "plasma-workspace"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcmutils kcrash kdbusaddons kdesu kdewebkit kjsembed knewstuff - knotifyconfig kpackage ktextwidgets kwallet kwayland kxmlrpcclient - libdbusmenu libSM libXcursor networkmanager-qt pam phonon - qtscript wayland - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kdelibs4support kglobalaccel - kidletime krunner ktexteditor kwin libkscreen libksysguard - plasma-framework qtquick1 qtquickcontrols qtx11extras solid - ]; - patches = [ - ./0001-startkde-NixOS-patches.patch - ./0002-qt-5.5-QML-import-paths.patch - ]; - - inherit bash coreutils gnused gnugrep socat; - inherit kconfig kinit kservice qttools; - inherit dbus_tools mkfontdir xmessage xprop xrdb xset xsetroot; - postPatch = '' - substituteAllInPlace startkde/startkde.cmake - substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 - ''; - postInstall = '' - wrapQtProgram "$out/bin/ksmserver" - wrapQtProgram "$out/bin/plasmawindowed" - wrapQtProgram "$out/bin/kcminit_startup" - wrapQtProgram "$out/bin/ksplashqml" - wrapQtProgram "$out/bin/kcheckrunning" - wrapQtProgram "$out/bin/systemmonitor" - wrapQtProgram "$out/bin/kstartupconfig5" - wrapQtProgram "$out/bin/startplasmacompositor" - wrapQtProgram "$out/bin/kdostartupconfig5" - wrapQtProgram "$out/bin/klipper" - wrapQtProgram "$out/bin/kuiserver5" - wrapQtProgram "$out/bin/krunner" - wrapQtProgram "$out/bin/plasmashell" - - wrapQtProgram "$out/lib/libexec/drkonqi" - wrapQtProgram "$out/lib/libexec/kscreenlocker_greet" - rm "$out/lib/libexec/startplasma" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix deleted file mode 100644 index 0173ec65516..00000000000 --- a/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, ki18n -, kwindowsystem -, kdbusaddons -, kwidgetsaddons -, kcoreaddons -, kcrash -, kconfig -, kiconthemes -, knotifications -, polkitQt -}: - -plasmaPackage { - name = "polkit-kde-agent"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kdbusaddons - kwidgetsaddons - kcoreaddons - kcrash - kconfig - kiconthemes - knotifications - polkitQt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; -} diff --git a/pkgs/desktops/plasma-5.4/powerdevil.nix b/pkgs/desktops/plasma-5.4/powerdevil.nix deleted file mode 100644 index 4b57a2e0a79..00000000000 --- a/pkgs/desktops/plasma-5.4/powerdevil.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities -, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n -, kidletime, kio, knotifyconfig, libkscreen, plasma-workspace -, qtx11extras, solid, udev -}: - -plasmaPackage { - name = "powerdevil"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev - ]; - propagatedBuildInputs = [ - kactivities kauth kdelibs4support kglobalaccel ki18n kio kidletime - libkscreen plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/setup-hook.sh b/pkgs/desktops/plasma-5.4/setup-hook.sh deleted file mode 100644 index a8d9b7e0e36..00000000000 --- a/pkgs/desktops/plasma-5.4/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -addToSearchPath XDG_DATA_DIRS @out@/share diff --git a/pkgs/desktops/plasma-5.4/srcs.nix b/pkgs/desktops/plasma-5.4/srcs.nix deleted file mode 100644 index b60a1b2ccd8..00000000000 --- a/pkgs/desktops/plasma-5.4/srcs.nix +++ /dev/null @@ -1,301 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/bluedevil-5.4.3.tar.xz"; - sha256 = "04zl8sl59imxfmph8igy2xw5qbdqhqbf1f3s92zhrcqghnawyr3k"; - name = "bluedevil-5.4.3.tar.xz"; - }; - }; - breeze = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/breeze-5.4.3.tar.xz"; - sha256 = "1ylkrza65m4irvyfl3nzfsfaf3j0z3q5j5qv7lk16g4crknxb2gw"; - name = "breeze-5.4.3.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kde-cli-tools-5.4.3.tar.xz"; - sha256 = "16d7fkxvbr60h96g7faq6c7gzssb43ynac7yhpfp4i2gwx1w9q8r"; - name = "kde-cli-tools-5.4.3.tar.xz"; - }; - }; - kdecoration = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kdecoration-5.4.3.tar.xz"; - sha256 = "1m92spmq0gadcwgwhnf163kh3kzccgw2b62px1v5krk8hlw6q19q"; - name = "kdecoration-5.4.3.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kde-gtk-config-5.4.3.tar.xz"; - sha256 = "0apfvcmwzp5g02kx0dvkywrfb7v9gbmlnmyga2jra027zf61jf98"; - name = "kde-gtk-config-5.4.3.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kdeplasma-addons-5.4.3.tar.xz"; - sha256 = "0wyqwrlhm9k2wscbw372mk2v7207jappq59jhzxx223glvz2qrxp"; - name = "kdeplasma-addons-5.4.3.tar.xz"; - }; - }; - kgamma5 = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kgamma5-5.4.3.tar.xz"; - sha256 = "0l6bk008w8m3wiqvk4pdw9s7iln9fbkbi5xl3b8rf846knr478gr"; - name = "kgamma5-5.4.3.tar.xz"; - }; - }; - khelpcenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/khelpcenter-5.4.3.tar.xz"; - sha256 = "0kf68maqcm2ym62d6r7v6sw9v91qxzdg53l0hk9h6p7sycs0jqq2"; - name = "khelpcenter-5.4.3.tar.xz"; - }; - }; - khotkeys = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/khotkeys-5.4.3.tar.xz"; - sha256 = "094nsrmnja83rim1cxa5p4rfxx4bdwwsv6b04rvg0l55jvw9wp29"; - name = "khotkeys-5.4.3.tar.xz"; - }; - }; - kinfocenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kinfocenter-5.4.3.tar.xz"; - sha256 = "1v6y1div8fhyn93ypnz3a7q6d1mzyabav2bq4rn5rg5hldizjns7"; - name = "kinfocenter-5.4.3.tar.xz"; - }; - }; - kmenuedit = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kmenuedit-5.4.3.tar.xz"; - sha256 = "0zpwvg0xw04jg5kxv9kdmlf6pg1yp6ibzafl8q3ah8ca5n92gb9n"; - name = "kmenuedit-5.4.3.tar.xz"; - }; - }; - kscreen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kscreen-5.4.3.tar.xz"; - sha256 = "01ba4qqf5vlmsgpf3raq7dgwxvdcm4inc7v03b3z4l7980wa6nxr"; - name = "kscreen-5.4.3.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/ksshaskpass-5.4.3.tar.xz"; - sha256 = "18r7a49i0rlijjz02h2k2wri3bkhjvzl5as0nv55gkg8b1g05dky"; - name = "ksshaskpass-5.4.3.tar.xz"; - }; - }; - ksysguard = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/ksysguard-5.4.3.tar.xz"; - sha256 = "1lgbvabxfzyl9x1nsmr6nifh24jxnvlknigfrzfcnryibbvk6mlk"; - name = "ksysguard-5.4.3.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwallet-pam-5.4.3.tar.xz"; - sha256 = "0m5yz8c6alaw0rkc0dd9cp7jijqmpdmqg4qbc3i3pp5rz3hiyp51"; - name = "kwallet-pam-5.4.3.tar.xz"; - }; - }; - kwayland = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwayland-5.4.3.tar.xz"; - sha256 = "026jgwyvkfb3zdrama2fi046zxg7v3khvb6sxl1krj4idiiyz1c0"; - name = "kwayland-5.4.3.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwayland-integration-5.4.3.tar.xz"; - sha256 = "10acnrv7m12gwd0mccp9j9a47sjl29xrrfwlpqiqh9hcw4vn7mqp"; - name = "kwayland-integration-5.4.3.tar.xz"; - }; - }; - kwin = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwin-5.4.3.tar.xz"; - sha256 = "0rn359b31hpwqarsw3018r1j7vaavwwxpnnhy29ixsdybmrl4j5b"; - name = "kwin-5.4.3.tar.xz"; - }; - }; - kwrited = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwrited-5.4.3.tar.xz"; - sha256 = "0irnhvsz6zssq3yb7lf0qy0qimydg78y1ghakpmry8632xgmr0yk"; - name = "kwrited-5.4.3.tar.xz"; - }; - }; - libkscreen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/libkscreen-5.4.3.tar.xz"; - sha256 = "0xa9g6kvvxn2q3fv0217dk3j4dgbd0mhy8hgrvblpp0fw721faqx"; - name = "libkscreen-5.4.3.tar.xz"; - }; - }; - libksysguard = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/libksysguard-5.4.3.tar.xz"; - sha256 = "18fndkj2bzbwrbixrsq27x4ar379vlsplr3nw766maw31nv5in6i"; - name = "libksysguard-5.4.3.tar.xz"; - }; - }; - milou = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/milou-5.4.3.tar.xz"; - sha256 = "0xy6h1h1ws47rqx5hcn3916xwf49nywwmq32161jap233347yj71"; - name = "milou-5.4.3.tar.xz"; - }; - }; - muon = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/muon-5.4.3.tar.xz"; - sha256 = "011l36ayl0xhap5d7cmkbf4vki8516r594dhxdpfm0ma0rnz4xrl"; - name = "muon-5.4.3.tar.xz"; - }; - }; - oxygen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/oxygen-5.4.3.tar.xz"; - sha256 = "1av665s2gq84y925qqfhc5bi7wm17vm7p4n10kigsnn5ywylh405"; - name = "oxygen-5.4.3.tar.xz"; - }; - }; - oxygen-fonts = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz"; - sha256 = "13430yajk1i2l9lz95ry9xc1fvzpvfvdp6m9jikb2g55x606abx0"; - name = "oxygen-fonts-5.4.3.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-desktop-5.4.3.tar.xz"; - sha256 = "0hy08ip6cvcz2s3w1wkqjxdydmmfj5mcqv85qbawsrkix0d79694"; - name = "plasma-desktop-5.4.3.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-mediacenter-5.4.3.tar.xz"; - sha256 = "0k85h93yxqf9ccw620r8wk38gzd8nmpmaxsvwx2rssgnn35f04va"; - name = "plasma-mediacenter-5.4.3.tar.xz"; - }; - }; - plasma-nm = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-nm-5.4.3.tar.xz"; - sha256 = "1wlhzhn7sz26b0ibvwrxbp4pwajvnpj6m37md9bdls3872yhql5r"; - name = "plasma-nm-5.4.3.tar.xz"; - }; - }; - plasma-pa = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-pa-5.4.3.tar.xz"; - sha256 = "16ydbvvpwrnh0ik005gdpvmbn38a1k0bn8zvas1gwjz86rkayxr6"; - name = "plasma-pa-5.4.3.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-sdk-5.4.3.tar.xz"; - sha256 = "08d31g0364ifc5yix0617zhjyv1skrc9m6x38mx0jjk1z2ng9db8"; - name = "plasma-sdk-5.4.3.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-5.4.3.tar.xz"; - sha256 = "030xqy1s8j3h03arjc39xhw2xs9h2c328id6qgaqxk8v9qimkr5z"; - name = "plasma-workspace-5.4.3.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-wallpapers-5.4.3.tar.xz"; - sha256 = "12yb9d2b7ynfkmmcc4ciz8cnx482vn9545qrijaa403ba0jfbrhx"; - name = "plasma-workspace-wallpapers-5.4.3.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/polkit-kde-agent-1-5.4.3.tar.xz"; - sha256 = "1309wmdrxfqlv621kagwycn2s41n9zsyb56ysqmyilhnb7wq59yn"; - name = "polkit-kde-agent-1-5.4.3.tar.xz"; - }; - }; - powerdevil = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/powerdevil-5.4.3.tar.xz"; - sha256 = "1j20xgca41hqacgsridsigw7s275ad3j0khb59875722qz1y91a0"; - name = "powerdevil-5.4.3.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/sddm-kcm-5.4.3.tar.xz"; - sha256 = "1ppryl541pjwxi73q1qdcd23kmhga3ajj0j6fws6y8ag4mpg2b6k"; - name = "sddm-kcm-5.4.3.tar.xz"; - }; - }; - systemsettings = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/systemsettings-5.4.3.tar.xz"; - sha256 = "04p455rfxlsp817dqgg907szyfsd0f6ym5kaqaj2g7ys5v8id1vb"; - name = "systemsettings-5.4.3.tar.xz"; - }; - }; - user-manager = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/user-manager-5.4.3.tar.xz"; - sha256 = "0vnfh5q8fgjs40frsb709r7d0py1xgr40air3zysasw25g4bjca8"; - name = "user-manager-5.4.3.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/plasma-5.4/systemsettings.nix b/pkgs/desktops/plasma-5.4/systemsettings.nix deleted file mode 100644 index a921e153dbc..00000000000 --- a/pkgs/desktops/plasma-5.4/systemsettings.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews -, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem -, kxmlgui, kdbusaddons, kconfig, khtml, makeQtWrapper -}: - -plasmaPackage { - name = "systemsettings"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons - kconfig - ]; - propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/systemsettings5" - ''; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/attica.nix b/pkgs/development/libraries/kde-frameworks-5.15/attica.nix deleted file mode 100644 index 98721876c12..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix deleted file mode 100644 index 38c41d9271d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix deleted file mode 100644 index f981b0516f7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/default.nix deleted file mode 100644 index 6b6b95ab3c7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/default.nix +++ /dev/null @@ -1,112 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - addPackages = self: with self; { - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support.nix {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata.nix {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes.nix {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio.nix {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - - newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); - -in lib.makeScope newScope addPackages diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch deleted file mode 100644 index 9717716faf5..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 3cc148e878b69fc3e0228f3e3bf1bbe689dad87c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 20 Feb 2015 23:17:39 -0600 -Subject: [PATCH] extra-cmake-modules paths - ---- - kde-modules/KDEInstallDirs.cmake | 37 ++++--------------------------------- - 1 file changed, 4 insertions(+), 33 deletions(-) - -diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake -index b7cd34d..2f868ac 100644 ---- a/kde-modules/KDEInstallDirs.cmake -+++ b/kde-modules/KDEInstallDirs.cmake -@@ -193,37 +193,8 @@ - # (To distribute this file outside of extra-cmake-modules, substitute the full - # License text for the above reference.) - --# Figure out what the default install directory for libraries should be. --# This is based on the logic in GNUInstallDirs, but simplified (the --# GNUInstallDirs code deals with re-configuring, but that is dealt with --# by the _define_* macros in this module). -+# The default library directory on NixOS is *always* /lib. - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR -@@ -445,15 +416,15 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) - "QtQuick2 imports" - QML_INSTALL_DIR) - else() -- _define_relative(QTPLUGINDIR LIBDIR "plugins" -+ _define_relative(QTPLUGINDIR LIBDIR "qt5/plugins" - "Qt plugins" - QT_PLUGIN_INSTALL_DIR) - -- _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "imports" -+ _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "qt5/imports" - "QtQuick1 imports" - IMPORTS_INSTALL_DIR) - -- _define_relative(QMLDIR LIBDIR "qml" -+ _define_relative(QMLDIR LIBDIR "qt5/qml" - "QtQuick2 imports" - QML_INSTALL_DIR) - endif() --- -2.3.0 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix deleted file mode 100644 index 4e1b1aff3bd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - patches = [ ./0001-extra-cmake-modules-paths.patch ]; - - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = { - license = stdenv.lib.licenses.bsd2; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index a6fa6189240..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,27 +0,0 @@ -addMimePkg() { - local propagated - - if [[ -d "$1/share/mime" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - fi -} - -envHooks+=(addMimePkg) diff --git a/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh deleted file mode 100755 index e7f6d9e00e5..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.15/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix deleted file mode 100644 index 26987c385ad..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix deleted file mode 100644 index 3225098f439..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix deleted file mode 100644 index 647be8f052c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.15/karchive.nix deleted file mode 100644 index a8d9a0003c3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix deleted file mode 100644 index 42a10019334..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, polkitQt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkitQt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = [ ./kauth-policy-install.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.15/kauth/kauth-policy-install.patch deleted file mode 100644 index 340155256f2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kauth/kauth-policy-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in -index e859ec7..9a8ab18 100644 ---- a/KF5AuthConfig.cmake.in -+++ b/KF5AuthConfig.cmake.in -@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") - set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa9501..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix deleted file mode 100644 index dbbb783ac61..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix deleted file mode 100644 index 53a69a69b69..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix deleted file mode 100644 index e393774f16a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix deleted file mode 100644 index e132afe5988..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee9053..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix deleted file mode 100644 index 0e14d06edd3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix deleted file mode 100644 index 43c21bb51ef..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ shared_mime_info ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix deleted file mode 100644 index bbab78ccb40..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix deleted file mode 100644 index 74d107466cf..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kded.nix b/pkgs/development/libraries/kde-frameworks-5.15/kded.nix deleted file mode 100644 index 47ae2d68c68..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix deleted file mode 100644 index 0dd5c415761..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix deleted file mode 100644 index 28df2415320..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix deleted file mode 100644 index 364fbd6a720..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix deleted file mode 100644 index d361313d1d4..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix deleted file mode 100644 index f00432b0c9c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix deleted file mode 100644 index 138c3fc33b9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh deleted file mode 100644 index 5cfffbd622d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh +++ /dev/null @@ -1,5 +0,0 @@ -addXdgData() { - addToSearchPath XDG_DATA_DIRS "$1/share" -} - -envHooks+=(addXdgData) diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix deleted file mode 100644 index d165f84e3a2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix deleted file mode 100644 index 92ca1f26b93..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix deleted file mode 100644 index c535b3590a3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix deleted file mode 100644 index bc4e9ab1184..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.15/khtml.nix deleted file mode 100644 index d40df466ebb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix deleted file mode 100644 index 915e3294b46..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix deleted file mode 100644 index 02b516afedc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets, ki18n -, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.15/kidletime.nix deleted file mode 100644 index fc086560023..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 13 Jun 2015 08:57:55 -0500 -Subject: [PATCH] kinit libpath - ---- - src/kdeinit/kinit.cpp | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp -index 9e775b6..0ac5646 100644 ---- a/src/kdeinit/kinit.cpp -+++ b/src/kdeinit/kinit.cpp -@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -+ // Use QT_PLUGIN_PATH to find shared library directories -+ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 -+ // shared libraries should be in /lib/qt5/plugins/../../ -+ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); -+ const QString up = QString::fromLocal8Bit("/../../"); -+ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); -+ Q_FOREACH (const QString &path, paths) { -+ l.setFileName(path + up + libpath); - l.load(); -+ if (l.isLoaded()) break; -+ } - } - } - if (!l.isLoaded()) { --- -2.4.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix deleted file mode 100644 index 5f644d7c424..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kio.nix b/pkgs/development/libraries/kde-frameworks-5.15/kio.nix deleted file mode 100644 index 0789828d812..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kio.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix deleted file mode 100644 index a9024d771cc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix deleted file mode 100644 index 931019ce495..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix deleted file mode 100644 index 746edf12eea..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.15/kjs.nix deleted file mode 100644 index 768720f178c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix deleted file mode 100644 index 22eef2d47bd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix deleted file mode 100644 index 460458b2232..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix deleted file mode 100644 index 5bcd6f30146..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix deleted file mode 100644 index 7e301dd0f26..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch deleted file mode 100644 index beede4d7ccb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a92ac391b4e6ca335bd7fa78f1addd23c9467931 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 28 Jan 2015 07:15:30 -0600 -Subject: [PATCH 1/2] allow external paths - ---- - src/kpackage/package.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpackage/package.cpp b/src/kpackage/package.cpp -index 539b21a..977a026 100644 ---- a/src/kpackage/package.cpp -+++ b/src/kpackage/package.cpp -@@ -789,7 +789,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 6e93fca9b21..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 9fc26c3c0478eb7cb0a531836ba2e3a85d820c88 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:50:28 -0500 -Subject: [PATCH 2/2] qdiriterator follow symlinks - ---- - src/kpackage/packageloader.cpp | 2 +- - src/kpackage/private/packagejobthread.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/kpackage/packageloader.cpp b/src/kpackage/packageloader.cpp -index eb5ed47..94217f6 100644 ---- a/src/kpackage/packageloader.cpp -+++ b/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::listPackages(const QString &packageFormat, - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -diff --git a/src/kpackage/private/packagejobthread.cpp b/src/kpackage/private/packagejobthread.cpp -index ca523b3..1cfa792 100644 ---- a/src/kpackage/private/packagejobthread.cpp -+++ b/src/kpackage/private/packagejobthread.cpp -@@ -145,7 +145,7 @@ bool indexDirectory(const QString& dir, const QString& dest) - QJsonArray plugins; - - int i = 0; -- QDirIterator it(dir, QStringList()< -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c6852611..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix deleted file mode 100644 index 03b7c7c2f51..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - propagatedUserEnvPkgs = [ kcoreaddons ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh deleted file mode 100644 index c28e862ff8a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh +++ /dev/null @@ -1,43 +0,0 @@ -addServicePkg() { - local propagated - for dir in "share/kservices5" "share/kservicetypes5"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - - break - fi - done -} - -envHooks+=(addServicePkg) - -local propagated -for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z@out@" ]]; then - propagated=1 - break - fi -done -if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs @out@" -fi diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch deleted file mode 100644 index def55bff9b2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch +++ /dev/null @@ -1,48 +0,0 @@ -From dc50fffdc72b76498384ce2f9065c3757b786d71 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 09:08:59 -0500 -Subject: [PATCH] no qcoreapplication - ---- - src/syntax/data/katehighlightingindexer.cpp | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -diff --git a/src/syntax/data/katehighlightingindexer.cpp b/src/syntax/data/katehighlightingindexer.cpp -index 3c63140..e3d5efe 100644 ---- a/src/syntax/data/katehighlightingindexer.cpp -+++ b/src/syntax/data/katehighlightingindexer.cpp -@@ -51,19 +51,16 @@ QStringList readListing(const QString &fileName) - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -147,7 +144,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix deleted file mode 100644 index 39092fbb278..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, karchive, kconfig -, kguiaddons, ki18n, kio, kiconthemes, kparts, perl, qtscript -, qtxmlpatterns, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts qtscript - qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = [ ./0001-no-qcoreapplication.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a8..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix deleted file mode 100644 index 7c4177e009d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications -, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper -}: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kiconthemes knotifications - kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fec..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix deleted file mode 100644 index b3b8b39932d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kconfigwidgets kiconthemes kitemviews - ktextwidgets - ]; - propagatedBuildInputs = [ kglobalaccel ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix deleted file mode 100644 index 333378bd143..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix deleted file mode 100644 index d8846f77723..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/solid.nix b/pkgs/development/libraries/kde-frameworks-5.15/solid.nix deleted file mode 100644 index afd125e3c59..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix deleted file mode 100644 index 943fe04a1c9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix deleted file mode 100644 index fd4998c49ba..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix +++ /dev/null @@ -1,549 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/attica-5.15.0.tar.xz"; - sha256 = "0gddapcl2m5gds8f341z0954qlllx22xbd51649lri429aw2ijcl"; - name = "attica-5.15.0.tar.xz"; - }; - }; - baloo = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/baloo-5.15.0.tar.xz"; - sha256 = "10qwxljzhl8wagfmvdbrmqlzk68jkrp703d232fr7gvz3qrmdpbz"; - name = "baloo-5.15.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/bluez-qt-5.15.0.tar.xz"; - sha256 = "15k242ifj3mfy0g0v7h504zn07cvahc70whc6n9yr0091j1azf5f"; - name = "bluez-qt-5.15.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/extra-cmake-modules-5.15.0.tar.xz"; - sha256 = "1g02dcbx1r0n2skrhmc6d3pckqvbii7ai91chlkwcdd8vzd4lgcg"; - name = "extra-cmake-modules-5.15.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/frameworkintegration-5.15.0.tar.xz"; - sha256 = "06sacinx3g3hrs11v67k7j8ddp5swasjrw6x36ng3mr81i2ksyia"; - name = "frameworkintegration-5.15.0.tar.xz"; - }; - }; - kactivities = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kactivities-5.15.0.tar.xz"; - sha256 = "0h9f78f8r5z5jarxph168h1m0zvz2zhd8iq6gc9sg09044xn1lnq"; - name = "kactivities-5.15.0.tar.xz"; - }; - }; - kapidox = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kapidox-5.15.0.tar.xz"; - sha256 = "1342j7459rafz1ns0nnlh1i65c05cd6l3c4sh1j75qgl0pjnrvcq"; - name = "kapidox-5.15.0.tar.xz"; - }; - }; - karchive = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/karchive-5.15.0.tar.xz"; - sha256 = "1s5mggi0vydg9w589qk4fp4qbhj7h9wcczn6k7j41bcqdapxzdfh"; - name = "karchive-5.15.0.tar.xz"; - }; - }; - kauth = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kauth-5.15.0.tar.xz"; - sha256 = "1nhrfbfasmg8a9gj94ri5qcvrdhhb204miv3i5y59ma09hd1xag2"; - name = "kauth-5.15.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kbookmarks-5.15.0.tar.xz"; - sha256 = "1y21679a37lspwf02vy687k5najap18x7hxd8k8hssdivjvg43z8"; - name = "kbookmarks-5.15.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcmutils-5.15.0.tar.xz"; - sha256 = "0syk030b89z90aa85d1mlag613yaajipgfxxfxnp3f488s54qn6z"; - name = "kcmutils-5.15.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcodecs-5.15.0.tar.xz"; - sha256 = "1kz8vbxblzf0lxcn6c2433lhgi2iyvqsm65qxsvf5zgxckq5277p"; - name = "kcodecs-5.15.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcompletion-5.15.0.tar.xz"; - sha256 = "1mq110fg30y3xdmjicckysz3k5ylz92hz609ffjnm2svk56w5cny"; - name = "kcompletion-5.15.0.tar.xz"; - }; - }; - kconfig = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kconfig-5.15.0.tar.xz"; - sha256 = "083g4pr5sbqvpdn3ic3afbjzvczxl095rj0pi34g2b28anpwhjvn"; - name = "kconfig-5.15.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kconfigwidgets-5.15.0.tar.xz"; - sha256 = "0gkq7ifgyf7865ypxf4cwqkndn4qrp07k8wxp8fl0xa15d74nrj3"; - name = "kconfigwidgets-5.15.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcoreaddons-5.15.0.tar.xz"; - sha256 = "1v06bblxrxcwj9sbsz7xvqq6yg231m939pms8w0bbmyidsq4vpdm"; - name = "kcoreaddons-5.15.0.tar.xz"; - }; - }; - kcrash = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcrash-5.15.0.tar.xz"; - sha256 = "1631wmg895bb4ls2mfxnlnffmzl1mjm82ad8fk361gv0s9g0xb3y"; - name = "kcrash-5.15.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdbusaddons-5.15.0.tar.xz"; - sha256 = "1w32ra4ifhb2k2k2j3dfqrrc65w0rsmj9yr34k0flqiqs0mq1pfx"; - name = "kdbusaddons-5.15.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdeclarative-5.15.0.tar.xz"; - sha256 = "06xv552v52zp9qb5v6w3cps9nm3wpacpjvm8s08zmij1y7by0z32"; - name = "kdeclarative-5.15.0.tar.xz"; - }; - }; - kded = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kded-5.15.0.tar.xz"; - sha256 = "144lfjx6gmbhqqwdv4ll1ab4rj3pcyn8bp9yp4snzh6v2a2hncwq"; - name = "kded-5.15.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kdelibs4support-5.15.0.tar.xz"; - sha256 = "1091nc3rrcq360sillynvmxwvmd209cnlql6g9x249zdxjpv62qy"; - name = "kdelibs4support-5.15.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdesignerplugin-5.15.0.tar.xz"; - sha256 = "0my6x0fx72dk65z6lajn1faxifc622msvll6jab0rk50x8ws9dwq"; - name = "kdesignerplugin-5.15.0.tar.xz"; - }; - }; - kdesu = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdesu-5.15.0.tar.xz"; - sha256 = "0cnqd0gm5xyqsqngl0x6rs0f01bilcfv8xx1ry9hfnqffv9amr9y"; - name = "kdesu-5.15.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdewebkit-5.15.0.tar.xz"; - sha256 = "1cgwhb5nr6g6y3azp2ii0hdjlvwacdr94ldlsirqmzl7rymkgkqa"; - name = "kdewebkit-5.15.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdnssd-5.15.0.tar.xz"; - sha256 = "1z5d26pmc9vmf30zz35kcl585fpjfrp8xf5r13lfwnnbfr6pnh0k"; - name = "kdnssd-5.15.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdoctools-5.15.0.tar.xz"; - sha256 = "0vci37val64ixcz7zr99gzdqlb0ff04gdj2kad5dj32295iixhva"; - name = "kdoctools-5.15.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kemoticons-5.15.0.tar.xz"; - sha256 = "0a3izq6w3w37qd6b6w2g179w9nrh5pwh8hnc4iggyr2wwf2hfw9c"; - name = "kemoticons-5.15.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kfilemetadata-5.15.0.tar.xz"; - sha256 = "1y90azm27mnw2wfilwmg1gls21fpnd2nzvdl26vrhpsvnclf8rqn"; - name = "kfilemetadata-5.15.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kglobalaccel-5.15.0.tar.xz"; - sha256 = "1ii7bd1rf038zjimz7nd2snfi76drqdnyrkivwd6np4fdvcsyhjr"; - name = "kglobalaccel-5.15.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kguiaddons-5.15.0.tar.xz"; - sha256 = "0pfcns136i0ghk32gyr7nnq7wnk2j8rmcr3jr18f1y9pkk3ih6q8"; - name = "kguiaddons-5.15.0.tar.xz"; - }; - }; - khtml = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/khtml-5.15.0.tar.xz"; - sha256 = "01gx1qd7hhvyhzndin8kw9yg3jlz8rz7i8kxbl6wpab9sc270a70"; - name = "khtml-5.15.0.tar.xz"; - }; - }; - ki18n = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ki18n-5.15.0.tar.xz"; - sha256 = "0qy7nv4ssjbyskjhnx8sr6vg9jwg183f6zd759rzp56pz5j79qdd"; - name = "ki18n-5.15.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kiconthemes-5.15.0.tar.xz"; - sha256 = "0ab9iki3jl4izzjph9bps04w7grimyyaaxsna6j0dzg90izg1zg2"; - name = "kiconthemes-5.15.0.tar.xz"; - }; - }; - kidletime = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kidletime-5.15.0.tar.xz"; - sha256 = "0gp6grv6a9zb14yfrznwn5ih1946v500zlj5g9s8f1xw5p0792i2"; - name = "kidletime-5.15.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kimageformats-5.15.0.tar.xz"; - sha256 = "0q66w91khj4xax4nzak5r9wmr0qny5cq7dapv11zdzn7rf90bpvv"; - name = "kimageformats-5.15.0.tar.xz"; - }; - }; - kinit = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kinit-5.15.0.tar.xz"; - sha256 = "0ccf2rg6m74xj7mq4i0fsl09l2wkwyhmlfp3lvrn4714w19bj5yf"; - name = "kinit-5.15.0.tar.xz"; - }; - }; - kio = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kio-5.15.0.tar.xz"; - sha256 = "0ld56arcjms5kiz9zj3g7hgd6xq05zg2bx0qpr4aaihl3hgp6888"; - name = "kio-5.15.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kitemmodels-5.15.0.tar.xz"; - sha256 = "112a8mdxabzv7lhpxfnnz2jrib972lz6ww7gd92lqziprz78fyga"; - name = "kitemmodels-5.15.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kitemviews-5.15.0.tar.xz"; - sha256 = "1112x7lf0wvwsizcr2ij0w463cssg0ahcav872g39gzirf67lqyi"; - name = "kitemviews-5.15.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kjobwidgets-5.15.0.tar.xz"; - sha256 = "12r3j1bwvmacj70dng4g5yrgjgj4v8nizk4yf22dfy858k8v8zda"; - name = "kjobwidgets-5.15.0.tar.xz"; - }; - }; - kjs = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kjs-5.15.0.tar.xz"; - sha256 = "1aj9w8009q8bdq17ckjr1z219qy4wkjwc5xggl1879haqxn1pfg3"; - name = "kjs-5.15.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kjsembed-5.15.0.tar.xz"; - sha256 = "099m6k6m6imy7jdia822i1g6c61gp955w21m4bb5nndwdy580mj4"; - name = "kjsembed-5.15.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kmediaplayer-5.15.0.tar.xz"; - sha256 = "1rli98klmizwmmwwn6lcna7vxihd7b5yrvshisw6ivb21ygjgrxm"; - name = "kmediaplayer-5.15.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knewstuff-5.15.0.tar.xz"; - sha256 = "0s8ha0qqy007kq1k55mii5msbqxnczb57xici3in1idxjd83fjnw"; - name = "knewstuff-5.15.0.tar.xz"; - }; - }; - knotifications = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knotifications-5.15.0.tar.xz"; - sha256 = "1189xx9a5i932lfyniqnz43gl3hhjlg962j996zy0g9yasc2r3cm"; - name = "knotifications-5.15.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knotifyconfig-5.15.0.tar.xz"; - sha256 = "0b279z1qwfhj2mnpil0jd3xs8yn4i8mvib8dws6q4nygl941b8sa"; - name = "knotifyconfig-5.15.0.tar.xz"; - }; - }; - kpackage = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpackage-5.15.0.tar.xz"; - sha256 = "03zcnqly2pb67pza9xm9n0asjixqicxwj5vnv25yvki02cgwmvn3"; - name = "kpackage-5.15.0.tar.xz"; - }; - }; - kparts = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kparts-5.15.0.tar.xz"; - sha256 = "0pjfmb97387kvvn7c4xzmxdja2jghx946ima5g8jnfw0zacsd2mw"; - name = "kparts-5.15.0.tar.xz"; - }; - }; - kpeople = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpeople-5.15.0.tar.xz"; - sha256 = "11frmba6rqn2bmqp28wrwrqw8lpkdg27v5fa5lg47vrdp4ih0rgs"; - name = "kpeople-5.15.0.tar.xz"; - }; - }; - kplotting = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kplotting-5.15.0.tar.xz"; - sha256 = "0wwqlza0qfd25p9d5gfrs0ymwzg5b0lnb4b8slfw2znazvi03krj"; - name = "kplotting-5.15.0.tar.xz"; - }; - }; - kpty = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpty-5.15.0.tar.xz"; - sha256 = "03yl4kwhwma0nwbgww95z4853waxrq4xipy41k7224n3gvd62c30"; - name = "kpty-5.15.0.tar.xz"; - }; - }; - kross = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kross-5.15.0.tar.xz"; - sha256 = "1mlvs0ra3ngrmrmqb4qjg3nkw5hqscdd1p3cdh94mpcwk330svq0"; - name = "kross-5.15.0.tar.xz"; - }; - }; - krunner = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/krunner-5.15.0.tar.xz"; - sha256 = "0kyb135a45b9si4xh7pml7aiigs3j5077dgjfrghhz0ci3ibmn0v"; - name = "krunner-5.15.0.tar.xz"; - }; - }; - kservice = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kservice-5.15.0.tar.xz"; - sha256 = "13yfg99s7k7y2npj8jn12iikan95dsf8hdmqfjb59n5qg4a6h253"; - name = "kservice-5.15.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ktexteditor-5.15.0.tar.xz"; - sha256 = "161kkssai0lwssy6l4mxgclx7229bgfkfgsf973i94p6hanaymb8"; - name = "ktexteditor-5.15.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ktextwidgets-5.15.0.tar.xz"; - sha256 = "1r9drjjlag5v7y8inswbrj2fmkzkranrnzyrwl4bl7v0l1dir2l8"; - name = "ktextwidgets-5.15.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kunitconversion-5.15.0.tar.xz"; - sha256 = "1qbps67w3ii2797q967wvy56zclsm9l6vcrwnylx9rfqygcs5ixf"; - name = "kunitconversion-5.15.0.tar.xz"; - }; - }; - kwallet = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwallet-5.15.0.tar.xz"; - sha256 = "1b97v4vad7lzrjmf04zikm4q9czyzbzkk3vdhcd2mi47vizrj392"; - name = "kwallet-5.15.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwidgetsaddons-5.15.0.tar.xz"; - sha256 = "1nbgsf5dfz0f12azw19ir7791y6ykkkj7y96ln0k81d3cbcgxq63"; - name = "kwidgetsaddons-5.15.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwindowsystem-5.15.0.tar.xz"; - sha256 = "1x8pagby6j7k2ns3davbmyysggril0kp9ccn3326qm89l70zrf8x"; - name = "kwindowsystem-5.15.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kxmlgui-5.15.0.tar.xz"; - sha256 = "1d5mm2fkzk92q9gfh76a83mbzqw2pcagkg6s51i5ax3zqb7jnzdm"; - name = "kxmlgui-5.15.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kxmlrpcclient-5.15.0.tar.xz"; - sha256 = "03ckqn33djzyg0ik9g1jk4dj33incsxwvvdc7g5k8wjgjcdkp433"; - name = "kxmlrpcclient-5.15.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/modemmanager-qt-5.15.0.tar.xz"; - sha256 = "1sxi32jxsz3d51nkcx7wxjyjvr2fg3qay3s3nzrpdzm0pa79drr9"; - name = "modemmanager-qt-5.15.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/networkmanager-qt-5.15.0.tar.xz"; - sha256 = "0l0396c9fgwxdv1h33p7y8w0ylvm4pa3a53yv7jckkc49nygk38p"; - name = "networkmanager-qt-5.15.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/plasma-framework-5.15.0.tar.xz"; - sha256 = "0v36i64jb3n6lq964417lzbdm6m57nvg83kjli4wqlc17dywjp8s"; - name = "plasma-framework-5.15.0.tar.xz"; - }; - }; - solid = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/solid-5.15.0.tar.xz"; - sha256 = "0118bynfqcgvg333ljbb80k7bkam6skc7vygwvy7fr7y4dzmlwfa"; - name = "solid-5.15.0.tar.xz"; - }; - }; - sonnet = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/sonnet-5.15.0.tar.xz"; - sha256 = "18qs5szdyvjzwlbid62g3qs7cs4fdb46n25aw49saq7drf567gm0"; - name = "sonnet-5.15.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/threadweaver-5.15.0.tar.xz"; - sha256 = "19ha9r6wjm93w4kh5rjaal0r91vxhsr9q82dw5b9j927zrqwb7pq"; - name = "threadweaver-5.15.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix deleted file mode 100644 index 52817921cc7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 905749128b1..b6b1aa750f5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6860,9 +6860,8 @@ let automake = automake111x; }; - kf515 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.15 { inherit pkgs; }); kf517 = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; - kf5_stable = kf515; + kf5_stable = kf517; kf5_latest = kf517; kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; @@ -12222,9 +12221,8 @@ let boost = boost155; }; - kdeApps_15_08 = recurseIntoAttrs (import ../applications/kde-apps-15.08 { inherit pkgs; }); kdeApps_15_12 = import ../applications/kde-apps-15.12 { inherit pkgs; }; - kdeApps_stable = kdeApps_15_08; + kdeApps_stable = kdeApps_15_12; kdeApps_latest = kdeApps_15_12; keepnote = callPackage ../applications/office/keepnote { @@ -14728,9 +14726,8 @@ let numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { }; - plasma54 = recurseIntoAttrs (import ../desktops/plasma-5.4 { inherit pkgs; }); plasma55 = import ../desktops/plasma-5.5 { inherit pkgs; }; - plasma5_stable = plasma54; + plasma5_stable = plasma55; plasma5_latest = plasma55; kde5PackagesFun = self: with self; { @@ -14773,7 +14770,10 @@ let }; - kde5 = kf5_stable // plasma5_stable // kdeApps_stable // kde5PackagesFun kde5; + kde5 = + recurseIntoAttrs + (lib.makeScope qt55Libs.newScope (self: + kf5_stable self // plasma5_stable self // kdeApps_stable self // kde5PackagesFun self)); kde5_latest = recurseIntoAttrs From f51c54ba022f35a578e9bae5774ec4e552420435 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 19:12:39 -0600 Subject: [PATCH 273/707] kde4.kdelibs: fix link to kde5.kdelibs --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6b1aa750f5..a385f264e49 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14501,7 +14501,7 @@ let libusb = libusb1; libcanberra = libcanberra_kde; boost = boost155; - kdelibs = kdeApps_15_08.kdelibs; + kdelibs = kde5.kdelibs; subversionClient = pkgs.subversion18.override { bdbSupport = false; perlBindings = true; From 1bb68f0a5b8c83c1b3df3f92916736fd879e15ed Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 16 Dec 2015 16:06:55 +0100 Subject: [PATCH 274/707] recordmydesktop: init at 0.3.8-svn602 --- .../video/recordmydesktop/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/video/recordmydesktop/default.nix diff --git a/pkgs/applications/video/recordmydesktop/default.nix b/pkgs/applications/video/recordmydesktop/default.nix new file mode 100644 index 00000000000..95c06d54d6e --- /dev/null +++ b/pkgs/applications/video/recordmydesktop/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }: + +stdenv.mkDerivation rec { + name = "recordmydesktop-${version}"; + version = "0.3.8.1-svn602"; + + src = fetchsvn { + url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop; + rev = 602; + sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf"; + }; + + buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ]; + + preConfigure = ''./autogen.sh''; + + meta = with stdenv.lib; { + description = "Desktop session recorder"; + homepage = http://recordmydesktop.sourceforge.net/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.DamienCassou ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..e05d6ff516e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2860,6 +2860,8 @@ let reaverwps = callPackage ../tools/networking/reaver-wps {}; + recordmydesktop = callPackage ../applications/video/recordmydesktop { }; + recutils = callPackage ../tools/misc/recutils { }; recoll = callPackage ../applications/search/recoll { }; From a911acdfb3cf760ad30c7bf433a947dac837ba11 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 16 Dec 2015 15:11:24 +0300 Subject: [PATCH 275/707] LXC: make sure configure script does not guess Do not try to install init script. And do not make any assumptions about the distribution. The latter is important when Nix store in not a part of NixOS. Closes #11729. --- pkgs/os-specific/linux/lxc/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index c35b6bb90e8..43a77f4c828 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -36,6 +36,8 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" "--enable-doc" "--disable-api-docs" + "--with-init-script=none" + "--with-distro=nixos" # just to be sure it is "unknown" ] ++ optional (libapparmor != null) "--enable-apparmor" ++ optional (libselinux != null) "--enable-selinux" ++ optional (libseccomp != null) "--enable-seccomp" From 04d993417fec284a8f754de2d4a171e791f0ae2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 08:52:01 +0100 Subject: [PATCH 276/707] libpng: security update It should finally fix #11030 and CVE-2015-8126 --- pkgs/development/libraries/libpng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index a2454aa02f0..4e18dcb680f 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -3,11 +3,11 @@ assert zlib != null; let - version = "1.6.19"; - sha256 = "1s1mmkl79ghiczi2x2rbnp6y70v4c5pr8g3icxn9h5imymbmc71i"; + version = "1.6.20"; + sha256 = "12wis4rlisfnw79pj2778m42m94xpi9nq8m385hxk11lkyg9biam"; patch_src = fetchurl { url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz"; - sha256 = "0bgqkac16yhl0zwjzq2zwkixg2l2x3a6blbk3k0wqz0lza2a6jrh"; + sha256 = "11xgal9qk6fmqdgcb37xg55f2y58wizszw54p1pyq855d2xpwfz6"; }; whenPatched = stdenv.lib.optionalString apngSupport; From 85375fc5fcce0baebd35e61969a9588a26744f77 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Thu, 17 Dec 2015 11:00:50 +0300 Subject: [PATCH 277/707] git-crypt needs GnuPG --- .../version-management/git-and-tools/git-crypt/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index c0acb13740a..8e537c32313 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, openssl }: +{ stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }: stdenv.mkDerivation rec { @@ -12,10 +12,11 @@ stdenv.mkDerivation rec { inherit name; }; - buildInputs = [ openssl ]; + buildInputs = [ openssl makeWrapper ]; installPhase = '' make install PREFIX=$out + wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin ''; meta = with stdenv.lib; { From 1057249c5daf58b316712ee266ffe47ebc9af052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Dec 2015 09:21:24 +0100 Subject: [PATCH 278/707] add pythonPackages.rpdb --- pkgs/top-level/python-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 802ea500c00..927274362e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21627,6 +21627,21 @@ in modules // { }; }; + rpdb = buildPythonPackage rec { + name = "rpdb-0.1.5"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/r/rpdb/${name}.tar.gz"; + sha256 = "0rql1hq3lziwcql0h3dy05w074cn866p397ng9bv6qbz85ifw1bk"; + }; + + meta = { + description = "pdb wrapper with remote access via tcp socket"; + homepage = https://github.com/tamentis/rpdb; + license = licenses.bsd2; + }; + }; + grequests = buildPythonPackage rec { name = "grequests-0.2.0"; From 84a559393b39d84786f3a4c252665a969ecbe5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Dec 2015 09:30:02 +0100 Subject: [PATCH 279/707] mnemosyne: add webob dep (fixes #11746) --- pkgs/games/mnemosyne/default.nix | 8 +++----- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/games/mnemosyne/default.nix b/pkgs/games/mnemosyne/default.nix index e01999b2ecc..8624e168f92 100644 --- a/pkgs/games/mnemosyne/default.nix +++ b/pkgs/games/mnemosyne/default.nix @@ -2,9 +2,7 @@ , fetchurl , buildPythonPackage , pyqt4 -, matplotlib -, cherrypy -, sqlite3 +, pythonPackages }: let version = "2.3.2"; @@ -14,17 +12,17 @@ in buildPythonPackage rec { url = "http://sourceforge.net/projects/mnemosyne-proj/files/mnemosyne/${name}/Mnemosyne-${version}.tar.gz"; sha256 = "0jkrw45i4v24p6xyq94z7rz5948h7f5dspgs5mcdaslnlp2accfp"; }; - pythonPath = [ + propagatedBuildInputs = with pythonPackages; [ pyqt4 matplotlib cherrypy sqlite3 + webob ]; preConfigure = '' substituteInPlace setup.py --replace /usr $out find . -type f -exec grep -H sys.exec_prefix {} ';' | cut -d: -f1 | xargs sed -i s,sys.exec_prefix,\"$out\", ''; - installCommand = "python setup.py install --prefix=$out"; meta = { homepage = http://mnemosyne-proj.org/; description = "Spaced-repetition software"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e759dba84ee..ac1e29d13f6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14152,9 +14152,7 @@ let libpng = libpng12; }; - mnemosyne = callPackage ../games/mnemosyne { - inherit (pythonPackages) matplotlib cherrypy sqlite3; - }; + mnemosyne = callPackage ../games/mnemosyne { }; mudlet = qt5Libs.callPackage ../games/mudlet { inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3; From f21a65f719627161acc22407e9ec838893af60a9 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:46:01 +0100 Subject: [PATCH 280/707] devpi-client: init at 2.3.2 --- .../tools/devpi-client/default.nix | 20 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/tools/devpi-client/default.nix diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix new file mode 100644 index 00000000000..5db62da06d8 --- /dev/null +++ b/pkgs/development/tools/devpi-client/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pythonPackages, python} : + +pythonPackages.buildPythonPackage rec { + name = "devpi-client-${version}"; + version = "2.3.2"; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/d/devpi-client/devpi-client-${version}.tar.gz"; + md5= "bfc8cd768f983fd0585c347bca00c8bb"; + }; + + buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.devpi-common pythonPackages.pkginfo ]; + meta = { + homepage = http://doc.devpi.net; + description = "Github-style pypi index server and packaging meta tool"; + license = stdenv.lib.licenses.mit; + maintainers = [stdenv.lib.maintainers.lewo]; + + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index efc59b70340..44a4bf27555 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3835,6 +3835,8 @@ let cython = pythonPackages.cython; cython3 = python3Packages.cython; + devpi-client = callPackage ../development/tools/devpi-client {}; + ecl = callPackage ../development/compilers/ecl { }; eql = callPackage ../development/compilers/eql {}; From d6f631f52b939e371ab87fe442d0121e851e54bc Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 17 Dec 2015 18:26:57 +0900 Subject: [PATCH 281/707] iosevka: 1.0-beta9 -> 1.4.2 --- pkgs/data/fonts/iosevka/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix index 6f5c5a1a55d..aded5b1cddf 100644 --- a/pkgs/data/fonts/iosevka/default.nix +++ b/pkgs/data/fonts/iosevka/default.nix @@ -1,24 +1,26 @@ -{ stdenv, lib, fetchurl }: +{ stdenv, lib, fetchFromGitHub }: stdenv.mkDerivation rec { name = "iosevka-${version}"; - version = "1.0-beta9"; - src = fetchurl { - url = "https://github.com/be5invis/Iosevka/releases/download/${version}/${name}.tar.bz2"; - sha256 = "1vw34zh8nh6s2dpyw3a1q44wkgrsin1a8b0vnk7hms8s8fw65734"; + version = "1.4.2"; + + src = fetchFromGitHub { + owner = "be5invis"; + repo = "Iosevka"; + rev = "v${version}"; + sha256 = "1h1lmvjpjk0238bhdhnv2c149s98qpbndc8rxzlk6bhmxcy6rwsk"; }; - unpackPhase = '' - tar xf "$src" - ''; + installPhase = '' fontdir=$out/share/fonts/iosevka mkdir -p $fontdir cp -v iosevka-* $fontdir ''; - buildInputs = [ ]; + meta = with lib; { homepage = "http://be5invis.github.io/Iosevka/"; + downloadPage = "https://github.com/be5invis/Iosevka/releases"; description = '' Slender monospace sans-serif and slab-serif typeface inspired by Pragmata Pro, M+ and PF DIN Mono, designed to be the ideal font for programming. From 4b6dbfc35752f1f997101070f890fb6e44712acc Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 15 Dec 2015 14:37:48 +0100 Subject: [PATCH 282/707] python numpy: 1.10.1 -> 1.10.2 --- 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 4045638f3c7..9f83117e86b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11444,11 +11444,11 @@ in modules // { }; in buildPythonPackage ( rec { name = "numpy-${version}"; - version = "1.10.1"; + version = "1.10.2"; src = pkgs.fetchurl { url = "mirror://sourceforge/numpy/${name}.tar.gz"; - sha256 = "8b9f453f29ce96a14e625100d3dcf8926301d36c5f622623bf8820e748510858"; + sha256 = "23a3befdf955db4d616f8bb77b324680a80a323e0c42a7e8d7388ef578d8ffa9"; }; disabled = isPyPy; # WIP From 2d07d00856c5a192cb22ecccfbc8f36e3bd45056 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 23:50:07 +0100 Subject: [PATCH 283/707] python scipy: run correct tests, fix/remove failing tests --- .../scipy-0.16.1-decorator-fix.patch | 487 ++++++++++++++++++ pkgs/top-level/python-packages.nix | 12 +- 2 files changed, 498 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch diff --git a/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch new file mode 100644 index 00000000000..0a7f92d9d2e --- /dev/null +++ b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch @@ -0,0 +1,487 @@ +From 8d3cd578f9c0a36d29411c96fa70402a7a56d502 Mon Sep 17 00:00:00 2001 +From: Evgeni Burovski +Date: Sun, 8 Nov 2015 15:27:22 +0000 +Subject: [PATCH] MAINT: update decorators.py module to version 4.0.5 + +This is commit d6abda0 at +https://github.com/micheles/decorator/tree/4.0.5 +--- + scipy/_lib/decorator.py | 380 +++++++++++++++++++++++++++++++++++++----------- + 1 file changed, 293 insertions(+), 87 deletions(-) + +diff --git a/scipy/_lib/decorator.py b/scipy/_lib/decorator.py +index 07d9d21..05f7056 100644 +--- a/scipy/_lib/decorator.py ++++ b/scipy/_lib/decorator.py +@@ -1,48 +1,52 @@ +-########################## LICENCE ############################### +-## +-## Copyright (c) 2005-2011, Michele Simionato +-## All rights reserved. +-## +-## Redistributions of source code must retain the above copyright +-## notice, this list of conditions and the following disclaimer. +-## Redistributions in bytecode form must reproduce the above copyright +-## notice, this list of conditions and the following disclaimer in +-## the documentation and/or other materials provided with the +-## distribution. +- +-## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +-## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +-## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +-## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +-## HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +-## INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +-## BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +-## OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +-## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +-## TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +-## USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +-## DAMAGE. ++# ######################### LICENSE ############################ # ++ ++# Copyright (c) 2005-2015, Michele Simionato ++# All rights reserved. ++ ++# Redistribution and use in source and binary forms, with or without ++# modification, are permitted provided that the following conditions are ++# met: ++ ++# Redistributions of source code must retain the above copyright ++# notice, this list of conditions and the following disclaimer. ++# Redistributions in bytecode form must reproduce the above copyright ++# notice, this list of conditions and the following disclaimer in ++# the documentation and/or other materials provided with the ++# distribution. ++ ++# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ++# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ++# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ++# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ++# HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, ++# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, ++# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS ++# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ++# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR ++# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE ++# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH ++# DAMAGE. + + """ + Decorator module, see http://pypi.python.org/pypi/decorator + for the documentation. + """ ++from __future__ import print_function + +-from __future__ import division, print_function, absolute_import +- +-__version__ = '3.3.2' +- +-__all__ = ["decorator", "FunctionMaker"] +- +-import sys + import re ++import sys + import inspect +-from functools import partial ++import operator ++import itertools ++import collections + +-from scipy._lib.six import exec_ ++__version__ = '4.0.5' + + if sys.version >= '3': + from inspect import getfullargspec ++ ++ def get_init(cls): ++ return cls.__init__ + else: + class getfullargspec(object): + "A quick and dirty replacement for getfullargspec for Python 2.X" +@@ -51,7 +55,6 @@ else: + inspect.getargspec(f) + self.kwonlyargs = [] + self.kwonlydefaults = None +- self.annotations = getattr(f, '__annotations__', {}) + + def __iter__(self): + yield self.args +@@ -59,17 +62,35 @@ else: + yield self.varkw + yield self.defaults + +-DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(') ++ getargspec = inspect.getargspec ++ ++ def get_init(cls): ++ return cls.__init__.__func__ ++ ++# getargspec has been deprecated in Python 3.5 ++ArgSpec = collections.namedtuple( ++ 'ArgSpec', 'args varargs varkw defaults') + +-# basic functionality + ++def getargspec(f): ++ """A replacement for inspect.getargspec""" ++ spec = getfullargspec(f) ++ return ArgSpec(spec.args, spec.varargs, spec.varkw, spec.defaults) + ++DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(') ++ ++ ++# basic functionality + class FunctionMaker(object): + """ + An object with the ability to create functions with a given signature. + It has attributes name, doc, module, signature, defaults, dict and + methods update and make. + """ ++ ++ # Atomic get-and-increment provided by the GIL ++ _compile_count = itertools.count() ++ + def __init__(self, func=None, name=None, signature=None, + defaults=None, doc=None, module=None, funcdict=None): + self.shortsignature = signature +@@ -82,22 +103,32 @@ class FunctionMaker(object): + self.module = func.__module__ + if inspect.isfunction(func): + argspec = getfullargspec(func) ++ self.annotations = getattr(func, '__annotations__', {}) + for a in ('args', 'varargs', 'varkw', 'defaults', 'kwonlyargs', +- 'kwonlydefaults', 'annotations'): ++ 'kwonlydefaults'): + setattr(self, a, getattr(argspec, a)) + for i, arg in enumerate(self.args): + setattr(self, 'arg%d' % i, arg) +- self.signature = inspect.formatargspec( +- formatvalue=lambda val: "", *argspec)[1:-1] +- allargs = list(self.args) +- if self.varargs: +- allargs.append('*' + self.varargs) +- if self.varkw: +- allargs.append('**' + self.varkw) +- try: +- self.shortsignature = ', '.join(allargs) +- except TypeError: # exotic signature, valid only in Python 2.X +- self.shortsignature = self.signature ++ if sys.version < '3': # easy way ++ self.shortsignature = self.signature = ( ++ inspect.formatargspec( ++ formatvalue=lambda val: "", *argspec)[1:-1]) ++ else: # Python 3 way ++ allargs = list(self.args) ++ allshortargs = list(self.args) ++ if self.varargs: ++ allargs.append('*' + self.varargs) ++ allshortargs.append('*' + self.varargs) ++ elif self.kwonlyargs: ++ allargs.append('*') # single star syntax ++ for a in self.kwonlyargs: ++ allargs.append('%s=None' % a) ++ allshortargs.append('%s=%s' % (a, a)) ++ if self.varkw: ++ allargs.append('**' + self.varkw) ++ allshortargs.append('**' + self.varkw) ++ self.signature = ', '.join(allargs) ++ self.shortsignature = ', '.join(allshortargs) + self.dict = func.__dict__.copy() + # func=None happens when decorating a caller + if name: +@@ -122,12 +153,15 @@ class FunctionMaker(object): + func.__name__ = self.name + func.__doc__ = getattr(self, 'doc', None) + func.__dict__ = getattr(self, 'dict', {}) +- if sys.version_info[0] >= 3: +- func.__defaults__ = getattr(self, 'defaults', ()) +- else: +- func.func_defaults = getattr(self, 'defaults', ()) ++ func.__defaults__ = getattr(self, 'defaults', ()) + func.__kwdefaults__ = getattr(self, 'kwonlydefaults', None) +- callermodule = sys._getframe(3).f_globals.get('__name__', '?') ++ func.__annotations__ = getattr(self, 'annotations', None) ++ try: ++ frame = sys._getframe(3) ++ except AttributeError: # for IronPython and similar implementations ++ callermodule = '?' ++ else: ++ callermodule = frame.f_globals.get('__name__', '?') + func.__module__ = getattr(self, 'module', callermodule) + func.__dict__.update(kw) + +@@ -140,16 +174,20 @@ class FunctionMaker(object): + raise SyntaxError('not a valid function template\n%s' % src) + name = mo.group(1) # extract the function name + names = set([name] + [arg.strip(' *') for arg in +- self.shortsignature.split(',')]) ++ self.shortsignature.split(',')]) + for n in names: + if n in ('_func_', '_call_'): + raise NameError('%s is overridden in\n%s' % (n, src)) + if not src.endswith('\n'): # add a newline just for safety + src += '\n' # this is needed in old versions of Python ++ ++ # Ensure each generated function has a unique filename for profilers ++ # (such as cProfile) that depend on the tuple of (, ++ # , ) being unique. ++ filename = '' % (next(self._compile_count),) + try: +- code = compile(src, '', 'single') +- # print >> sys.stderr, 'Compiling %s' % src +- exec_(code, evaldict) ++ code = compile(src, filename, 'single') ++ exec(code, evaldict) + except: + print('Error in generated code:', file=sys.stderr) + print(src, file=sys.stderr) +@@ -165,9 +203,9 @@ class FunctionMaker(object): + doc=None, module=None, addsource=True, **attrs): + """ + Create a function from the strings name, signature and body. +- evaldict is the evaluation dictionary. If addsource is true an attribute +- __source__ is added to the result. The attributes attrs are added, +- if any. ++ evaldict is the evaluation dictionary. If addsource is true an ++ attribute __source__ is added to the result. The attributes attrs ++ are added, if any. + """ + if isinstance(obj, str): # "name(signature)" + name, rest = obj.strip().split('(', 1) +@@ -180,37 +218,205 @@ class FunctionMaker(object): + self = cls(func, name, signature, defaults, doc, module) + ibody = '\n'.join(' ' + line for line in body.splitlines()) + return self.make('def %(name)s(%(signature)s):\n' + ibody, +- evaldict, addsource, **attrs) ++ evaldict, addsource, **attrs) + + +-def decorator(caller, func=None): ++def decorate(func, caller): + """ +- decorator(caller) converts a caller function into a decorator; +- decorator(caller, func) decorates a function using a caller. ++ decorate(func, caller) decorates a function using a caller. + """ +- if func is not None: # returns a decorated function +- if sys.version_info[0] >= 3: +- evaldict = func.__globals__.copy() ++ evaldict = func.__globals__.copy() ++ evaldict['_call_'] = caller ++ evaldict['_func_'] = func ++ fun = FunctionMaker.create( ++ func, "return _call_(_func_, %(shortsignature)s)", ++ evaldict, __wrapped__=func) ++ if hasattr(func, '__qualname__'): ++ fun.__qualname__ = func.__qualname__ ++ return fun ++ ++ ++def decorator(caller, _func=None): ++ """decorator(caller) converts a caller function into a decorator""" ++ if _func is not None: # return a decorated function ++ # this is obsolete behavior; you should use decorate instead ++ return decorate(_func, caller) ++ # else return a decorator function ++ if inspect.isclass(caller): ++ name = caller.__name__.lower() ++ callerfunc = get_init(caller) ++ doc = 'decorator(%s) converts functions/generators into ' \ ++ 'factories of %s objects' % (caller.__name__, caller.__name__) ++ elif inspect.isfunction(caller): ++ if caller.__name__ == '': ++ name = '_lambda_' + else: +- evaldict = func.func_globals.copy() +- evaldict['_call_'] = caller +- evaldict['_func_'] = func ++ name = caller.__name__ ++ callerfunc = caller ++ doc = caller.__doc__ ++ else: # assume caller is an object with a __call__ method ++ name = caller.__class__.__name__.lower() ++ callerfunc = caller.__call__.__func__ ++ doc = caller.__call__.__doc__ ++ evaldict = callerfunc.__globals__.copy() ++ evaldict['_call_'] = caller ++ evaldict['_decorate_'] = decorate ++ return FunctionMaker.create( ++ '%s(func)' % name, 'return _decorate_(func, _call_)', ++ evaldict, doc=doc, module=caller.__module__, ++ __wrapped__=caller) ++ ++ ++# ####################### contextmanager ####################### # ++ ++try: # Python >= 3.2 ++ from contextlib import _GeneratorContextManager ++except ImportError: # Python >= 2.5 ++ from contextlib import GeneratorContextManager as _GeneratorContextManager ++ ++ ++class ContextManager(_GeneratorContextManager): ++ def __call__(self, func): ++ """Context manager decorator""" + return FunctionMaker.create( +- func, "return _call_(_func_, %(shortsignature)s)", +- evaldict, undecorated=func, __wrapped__=func) +- else: # returns a decorator +- if isinstance(caller, partial): +- return partial(decorator, caller) +- # otherwise assume caller is a function +- first = inspect.getargspec(caller)[0][0] # first arg +- if sys.version_info[0] >= 3: +- evaldict = caller.__globals__.copy() +- else: +- evaldict = caller.func_globals.copy() +- evaldict['_call_'] = caller +- evaldict['decorator'] = decorator ++ func, "with _self_: return _func_(%(shortsignature)s)", ++ dict(_self_=self, _func_=func), __wrapped__=func) ++ ++init = getfullargspec(_GeneratorContextManager.__init__) ++n_args = len(init.args) ++if n_args == 2 and not init.varargs: # (self, genobj) Python 2.7 ++ def __init__(self, g, *a, **k): ++ return _GeneratorContextManager.__init__(self, g(*a, **k)) ++ ContextManager.__init__ = __init__ ++elif n_args == 2 and init.varargs: # (self, gen, *a, **k) Python 3.4 ++ pass ++elif n_args == 4: # (self, gen, args, kwds) Python 3.5 ++ def __init__(self, g, *a, **k): ++ return _GeneratorContextManager.__init__(self, g, a, k) ++ ContextManager.__init__ = __init__ ++ ++contextmanager = decorator(ContextManager) ++ ++ ++# ############################ dispatch_on ############################ # ++ ++def append(a, vancestors): ++ """ ++ Append ``a`` to the list of the virtual ancestors, unless it is already ++ included. ++ """ ++ add = True ++ for j, va in enumerate(vancestors): ++ if issubclass(va, a): ++ add = False ++ break ++ if issubclass(a, va): ++ vancestors[j] = a ++ add = False ++ if add: ++ vancestors.append(a) ++ ++ ++# inspired from simplegeneric by P.J. Eby and functools.singledispatch ++def dispatch_on(*dispatch_args): ++ """ ++ Factory of decorators turning a function into a generic function ++ dispatching on the given arguments. ++ """ ++ assert dispatch_args, 'No dispatch args passed' ++ dispatch_str = '(%s,)' % ', '.join(dispatch_args) ++ ++ def check(arguments, wrong=operator.ne, msg=''): ++ """Make sure one passes the expected number of arguments""" ++ if wrong(len(arguments), len(dispatch_args)): ++ raise TypeError('Expected %d arguments, got %d%s' % ++ (len(dispatch_args), len(arguments), msg)) ++ ++ def gen_func_dec(func): ++ """Decorator turning a function into a generic function""" ++ ++ # first check the dispatch arguments ++ argset = set(getfullargspec(func).args) ++ if not set(dispatch_args) <= argset: ++ raise NameError('Unknown dispatch arguments %s' % dispatch_str) ++ ++ typemap = {} ++ ++ def vancestors(*types): ++ """ ++ Get a list of sets of virtual ancestors for the given types ++ """ ++ check(types) ++ ras = [[] for _ in range(len(dispatch_args))] ++ for types_ in typemap: ++ for t, type_, ra in zip(types, types_, ras): ++ if issubclass(t, type_) and type_ not in t.__mro__: ++ append(type_, ra) ++ return [set(ra) for ra in ras] ++ ++ def ancestors(*types): ++ """ ++ Get a list of virtual MROs, one for each type ++ """ ++ check(types) ++ lists = [] ++ for t, vas in zip(types, vancestors(*types)): ++ n_vas = len(vas) ++ if n_vas > 1: ++ raise RuntimeError( ++ 'Ambiguous dispatch for %s: %s' % (t, vas)) ++ elif n_vas == 1: ++ va, = vas ++ mro = type('t', (t, va), {}).__mro__[1:] ++ else: ++ mro = t.__mro__ ++ lists.append(mro[:-1]) # discard t and object ++ return lists ++ ++ def register(*types): ++ """ ++ Decorator to register an implementation for the given types ++ """ ++ check(types) ++ def dec(f): ++ check(getfullargspec(f).args, operator.lt, ' in ' + f.__name__) ++ typemap[types] = f ++ return f ++ return dec ++ ++ def dispatch_info(*types): ++ """ ++ An utility to introspect the dispatch algorithm ++ """ ++ check(types) ++ lst = [] ++ for anc in itertools.product(*ancestors(*types)): ++ lst.append(tuple(a.__name__ for a in anc)) ++ return lst ++ ++ def _dispatch(dispatch_args, *args, **kw): ++ types = tuple(type(arg) for arg in dispatch_args) ++ try: # fast path ++ f = typemap[types] ++ except KeyError: ++ pass ++ else: ++ return f(*args, **kw) ++ combinations = itertools.product(*ancestors(*types)) ++ next(combinations) # the first one has been already tried ++ for types_ in combinations: ++ f = typemap.get(types_) ++ if f is not None: ++ return f(*args, **kw) ++ ++ # else call the default implementation ++ return func(*args, **kw) ++ + return FunctionMaker.create( +- '%s(%s)' % (caller.__name__, first), +- 'return decorator(_call_, %s)' % first, +- evaldict, undecorated=caller, __wrapped__=caller, +- doc=caller.__doc__, module=caller.__module__) ++ func, 'return _f_(%s, %%(shortsignature)s)' % dispatch_str, ++ dict(_f_=_dispatch), register=register, default=func, ++ typemap=typemap, vancestors=vancestors, ancestors=ancestors, ++ dispatch_info=dispatch_info, __wrapped__=func) ++ ++ gen_func_dec.__name__ = 'dispatch_on' + dispatch_str ++ return gen_func_dec +-- +2.6.3 + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9f83117e86b..f800fd0839f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17160,7 +17160,7 @@ in modules // { support = import ../development/python-modules/numpy-scipy-support.nix { inherit python; openblas = pkgs.openblasCompat; - pkgName = "numpy"; + pkgName = "scipy"; }; in buildPythonPackage rec { name = "scipy-${version}"; @@ -17178,8 +17178,18 @@ in modules // { sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py ''; + # First test: RuntimeWarning: Mean of empty slice. + # Second: SyntaxError: invalid syntax. Due to wrapper? + # Third: test checks permissions + prePatch = '' + substituteInPlace scipy/stats/tests/test_stats.py --replace "test_chisquare_masked_arrays" "remove_this_one" + rm scipy/linalg/tests/test_lapack.py + substituteInPlace scipy/weave/tests/test_catalog.py --replace "test_user" "remove_this_one" + ''; + inherit (support) preBuild checkPhase; + patches = [../development/python-modules/scipy-0.16.1-decorator-fix.patch]; setupPyBuildFlags = [ "--fcompiler='gnu95'" ]; meta = { From acf320f691b6b813ff54a662bd72edd2743ee254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 12:29:16 +0100 Subject: [PATCH 284/707] nixos release notes: mention enableCtrlAltBackspace /cc #11228. --- nixos/doc/manual/release-notes/rl-unstable.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index cf6e4ace413..03eed914e27 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -113,6 +113,14 @@ nginx.override { extra X11 options for nvidia and nouveau drivers, respectively. + + + The Ctrl+Alt+Backspace key combination + no longer kills the X server by default. + There's a new option + allowing to enable the combination again. + + From 89ecedcab8b782e7877d2c5e8a8d39578d042c99 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:34:15 -0600 Subject: [PATCH 285/707] kde5: don't expose secret top-level attributes --- pkgs/top-level/all-packages.nix | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac1e29d13f6..352ebda277d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6860,10 +6860,6 @@ let automake = automake111x; }; - kf517 = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; - kf5_stable = kf517; - kf5_latest = kf517; - kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; krb5Full = callPackage ../development/libraries/kerberos/krb5.nix { @@ -12221,10 +12217,6 @@ let boost = boost155; }; - kdeApps_15_12 = import ../applications/kde-apps-15.12 { inherit pkgs; }; - kdeApps_stable = kdeApps_15_12; - kdeApps_latest = kdeApps_15_12; - keepnote = callPackage ../applications/office/keepnote { pygtk = pyGtkGlade; }; @@ -14724,10 +14716,6 @@ let numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { }; - plasma55 = import ../desktops/plasma-5.5 { inherit pkgs; }; - plasma5_stable = plasma55; - plasma5_latest = plasma55; - kde5PackagesFun = self: with self; { fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; @@ -14769,14 +14757,22 @@ let }; kde5 = - recurseIntoAttrs - (lib.makeScope qt55Libs.newScope (self: - kf5_stable self // plasma5_stable self // kdeApps_stable self // kde5PackagesFun self)); + let + frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; + plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; + apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; + merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); kde5_latest = - recurseIntoAttrs - (lib.makeScope qt55Libs.newScope (self: - kf5_latest self // plasma5_latest self // kdeApps_latest self // kde5PackagesFun self)); + let + frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; + plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; + apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; + merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; From adb2b803b9e7090f9b9c12781bfb0ad557c8c7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 12:35:15 +0100 Subject: [PATCH 286/707] net-snmp: avoid nested list, /cc #11739 --- pkgs/servers/monitoring/net-snmp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index c53f52422cf..f2533c99b08 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-logfile=/var/log/net-snmpd.log" "--with-persistent-directory=/var/lib/net-snmp" "--with-openssl=${openssl}" - ] ++ stdenv.lib.optional stdenv.isLinux [ "--with-mnttab=/proc/mounts" ]; + ] ++ stdenv.lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts"; buildInputs = [ autoreconfHook file perl unzip openssl ]; From a685f98627e624c04d7b5db17447b9d4434a68a1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:36:51 -0600 Subject: [PATCH 287/707] calamares: move into kde5PackagesFun All KDE 5 packages must be listed here to be packaged correctly. --- pkgs/top-level/all-packages.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 352ebda277d..f5a5f12099f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1732,13 +1732,6 @@ let ghostscript = null; }; - calamares = callPackage ../tools/misc/calamares rec { - python = python3; - boost = pkgs.boost.override { python=python3; }; - libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; - inherit (kf5_stable) extra-cmake-modules kconfig ki18n kcoreaddons solid; - }; - grub = callPackage_i686 ../tools/misc/grub { buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true; automake = automake112x; # fails with 13 and 14 @@ -14718,6 +14711,12 @@ let kde5PackagesFun = self: with self; { + calamares = callPackage ../tools/misc/calamares rec { + python = python3; + boost = pkgs.boost.override { python=python3; }; + libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; + }; + fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; k9copy = callPackage ../applications/video/k9copy {}; From 97b2b05a24c0720f9f84e376902c268cc80ce6bc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:50:32 -0600 Subject: [PATCH 288/707] calamares: fix Qt dependencies --- pkgs/tools/misc/calamares/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index e2b8c70c6e2..6ca007229bc 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchgit, cmake, qt5, polkit_qt5, libyamlcpp, python, boost, parted +{ stdenv, fetchgit, cmake, polkitQt, libyamlcpp, python, boost, parted , extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart -, ckbcomp, glibc, tzdata, xkeyboard_config }: +, ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }: stdenv.mkDerivation rec { name = "calamares-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake qt5.base qt5.tools libyamlcpp python boost polkit_qt5 parted + cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkitQt parted extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart ]; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; preInstall = '' - substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out" + substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out" ''; meta = with stdenv.lib; { From d69b5f953351800de37ba8b1025c4863498fc27b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:51:09 -0600 Subject: [PATCH 289/707] polkit_qt5: remove The correct version is qt5Libs.polkitQt. --- .../development/libraries/polkit-qt-1/old.nix | 22 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 24 deletions(-) delete mode 100644 pkgs/development/libraries/polkit-qt-1/old.nix diff --git a/pkgs/development/libraries/polkit-qt-1/old.nix b/pkgs/development/libraries/polkit-qt-1/old.nix deleted file mode 100644 index b887134e5b9..00000000000 --- a/pkgs/development/libraries/polkit-qt-1/old.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib -, qt4 ? null, qt5 ? null, withQt5 ? false }: - -assert (withQt5 -> qt5 != null); assert (!withQt5 -> qt4 != null); - -stdenv.mkDerivation { - name = "polkit-qt-1-0.112.0"; - - src = fetchurl { - url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2"; - sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7"; - }; - - nativeBuildInputs = [ cmake automoc4 pkgconfig ]; - - propagatedBuildInputs = [ polkit glib ] ++ (if withQt5 then [qt5.base] else [qt4]); - - meta = { - description = "A Qt wrapper around PolKit"; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f5a5f12099f..1877617f016 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8059,8 +8059,6 @@ let polkit_qt4 = callPackage ../development/libraries/polkit-qt-1 { }; - polkit_qt5 = callPackage ../development/libraries/polkit-qt-1/old.nix { withQt5 = true; }; - policykit = callPackage ../development/libraries/policykit { }; poppler = callPackage ../development/libraries/poppler { lcms = lcms2; }; From 24991034de28026afce456053a610bb5efe9bd27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 19:33:18 -0600 Subject: [PATCH 290/707] kde5.kiconthemes: default icon theme is breeze --- .../libraries/kde-frameworks-5.17/default.nix | 2 +- .../kiconthemes/default-theme-breeze.patch | 13 +++++++++++++ .../{kiconthemes.nix => kiconthemes/default.nix} | 9 +++++---- .../kde-frameworks-5.17/kiconthemes/series | 1 + 4 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch rename pkgs/development/libraries/kde-frameworks-5.17/{kiconthemes.nix => kiconthemes/default.nix} (53%) create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series diff --git a/pkgs/development/libraries/kde-frameworks-5.17/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix index 3a865b9d404..828faaa631f 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix @@ -70,7 +70,7 @@ let kguiaddons = callPackage ./kguiaddons.nix {}; khtml = callPackage ./khtml.nix {}; ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes.nix {}; + kiconthemes = callPackage ./kiconthemes {}; kidletime = callPackage ./kidletime.nix {}; kimageformats = callPackage ./kimageformats.nix {}; kinit = callPackage ./kinit {}; diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch new file mode 100644 index 00000000000..5b3b15d5d5b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch @@ -0,0 +1,13 @@ +Index: kiconthemes-5.17.0/src/kicontheme.cpp +=================================================================== +--- kiconthemes-5.17.0.orig/src/kicontheme.cpp ++++ kiconthemes-5.17.0/src/kicontheme.cpp +@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() + // static + QString KIconTheme::defaultThemeName() + { +- return QStringLiteral("oxygen"); ++ return QStringLiteral("breeze"); + } + + void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix similarity index 53% rename from pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix index eb24403169d..b78b25582be 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix @@ -1,13 +1,14 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules, kconfigwidgets, ki18n -, kitemviews, qtsvg +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper +, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg }: kdeFramework { name = "kiconthemes"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ ki18n ]; + propagatedBuildInputs = [ breeze-icons ki18n ]; postInstall = '' wrapQtProgram "$out/bin/kiconfinder5" ''; diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series new file mode 100644 index 00000000000..ab5cc8a3edb --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series @@ -0,0 +1 @@ +default-theme-breeze.patch From 8c1770769fb2f68b881c3d1abbe9b43dde114510 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 17 Dec 2015 15:08:03 +0300 Subject: [PATCH 291/707] flashplayer: fix 32-bit version --- .../mozilla-plugins/flashplayer-11/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 34a06967ed8..d60ae8ea1db 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -44,6 +44,16 @@ let if debug then "32bit_debug" else "32bit" else throw "Flash Player is not supported on this platform"; + + suffix = + if stdenv.system == "x86_64-linux" then + if debug then throw "no x86_64 debugging version available" + else "-release.x86_64" + else if stdenv.system == "i686-linux" then + if debug then "_linux_debug.i386" + else "_linux.i386" + else throw "Flash Player is not supported on this platform"; + in stdenv.mkDerivation rec { name = "flashplayer-${version}"; @@ -58,7 +68,7 @@ stdenv.mkDerivation rec { postUnpack = '' cd */*${arch} - tar -xvzf flash-plugin*.tar.gz + tar -xvzf *${suffix}.tar.gz ''; sourceRoot = "."; @@ -87,5 +97,6 @@ stdenv.mkDerivation rec { homepage = http://www.adobe.com/products/flashplayer/; license = stdenv.lib.licenses.unfree; maintainers = []; + platforms = [ "x86_64-linux" "i686-linux" ]; }; } From b72bcd1e327c93df191b9d26f4f58e550c2c6d40 Mon Sep 17 00:00:00 2001 From: Avery Glitch Date: Thu, 17 Dec 2015 19:42:36 +1100 Subject: [PATCH 292/707] Fixed a syntax error in the buildFHSChrootEnv example. Also, fixed the manual.xml so it actually builds. --- doc/functions.xml | 2 +- doc/manual.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/functions.xml b/doc/functions.xml index e2bc751e140..7f40ba33cd4 100644 --- a/doc/functions.xml +++ b/doc/functions.xml @@ -277,7 +277,7 @@ c = lib.makeOverridable f { a = 1; b = 2; } multiPkgs = pkgs: (with pkgs; [ udev alsaLib - ]) ++ (with []; + ]); runScript = "bash"; }).env ]]> diff --git a/doc/manual.xml b/doc/manual.xml index 1f1f50f75fb..3ffe7fbb068 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -12,7 +12,7 @@ - + From 3cc7e04502ff2ad89ac72b97886f6d168c1b4ad3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 07:30:56 -0600 Subject: [PATCH 293/707] elpa-packages 2015-12-14 --- .../editors/emacs-modes/elpa-packages.json | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index 0572dca56be..9e78fb7c1ca 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json @@ -201,10 +201,10 @@ "tiny": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/tiny-0.1.tar", - "sha256": "04iyidzjgnm4ka575wxqdak19h8j4dlni2ahf0bkq1q9by79xq1q" + "url": "http://elpa.gnu.org/packages/tiny-0.1.1.tar", + "sha256": "1nhg8375qdn457wj0xmfaj72s87xbabk2w1nl6q7rjvwxv08yyn7" }, - "version": "0.1", + "version": "0.1.1", "deps": [] }, "coffee-mode": { @@ -246,10 +246,10 @@ "org": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/org-20151123.tar", - "sha256": "13ybzjg6k61paldfln6isc6149hvilwsgsnhyirig42bz1z0vjbb" + "url": "http://elpa.gnu.org/packages/org-20151214.tar", + "sha256": "15m9l7p7xfmcrxrcsxbvpp8bq5ajcapknvqblhmk77j7ca3jffi1" }, - "version": "20151123", + "version": "20151214", "deps": [] }, "bug-hunter": { @@ -594,10 +594,10 @@ "hydra": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/hydra-0.13.3.tar", - "sha256": "1il0maxkxm2nxwz6y6v85zhf6a8f52gfq51h1filcnlzg10b5arm" + "url": "http://elpa.gnu.org/packages/hydra-0.13.4.tar", + "sha256": "11msy6n075iv00c2r9f85bzx3srnj403rhlga1rgsl6vsryf21fj" }, - "version": "0.13.3", + "version": "0.13.4", "deps": [ "cl-lib" ] @@ -953,10 +953,10 @@ "swiper": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/swiper-0.5.1.tar", - "sha256": "06kd6r90fnjz3lapm52pgsx4dhnd95mkzq9y4khkzqny59h0vmm6" + "url": "http://elpa.gnu.org/packages/swiper-0.7.0.tar", + "sha256": "1bzzx41zcf3yk6r6csqzlffwwrw9gyk8ab026r55l6416b6rcynx" }, - "version": "0.5.1", + "version": "0.7.0", "deps": [ "emacs" ] @@ -1018,10 +1018,10 @@ "transcribe": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/transcribe-0.5.0.el", - "sha256": "1wxfv96sjcxins8cyqijsb16fc3n0m13kvaw0hjam8x91wamcbxq" + "url": "http://elpa.gnu.org/packages/transcribe-1.0.2.el", + "sha256": "0b0qaq0b3l37h6wfs4j80csmfcbidcd8a8wk6mwn6p4cdi7msr15" }, - "version": "0.5.0", + "version": "1.0.2", "deps": [] }, "websocket": { From 1210eafb8e2b3417d8436fb44e9ca365896e2a0f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 19:46:21 -0600 Subject: [PATCH 294/707] melpa-stable-packages 2015-12-14 --- .../emacs-modes/melpa-stable-packages.json | 22226 ++++++++++++++++ .../emacs-modes/melpa-stable-packages.nix | 42 + 2 files changed, 22268 insertions(+) create mode 100644 pkgs/applications/editors/emacs-modes/melpa-stable-packages.json create mode 100644 pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json new file mode 100644 index 00000000000..503dc20c50d --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -0,0 +1,22226 @@ +{ + "qiita": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/qiita-el.git", + "sha256": "6e2c9eceaf4d87eff3c4c56508ee71cccd2806da163a16a9f2e21e38ec111f84", + "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outorg.git", + "sha256": "65b7e7c7e43a8828aa452ed5ccdc8d9909fce69b76bc30d175f5d252e1445ed8", + "rev": "e946cda497bae53fca6fa1579910237e216170bf" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "helm-ls-hg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-hg.git", + "sha256": "aa2dfcc9e42b1215aba74b541f32dec2783b26fe68113af2a411d164623aaac2", + "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f" + }, + "recipe": { + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.8", + "deps": [ + "helm" + ] + }, + "color-theme-sanityinc-tomorrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", + "sha256": "620d71141c0eab505c328b3bb75f7d8c4dd6c80c37c78a72eab81842f8d69b6c", + "rev": "55db9979397bd66446eb1927e08c5a22df9f0eea" + }, + "recipe": { + "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.16", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Focus.git", + "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "buffer-move": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lukhas/buffer-move.git", + "sha256": "eb96887c75c9c8c67890d1c201a1b63fae91cde3de16bfddfadf82449650572f", + "rev": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190" + }, + "recipe": { + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", + "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "chinese-word-at-point", + "emacs", + "names", + "popup" + ] + }, + "emacsql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "finalize" + ] + }, + "help-fns+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", + "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + }, + "recipe": { + "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/cmake-ide.git", + "sha256": "7bf27290c33b017e8cc557dbe11c11f2f1d1156dba4947592a2c2c738fdf6ff4", + "rev": "8d395a5aef72e58dd3256ba3f70c912c0e6d059a" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "jammer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/jammer.git", + "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "dired-sort-menu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el", + "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday" + }, + "recipe": { + "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "dired-sort-menu" + ] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-eldoc.git", + "sha256": "e9e7523e506148c056950b9a4930b2fb00618ece42ef380332692a6f3fb14ef7", + "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.26", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "w32browser-dlgopen": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el", + "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq" + }, + "recipe": { + "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cerbere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/cerbere.git", + "sha256": "1fd732afc839f500571fb33db2f078d56b8fd8e79fc6b40a8bd39c5347c23dc8", + "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "f", + "go-mode", + "pkg-info", + "s" + ] + }, + "grandshell-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/grandshell-theme.git", + "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" + }, + "recipe": { + "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "lacarte": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lacarte.el", + "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" + }, + "recipe": { + "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/mmt.git", + "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/vimish-fold.git", + "sha256": "6822b3e8e067af5e3713bd68f2946c5c1e2c2bc4f12607d9058c6efdadaefe72", + "rev": "bf10662ff5d2ac2c0d0d84a87577c5425cff7639" + }, + "recipe": { + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "f" + ] + }, + "stripe-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/stripe-buffer.git", + "sha256": "b3253e702365c2e5df7dc40346240d81b93c1bf9a88866b584e6fd1d58a8be0c", + "rev": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190" + }, + "recipe": { + "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.5", + "deps": [ + "cl-lib" + ] + }, + "web-completion-data": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/web-completion-data.git", + "sha256": "12ff6411fde08135c84c2e4342c2289ca2a398b78e660be4a4997e6a98b6f2f0", + "rev": "3685b8c7eff06a2064b4f4304e7faf00a22a920a" + }, + "recipe": { + "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anwyn/slime-company.git", + "sha256": "a427294d72206521d40e787fe3e361334b1544b6c3f766129bf0afeaa769b065", + "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.1", + "deps": [ + "company", + "slime" + ] + }, + "flymake-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-php.git", + "sha256": "470df53714287ec33633235b41bd674cb5ca38b12c0b8a5bce117cf86fc20068", + "rev": "91f867e209011af31a2ca2d8f6874b994403bcb2" + }, + "recipe": { + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "smart-mode-line-powerline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" + }, + "recipe": { + "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.9", + "deps": [ + "emacs", + "powerline", + "smart-mode-line" + ] + }, + "unfill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/unfill.git", + "sha256": "b1b4d0c819d8c18d21c9d5670e163a111d906e81f3b42d5b28942fc838cc2255", + "rev": "99388d79f971db70c5d18dab4257301f750ed907" + }, + "recipe": { + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "org-page": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kelvinh/org-page.git", + "sha256": "3e3afa4ce7646ee5238f624ab0ecacb13793ad0a20da52b6bbbc5be97cecc5f2", + "rev": "09febf89d8dcb226aeedf8164169b31937b64439" + }, + "recipe": { + "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.41", + "deps": [ + "ht", + "htmlize", + "mustache", + "org" + ] + }, + "grails-projectile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yveszoundi/grails-projectile-mode.git", + "sha256": "344865da2d968d540b042c11ad0342c0d7dff4a4bff17918d4e0f854209d66e7", + "rev": "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f" + }, + "recipe": { + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "cl-lib", + "emacs", + "projectile" + ] + }, + "inf-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/inf-clojure.git", + "sha256": "60b7dd9e60f99ad342d9cf8bc8017a540b2a562f3ee3f539a42a52d61d68dd52", + "rev": "286b935b90123d5e2dd3c36c804d796413864256" + }, + "recipe": { + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "clojure-mode", + "emacs" + ] + }, + "git-wip-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/itsjeyd/git-wip-timemachine.git", + "sha256": "36e2bd2df46cfd280d99c67d879b721c87ae0a68f8e409863adb373cbc77dd56", + "rev": "7da7f2acec0b1d1252d7474b13190ae88e5b205d" + }, + "recipe": { + "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyagi/shell-pop-el.git", + "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.63", + "deps": [ + "emacs" + ] + }, + "j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zellio/j-mode.git", + "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" + }, + "recipe": { + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/persistent-scratch.git", + "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-regexp.git", + "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/djcb/sauron.git", + "sha256": "38535e28a9d72f049c66aaf8d3e7931483f847d325560128b9eace38d699ecb9", + "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "company-ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krzysztof-magosa/company-ansible.git", + "sha256": "8a28dd2adf97e939723841075054e1124d8a6c28abfb6b4a561a6dd5957a03bf", + "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "company", + "emacs" + ] + }, + "flycheck-ocaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-ocaml.git", + "sha256": "db31d73b64e42358db30d40c1b2973e39b25578139637d2c08abac6e9516a9df", + "rev": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c" + }, + "recipe": { + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs", + "flycheck", + "let-alist", + "merlin" + ] + }, + "eshell-z": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-z.git", + "sha256": "91c05b97cd3fdd6867661e30429f7bb8978b89d7e93dff066883239d01c43d9d", + "rev": "cc9a4b505953a9b56222896a6f973145aeb154b9" + }, + "recipe": { + "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib" + ] + }, + "fix-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/fix-word.git", + "sha256": "e715bb0d7c1720b52cb8f4ba8e1a07b1bcd059963c57b8df0f1ad531b65c34ad", + "rev": "256a87d4b871ead0975fa0e7f76a1ecbaa074582" + }, + "recipe": { + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "celery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-celery.git", + "sha256": "618ec6d27f983c85cfb2326ae004f994d70293080ca55c00cca5f59dd260f7ff", + "rev": "163ebede3f6a7f59202ff319675b0873dd1de365" + }, + "recipe": { + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "dash-functional", + "deferred", + "emacs", + "s" + ] + }, + "lib-requires": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lib-requires.el", + "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk" + }, + "recipe": { + "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "charmap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lateau/charmap.git", + "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/parsebib.git", + "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.5", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/hindent.git", + "sha256": "db93ecbe7d46e8efb4bb663c30855d180c14902d3c467bf550bf0c59898eb8db", + "rev": "726c692d234581c853495165472c78f4c7fb9297" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.4.3", + "deps": [ + "cl-lib" + ] + }, + "sudden-death": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yewton/sudden-death.el.git", + "sha256": "4b6e884b62cfa51cb5cc051fb1b2c668de9ccec95e6b33a658cfe4eef58ebece", + "rev": "c58fb9a672f306604dde4fbb0ff079e65a5e40be" + }, + "recipe": { + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/simplenote2.el.git", + "sha256": "0362bf75d2f0d9b85864826721e9e771f60af1de89336060f9d8cf091f08bc09", + "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.2", + "deps": [ + "request-deferred" + ] + }, + "cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake.git", + "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.3", + "deps": [ + "anything", + "cake-inflector", + "historyf" + ] + }, + "realgud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-dbgr.git", + "sha256": "94539ca9d46ecb5ff33ba5c5aa2ed659be06d026bb3aa5dd08db0a4b567bc9e7", + "rev": "0dd37e233f315a5666eefc6a3e9fc088fcc6561f" + }, + "recipe": { + "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "list-utils", + "load-relative", + "loc-changes", + "test-simple" + ] + }, + "js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/js2-refactor.el.git", + "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" + }, + "recipe": { + "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.1", + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ] + }, + "ecb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexott/ecb.git", + "sha256": "6cffee0f53869780992d5be254f3ba1da5e28d73d2df06efde524b76240e39e9", + "rev": "1e9ddf472d7b6006dc92684b82de22e6148f38b4" + }, + "recipe": { + "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2_24", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-quickrun.git", + "sha256": "bdfc73494b00fae2e5ece54c8d5312fc497e28010190a6d97166634a124a300e", + "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "rsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/rsense.git", + "sha256": "307f3a3cc652476eff7b12d4a583798f678e3e8d609bcb31255451242cc2d355", + "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocodo/ocodo-svg-modelines.git", + "sha256": "5cac1b9f8779c32491152339b735615c6cebc3ff91682d9de04d1a66532a5e15", + "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "svg-mode-line-themes" + ] + }, + "jedi-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "cl-lib", + "emacs", + "epc", + "python-environment" + ] + }, + "dim-autoload": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/dim-autoload.git", + "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" + }, + "recipe": { + "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [] + }, + "sentence-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el", + "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k" + }, + "recipe": { + "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", + "sha256": "194f60a181b339e59157f58543a133049f564172b9bf7eddd17299d968581829", + "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-youtube.el.git", + "sha256": "6d9bbb44731019e23321a00ad847b7a96448845a08a2ffd19a15eb963302325c", + "rev": "3629583031f3a59797a01e29abe9cc061e337294" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0Alpha", + "deps": [ + "erc" + ] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stevenremot/roguel-ike.git", + "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "popup" + ] + }, + "name-this-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knl/name-this-color.el.git", + "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" + }, + "recipe": { + "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "git-messenger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-messenger.git", + "sha256": "78a2ecc97301370c162bbccdf8787686241451b207cba75927fcc8114053dfa5", + "rev": "c45cdd9805d52a82bdd23907bd0f91dc7760d78d" + }, + "recipe": { + "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16", + "deps": [ + "cl-lib", + "popup" + ] + }, + "maven-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/maven-test-mode.git", + "sha256": "18ee821471b857620e3045ad4e925ea44b93101d5267aa52557146e471385db5", + "rev": "f79409907375591283291eb96af4754b1ccc0e6f" + }, + "recipe": { + "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.5", + "deps": [ + "emacs", + "s" + ] + }, + "help-mode+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-mode+.el", + "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j" + }, + "recipe": { + "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/discover-my-major.git", + "sha256": "3617d6b327669a1f461b7c2afae734a0ae61765865e52bf20f0b53cbe9750bb1", + "rev": "57d76fd21ec54706289cf9396fc871250569951e" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "makey" + ] + }, + "helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [ + "async", + "cl-lib", + "emacs", + "helm-core" + ] + }, + "pastelmac-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", + "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "rev": "bead21741e3f46f6506e8aef4469d4240a819389" + }, + "recipe": { + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", + "sha256": "9b94338cc888b0d568f185edf63640235d09eff61f57e863de5162b87a2dab77", + "rev": "517b340427d5906002234832a01d0bc1ad27bac5" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-hdevtools.git", + "sha256": "63a24a61e5f085f5ea331720572d204b9f7c22bd5b4b2d23ec582315c46bd58c", + "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flycheck" + ] + }, + "blank-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/blank-mode.el", + "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv" + }, + "recipe": { + "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "sly-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-company.git", + "sha256": "8b18fdc2924a4db9174903c50194c22f5b208ea0d75bfd6a796cc27e9d4fdda6", + "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" + }, + "recipe": { + "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ht.el.git", + "sha256": "1023cef7c2bea2f7fdbcb7d3ae0fea049025163110bde867390c21b0d629c498", + "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "elisp-slime-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elisp-slime-nav.git", + "sha256": "190432d15eb8f247c2f70494ec6c5e3be322acf3cf37ab1d87abde884f43157d", + "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea" + }, + "recipe": { + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "vlf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/vlfi.git", + "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tripleee/recover-buffers.git", + "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wcsmith/evil-args.git", + "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil" + ] + }, + "framemove": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/framemove.el", + "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" + }, + "recipe": { + "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chillaranand/real-auto-save.git", + "sha256": "b503ad1809b4e47696453f2733ba25780511122204585f283ff04114b0c045cd", + "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/ebib.git", + "sha256": "52070bc8cc4dee4afe52cf317ce9618a7971fa7a74e2477210257eb636d9fb4b", + "rev": "e9f92df575d747992e9ada768b18dee475cfee55" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.5.2", + "deps": [ + "dash", + "emacs", + "parsebib" + ] + }, + "multiple-cursors": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multiple-cursors.el.git", + "sha256": "55cf8411e303ac0aa66fb79b064515007764ce6b334e2570cfcef747bb4c976a", + "rev": "d17c89e41847cf9292004590ba5b1c8cec0b1c50" + }, + "recipe": { + "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-tss.git", + "sha256": "2f494cd01294af2b7cf5ac4ebc7121cf0a56c97286b9964afacb4fe895facc9e", + "rev": "1f302deea3d74462c71a9c62031f48b753e8915f" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ] + }, + "isearch+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch+.el", + "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6" + }, + "recipe": { + "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "espuds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/espuds.git", + "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [ + "dash", + "f", + "s" + ] + }, + "nav-flash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/nav-flash.git", + "sha256": "e9e1539e0cdf380336e1fef5262861cd030c1e485da712159c1b865bc04b2187", + "rev": "9054a0f9b51da9e5207672efc029ba265ba28f34" + }, + "recipe": { + "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "persp-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "cl-lib", + "perspective", + "projectile" + ] + }, + "osx-location": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/osx-location.git", + "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/unify-opening.git", + "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "emacs" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/ghc-mod.git", + "sha256": "0e7502f6d4f53fbbe726defd908ecb56d19e51e8de05f9584a933f9c8900f4a1", + "rev": "edfce196107dbd43958d72c174ad66e4a7d30643" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.4.0.0", + "deps": [ + "haskell-mode" + ] + }, + "ninja-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martine/ninja.git", + "sha256": "682b909572969af73598fef130057939dda7edaa050598004ce5c1e15a31587e", + "rev": "484c16336f19bd8970bb6e75322d61b92a229899" + }, + "recipe": { + "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/el-x.git", + "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/migemo.git", + "sha256": "54bf4e6497259bccc4328198dc61dfc9fe59899f9aaaa9baae9c485e3d2c6bb2", + "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.1", + "deps": [] + }, + "screenshot": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/screenshot.el", + "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw" + }, + "recipe": { + "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/easy-repeat.el.git", + "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "doremi-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el", + "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc" + }, + "recipe": { + "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "doremi", + "faces+", + "frame-fns", + "hexrgb" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-pophint.git", + "sha256": "052d51374b546e3c41b3776490c6bd7e65f377f4c197a708a53dd50e24d644ee", + "rev": "28dc6a76e726f371bcca3160c27ae2017324399c" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "shell-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-command.el", + "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l" + }, + "recipe": { + "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "filesets+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/filesets+.el", + "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" + }, + "recipe": { + "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "find-file-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/find-file-in-project.git", + "sha256": "9825101aa84dbe21ac8e32a3da663deb6f938cbf4d21ff32dace55ecde45b9c6", + "rev": "cb809569bf299663b2dce8501d9faa321484e5c4" + }, + "recipe": { + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.4", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/paren-face.git", + "sha256": "d8eb61608b21ddcaa6248c91eaab5e993c842aedcb567bd59ce41a77946f6f0c", + "rev": "835d817295d81e2a6def9beb37f05aaf97870e86" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/writeroom-mode.git", + "sha256": "79ba5d92c52f0177173ab77bea25d31be1e8451a260074f4138ad0fe8c198f17", + "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1", + "deps": [ + "emacs", + "visual-fill-column" + ] + }, + "use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" + }, + "recipe": { + "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "bind-key", + "diminish" + ] + }, + "highlight-defined": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-defined.git", + "sha256": "f9d8003c5d13a502e43a8486319b1e8697f88f6dad71dec02fcde66282e29f21", + "rev": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e" + }, + "recipe": { + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.5", + "deps": [ + "emacs" + ] + }, + "historyf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-historyf.git", + "sha256": "aab86167c113a0a62554782106f3f0379edfa905996f27155aad6338695cffe7", + "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.9", + "deps": [] + }, + "ess-smart-underscore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", + "sha256": "e4409ae5fe34272139df497b4795119e6843393012f075ee1afc75f26c336bab", + "rev": "ef18a160aeb3b1a7ae5fe93759f8e92147da8746" + }, + "recipe": { + "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.79", + "deps": [] + }, + "autofit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el", + "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s" + }, + "recipe": { + "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "fit-frame" + ] + }, + "narrowed-page-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", + "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" + }, + "recipe": { + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "conkeror-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/conkeror-minor-mode.git", + "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "rev": "476e81c27b056e21c192391fe674a2bf875466b0" + }, + "recipe": { + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.2", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/pycarddavel.git", + "sha256": "21ddbbcb4570eab716489a06f3f117fa22d194f8071c33b463d4abb117a52432", + "rev": "6ead921066fa0156f20155b7126e5875ce11c328" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "emacs", + "helm" + ] + }, + "bookmark+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", + "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" + }, + "recipe": { + "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ert-expectations": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el", + "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7" + }, + "recipe": { + "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "multi-eshell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el", + "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl" + }, + "recipe": { + "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emoji-cheat-sheet-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", + "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "rev": "96a003127d646a2683d81ca906a17eace0a6413e" + }, + "recipe": { + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "emacs", + "helm" + ] + }, + "helm-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-proc.git", + "sha256": "3cee3afc60d00121b9816f6ff9b750edc14df3464764d113d12fda62554dd52d", + "rev": "babf86d7d0e1f325f18095a51116c49cda2c5fec" + }, + "recipe": { + "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "helm" + ] + }, + "evil-lisp-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-lisp-state.git", + "sha256": "7e4b29c5af8da8ddf3c81ae4de191464584aefad3019199b7aab445e45f9c52f", + "rev": "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d" + }, + "recipe": { + "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1", + "deps": [ + "evil", + "evil-leader", + "smartparens" + ] + }, + "popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/popwin-el.git", + "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" + }, + "recipe": { + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-isort.el.git", + "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "paredit": { + "fetch": { + "tag": "fetchgit", + "url": "http://mumble.net/~campbell/git/paredit.git", + "sha256": "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f", + "rev": "82bb75ceb2ddc272d6618d94874b7fc13181a409" + }, + "recipe": { + "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "24", + "deps": [] + }, + "lispy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/lispy.git", + "sha256": "d531a0386bd43cf9dc07fefba888e123efc5f76191dbc3cdeb402fca03dc4cd4", + "rev": "7756a8fbbadbebbd5e20768569ed92ad6c402c5c" + }, + "recipe": { + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.26.0", + "deps": [ + "ace-window", + "emacs", + "hydra", + "iedit", + "multiple-cursors", + "swiper" + ] + }, + "request-deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" + }, + "recipe": { + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "second-sel": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/second-sel.el", + "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd" + }, + "recipe": { + "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ace-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-flyspell.git", + "sha256": "5b874784db3c741cd4b8011412faa2fd16038c73cb9622e9ab392fdf102df0df", + "rev": "a850fa913b3d1bab4c00bacee41da934929cef52" + }, + "recipe": { + "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "ace-jump-mode" + ] + }, + "list-unicode-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/list-unicode-display.git", + "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" + }, + "recipe": { + "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "import-popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-import-popwin.git", + "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" + }, + "recipe": { + "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.09", + "deps": [ + "cl-lib", + "popwin" + ] + }, + "company-tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-tern.git", + "sha256": "eb6238510b90a088c6274cbbfb3ac89252a6595babbac827311397d97fac34ca", + "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176" + }, + "recipe": { + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ] + }, + "lit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HectorAE/lit-mode.git", + "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" + }, + "recipe": { + "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "w32-browser": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", + "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" + }, + "recipe": { + "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/miniedit.git", + "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/magit-gh-pulls.git", + "sha256": "5f48eec8bab6112027e780147909eabf1d1ffcdd1892e17b39ea66f5a75038a6", + "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "emacs", + "gh", + "magit", + "pcache", + "s" + ] + }, + "highlight-current-line": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el", + "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c" + }, + "recipe": { + "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "window+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window+.el", + "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz" + }, + "recipe": { + "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "firestarter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/firestarter.git", + "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/adoc-mode.git", + "sha256": "ef489ede62f3ab9872e3f0d46476d4bc7465eb329794504cf60570a95498d4ef", + "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [ + "markup-faces" + ] + }, + "racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/racer-rust/emacs-racer.git", + "sha256": "ecbbfd283aaa4b9a9b4c1ef0b70f360f9438aa5203c7a7ace375588500df3df5", + "rev": "9b7b4b1e8b04f630d29f771ad268025ff9380236" + }, + "recipe": { + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "dash", + "emacs", + "rust-mode", + "s" + ] + }, + "simplezen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/simplezen.el.git", + "sha256": "0b9b25303f7f9249cfab0cfba666d163c5906d056f274fb405ad410a7cfe277e", + "rev": "c0ddaefbb38fcc1c9775434f734f89227d246a30" + }, + "recipe": { + "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaor/geiser.git", + "sha256": "6797b8641ea3db9c0ba9b1a813b854c4d985c981627ceed24e6ea6d7d895e13d", + "rev": "c6f17b25200e36f80d812684a2127b451fc11817" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/tup-mode.git", + "sha256": "1e1d0b7e88d251cac0cc92dc15d4781c9982bfd6a9a4f074e343ec6289004d2b", + "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yitang/voca-builder.git", + "sha256": "99e71a4a4830c50e16a9b7fba589e88ed7eb02fbefe03cde47fac7547e9cb809", + "rev": "224402532da28e45edd398fda61ecbddb97d22d3" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "replace+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace+.el", + "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" + }, + "recipe": { + "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "zotelo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/zotelo.git", + "sha256": "59e3b6235b3aa83f5c15cf44047a438c5a1f744d4ba5d620abad5514dd5f8d63", + "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "helm-dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/areina/helm-dash.git", + "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/vcomp.git", + "sha256": "5d60359b2ac0fb802252a6d0e721ce4477d728e89248b31eb091f1b97d1bbd1d", + "rev": "a12363c3a66576b68955abcadf7280de32eaa051" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "jsx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsx/jsx-mode.el.git", + "sha256": "6642871575e4dc2b620102e6adb3ea6b2945fc97e5e1b8d0c473cf8739e80cd8", + "rev": "1ca260b76f6e6251c528ed89501597a5b456c179" + }, + "recipe": { + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.10", + "deps": [] + }, + "tool-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el", + "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9" + }, + "recipe": { + "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "auto-async-byte-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el", + "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17" + }, + "recipe": { + "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacobono/emacs-gradle-mode.git", + "sha256": "0a1924a9b90be4ce1c8ab2299c575e97b69e1a708f2642a055d15c1d0ca7cefb", + "rev": "579de06674551919cddac9cfe42129f4fb0155c9" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.5", + "deps": [ + "s" + ] + }, + "redo+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/redo+.el", + "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" + }, + "recipe": { + "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ess-R-data-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-data-view.el.git", + "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" + }, + "recipe": { + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "ctable", + "ess", + "popup" + ] + }, + "keyfreq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dacap/keyfreq.git", + "sha256": "a9033ddc9e79f5cb19423299a4a31c8b0ab815a6fb645b7d452c3ac2f4ebd9ea", + "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/malroc/sourcetalk_emacs.git", + "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "request" + ] + }, + "archive-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/archive-region.el", + "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52" + }, + "recipe": { + "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "kaesar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib" + ] + }, + "image-dired+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", + "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" + }, + "recipe": { + "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.2", + "deps": [ + "cl-lib" + ] + }, + "anything-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/anything-sage.git", + "sha256": "6008694aeeaecbfe1e34dcc9d092272bf4e9c45f73b94c9022aa6cfc6e54e903", + "rev": "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2" + }, + "recipe": { + "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "anything", + "cl-lib", + "sage-shell-mode" + ] + }, + "ignoramus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ignoramus.git", + "sha256": "f22b83d6fa7e6a7ea0141829aebecf77b68b11e8e8ae17471af01c1324380c25", + "rev": "37536286eb1da6d7bb9590e039485c456fdfd245" + }, + "recipe": { + "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "telephone-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbordak/telephone-line.git", + "sha256": "f469dfcafb19dfbf0a4abf8eb665b543e92fb6ff807816ed289622f5e3d2b405", + "rev": "70c113bea37719c83961023afd893044398e681d" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "eieio", + "emacs", + "s", + "seq" + ] + }, + "ac-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xcwen/ac-php.git", + "sha256": "5422b6878294e4887152670078cac5c74583464f88b4916674f6d08bb6a9ec25", + "rev": "64cfba5b405edb864e4146dd7e00aa8c070a544a" + }, + "recipe": { + "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "auto-complete", + "emacs", + "f", + "php-mode", + "s", + "xcscope", + "yasnippet" + ] + }, + "helm-ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-ghq.git", + "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201", + "rev": "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-gtags.git", + "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [ + "cl-lib", + "helm" + ] + }, + "company-cabal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-cabal.git", + "sha256": "bc468b71cbf701e60ac939f3612bd919bf598f2b0b5c6265a73824cc6832ef14", + "rev": "a570559ff92522598b5ed40e21c4539fffb3e976" + }, + "recipe": { + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "company", + "emacs" + ] + }, + "idle-highlight-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/idle-highlight-mode.git", + "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" + }, + "recipe": { + "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.3", + "deps": [] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-blocks.git", + "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.16", + "deps": [ + "emacs" + ] + }, + "simple-httpd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-http-server.git", + "sha256": "557c431a225d03402c88b9092f8e0690f4f8f1a6b9dbffa9d823ec63fdeb15e2", + "rev": "b191b07c942e44c946a22a826c4d9c9a0475fd7e" + }, + "recipe": { + "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.6", + "deps": [ + "cl-lib" + ] + }, + "actionscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austinhaas/actionscript-mode.git", + "sha256": "637d66175853b07020244a3bb28e67987b731a59d6f70be230b28e0f1164cb7f", + "rev": "fddd7220342d29e7eca734f6b798b7a2849717a5" + }, + "recipe": { + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.2.2", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/emacs-sos.git", + "sha256": "fefd31f120c54f8bda92c8bda463860029506364412a7cfe4eacf978c06fae61", + "rev": "c3906ca6872f460c0bdd276410519308626313f1" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/nasm-mode.git", + "sha256": "54fadf6d2f216bb99c902b4e7829f25c48ad48a6c65fa4ee6d5e0d2b40c4e068", + "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/markup-faces.git", + "sha256": "d39e729436905b3bdc0555149e201a0f7d4d6906a8feae548099334642cd625a", + "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "better-registers": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/better-registers.el", + "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh" + }, + "recipe": { + "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-calfw.git", + "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "google-maps" + ] + }, + "tabbar-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/tabbar-ruler.el.git", + "sha256": "ecabc3fcfdaf5dbf1ee44140ac109f0b10a6e162271f39ce4e24fb27923ea6f5", + "rev": "7df2e4814018e84ef9261d04a2ade8168a44e3d7" + }, + "recipe": { + "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.45", + "deps": [ + "tabbar" + ] + }, + "gruber-darker-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/gruber-darker-theme.git", + "sha256": "6d66ed9cda0e2f29dd13e5951b67c389fe6c2e103772897abd834f3b1acb0092", + "rev": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4" + }, + "recipe": { + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuhito/orgbox.git", + "sha256": "d645666197b200f73a261b9bcde0462a9b83966da279ffb3b2ba561f300b52af", + "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib", + "org" + ] + }, + "mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/Mew.git", + "sha256": "472471d59703eeead8b196ff50bdabdb4bdd9a74719131cc936dc1dbb22880dc", + "rev": "08289430ce14780a03789b71d2060ff4392fbae6" + }, + "recipe": { + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "6.7", + "deps": [] + }, + "helm-circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lesharris/helm-circe.git", + "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" + }, + "recipe": { + "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "circe", + "cl-lib", + "emacs", + "helm" + ] + }, + "ruby-hash-syntax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ruby-hash-syntax.git", + "sha256": "0620b9025720546eb6d9c3ecba6807400016d06384b892174d43c09cab7b100a", + "rev": "a0362c2dc449a1e67ef75ad736bcf8b03b083226" + }, + "recipe": { + "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "nodejs-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abicky/nodejs-repl.el.git", + "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7" + }, + "recipe": { + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "sekka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/sekka.git", + "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.4", + "deps": [ + "cl-lib", + "concurrent", + "popup" + ] + }, + "auto-complete-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", + "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" + }, + "recipe": { + "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "auto-complete" + ] + }, + "full-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/full-ack.git", + "sha256": "47b06985e251b76ccb3ce19a8723ae12e003c00d829d6b9e9011c98ed5a1c3a9", + "rev": "0aef4be1686535f83217cafb1524818071bd8325" + }, + "recipe": { + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "helm", + "nixos-options" + ] + }, + "magit-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-annex.git", + "sha256": "3ff04fa5497c6f8f330408112edc4d3de9932224d2b73bc7b751118edea9c661", + "rev": "b51962dcc1080a35a91e2667f7c26fb33960c711" + }, + "recipe": { + "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib", + "magit" + ] + }, + "matrix-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", + "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341", + "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809" + }, + "recipe": { + "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "json", + "request" + ] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", + "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "rev": "497d33632f195354eaa24670db0804c846b7261b" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.4", + "deps": [ + "helm" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "emacsql", + "pg" + ] + }, + "yaml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshiki/yaml-mode.git", + "sha256": "0d05b3b1e342c2caf3360a6fb67b3c537c3b015d81dcad8bacf5086a0b8837ee", + "rev": "a817e46cc55eb90b7e1dd7cff74e43e080f0f690" + }, + "recipe": { + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.12", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/ncl-mode.git", + "sha256": "ee518f4a920fa5aca844f3a11ee55a2110d7458a31e9f8a2e52dad3ad29aa868", + "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.99a", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-direx.git", + "sha256": "29c5386d7a7b39db97a068c7cf6f51971836bf430015d379b597499da9c5a9e4", + "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.04", + "deps": [ + "cl-lib", + "direx" + ] + }, + "doremi-cmd": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el", + "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2" + }, + "recipe": { + "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "doremi" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dmatveev/shampoo-emacs.git", + "sha256": "cf57006de03c3c8d00fad29cba4ba0125113b1c02e839a295ef17ae2ed51e6e1", + "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/emacs-purpose.git", + "sha256": "603dd34a67b16a333909e9184156154e7c71e58bcec8ee4f4be6be6b268c6452", + "rev": "7e492cbdd4259a177625a3f47001d7281f295349" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "cl-lib", + "emacs", + "imenu-list", + "let-alist" + ] + }, + "boxquote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davep/boxquote.el.git", + "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "rev": "4c49b2046647ed187920c885e175ed388f4833dc" + }, + "recipe": { + "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.22", + "deps": [] + }, + "sticky": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sticky.el", + "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" + }, + "recipe": { + "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/emacs-ipython-notebook.git", + "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "request", + "websocket" + ] + }, + "magic-filetype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/magic-filetype.el.git", + "sha256": "e22ae243e841ddb4381ebf7e6cf5ce9e179e62d22769ba8687ff350c0cf18df5", + "rev": "1a3e425ab5b7b6614b7ece5885d23f12f45572f0" + }, + "recipe": { + "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs", + "s" + ] + }, + "py-yapf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-yapf.el.git", + "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "rev": "766e57448639ff95eeb018f6d8bdf09170094218" + }, + "recipe": { + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/paper-theme.git", + "sha256": "83f357c3044453c03633c7967a905c75d9abb3670a218a18fa59382ad01312ba", + "rev": "551859066afe926380b6fcdc95851db45599944e" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "hexrgb": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", + "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" + }, + "recipe": { + "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-finalize.git", + "sha256": "2512e83da6a4bff10f56408acc58880743e05d69b03f002874a7da4512440436", + "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "eieio", + "emacs" + ] + }, + "paredit-everywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/paredit-everywhere.git", + "sha256": "878c101b8f9164f21156cf1926f382fc00454b4b77f2bb265b3e340813c52a4b", + "rev": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170" + }, + "recipe": { + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "paredit" + ] + }, + "eval-in-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/eval-in-repl.git", + "sha256": "94a9ce1251a57a407f77fc7f1590b510a35101bced6dceb32e80bf04451310e9", + "rev": "c79ba77bdd6f1534f379953fc6e0ec0e1c866151" + }, + "recipe": { + "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "paredit" + ] + }, + "helm-perldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-perldoc.git", + "sha256": "dbcef6a645dbb2820af730d2c7929059064efd97e2cff72993eab8ee2e742afe", + "rev": "18645f2065a07acce2c6b50a2f9d7a2554e532a3" + }, + "recipe": { + "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "cl-lib", + "deferred", + "helm" + ] + }, + "ttrss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pedros/ttrss.el.git", + "sha256": "cfec017bb5627cffe0aa80fb295166c76916c94e6b014a6ce8b82a959a9e1218", + "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.5", + "deps": [ + "emacs" + ] + }, + "term-run": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/term-run-el.git", + "sha256": "63dab270c988b49df7b24b1fd72e486a0f27f876f738cbbf39bdc1f238936e03", + "rev": "9b20497bec2537ca6b36a66322a2d99107030679" + }, + "recipe": { + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/smooth-scrolling.git", + "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.4", + "deps": [] + }, + "flymake-python-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-python-pyflakes.git", + "sha256": "30c9c615b19605954b73955c05c2a92e18922109e0ec01cdff4f84766344174b", + "rev": "78806a25b0f01f03df4210a79a6eaeec59511d7a" + }, + "recipe": { + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "flymake-easy" + ] + }, + "misc-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-fns.el", + "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86" + }, + "recipe": { + "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-cask.git", + "sha256": "940783353a872ac592bf73616d863889858dec5e1abb1c93db859dc178093245", + "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "el-get": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/el-get.git", + "sha256": "eebdbebb3a1e8a4e20d36c60c3b027caa1a18f94b7182f84d9e57847fc16b99b", + "rev": "bfffd553f4c72b818e9ee94f05458eae7a16056b" + }, + "recipe": { + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.1", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/markdown-mode-plus.git", + "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michaelklishin/cucumber.el.git", + "sha256": "87bf498a2b320331753bb41d7d1e8f4a9241e198f49a8f98491aed02def3b2b3", + "rev": "4bd8f19da816115094beb4b0e085822eb298ac37" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "dired-details+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details+.el", + "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y" + }, + "recipe": { + "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "dired-details" + ] + }, + "mouse3": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse3.el", + "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi" + }, + "recipe": { + "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/unkillable-scratch.git", + "sha256": "15e57c8ed17a82e1838a6dc119e23347d59e2018b2d1b127c2cb82eceb035cf0", + "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "crm-custom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/crm-custom.git", + "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ace-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-link.git", + "sha256": "fffd40fc00e63aa64906c179f4860b674a3743fa6c551ddf32c13e021a3d22ec", + "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5" + }, + "recipe": { + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "ace-jump-mode" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/anaphora.git", + "sha256": "4d48342cc1ec113a33c08097e7b0a1fda2b6f1baf6d8e9c90951087dcdafcc13", + "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "wc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wc-mode.el", + "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d" + }, + "recipe": { + "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "csv-nav": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/csv-nav.el", + "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva" + }, + "recipe": { + "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "grass-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/tws/grass-mode.el", + "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5", + "rev": "aa8cc5eff764" + }, + "recipe": { + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "dash" + ] + }, + "fish-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wwwjfy/emacs-fish.git", + "sha256": "168c82e9499894fdd9aac5067e162b3de7b48adcee47062a505a2b8f100498ef", + "rev": "ac38e249dc260790ae32a24e101311990d9a84df" + }, + "recipe": { + "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/ercn.git", + "sha256": "0011ce6ec929f164be91bca53aa03e1b3c3a6b5f683462e7e00d36e0968d56a6", + "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [ + "findr", + "inflections" + ] + }, + "list-packages-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/list-packages-ext.git", + "sha256": "98cf61b610d9ba668484977d3eaf7783525999480422b6b88355bdcee3c4eca4", + "rev": "344719b313c208c644490f8f1130e21405402f05" + }, + "recipe": { + "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "ht", + "persistent-soft", + "s" + ] + }, + "ert-junit": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/olanilsson/ert-junit", + "sha256": "63a8fb532260f56569ce20f911788054624a7a29f149ed6036d9f997ae0457c3", + "rev": "341c755e7b60f8d2081303951377968b1d1a6c23" + }, + "recipe": { + "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "ert" + ] + }, + "clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clj-refactor.el.git", + "sha256": "4f83a8dfec5cffa881549e6809f3790cc3a83fd7f9b4a24f6d7160c256636525", + "rev": "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168" + }, + "recipe": { + "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cider", + "dash", + "edn", + "emacs", + "multiple-cursors", + "paredit", + "s", + "yasnippet" + ] + }, + "org-autolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/calvinwyoung/org-autolist.git", + "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" + }, + "recipe": { + "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [] + }, + "evil-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-escape.git", + "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + }, + "recipe": { + "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.12", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "camcorder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/camcorder.el.git", + "sha256": "a6a12faf8631c81462a70aa31648d2bd56cc212fd359a03390c0b142473d226d", + "rev": "a2b5e0629ee3c01ead684e148965ac68e533efbd" + }, + "recipe": { + "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "names" + ] + }, + "make-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/make-color.el.git", + "sha256": "bbef730fb994e9db2bd09d90373d19dc17b1bf002ea1da8a146700e90ff90ffa", + "rev": "b19cb40c0619e267f2948ed37aff67b712a6deed" + }, + "recipe": { + "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "german-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/german-holidays.git", + "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "traad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" + }, + "recipe": { + "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "save-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/save-sexp.git", + "sha256": "8b3f7a809e341c5a676c952eb4c2d1f712e7d9008c592d4755972151583e09be", + "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc" + }, + "recipe": { + "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/fringe-helper.el.git", + "sha256": "afbb216b3f16c9ddd88ebb1446871f85d9bca0121e5a27e41d988b5d37586313", + "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/bufshow.git", + "sha256": "56868174258e16f4778ff77218915116322c06c1264a7e3b1b193d8cafac8485", + "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "plsql": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/plsql.el", + "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" + }, + "recipe": { + "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ebal.git", + "sha256": "2084ec30b161f996b19f5f8d5be6479e757424bfb2fa55398bfb802292b04c9a", + "rev": "bd8bca3a57d390c22862179db0afca7008831dd7" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs", + "f", + "ido-completing-read+" + ] + }, + "coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/coffee-mode.git", + "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" + }, + "recipe": { + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "usage-memo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/usage-memo.el", + "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i" + }, + "recipe": { + "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/smartparens.git", + "sha256": "b64e03b27e05b8c67d6912f31dfdaf7d67810a1fbc49170a9035612b9328df35", + "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.3", + "deps": [ + "cl-lib", + "dash" + ] + }, + "grunt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gempesaw/grunt.el.git", + "sha256": "fc191985f898438a6128abaedeb60871f70c623ecbf03a36bb879a848960ea6b", + "rev": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9" + }, + "recipe": { + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "ansi-color", + "dash" + ] + }, + "buffer-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/buffer-utils.git", + "sha256": "be3edaa95e32fa7196e64eebe4c659ed63f038a204497fe637f4a4cbb44c0b2a", + "rev": "b4d325543e25518d725a2122b49cd72a0d6a079a" + }, + "recipe": { + "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robario/elscreen-persist.git", + "sha256": "67b1cd5f0daadc0bed867eb4446872c0b4d306dd2eff5a9514ac6dfdd11fc83d", + "rev": "2d7c6c2934e4b5c6f4b125eb5fdfc888c4b647dc" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "elscreen", + "revive" + ] + }, + "pyenv-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pyenv-mode.git", + "sha256": "f6d072de53846a738cfbd07a1e38c8f073eecfaedd6d0bd766064ef064d5860b", + "rev": "b96c15fa1b83cad855e472eda06319ad35e34513" + }, + "recipe": { + "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csrhodes/iplayer-el.git", + "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-tools.git", + "sha256": "abd2a379479429d82892de60b4aa83968e851ae9e1de944ba13e0a9ae1f18613", + "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "multi-term": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-term.el", + "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim" + }, + "recipe": { + "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/hardcore-mode.el.git", + "sha256": "5486b1bc48f0704d5cb4d64ea2e2724f3ec1f0306686a66874e4bd276cba8622", + "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-R.el.git", + "sha256": "a48258ed800969ebff2e9052f4ff94e07e1e02d941cb36bae8d987d0ae39b94f", + "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "e2wm" + ] + }, + "fold-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/fold-this.el.git", + "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/mowedline.git", + "sha256": "ec66747edd88411037a184ad454a954ca90c5fc773952f7ebf222a840c92f309", + "rev": "c299991ace6f55e9edbf26c1d53b054873899101" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.8", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keychain-environment.git", + "sha256": "bc7116e1cac43a4002c83c0c45b25a30ae93057ca4e28d80c36c20d678d0061e", + "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.0", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/parent-mode.git", + "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "git-gutter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter.git", + "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.85", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "highlight-cl": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el", + "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw" + }, + "recipe": { + "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ellerh/peg.el.git", + "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/cask.git", + "sha256": "f5c62c805dd9b801d0dddb23cce334449d857d95c93df8957c948cdbfab6d8a8", + "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.4", + "deps": [ + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ] + }, + "ace-jump-helm-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", + "sha256": "7bc9141a395baba7f07eada0f873d5c8958dd470c6e95c30bdbe0d81e5812d67", + "rev": "8259c2bd34486c3929c3425f3354d70cdb478c69" + }, + "recipe": { + "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [ + "avy", + "helm" + ] + }, + "puml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skuro/puml-mode.git", + "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" + }, + "recipe": { + "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [] + }, + "ac-html-csswatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-csswatcher.git", + "sha256": "2ec03946eb13fe462a9f8bd4cacefe5a925d843e27169f3a675506e67de7285c", + "rev": "dadc3c595cf1708291096c03987f1981f3cabc6b" + }, + "recipe": { + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.7", + "deps": [ + "web-completion-data" + ] + }, + "viewer": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/viewer.el", + "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb" + }, + "recipe": { + "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/gmail2bbdb.git", + "sha256": "3d74c42b85a8d8f4dd5c93d6ea08ac1d306e33d5b66e0ed9e9d6143faa28d65c", + "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-easy.git", + "sha256": "bc47240a0f4542b365fc9ec65f083bf0990714df032a15370ac0aa964bd2ae2d", + "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "org-repo-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/org-repo-todo.git", + "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" + }, + "recipe": { + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "anything": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/anything-config.git", + "sha256": "86b90766ccb31a492998299092a3d0b892a8ac0bdb8e1833ef75fa6d79c7c721", + "rev": "6b9718fba257e6c2912ba70f9895251ab1926928" + }, + "recipe": { + "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.9", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/robe.git", + "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.8", + "deps": [ + "inf-ruby" + ] + }, + "git-auto-commit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/git-auto-commit-mode.git", + "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "rev": "075e5f9ded66c2035581a7b216896556cc586814" + }, + "recipe": { + "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.4.0", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303", + "deps": [ + "company" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/google-translate.git", + "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11.2", + "deps": [] + }, + "batch-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/batch-mode.el", + "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p" + }, + "recipe": { + "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/puppet-mode.git", + "sha256": "25ed7a919c57291225bdaaa035913ca255592915f0964e2814625a44a0001913", + "rev": "d943149691abd7b66c85d58aee9657bfcf822c02" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "emacs", + "pkg-info" + ] + }, + "live-code-talks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/live-code-talks.git", + "sha256": "7308fdfadbba90d014c2e97343a81ad2fa22e09d25b6957c7dd6c8d1e4371bfa", + "rev": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99" + }, + "recipe": { + "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "narrowed-page-navigation" + ] + }, + "unicode-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-fonts.git", + "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" + }, + "recipe": { + "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.8", + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "eww-lnum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/eww-lnum.git", + "sha256": "6257b99a0c332bd0884dc946bfe708a5d8fa5512c98825b6615f6ba1475c463f", + "rev": "daef49974446ed4c1001e0549c3f74679bca6bd3" + }, + "recipe": { + "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ijp/mbe.el.git", + "sha256": "51544f5e6f4bfec4bbead3dd6f9b274ea2b061154c0a5ebcf28fd9e2a468fc01", + "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "relative-line-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/relative-line-numbers.git", + "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" + }, + "recipe": { + "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "emacs" + ] + }, + "ob-sml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/swannodette/ob-sml.git", + "sha256": "abd8f7fa17db90ee93ea9fafec7027349121dfb3d32276caa65d667ad1a36e40", + "rev": "09b503201be6e06a5ed8d6b52345dc886c202028" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/mu4e-alert.git", + "sha256": "ca6cd79207129903cb6492f31b62a9f64fddd86f47cc5c7972c1d8cf8e332f73", + "rev": "83e6232b43902c7124fea16145de0da881bfe865" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "alert", + "emacs", + "s" + ] + }, + "ham-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/ham-mode.git", + "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" + }, + "recipe": { + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [ + "html-to-markdown", + "markdown-mode" + ] + }, + "modeline-posn": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el", + "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i" + }, + "recipe": { + "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-direx.git", + "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "direx", + "e2wm" + ] + }, + "macros+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/macros+.el", + "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q" + }, + "recipe": { + "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/multi-web-mode.git", + "sha256": "cb7c7a0e0951eaf303f6cc0fba1e6ebd14fb6269e594c9cd7effdd23781b3eb5", + "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/history.git", + "sha256": "618185ca1012fcbf09f62d8205a653f401302769dad09d452168ee830d82a7d1", + "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "auto-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/auto-dictionary-mode.git", + "sha256": "ae6333ddbb5f6723426199aeb6ce9c4b43adf037044e2f1f42a0201ecf0a2325", + "rev": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1" + }, + "recipe": { + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/popup-el.git", + "sha256": "d12353d7ad8a31d90a050f57bae599c037ce3dc1eab991ce51e757de26934a08", + "rev": "46632ab9652dacad56fd961cd6def25a015170ae" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [ + "cl-lib" + ] + }, + "evil-commentary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-commentary.git", + "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "rev": "122880a6721fcf16479f406c78c6e490a25efab0" + }, + "recipe": { + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "evil" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/shut-up.git", + "sha256": "ef77b4f00b402e7b73ebd5097b707a52bf559a614eed8ffaf9619bc45a34eee8", + "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/orglink.git", + "sha256": "27358837b625d751bd9eedce5718e35247124d08df866ee8ace332fde9fa7003", + "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "dash", + "org" + ] + }, + "flymake-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-shell.git", + "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" + }, + "recipe": { + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/simenheg/rdf-prefix.git", + "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "bs-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bs-ext.el", + "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw" + }, + "recipe": { + "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-migemo.git", + "sha256": "bafb099d717477922dab0b60b7c157a617a739f278059eaebc4028671544a80c", + "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.22", + "deps": [ + "cl-lib", + "helm-core", + "migemo" + ] + }, + "gather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-gather.git", + "sha256": "e6065490459b5f760315f59fcd4509691342e067fabbec38bdcbb04592f82be1", + "rev": "303af57dd2ae0fc1363a3d1a84d475167f58c84a" + }, + "recipe": { + "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-test-simple.git", + "sha256": "78cd3787dc6f8ea58d97b651dbb955b729dabf70c8f958b3592b46025326ab07", + "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/projectile-rails.git", + "sha256": "eeeca7ba65658f2a34a07304e1ef513ad969ff3d0d6d8b1544068d079fa8051d", + "rev": "dee51e39003489ece8077750d3cf93dee6b373fa" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.7", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "tabulated-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/tabulated-list.el.git", + "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" + }, + "recipe": { + "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/hippie-expand-slime.git", + "sha256": "79c1a6513a11db6c45de6dc7e0a4c6cd62bac0ee9983e8f33b5c29369f22f357", + "rev": "de31fbc9f9d55891a006463bcee7670b47084015" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rspivak/httpcode.el.git", + "sha256": "13e7b30753627a9c4aaf71351ae39dc5043b707edce3c89c5ff684e8101a36c1", + "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/keyset.git", + "sha256": "b6149b699968327244a0d350c06aa5383bc4e54bda88b3179d83b674a50691d8", + "rev": "25658ef79d26971ce41d9df207dff58d38daa091" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "dash" + ] + }, + "editorconfig-fnmatch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "smart-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/smart-compile.el", + "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd" + }, + "recipe": { + "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "git-gutter-fringe+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", + "sha256": "c9524466c513f3eb2cae4c0a716dcf27958ce813b5b152661888f7a3ee92f1b0", + "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd" + }, + "recipe": { + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "fringe-helper", + "git-gutter+" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-milkode.git", + "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "palette": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/palette.el", + "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" + }, + "recipe": { + "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "egg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/egg.git", + "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.9", + "deps": [] + }, + "aok": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/aok.el", + "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" + }, + "recipe": { + "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16.0", + "deps": [ + "cl-lib", + "emacs", + "json" + ] + }, + "helm-swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-swoop.git", + "sha256": "812eb2e11a853434780b470c8cd261317a5df3d3a3b6a937ca7d0955d3cf72d2", + "rev": "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7" + }, + "recipe": { + "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/skeletor.el.git", + "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "let-alist", + "s" + ] + }, + "counsel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" + }, + "recipe": { + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "emacs", + "swiper" + ] + }, + "visual-fill-column": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/visual-fill-column.git", + "sha256": "02187d43ae2604aaf3f4b86cf5a5ed0370ebe51d52c0b99604a50979bd9f29a2", + "rev": "261e27c062fbfd59ab20c9a084c35b99bcec598d" + }, + "recipe": { + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "emacs" + ] + }, + "android-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/android-mode.git", + "sha256": "52f94fbda0a39a3a2e2bcae154fe4af7f348744ef440948f67709c10a1a4d00c", + "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "undercover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sviridov/undercover.el.git", + "sha256": "8a5681728eba3202f7446e2f24b1efa8f9394ea44a145b31d82b06caaef3d6bb", + "rev": "068d39745304a06152c3e68a0b6772394c9e6d39" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "dash", + "emacs", + "shut-up" + ] + }, + "clojure-quick-repls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/symfrog/clojure-quick-repls.git", + "sha256": "edfca4eb968e22ada89bcfc8affb2ddfafd9b7e78b9a6345eb642474a527836b", + "rev": "90f82e294cfdfb65231adc456177580cd69bfc00" + }, + "recipe": { + "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/rase.git", + "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js2-mode.git", + "sha256": "77fa5fa2cfd6e89ca94448e22675a939cfa6845d38e5cf33cab3d1e4800e1505", + "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "zones": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zones.el", + "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd" + }, + "recipe": { + "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/window-end-visible.git", + "sha256": "17e52995dfe349e457d51972dcff24fead1fcce31136582465017e7a98a0a096", + "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rbenv.el.git", + "sha256": "f75fbfdfccb073a576191d6e8c0c4d7ff6149b13fdb6351913759b6d29d98625", + "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "org-agenda-property": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/org-agenda-property.git", + "sha256": "ae73db4105d7dcc4323b04a3b0aca0698ac318f8f60fffc66282dd745d352913", + "rev": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8" + }, + "recipe": { + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "dart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/dart-mode.git", + "sha256": "9ab9e6471817ef07837b2eb1c71a3feca72746a799624f9dbdf702e65b4976ee", + "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [ + "cl-lib", + "dash", + "flycheck" + ] + }, + "disk": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/disk.el", + "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" + }, + "recipe": { + "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "navorski": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/navorski.el.git", + "sha256": "3314722d6bcfc0bba4fc3f9e4d583f07a9b3a6c5465b5047795c079d7839c6f8", + "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "dash", + "multi-term", + "s" + ] + }, + "info+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/info+.el", + "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g" + }, + "recipe": { + "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/yasnippet.git", + "sha256": "bdc884416100f3348425ae6bf192c4e193c46aa9374636f87f68bc25c192fdaf", + "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0-a", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/erc-crypt.git", + "sha256": "5fdb5494dec923210ff033ffe5a2a156aa0c1826d768f2d205793e93a33685f7", + "rev": "1573189240d8b58e65385414d9a9514238c77805" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/log4e.git", + "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "graphviz-dot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ppareit/graphviz-dot-mode.git", + "sha256": "400f68d6ab5b4dfcabf7f60e28868708f4378efe0f57cd42b8247c4f233166fe", + "rev": "7301cc276206b6995d265bcb9eb308bb83c760be" + }, + "recipe": { + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", + "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "melpa-upstream-visit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/melpa-upstream-visit.git", + "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" + }, + "recipe": { + "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "s" + ] + }, + "col-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/col-highlight.el", + "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n" + }, + "recipe": { + "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "vline" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/paxedit.git", + "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.6", + "deps": [ + "cl-lib", + "paredit" + ] + }, + "e2wm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-manager.git", + "sha256": "821047f9a6595307a9a77210577810876ddffba52cc803fee872a581c7ed2e4e", + "rev": "397cb6c110c9337cfc1a25ea7fddad00f168613c" + }, + "recipe": { + "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-spell.git", + "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-ac.git", + "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ] + }, + "omnisharp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OmniSharp/omnisharp-emacs.git", + "branchName": "master", + "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" + }, + "recipe": { + "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "flycheck", + "json", + "popup", + "s" + ] + }, + "project-local-variables": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el", + "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw" + }, + "recipe": { + "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "top-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/top-mode.el", + "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn" + }, + "recipe": { + "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-numbers.git", + "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "emacs", + "parent-mode" + ] + }, + "org-toodledo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-toodledo.git", + "sha256": "cc4ef1e544ec8e4b7211846834ff6264ad4570f0a0a9bf27805a934a65d9668f", + "rev": "5473c1a2762371b198862aa8fd83fd3ec57485a4" + }, + "recipe": { + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [] + }, + "js2-highlight-vars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/js2-highlight-vars.el.git", + "sha256": "14a1d10bb1286993acd40d57b23b65763889f00056abd470df0fe091bbfa5a64", + "rev": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed" + }, + "recipe": { + "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "js2-mode" + ] + }, + "processing-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "rev": "228bc56369675787d60f637223b50ce3a1afebbd" + }, + "recipe": { + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/csharp-mode.git", + "sha256": "ae137909e1a2019982e32bb982d3bbc2ee6b38d4909fc357bccc6bda3cf03ba9", + "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.11", + "deps": [] + }, + "all-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/all-ext.el", + "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m" + }, + "recipe": { + "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "all" + ] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-mode.git", + "sha256": "923546e797da36a160676ff32b39d273e42f453f8b188d6a6f497dfda576e288", + "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "ess-R-object-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-object-popup.el.git", + "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" + }, + "recipe": { + "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/solarized-emacs.git", + "sha256": "6d9ac8162cd0a643f0b05719aadb54879bfd8ad627993fd0c6bef5cfbdcb605e", + "rev": "210dbef0186f87048d50face41d1d374d6154b3a" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "dash" + ] + }, + "osx-trash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/osx-trash.el.git", + "sha256": "658f200965c24fc81da1b2586a45e9a52145878a4d45c0f8d4021bfd9e4bda14", + "rev": "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4" + }, + "recipe": { + "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-readme.git", + "sha256": "ea00c174f79fa66b8b8a008aef13d829c5d8c636b673aa6b95896eac01770f42", + "rev": "15054e42351b5ec6b629c55760a578516e035355" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130322.926", + "deps": [ + "header2", + "http-post-simple", + "lib-requires", + "yaoddmuse" + ] + }, + "org2jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/org2jekyll.git", + "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" + }, + "recipe": { + "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.8", + "deps": [ + "dash-functional", + "deferred", + "s" + ] + }, + "bing-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/bing-dict.el.git", + "sha256": "7aaa16adc9f3ce582f9f514f598415b27e640d4410b31feb0cdace5da03a8f26", + "rev": "3d55a306fa50ffad4b374fbf716b5b5200661770" + }, + "recipe": { + "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "ctable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-ctable.git", + "sha256": "c32bcaf3750bc16e9c6b31937e8bffcaa8218618bfb1d56ffecbf850fd44f88f", + "rev": "08a017bde6d24ea585e39ce2637bebe28774d316" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "typing": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/typing.el", + "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31" + }, + "recipe": { + "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-ess/ESS.git", + "sha256": "5c5030f0ecae91e8205b4161ec2ec570b2eb9f69d1ad93843a44023757d1c810", + "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "15.09", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OCamlPro/ocp-indent.git", + "sha256": "1fbff9a43a5fae87cca3ab2c58a9262e16eb9bd9dc9bfcbb25fe59f04ff15c45", + "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [] + }, + "hoa-pp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", + "sha256": "ac709ddea5e6c3a2b8749def0b2be47025cc1ad7d07d3d0f37bea358e796e12f", + "rev": "a72104a191214fba502653643a0d166a8f5341d9" + }, + "recipe": { + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "emacs", + "names" + ] + }, + "eldoc-extension": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el", + "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch" + }, + "recipe": { + "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-w32-launcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/helm-w32-launcher.git", + "sha256": "ce9120037581dbc1933f57fc6593704d6f0d4e853a61ee0814e7947079b2e2b0", + "rev": "01aa370a32900e7521330fba495474f2aa435e19" + }, + "recipe": { + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.6", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ac-ispell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-ispell.git", + "sha256": "38f3d3b576924df827b74a32f28d9435ab7b64c89a35dcabc63e4901bc441beb", + "rev": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa" + }, + "recipe": { + "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "alect-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/alect-themes.git", + "sha256": "bd768c6f895ecf0a94cdf82a30909256e93c2fbc45e801718c697388679948f3", + "rev": "db7cc6ebf695a71881d803966d672f80fe967da6" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs" + ] + }, + "jira": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/jira.el", + "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" + }, + "recipe": { + "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dired-k": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-dired-k.git", + "sha256": "216c4ff5dbd2fe19600985090438aeb6573dde7806f94136385834011c4a4bd8", + "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "legalese": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/legalese.el", + "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" + }, + "recipe": { + "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist-drawer.git", + "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "project-persist" + ] + }, + "dos": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dos.el", + "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp" + }, + "recipe": { + "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "image-archive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", + "sha256": "082f3909f9d2ef3b2fc047279e105b40a2daafc3d989fa53682c2425d9efbb46", + "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "el-spice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vedang/el-spice.git", + "sha256": "736d6849712dff42d5bb4b821fe8cd5fc19cec08518357147c3d08e39ae45929", + "rev": "53921ffe9a84d9395eea90709309d3d5529921ea" + }, + "recipe": { + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/package-utils.git", + "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "epl" + ] + }, + "open-junk-file": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el", + "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj" + }, + "recipe": { + "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "beginend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/beginend.git", + "sha256": "5a4f1087045590e3a6c0090a753b656a8eb532620866dfeaa903bcf4cc5a1cfe", + "rev": "de3833a1a651532e76df668bd92cfa07893501f1" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/org-if.git", + "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "tidy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tidy.el", + "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" + }, + "recipe": { + "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "vimgolf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/vimgolf.git", + "sha256": "eeb55f04c955f62b031d36dfce3e4edb64a3781a29161825fc26e5b1099cbe49", + "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xiaohanyu/ac-geiser.git", + "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "auto-complete", + "geiser" + ] + }, + "git-dwim": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/git-dwim.el", + "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv" + }, + "recipe": { + "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tuareg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocaml/tuareg.git", + "sha256": "bad0045a9fc7eca014c5b57812d44303fac6cb0a17494aecabf303ed3ae04870", + "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.9", + "deps": [ + "caml" + ] + }, + "twilight-anti-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", + "sha256": "4eb0ba1e308d302261e7b70e7e76f3004a7d08baa19ad6cbb66df488308efed5", + "rev": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b" + }, + "recipe": { + "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-octicons.git", + "sha256": "fc21d33f0cceef3f7fbb7ba26f89a5c16a730811480528eed22ec7a84e36cfa5", + "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "loc-changes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-loc-changes.git", + "sha256": "0f4131c707c0753b7629355e6b15c68a0aa79ff5a1be719a6f538bb56693490f", + "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b" + }, + "recipe": { + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dabrahams/initsplit.git", + "sha256": "8f94b86db5fb616cb531169661279c956ef92de568d5d3317d7faf61141adce5", + "rev": "950bdc568e3fd08e6106170953caf98ac582a431" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobias/downplay-mode.git", + "sha256": "ab46acd4a8fd65ed163fa2dd8b760f1b3bc0425ad464e9b44f8ff85d6b679f8d", + "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.11", + "deps": [ + "inf-ruby" + ] + }, + "thing-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el", + "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m" + }, + "recipe": { + "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hide-comnt" + ] + }, + "alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/alchemist.el.git", + "sha256": "ca0356af2a1f5b9a49fc6ef6a9d5cfe53018495417008fac66449d12de45cc43", + "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "company", + "dash", + "elixir-mode", + "emacs", + "pkg-info" + ] + }, + "pretty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akatov/pretty-mode.git", + "sha256": "f5258222d7b2b8ce52fad643e4500253547fbcca01763259296b5010bbd43be0", + "rev": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b" + }, + "recipe": { + "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.3", + "deps": [] + }, + "splitjoin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-splitjoin.git", + "sha256": "aebcfdc27d6fff5c72e6ae3fd2eaa537ebba4e415b2deefd50a3cee98adb691f", + "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "frame-restore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/frame-restore.el.git", + "sha256": "0c094115f3fc0a59aec2ae1bfafc07bd8593b320826ee32757e5b6919130e640", + "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "narrow-indirect": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el", + "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8" + }, + "recipe": { + "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [] + }, + "fill-column-indicator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpaker/Fill-Column-Indicator.git", + "sha256": "c91797a46d3495d5d2bdbda683c3e1cede5972872653ee0855bc69dc8b87f039", + "rev": "5cbc077083775d4719a294455a8a8a53bb3151f8" + }, + "recipe": { + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.81", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-serverspec.git", + "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "dash", + "f", + "helm", + "s" + ] + }, + "butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AshtonKem/Butler.git", + "sha256": "f9163e1a95db261a85d831a9f2edb0604b9353affd0520155e7584cc963c5488", + "rev": "0e91e0f01ac9c09422f076a096ee567ee138e7a4" + }, + "recipe": { + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrosdahl/iflipb.git", + "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "ido-complete-space-or-hyphen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", + "sha256": "8244b7aed3a1d9b7c2c56eb75f3d1e371724e3ad145eefd78b7c8e608a4a4291", + "rev": "ad9baaec10e06be3f85db97b6c8fd970cf20df77" + }, + "recipe": { + "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "sift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/sift.el.git", + "sha256": "e5ede66da711928d262225d77ead0a3db89fc2e0107e3cc448de9db67e71257d", + "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/mozrepl.git", + "sha256": "4cb8eaed3140058efa610ecb02c9cf813b81a5da9f7e56642a0fbf19ac2c6e8d", + "rev": "646208b67e6c9c56d188db1eba999846d518935f" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "timer-revert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/timer-revert.git", + "sha256": "0512bbaaa1969cf9be710277637ec3b534ed6130961072b36f8820891b5054a6", + "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfdeshom/helm-mt.git", + "sha256": "02bfbe8126eb7a023c17bd45aef7c766b767602dfec1b7671769880c3db3763e", + "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "cl-lib", + "emacs", + "helm", + "multi-term" + ] + }, + "darcula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/darcula-theme-emacs.git", + "sha256": "27543bdc25a13ee1958758ba067ce68162f8e7b2e29fcf94feb29c7823e38014", + "rev": "202a5affe59a5e1ac1d33a7e518d1df772bf2100" + }, + "recipe": { + "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/criticmarkup-emacs.git", + "sha256": "201964c9b1cd5e5933bedceba5f35dfe5f7d0a8ae8cfa2cc881a07ba35a316ae", + "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/dynamic-fonts.git", + "sha256": "aedeb7c912e76d6ace824ea021c0cff035d6d02c3b205814628dd25a1080a466", + "rev": "d318498b377d8941c7420f51616c78e3440d00f5" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/bbdb2erc.git", + "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "bbdb" + ] + }, + "whitespace-cleanup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whitespace-cleanup-mode.git", + "sha256": "e2bd4b7e707fc063a7c6c9f7a542c72a78d8c8eba5fa52b2e3dc74b49687bc76", + "rev": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4" + }, + "recipe": { + "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/m-buffer-el.git", + "sha256": "dce09b1386be536db3baabb2b76ba1240846b03d0ca26a90e4107670eced40cd", + "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.12", + "deps": [ + "dash", + "emacs" + ] + }, + "marshal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/marshal.el.git", + "sha256": "bb1694a831ac72ac22c611608a5ce74d12640daf459a23f07347c707a5f4316b", + "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [ + "eieio", + "json" + ] + }, + "zygospore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louiskottmann/zygospore.el.git", + "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" + }, + "recipe": { + "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "elisp-depend": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el", + "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02" + }, + "recipe": { + "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/scala-mode2.git", + "sha256": "262959f309c807c099a05933de01ad7cd6785cda0245065c45b69325bdf84cd1", + "rev": "34888c094990bc669347f106dbd516f487e55ae3" + }, + "recipe": { + "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/rigid-tabs.el.git", + "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "theme-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hadronzoo/theme-changer.git", + "sha256": "cda38adad5ef5e87992c14c58876e38d5fbfdf143892d03e8ec42692341e6e27", + "rev": "d3d9c9f62a138958262ac5dd61837df427268611" + }, + "recipe": { + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/hl-sentence.git", + "sha256": "ca1533b4a5efce037d5ebca2c95a015336ef67493980c4f2c915b67bdf7af1c1", + "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3", + "deps": [] + }, + "svg-mode-line-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/svg-mode-line-themes.git", + "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "rev": "80a0e01839cafbd66899202e7764c33231974259" + }, + "recipe": { + "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "xmlgen" + ] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "rev": "228bc56369675787d60f637223b50ce3a1afebbd" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "doremi": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi.el", + "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" + }, + "recipe": { + "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/grizzl.git", + "sha256": "fa87f7c61ec4fca444a7eb3c2d12612175bfe8cf8c6d2f2ab59d90d3d91c07af", + "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "hyde": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nibrahim/Hyde.git", + "sha256": "1b9aaf59f870db88fada26f83eb6406fa12c7880f0e0a392ef2d3a10e051cdb0", + "rev": "181f9d2f91c2678a22243c5485162fa7999fd893" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "wid-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el", + "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k" + }, + "recipe": { + "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/pabbrev.git", + "sha256": "864341b02b8be0ba8edddcc502fe99637b6f28f11bd661ee3846c92184ba781c", + "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.1", + "deps": [] + }, + "auto-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/auto-indent-mode.el.git", + "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "rev": "ad7032ee058a74405d04d775b0b384351536bc53" + }, + "recipe": { + "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.126", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-leader.git", + "sha256": "626882de36c100bb8f98f1a64f50a9a5983af10214694e33c09de60906bf9f80", + "rev": "753b01eb4958370ae2226b3780ff31fe157c2852" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.3", + "deps": [ + "evil" + ] + }, + "highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight.el", + "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" + }, + "recipe": { + "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", + "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.37", + "deps": [] + }, + "window-layout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-layout.git", + "sha256": "2efa26f19e4502d0fe4988507f0f9579890554363b07c59a17f20ff057adde4b", + "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef" + }, + "recipe": { + "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/edit-list.git", + "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/grapnel.git", + "sha256": "c5f9a8feb571ec64c449eefcd2e308c2b469afb342267a61862ef6f7f10c9275", + "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [] + }, + "ducpel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/ducpel.git", + "sha256": "143ea232a8e2be3d81fb0ce95c7711a702a57dc0650c4a2215f1600da8bcad19", + "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "emacs" + ] + }, + "resize-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dpsutton/resize-window.git", + "sha256": "9f1f5c17fec219ad389c8a34ba0e4dff6852d69be9d89afad26e94ec1c5b1efb", + "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403" + }, + "recipe": { + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "forecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/forecast.el.git", + "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.9", + "deps": [ + "emacs" + ] + }, + "tox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/tox.el.git", + "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "init-open-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/init-open-recentf.el.git", + "sha256": "263187542cb19a3d83a9ca943981ba60c03755b151aa6ebe300f79099ddd811b", + "rev": "39da6a50e7f39e6ccd9aada0c20d8b6d501cb487" + }, + "recipe": { + "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "emacs" + ] + }, + "date-field": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-date-field.git", + "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "dash", + "log4e", + "yaxception" + ] + }, + "slamhound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/slamhound.git", + "sha256": "b35d9a4afdd2c9f617cce3ba54bafaf2d9c2fc9eb80be25e2a99bce96d2ba591", + "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.4", + "deps": [] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-numbers.git", + "sha256": "60b9e039c3c27a5ddb78f8ecf150372db3d7cca7b3a2c5fec8a590456d007a88", + "rev": "8834eb2e8bd93561a706363946701d0d90546a9f" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/switch-window.git", + "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-robe.git", + "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "helm" + ] + }, + "ac-capf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-capf.git", + "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" + }, + "recipe": { + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/lice-el.git", + "sha256": "acff239622bd1446262a456529d698b1957743a2415a2c04d2d9d50fac517c90", + "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs-mark-tools.git", + "sha256": "1c178906b07365e7d51e3a118545b1996485eceb7500911a41f6247bfed59e39", + "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [] + }, + "echo-bell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/echo-bell.el", + "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v" + }, + "recipe": { + "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dedicated": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/dedicated.git", + "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "pixiv-novel-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", + "sha256": "0d0095e3032436b92e632dd1d1df253e8b403f192900d897b03d82d338bbe8f1", + "rev": "4dd9caf749190fab8f0b33862b3894b635de46c5" + }, + "recipe": { + "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/edit-indirect.git", + "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "morlock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/morlock.git", + "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/auto-complete.git", + "sha256": "aa9d97e3565a2b06818481f25855dca01b15b804eb321b65c7a8422a92cd8954", + "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "cl-lib", + "popup" + ] + }, + "sparql-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/sparql-mode.git", + "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "rev": "303858e7f91829ec720141482c777460e66f310b" + }, + "recipe": { + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11.2", + "deps": [ + "cl-lib" + ] + }, + "expand-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/expand-region.el.git", + "sha256": "3dc2da684680a0ebfd74f148a67ef7d66aef30a8e517fff0d82a309340ef68ee", + "rev": "90c4e959ac8bf0bbd857dd679f38a121c592bf7a" + }, + "recipe": { + "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/auto-compile.git", + "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "dash", + "emacs", + "packed" + ] + }, + "redpen-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karronoli/redpen-paragraph.el.git", + "sha256": "e9cad6d38d8ed4ddc278d14630084c263ff5d0ce2ff7480bd2ce584bd6cc85a5", + "rev": "e942c41c0308d8fbac1f145387d4f6ea1091e26b" + }, + "recipe": { + "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "r-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/r-autoyas.el.git", + "sha256": "af729ee67b50903c0b8380ee20f373f3d4a47a7ae2de06ad3b437b4ced6f6d09", + "rev": "563254f01ce530ca4c9be1f23395e3fd7d520ff9" + }, + "recipe": { + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.28", + "deps": [] + }, + "buffer-stack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el", + "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r" + }, + "recipe": { + "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "frame-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-fns.el", + "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7" + }, + "recipe": { + "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomoya/search-web.el.git", + "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grettke/clips-mode.git", + "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kivy/kivy.git", + "sha256": "ad3e966b86f786d3fd5cc5e46cf378c3d14e555901d5605b1dd29356f30a5e57", + "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/mpv.el.git", + "sha256": "6f019a5015fbfcb88530aaa3bb9cdf2615ccfe315419859be8b478c7255b1d87", + "rev": "059135de3979e044f14503806047476d9be9f0e8" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs", + "json", + "names", + "org" + ] + }, + "apropos-fn+var": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el", + "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf" + }, + "recipe": { + "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "deferred" + ] + }, + "grep+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/grep+.el", + "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" + }, + "recipe": { + "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", + "sha256": "fa2f6985f9bafef96d3a2230809f574608498bc032c5793699f4a3bb7add100f", + "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "vector-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/vector-utils.git", + "sha256": "ff65d76b011cab6f357dea8bbd33f2114094499b7f2936dc2e97b5fc2b7c9c07", + "rev": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685" + }, + "recipe": { + "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/bongo.git", + "sha256": "d9ba33b4bac199d6fee44f1373d5805f1fcb9698c24a13d9814d1860b7d07ce0", + "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "ac-dabbrev": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el", + "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh" + }, + "recipe": { + "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/caskxy.git", + "sha256": "9f91ec7d29ede8e624c55321e59f352df982f71ac448ff866130c84fe4389876", + "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "log4e", + "yaxception" + ] + }, + "aurora-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bdd/aurora-config.el.git", + "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" + }, + "recipe": { + "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hayamiz/twittering-mode.git", + "sha256": "e4dcd4db555773f2199d07dad365f86cc41a0a2074f1499049a51e613f76cc29", + "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0.0", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Andersbakken/rtags.git", + "sha256": "40f8d8987341fa3dc1c5ea96d8d4049044843a7bda3624187457c929b7fb1cee", + "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "skewer-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/skewer-mode.git", + "sha256": "c9a189bf7dae904b358dbb2098733f22ed15bbe965233fca52a518ac32ce5e14", + "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4" + }, + "recipe": { + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.2", + "deps": [ + "emacs", + "js2-mode", + "simple-httpd" + ] + }, + "yesql-ghosts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/yesql-ghosts.git", + "sha256": "4d63dc03994b48adbc2d622680bc6f6ef8cca880875599d68c4c92162b3d7f7b", + "rev": "bd834e97f263f9f981758c1462bc6297a83ca852" + }, + "recipe": { + "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cider", + "dash", + "s" + ] + }, + "latex-extra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/latex-extra.git", + "sha256": "43eb81b85e81a1c0e7a48e99a3cc3146a4ad187a47d1145670782b70fa6326e7", + "rev": "455b7873de095cbce6aa256f33cf64dba3dbaa29" + }, + "recipe": { + "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [ + "auctex", + "cl-lib" + ] + }, + "transpose-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el", + "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4" + }, + "recipe": { + "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-travis.git", + "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "project-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/project-explorer.git", + "sha256": "7fbf7de574bc33a2a931671e7e5d2532e55e878de5646cf9719db9dcb4cf7864", + "rev": "7c2cc86a81f679dda355110f916366b64893a5d4" + }, + "recipe": { + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14.3", + "deps": [ + "cl-lib", + "emacs", + "es-lib", + "es-windows" + ] + }, + "sequential-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sequential-command.el", + "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk" + }, + "recipe": { + "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-helm.git", + "sha256": "7a3ee9d691b6af01768cb8dc9c96d28de5b5beb90d44cf063c42cc7322277e89", + "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "auto-complete", + "helm", + "popup" + ] + }, + "rainbow-delimiters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-delimiters.git", + "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" + }, + "recipe": { + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [] + }, + "pp+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp+.el", + "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" + }, + "recipe": { + "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-genrnc.git", + "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ] + }, + "unicode-progress-reporter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", + "sha256": "554f17dfeea7bedc4807d163d9f79f0a0d88ae9f2277c2cc6fd1acd80329f15a", + "rev": "f4705332412b12fc72ca868b77c78465561bda75" + }, + "recipe": { + "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.4", + "deps": [ + "emacs", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "fm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fm.git", + "sha256": "9b09fd145c5fc3342870a154c2bd525c78f3ab7cafafdb81e1dc761fd1105264", + "rev": "6266840de17ac396dd7275a71da72cd5120c35a6" + }, + "recipe": { + "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-anaconda.git", + "sha256": "eab07dd62470c4495ecf4c6a520bbb5d6a8ec46bab3ae0ccd954ec54dba3610e", + "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ] + }, + "inlineR": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/inlineR.el.git", + "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" + }, + "recipe": { + "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-tutor.git", + "sha256": "3a81b3e27d0cdac2e7c9c751ab6af7a2bd96915d21e42c72d1780f3aa5b224f5", + "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil" + ] + }, + "flycheck-dmd-dub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", + "sha256": "0f50c15973c93116207359548e75629ffce546d5e4ead637f5ae8855654a9a64", + "rev": "e8744adaba010415055ac15c702f780dd6e13e14" + }, + "recipe": { + "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-visualstar.git", + "sha256": "92a4e73ac25c1432b55ca0c47ca4bbbcd8632d3d01dbf8b1462c69d3e6034cd8", + "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "evil" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-identifiers.git", + "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/demangle-mode.git", + "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "github-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/github-clone.el.git", + "sha256": "28129f5bcb0f6341918516ab991b16a460ccccf50358224e443a409d64414d61", + "rev": "ab048cf49d9ebda73acae803bc44e731e629d540" + }, + "recipe": { + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "gh", + "magit" + ] + }, + "shrink-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", + "sha256": "e491b49323a15df9486f26f47212c7a902e06df65cc26dd55a54c7d980b53d7d", + "rev": "24518d58e8e692fa98a73d5e7cd44c1536ab4e42" + }, + "recipe": { + "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "hi2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nilcons/hi2.git", + "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [] + }, + "bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/bbdb-.git", + "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "bbdb", + "log4e", + "yaxception" + ] + }, + "ace-pinyin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-pinyin.git", + "sha256": "79a67c04e64c1c0f76e1f5f74c8eb4d83abe970bd1aab2bc0bf887d89e0ec082", + "rev": "10f66ba2355bed78ef0a1ad24edb00972a0dbe02" + }, + "recipe": { + "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "ace-jump-mode", + "avy" + ] + }, + "prop-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/prop-menu-el.git", + "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" + }, + "recipe": { + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "swbuff": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", + "module": "emhacks/swbuff.el", + "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" + }, + "recipe": { + "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/bbcode-mode.git", + "sha256": "7ec29cbb692c60a6682c8f0a1f9fab81880d6eeb7dab182751a7d03475fa7df7", + "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fold-dwim.git", + "sha256": "461c17827f94d7ea8544b1cb44b7eff617f65cc36f8ab0e9a978775a23181fcd", + "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake-inflector.git", + "sha256": "07b48d2f9b0868a1818d5ef3f38be7571ac95da6c8e24fabd039fc737e6f7e0b", + "rev": "40bf11890842ba305954528694e1c39a8b73737b" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "s" + ] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dysinger/purescript-mode.git", + "sha256": "323e5f8ecba85f946ab6f7965752ec1eb33aa15d2d0a5fc811610dd127dfa1cc", + "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13.10", + "deps": [] + }, + "centered-cursor-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el", + "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl" + }, + "recipe": { + "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", + "sha256": "7587bc0b940809c3643631ccb3620f00caf9f0a2cb9b92cd26dc70025a961711", + "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hippie-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hippie-namespace.git", + "sha256": "cd90684612f10d4c49939556f51e3add4b846e02a0b6ef4423954c294f19cf8e", + "rev": "79a662dfe9e61341e071b879f4f9101ca027ad10" + }, + "recipe": { + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.8", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/sbt-mode.git", + "sha256": "1a98d6e449809a89a33004f88ce77ee5b13e8eddbbc9b9cf1963969f7bd8b5e8", + "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" + }, + "recipe": { + "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "scala-mode2" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shpec/shpec-mode.git", + "sha256": "439d3e3e69e415ee72e9e6df26dabc2cf6eb863517a0fe33e7ae7727aff1524e", + "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "anything-replace-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-replace-string.git", + "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "rev": "1962f24243d6013bcef7e8d23136277d42e13130" + }, + "recipe": { + "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "anything" + ] + }, + "novice+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/novice+.el", + "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" + }, + "recipe": { + "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "discover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/discover.el.git", + "sha256": "283c8e229566e5b7abf84b774495f68d9099298bfe65aac0eab0339a3f18bc63", + "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "makey" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ledger/ledger.git", + "branchName": "next", + "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/eshell-autojump.git", + "sha256": "6c578729e54f7de25f3048c3e237d4f8d9418dd8e367db85072513213ae7755a", + "rev": "c0866d7f2789831665ebb01b812bae89d085bff0" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-restclient.git", + "sha256": "c486a2ed92644fb7c708f6469fe7335d52df99ea007e37deb08f72bc69812e44", + "rev": "98e4b2af0e84ba4192c16288123aed96541c6401" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "know-your-http-well", + "restclient" + ] + }, + "ac-cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake.git", + "sha256": "cccc6fe7abdcf650f6908ca83a588fc0b675fea9ecfe5df0025ec2930eb6e88b", + "rev": "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff" + }, + "recipe": { + "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "auto-complete", + "cake" + ] + }, + "el-swank-fuzzy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el", + "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn" + }, + "recipe": { + "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", + "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/asilea.git", + "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "icomplete+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icomplete+.el", + "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky" + }, + "recipe": { + "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-package.git", + "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "helm" + ] + }, + "mmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/mmm-mode.git", + "sha256": "71840270a7d0cb96016fed7841dd1ffab923da9ec3a3fb12bfd8fa5af4c65a13", + "rev": "4085494df67e0a3207839a175ac62673dfd0acc1" + }, + "recipe": { + "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.4", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-lens.git", + "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-setup.git", + "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "dummy-h-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el", + "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v" + }, + "recipe": { + "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-quoted.git", + "sha256": "4bcada744da3b74dd475408ce425b6446b4f8df63f8acb01bff218ad3f4e0faa", + "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/wordsmith-mode.git", + "sha256": "1ab2459d921b35a580b9f0fa4e06e8692dce7603bc593aaf1eb6c5285d957568", + "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/makey.git", + "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib" + ] + }, + "stumpwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/stumpwm.git", + "sha256": "f5e3b0fdbdb1c747c40f7b6746de195e37bd4caccdcc05c6aa14124f29e71428", + "rev": "4d0603e52b5bab993b3be63e3654c74f641e677d" + }, + "recipe": { + "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.8", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jtatarik/magit-gitflow.git", + "sha256": "75b9e6b356b97b925c8bcaec49996b7d85fdeb423c8cab44743d269e4bf3041e", + "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "magit" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/wsd-mode.git", + "sha256": "b6eec2bb80f6ffa2a1a67e6985580183bca73a0502b70e4cba5e3e570cb50e83", + "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" + }, + "recipe": { + "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/rubocop-emacs.git", + "sha256": "38f9631cfdbb02a256f50792c38ca58ae9c862545145367101ac0351c295b281", + "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "dash", + "emacs" + ] + }, + "ert-runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-runner.el.git", + "sha256": "7769e5db9f8c9d7acc6430f29d5d94e035b7c0bfbb736a68068d98a3262ccddd", + "rev": "00056c37817f15b1870ccedd13cedf102e3194dd" + }, + "recipe": { + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ] + }, + "zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/zenburn-emacs.git", + "sha256": "9b9757092b7b6f2ff71aa36f6aeb229c43f286fce7a2976332696cfff8c557ff", + "rev": "ae42a7f3ec9491ddec001a2e57c7eb2f38d421cd" + }, + "recipe": { + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/web-mode.git", + "sha256": "6ca47f32ac75196831723c243b7c28db269e4f455de00c011f7f2320aafce40a", + "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13", + "deps": [] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/mwim.el.git", + "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "transmission": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/transmission.git", + "sha256": "bba824bcd540b8b3a109b7c6bb4e60ed3a19d055790ae1c4017bf8ecd47ddf91", + "rev": "2769c9b17fa464e0634ac03046be74cefdb28880" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs", + "let-alist" + ] + }, + "dyalog-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/harsman/dyalog-mode", + "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj", + "rev": "ce795beb8747" + }, + "recipe": { + "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib" + ] + }, + "character-fold+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/character-fold+.el", + "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy" + }, + "recipe": { + "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4", + "rev": "bf511cb6979ede33d17d9da6f46f71ea287461d8" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.21", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "json" + ] + }, + "pythonic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pythonic.git", + "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "s" + ] + }, + "auto-capitalize": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el", + "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi" + }, + "recipe": { + "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emms-mode-line-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", + "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" + }, + "recipe": { + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "emacs", + "emms" + ] + }, + "go-errcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-errcheck.el.git", + "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" + }, + "recipe": { + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "minimal-session-saver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/minimal-session-saver.git", + "sha256": "92a6468ec3bc988283c03d8c84fd563bc2225fb70b2bcfec1c09f3798018eecc", + "rev": "aaba48a8525e1310b221eeb96763304c22e9a4b4" + }, + "recipe": { + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [] + }, + "popup-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-popup-complete.git", + "sha256": "7c960dc4eff365940310d2947b02bb264ac4bba512513559caa9c7b96649053d", + "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9" + }, + "recipe": { + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake2.git", + "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [ + "anything", + "cake-inflector", + "dash", + "f", + "historyf", + "ht", + "json", + "s" + ] + }, + "async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/emacs-async.git", + "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" + }, + "recipe": { + "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/gotest.el.git", + "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", + "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.0", + "deps": [ + "emacs", + "f", + "go-mode", + "s" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Floobits/floobits-emacs.git", + "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.1", + "deps": [ + "highlight", + "json" + ] + }, + "annoying-arrows-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/annoying-arrows-mode.el.git", + "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" + }, + "recipe": { + "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "mode-icons": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/mode-icons.git", + "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40", + "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467" + }, + "recipe": { + "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austin-----/weibo.emacs.git", + "sha256": "1b1a19ed36d4b1c00beb8487f983dc184db58695ee8eeea093b7f242be7b7593", + "rev": "a8af467e5660a35342029c2796de99cd551454b2" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1.0", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjarvstrand/edts.git", + "sha256": "3cb76a6815d0445dc3c62f3a45c5200663f6e30d9ad69e9f3d643c0f2d2a66ae", + "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/avy.git", + "sha256": "13d54de07f7c19303c3df6a8ecc6c22de5f1829095b7332b1b1a6be2757dae97", + "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/marmalade.git", + "sha256": "b885e4175d3f92a0080c8eaf2f05430b68c13c1a26f00043c2553f151849aae3", + "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "furl" + ] + }, + "per-buffer-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el", + "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf", + "rev": "2b82a04b28d0" + }, + "recipe": { + "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [ + "cl-lib" + ] + }, + "zop-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/zop-to-char.git", + "sha256": "26911714138a5cee7915e71fc15081901e4b4747b475e9d47b02df8dbe1add48", + "rev": "7888bb6f09ae24e8e10bd3095edd31940e6a1c46" + }, + "recipe": { + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib" + ] + }, + "connection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/gmail-mode.git", + "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "ham-mode" + ] + }, + "bug-reference-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/bug-reference-github.git", + "sha256": "1bdccc0396c0ac6e5c8499a7a9fea65f71855c7165aca76b25bacba150795f1e", + "rev": "671d32083aad5cf813a5e61075b70889bc95dec5" + }, + "recipe": { + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.0.1", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/diml/utop.git", + "sha256": "833f7e075155fbf54ca5c2cb768669a69bca88542bbfd31b5ae8419e714bf8b1", + "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.18.1", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "evil-jumper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-jumper.git", + "sha256": "f7f5cce2cc49c5e43f9b73b8a2831478dbc262f62cf9db361b0b4f7cc0da8112", + "rev": "ab87e865a1ffd815f937c98c2ecf70bf13510715" + }, + "recipe": { + "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lugecy/lingr-el.git", + "sha256": "da4f57b9770cdab3e400c50743ffc50e79d99770da7b1061bd7e8355fe205c87", + "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/auto-complete-sage.git", + "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "auto-complete", + "sage-shell-mode" + ] + }, + "rich-minority": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/rich-minority.git", + "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" + }, + "recipe": { + "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "cl-lib" + ] + }, + "marcopolo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/marcopolo.git", + "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "el-mock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/el-mock.el.git", + "sha256": "2eb7f7731f29f0547bbb327371c9b50eedf00dff37d2ad6423f81526475a3679", + "rev": "3069931de75bb6704ecf565af5390009dc4dae00" + }, + "recipe": { + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.25.1", + "deps": [] + }, + "hydra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/hydra.git", + "sha256": "ee50c89853b10b97f04bf3a272d2d41b78b539aaee0c2a99719efde869493c22", + "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.3", + "deps": [ + "cl-lib" + ] + }, + "browse-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", + "sha256": "def280462d07dcca627c580a3a87a9b5e8eabf7440522db6243161dbf7d309cd", + "rev": "2a7acf98c348c4f405a6b2ab216224ca14915be8" + }, + "recipe": { + "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "auto-shell-command": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/auto-shell-command.git", + "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" + }, + "recipe": { + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "deferred", + "popwin" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", + "sha256": "22ab3f9f59768dad0c674cfe34cf5ae588f4b6a8b9b73d8a474b194021a5658b", + "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "cl-lib", + "s" + ] + }, + "malabar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m0smith/malabar-mode.git", + "sha256": "16edd53bb2d7f326de44706eb6c48777ecbd7bc2ea85d854a95126be06a85552", + "rev": "4c5fde559f518509763a55040fdb0e4b6b04856a" + }, + "recipe": { + "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.946", + "deps": [ + "fringe-helper" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/fullframe.git", + "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib" + ] + }, + "cperl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/cperl-mode.git", + "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "rev": "06f5668653a114991836139344dbe8f0674577af" + }, + "recipe": { + "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "6.3", + "deps": [] + }, + "highlight-chars": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el", + "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf" + }, + "recipe": { + "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-cursor": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el", + "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr" + }, + "recipe": { + "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyferre/comment-dwim-2.git", + "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [] + }, + "ctags-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/helm-etags-plus.git", + "sha256": "763f0e0884aa0de6d8ea36b33a5c007f2fbf4e9ac55cf829e27fa4347a8244f7", + "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923" + }, + "recipe": { + "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", + "sha256": "3fb8e07a3d078c7f8332edf0c6bc7314b2f34a64e8216ad7f643931a33ec630e", + "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.6", + "deps": [] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/helm-unicode.git", + "sha256": "40f9d9e737bf4806308da199da1daacb628ef5db8b7b3aacbed1b69ef46e8b92", + "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "emacs", + "helm" + ] + }, + "chm-view": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/chm-view.el", + "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" + }, + "recipe": { + "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/company-quickhelp.git", + "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "company", + "emacs", + "pos-tip" + ] + }, + "fxrd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/msherry/fxrd-mode.git", + "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" + }, + "recipe": { + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "s" + ] + }, + "gnus-desktop-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/gnus-desktop-notify.git", + "sha256": "dc6fdbd32d3fb7d0dae00f235aa6dae6033e4a1810356416c04997af22e84822", + "rev": "210c70f0021ee78e724f1d8e00ca96e1e99928ca" + }, + "recipe": { + "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "gnus" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/js-comint.git", + "sha256": "39263da6c8036dbb4c89aa22a50f49a78e3cffd1e4cbca5dca1ff9b8498ec6bd", + "rev": "69c8475573f1ef1f59331027a0fe445161b51000" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "nvm" + ] + }, + "qml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/qml-mode.git", + "sha256": "f4c3ba100a35f31f2af8199324f03f103c48c6356d988bd55eabb2cad55d3019", + "rev": "a69ee2d23e079dbedab22fde85181a8320af2222" + }, + "recipe": { + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/emacs-journal.git", + "sha256": "1fee380fc81fe5fde3077e88279e7b49dc678863e8871cb98095bfdd5a0eeaed", + "rev": "68974d86f1ef518defb3085e415d882ba4575714" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.2", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rbanffy/selectric-mode.git", + "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "cl-lib" + ] + }, + "evm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/evm.el.git", + "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "dash", + "f" + ] + }, + "truthy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/truthy.git", + "sha256": "503a3c9695d59e9c9df9968016867c9d416ed78fb355e565475732fce6d6ff27", + "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.8", + "deps": [ + "list-utils" + ] + }, + "php-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-mode.git", + "sha256": "5c4a63b593d5737ed238c3996b79be0eebe75ca36440390a5064e5ff8fc11a3e", + "rev": "f3201eebfebf1757cf6a636fe3c7a3b810ab6612" + }, + "recipe": { + "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.17.0", + "deps": [] + }, + "sotlisp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", + "sha256": "f3648f4ab2e5ea35e160759b99dce419ef47276928401d5d3cb09f0ccfa94988", + "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.1", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-spaces.git", + "sha256": "84485ea38d7a4b595bac0be033e2308f7ab3d1ba22ca3c0a4deed841aedbe04f", + "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/logito.git", + "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "eieio" + ] + }, + "org-tracktable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tty-tourist/org-tracktable.git", + "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" + }, + "recipe": { + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "showtip": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showtip.el", + "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql" + }, + "recipe": { + "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "electric-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/electric-operator.git", + "sha256": "86bd1e680208ed787f370d8ad82b81fb0007bf8be67e78a27941e938bce185f2", + "rev": "3d34101e065396389cfbb8fec333c78641a71dc6" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "owdriver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/owdriver.git", + "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "log4e", + "smartrep", + "yaxception" + ] + }, + "message-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/message-x.el", + "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf" + }, + "recipe": { + "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/spotify-el.git", + "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [] + }, + "http-post-simple": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el", + "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my" + }, + "recipe": { + "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mustache/emacs.git", + "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/persistent-soft.git", + "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.10", + "deps": [ + "list-utils", + "pcache" + ] + }, + "key-combo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/key-combo.git", + "sha256": "d8d0e38ad9917e6e5badb62d39b27896d94899a637427f8e27b23ab67db43292", + "rev": "0bc0cf6466a4257047a21a6d01913e92e6862165" + }, + "recipe": { + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-filenotify.git", + "sha256": "0404870e67798670c879e2d5779eec78b0489d7548c72fc126899ae64726a663", + "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/xterm-color.git", + "sha256": "5dc8de0d26c060930acf3667df41b5aab041c510a5bbd3fd248cef478c21b2fd", + "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/phpunit.el.git", + "sha256": "bef01490d1dd27a12a1e5135b1d60466e0438e9b416a256cef7edb663a14c288", + "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "pastebin": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pastebin.el", + "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn" + }, + "recipe": { + "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-gcal.el.git", + "sha256": "cb619c6d37a8a2bc9197764b487c8eca02b4f0689d427fe74a6e503119ad0aaf", + "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred" + ] + }, + "helm-rubygems-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neomantic/helm-rubygems-org.git", + "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" + }, + "recipe": { + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ag.el.git", + "sha256": "7792c562958d7bf9f708f2e732115a06b88caffca593379c3d32b4947394512b", + "rev": "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb" + }, + "recipe": { + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.46", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "smartscan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/smart-scan.git", + "sha256": "a455d112f2113a2418bf67bba0825493577c16e97d906b3bc9bb9210126ca7e9", + "rev": "13c9fd6c0e38831f78dec55051e6b4a643963176" + }, + "recipe": { + "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "el-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init.git", + "sha256": "a0dd080afe34bf2c6cf2949ea257875922e7784be5820c71f50b076c90fd8fdb", + "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "anaphora", + "cl-lib", + "emacs" + ] + }, + "alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/alert.git", + "sha256": "4638ce5d228a9e4763a052f2eeba61664f228b386f9138a9ceac990a081eecee", + "rev": "b301478e34a5c8bd27c17fc7605e6dd576e97935" + }, + "recipe": { + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pallet/ritz.git", + "sha256": "2bbac9f46c148eb12ef67f1deb96db6fed4032ffcd1f27975d8e3c87d52d947f", + "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/buffer-flip.el.git", + "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "key-chord" + ] + }, + "point-undo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/point-undo.el", + "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz" + }, + "recipe": { + "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "frame-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el", + "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a" + }, + "recipe": { + "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-fns" + ] + }, + "yaoddmuse": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el", + "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4" + }, + "recipe": { + "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tern-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/tern-django.git", + "sha256": "d92beb58d914c47d47673f53748f2c60d2fc7e1b9b5db6926b62eca6699de253", + "rev": "6d616c5f802d3432c4065dc306d7977d254df49f" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "f", + "tern" + ] + }, + "shell-history": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-history.el", + "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r" + }, + "recipe": { + "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "cl-lib", + "emacs", + "ido-completing-read+" + ] + }, + "merlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-lambda-church/merlin.git", + "sha256": "590bc08a6476a92c16aaa6b173bd3440fc144970cff7e92cb781a9b432674622", + "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" + }, + "recipe": { + "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [] + }, + "org-multiple-keymap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-multiple-keymap.el.git", + "sha256": "80c03f90333f8b642ed2130266841ab93f3776ae2adacfa941d9a15bad5a910a", + "rev": "20eb3be6be9f0abbad9f0d007e40cb00c8109201" + }, + "recipe": { + "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "vagrant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ottbot/vagrant.el.git", + "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" + }, + "recipe": { + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grammati/windsize.git", + "sha256": "347ae1a31d4203f9c1673c937fcddb546d2324720f6269dd241a07325a079bb8", + "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "unbound": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/unbound.el", + "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" + }, + "recipe": { + "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/anti-zenburn-theme.git", + "sha256": "afa90bbd8fea9c3b69c00aaa6e974a1ddf9991ca908d091fad3a4eba63490461", + "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "ibuffer-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-projectile.git", + "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" + }, + "recipe": { + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic.git", + "sha256": "74c4c8b041a2672e6560feb60714236fa8254aba95c94f5f9be7eb7daa68b439", + "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [ + "dash", + "emacs", + "f", + "m-buffer", + "s" + ] + }, + "ubuntu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/ubuntu-theme.git", + "sha256": "4c60e44d91f4cc4e4ccd0bd85d0b98c46fe82af414deec9e85633f691687814c", + "rev": "41f09ca6c203da93bdadb2077556efd48e3b5d5a" + }, + "recipe": { + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "04b", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rvirding/lfe.git", + "sha256": "79a8dc4a0dbfb0daa287f6109187949804fb030920f14b3a0b4853aa18f60d02", + "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.1", + "deps": [] + }, + "ascii": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ascii.el", + "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" + }, + "recipe": { + "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "nyan-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/nyan-prompt.git", + "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" + }, + "recipe": { + "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keymap-utils.git", + "sha256": "fadbbaed0b24fb3c12d1cb6ab5ccd5eb7bc21dffcb1f7018cf0c86b33b9e5219", + "rev": "dd396093899a3792ef88742657e799339fd8aed5" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "cl-lib" + ] + }, + "xcscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dkogan/xcscope.el.git", + "sha256": "e7961d73b903ef3529617a839e170482b23f254b0eb2cca5c54291ab70d535d8", + "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "weechat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-kenny/weechat.el.git", + "sha256": "ffa147f18ffbbd0e583fb635603aa95b2a00ee1d056647965ddaba0e36050d77", + "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "cl-lib", + "emacs", + "s", + "tracking" + ] + }, + "psci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-psci.git", + "sha256": "e330e5713a3b53fb4a3586f17e5e386131dfe3e5919bc33441c0df7628cffd71", + "rev": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4" + }, + "recipe": { + "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "dash", + "deferred", + "f", + "purescript-mode", + "s" + ] + }, + "go-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/go-scratch.el.git", + "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" + }, + "recipe": { + "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "go-mode" + ] + }, + "finder+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/finder+.el", + "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn" + }, + "recipe": { + "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "plenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karupanerura/plenv.el.git", + "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.32", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-plus.git", + "sha256": "e08ba774438788ef8160d8621a2a82fbbd4cd511f925a4c51b5b8ea99a30f3a6", + "rev": "f8daebb6569bb116086d8653da3505382e03d940" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "git-commit" + ] + }, + "wrap-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/wrap-region.git", + "sha256": "53effb0d885a46e080b9344218d75c11879e112bbf9639ffb0fd47b7477f86b6", + "rev": "5a910ad23ebb0649e644bf62ad042587341da5da" + }, + "recipe": { + "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.3", + "deps": [ + "dash" + ] + }, + "flymake-gjshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-gjshint-el.git", + "sha256": "caaf8af6f05880a08084b7fd4b51656c17e19d85fc89a5f6fa5e3ab72d2156b1", + "rev": "71495ee5303de18293decd57ab9f9abdbaabfa05" + }, + "recipe": { + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [] + }, + "rnc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TreeRex/rnc-mode.git", + "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" + }, + "recipe": { + "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.6", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/pangu-spacing.git", + "sha256": "bec459054b69833ca33dc68e15afa45a91272e564309e95fc0e782e79ffaad3e", + "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/protobuf.git", + "sha256": "e000a50e04fe5b30fe6a12c989f851d8792c061df1922ebe1c3e6bd1f747ae0d", + "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.6.1", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/metaweblog.el.git", + "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/imenus.el.git", + "sha256": "b0a1cb702360584cb425e2b216b99c836a8a02914c34c04490b477a4f08cd3c6", + "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/systemd-mode.git", + "sha256": "e9d9f5747d9816721c1eff318cc436f68e6eecf862df406dbd884f80499eba2b", + "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "list-processes+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-processes+.el", + "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a" + }, + "recipe": { + "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hippie-exp-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el", + "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl" + }, + "recipe": { + "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "recentf-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el", + "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l" + }, + "recipe": { + "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ov": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/ov.el.git", + "sha256": "bb92b9f10b1b69b35c4e157ce1420238c8124ad01fafd85a68a052896ec8fd1d", + "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.6", + "deps": [ + "emacs" + ] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-vc.git", + "sha256": "de3ad9481a5aa5f8f3e964f17301e1c56986ab99820c058003f014ce330a1c71", + "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [ + "cl-lib" + ] + }, + "servant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/servant.el.git", + "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ] + }, + "moz-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RenWenshan/emacs-moz-controller.git", + "sha256": "a0a11f02dc080796967f9880fc123c1a490f07efc38b485e90353d39290b31f0", + "rev": "42fd842039620de7fb122f7e4ffc1ab802ee97c5" + }, + "recipe": { + "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "moz" + ] + }, + "dired-efap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/dired-efap.git", + "sha256": "dd8b414bf8bc4598b94bbdfdf93df2f4eaac7999bce779b968a8d1e977be7413", + "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/form-feed.git", + "sha256": "02aecef2b119007e0ea8a8acf601b328c6670c4b336a5723c351ac308cb2329c", + "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "auto-complete-nxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-nxml.git", + "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" + }, + "recipe": { + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "auto-complete" + ] + }, + "time-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/time-ext.el", + "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv" + }, + "recipe": { + "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ws-butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/ws-butler.git", + "sha256": "0ecddba9e263cba41a191d7d01f08fe2a0cea5b714fac200f5dddc4c8fa060d3", + "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/nsis-mode.git", + "sha256": "547f7686371acb7dae09d0dc6b5df80389cea045f833305851d61732d6729830", + "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.44", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/punctuality-logger.git", + "sha256": "fea22e9fc260da054ab2c081a709ad6b6d63b06391e935bc5f3c671ccf8888ec", + "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "less-css-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/less-css-mode.git", + "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" + }, + "recipe": { + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.20", + "deps": [] + }, + "python-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/python-x.el.git", + "sha256": "79a9393609c3ddfc9baa61b51d3d2152700c49ec089c3185a0e5889309632702", + "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "folding", + "python" + ] + }, + "ruby-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/ruby-test-mode.git", + "sha256": "0e2d5a6ff2a5f3411a44ca554974bf5a976ab5e96f9a775a07b032f172921f01", + "rev": "7d3c04b60721665af93ffb4abc2a7b3191926431" + }, + "recipe": { + "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "font-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/font-utils.git", + "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.8", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "digistar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/digistar-mode.git", + "sha256": "4642f8cdbb64eee8dfbefc368bec3577b05cb40faf8d0693bfc640ac7754fc4b", + "rev": "0dcde58ec6e473042e55d4f283b223554546de5b" + }, + "recipe": { + "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0", + "deps": [] + }, + "dired-sort": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort.el", + "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z" + }, + "recipe": { + "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/pandoc-mode.git", + "sha256": "a71770df1bb3a8889f1792846906ea32f1d08cd231beeef69c668b1b14d8cc51", + "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.13.3", + "deps": [ + "dash", + "hydra" + ] + }, + "highlight-parentheses": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-parentheses.el.git", + "sha256": "4a15287f4b94cde9aa46a232d086f32264f966f29ace1d647438d2b5a1b78308", + "rev": "5aa800a68e3795716de1e7f2722e836781190f31" + }, + "recipe": { + "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/elx.git", + "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [ + "emacs" + ] + }, + "hyai": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/hyai.git", + "sha256": "59ac0bfd83ef3f1c9969edd53bf49c8a54f5a7705a7b299db39fa38accc22a24", + "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f" + }, + "recipe": { + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hackernews": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clarete/hackernews.el.git", + "sha256": "04a9d19989d519c8ca2bd5636d704a373464ce2da948359d732fbd6a691ad3b9", + "rev": "97b178acfa26b929fc23177b25fb0c62d2958e32" + }, + "recipe": { + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/powerline.git", + "sha256": "f925c31f90d03b30d9f6d8e4f2f4e07d4a5c42253d08de45a96f1a118958a3db", + "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/helm-sage.git", + "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ] + }, + "skewer-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/skewer-less.git", + "sha256": "63636337aafb0cc1846514233afe1dd4d8eb80fc89044e3b74565e73da55ba3c", + "rev": "593001930f1d68c85233f34c5f6fb04173fc98d6" + }, + "recipe": { + "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "skewer-mode" + ] + }, + "eimp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eimp.el", + "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir" + }, + "recipe": { + "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", + "sha256": "38cf37d7020f0ce4ab233c543b44e136c2076e6c8ea34653ad534257a0402987", + "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [ + "flymake" + ] + }, + "dired-single": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-single.el", + "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx" + }, + "recipe": { + "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "oneonone": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/oneonone.el", + "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" + }, + "recipe": { + "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-emamux.git", + "sha256": "b12d2c36f5a12a5a629c6b13ffc64dbdec905a888c049085ce28e0c64892bdbb", + "rev": "53177ca59ed2824cc0837677af5a13a580691a71" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "kill-or-bury-alive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", + "sha256": "14c2fc7d5ce2c8ea044cf818ae9a40d4e01b6f60d4eddf50a726b0d67b728db0", + "rev": "6e0d1ff08889d9cf3f89e366e327d9de930cf67c" + }, + "recipe": { + "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ggtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/ggtags.git", + "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.11", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "move-text": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/move-text.el", + "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2" + }, + "recipe": { + "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake2.git", + "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "auto-complete", + "cake2" + ] + }, + "cfengine-code-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cfengine/core.git", + "sha256": "5625440ba13ae29d7eaf4fff54e764107fa290d15db95196db851e0595953a9f", + "rev": "afed90c14a2b30bc36595626b959522c34a6565f" + }, + "recipe": { + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.8.0b1", + "deps": [] + }, + "corral": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nivekuil/corral.git", + "sha256": "9d1917289f677dbd57731b42f78ab70716d81dce030781eca3148225c29dec3e", + "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "look-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/look-mode.el", + "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp" + }, + "recipe": { + "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-cacoo.git", + "sha256": "4f7fcda583e31efdd767a11a71ff7e0a4a4d5ee8c47fbe0e191c25e1446dc48a", + "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [ + "concurrent" + ] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sprintly/sprintly-mode.git", + "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "furl" + ] + }, + "multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-multi.git", + "sha256": "fbf4cfc3df12c5500b1c877a3b026a86fcc5f8bb673290ac8919b68b8f5eea87", + "rev": "884203b11fdac8374ec644cca975469aab263404" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.1", + "deps": [ + "emacs" + ] + }, + "json-reformat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/json-reformat.git", + "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-whitespace.git", + "sha256": "ef8ae47608207b2aa885d3ec1e539235a764b6215e2ce258e36e5fccb19de5aa", + "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "kakapo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/listx/kakapo-mode.git", + "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" + }, + "recipe": { + "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "cl-lib" + ] + }, + "pretty-lambdada": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el", + "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin" + }, + "recipe": { + "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "omni-tags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", + "sha256": "d0553e602917a69f8283d456c299060881f3c22ff7c2b79d4e3191ab4944bd15", + "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "pcre2el" + ] + }, + "hcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-hcl-mode.git", + "sha256": "b3c699f37bdefe740a30cc42ffff6292a6429652d24e45927fd4a5f67ba3c2e4", + "rev": "f9757d4122d75ffdff92c97ec9e75694506caba5" + }, + "recipe": { + "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "tfs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tfs.el", + "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v" + }, + "recipe": { + "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/page-break-lines.git", + "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/rope-read-mode.git", + "sha256": "30717ad1cfa268a145632463ce28794d8602c76382d85630af146af81a8b6e8c", + "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/desktop-plus.git", + "sha256": "aa9b0d7f94e1e13b815d0766b245cb6c767bf4d85d7cd1c43dd4e5e83fc214dc", + "rev": "a484d24ca673c7536387368729421dad9dde5059" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "bash-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/szermatt/emacs-bash-completion.git", + "sha256": "a10f5796a43389206dea92e3d456ec23f32d8f0456ec5d6914df9535721639cf", + "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2" + }, + "recipe": { + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "angular-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/angularjs-mode.git", + "sha256": "b2c0268d5ed6746718b31e199949e6efbd9f9ba8673ac26a54318486ab9a1e7e", + "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2" + }, + "recipe": { + "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-ctxmenu.git", + "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "python-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-python-environment.git", + "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "rev": "401006584e32864a10c69d29f14414828909362e" + }, + "recipe": { + "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "deferred" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/gotham-theme.git", + "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.5", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/blorbx/evil-quickscope.git", + "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "evil" + ] + }, + "hl-line+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-line+.el", + "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889" + }, + "recipe": { + "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "xbm-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/xbm-life.git", + "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", + "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/elpa-mirror.git", + "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [] + }, + "edit-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs_chrome.git", + "sha256": "e1d51992cb04b45cddd3ad048e658d164f4228e3e3534d08f74b6c57e6dec5af", + "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.13", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/dynamic-ruler.git", + "sha256": "79512de4980dbcaa48d50df25929f5e58ccbeacb46dbb42606971f9ba17ee717", + "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-fontawesome.git", + "sha256": "fe5d3a7c1e00d2ffac37ddcc6e7d2fc97b228e574a2d5fc75c3cca1e76bb3811", + "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/o-blog.git", + "sha256": "e839c4d86e153c74ef07c9fcf551460b701d9c6c15317ed3f164b8c022e76108", + "rev": "5db9594c6e3439c000b183551d7975c2e29131f4" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/love-minor-mode.git", + "sha256": "f33aa4c7ef81e42b3ac9dea7a86e521bee02a03dc98b8843a53fbd4eb097c587", + "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "erc-hl-nicks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/erc-hl-nicks.git", + "sha256": "184a95d6ed5d0bf1a8c57f1a33c8d1a9ffdfc3fef579775952e693ce820e872d", + "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87" + }, + "recipe": { + "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "dash-functional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.12.1", + "deps": [ + "dash", + "emacs" + ] + }, + "pdf-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/pdf-tools.git", + "sha256": "f5100845c4afd507f2dfb09e3c6e98e907e930a40ced8eb1ea05242cb7789296", + "rev": "0107f80dcf268d08ac075b01729820062c0fbd67" + }, + "recipe": { + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.70", + "deps": [ + "emacs", + "let-alist", + "tablist" + ] + }, + "image+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-imagex.git", + "sha256": "c16830b0405e241cc6db87f1ddfa52d125c0d04bece26601f10fcc1b0ea84f1e", + "rev": "967508a6c151e6ab6e97d3ac332dc5599011830d" + }, + "recipe": { + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [ + "cl-lib" + ] + }, + "dockerfile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spotify/dockerfile-mode.git", + "sha256": "38db9adb524d2c5c8590ca6c35debd32471c30ef086e9a20d58dba25f3ae258e", + "rev": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc" + }, + "recipe": { + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/telepathy.el.git", + "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-haskell.git", + "sha256": "2e30919e8ac2cf14e89ae317ce7318a6b1278c9bdce0a00209b352c54ca8cd5c", + "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.2", + "deps": [ + "dash", + "emacs", + "flycheck", + "haskell-mode", + "let-alist" + ] + }, + "evil-iedit-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-iedit-state.git", + "sha256": "5aa699537838d52937a09d86ca8e6692325239509724f229da7d148bbe48e1c0", + "rev": "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779" + }, + "recipe": { + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-enbox.git", + "sha256": "3421f1cd186e616490bee841a2bd838fcd00945db3a8d8493bdf0da39530f4dc", + "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ] + }, + "flycheck-pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-pos-tip.git", + "sha256": "aa849fac9428d8026b5c095fcb92e664e03c085375ed7891af2e8a27efd8a82b", + "rev": "0c2b31b615fa294f329f3cc387b464525ce3392d" + }, + "recipe": { + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "dash", + "flycheck", + "pos-tip" + ] + }, + "ac-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/ac-dcd.git", + "sha256": "b672dc0768e1eac27ab668ab134f481894a279d5bf6c01bdd182716d01427a28", + "rev": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49" + }, + "recipe": { + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ] + }, + "es-windows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-windows.git", + "sha256": "956a6e59a56c0d38e2a2540b377c33d7a5b78c42323482087e692d09b029193f", + "rev": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af" + }, + "recipe": { + "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "find-by-pinyin-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", + "sha256": "8f5da5d686f91604254d5d6e1934b5629e5a4f6a8b726ea7a626340959eff92d", + "rev": "3137c367d58958858daa6d3dee1993b2eb9dd9b4" + }, + "recipe": { + "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "smart-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" + }, + "recipe": { + "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.9", + "deps": [ + "emacs", + "rich-minority" + ] + }, + "apu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apu.el", + "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4" + }, + "recipe": { + "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donkirkby/live-py-plugin.git", + "sha256": "fe5d1e2e5d5b0b93276081805ca0eb1680e683f6faaf5761d2766e76c8a04a7b", + "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.8.1", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pitkali/pos-tip.git", + "sha256": "63409684b48b55c45a717bf19c720fa3a74e26071aa2709bc5e1a069afb60b71", + "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.6", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ] + }, + "jabber": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/emacs-jabber/git", + "sha256": "af89d7052e555c7b5efb0c21387a50699056659fb83698691b70e75c88e4cd34", + "rev": "2999f58619dd9c20cc6cac8060c4c850a504cbbd" + }, + "recipe": { + "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.92", + "deps": [] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/terranpro/magit-gerrit.git", + "sha256": "6b75d69bfa1fba5032c022c8c02c926fc9fd13586c29047cfe0430d3e423a27a", + "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "magit" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lolownia/org-pomodoro.git", + "sha256": "bcdee69ec59fd5a8742a1759b9eee7fec43d405bcff4521b5c2598218efa4dba", + "rev": "26452a3d070f4814b191a9de9e3493a54161b910" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.3", + "deps": [ + "alert", + "cl-lib" + ] + }, + "monokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", + "sha256": "7ffb3a138f316d28eed15277c2bfd0616924943543112f9b221725433499870b", + "rev": "9a6f126e1f02ec49d41fe2ee79670ca96a563f1a" + }, + "recipe": { + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/kurecolor.git", + "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "emacs", + "s" + ] + }, + "flymake-haml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haml.git", + "sha256": "0ba58405ab0e49edd9501ba4505e70212d738e05b925698b567ef5331729e6c1", + "rev": "343449920866238db343d61343bc845cc8bc5e1b" + }, + "recipe": { + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "highlight-indentation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", + "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" + }, + "recipe": { + "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sanel/monroe.git", + "sha256": "d576b1160ecf8e7525f1ef73d92bfb6b1ca18e69b2ae32c16a92853d1dda17a8", + "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "names": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/names.git", + "sha256": "b950d0f5c31b3a2b745f88e26b3ebf2863ea593422dc7e5b87fecc92b430446e", + "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "log4j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/log4j-mode.git", + "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" + }, + "recipe": { + "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "gnus-x-gm-raw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/gnus-x-gm-raw.git", + "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" + }, + "recipe": { + "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "log4e", + "yaxception" + ] + }, + "dropdown-list": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el", + "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a" + }, + "recipe": { + "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "docker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/docker.el.git", + "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "emacs", + "magit-popup", + "s" + ] + }, + "fuzzy-format": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el", + "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7" + }, + "recipe": { + "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "auto-package-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/auto-package-update.el.git", + "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" + }, + "recipe": { + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.1", + "deps": [ + "dash", + "emacs" + ] + }, + "map-progress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-progress.git", + "sha256": "e7a0895adb3da353358bb486f6bcfc3782c5590efa389854af7ccdf8409571ba", + "rev": "6b8ef6b60626772082b2e80ec54d1f1275e1a1b8" + }, + "recipe": { + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "omni-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", + "sha256": "873f9f41578b55f53ee15bc5b99acc73cf64ace65c1fdfeaf8648defa79407d6", + "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b" + }, + "recipe": { + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "dash", + "emacs", + "ht", + "s" + ] + }, + "zombie-trellys-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", + "sha256": "dcf550053b59a865ddbf0a7b8f5ebaf049ff4d1b83afde20e396be4ae422ab4a", + "rev": "9e99d444a387dd1634cab62ef802683f5bf5d907" + }, + "recipe": { + "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "haskell-mode" + ] + }, + "karma": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/karma.el.git", + "sha256": "5a86cb2eb129e30fb7ba7cc87bba140015c6b79c77e59bad0ae9e158989162b9", + "rev": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e" + }, + "recipe": { + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "imenu-anywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/imenu-anywhere.git", + "sha256": "26381e7e06aba0ca8e3db4c2d556344b22b59838808fb37f575ddde3ca358961", + "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2" + }, + "recipe": { + "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib" + ] + }, + "js3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomblake/js3-mode.git", + "sha256": "7559b1c4ed70982e8babaac425ff6c31bc9be69220645ddf595e9d8d814bd43b", + "rev": "5ccda46ba39998a74bd724fdffb34634be5b6563" + }, + "recipe": { + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "aproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vietor/aproject.git", + "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "helm-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ahk-mode.git", + "sha256": "48297d6746b2ac0d50adc798ccc94df706e20d4e102e71c99e740dc66c7219e3", + "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.5", + "deps": [] + }, + "requirejs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/requirejs-emacs.git", + "sha256": "8a4166316c65ddcfa07807e9163361fcf74201a3f3c80fb3c935a7734e1603ad", + "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s" + ] + }, + "pastehub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/pastehub.git", + "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" + }, + "recipe": { + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-langtool.git", + "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "cl-lib" + ] + }, + "gnus-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el", + "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4" + }, + "recipe": { + "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "uzumaki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/geyslan/uzumaki.git", + "sha256": "ba219e5da5ae66ce5e09ef87210d99295a997bd443dd808d3be8d2a771b2a37c", + "rev": "a75956e1757f4b98aad3384a4616481aede70cb1" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theBlackDragon/fvwm-mode.git", + "sha256": "a92314bf63c063d6ebfc1f18e3a10fcc52eb36d410a7d037a36fe5f245668a2b", + "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.4", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/factlog.git", + "sha256": "a48a989df1713afdc9593eed113a0c40d138e2100163b034c5486645fb6fd3b1", + "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "kaesar" + ] + }, + "boon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jyp/boon.git", + "sha256": "6c21f4bf038291745e4387609ab4440b478f3fced5b347f6a4731933241385f7", + "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "expand-region" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "todochiku": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/todochiku.el", + "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" + }, + "recipe": { + "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "color-theme-sanityinc-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", + "sha256": "5468eb6d549d5a09c62f4473f4239fdd609d51d2391a75e48fe547e12bf79cab", + "rev": "554e941131d009c0a5d7129ed96796182b4cc590" + }, + "recipe": { + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.29", + "deps": [] + }, + "ido-yes-or-no": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", + "sha256": "e5a469d437bd139ab3edfe2abc8188021158c83cb9faad879af36a225a4a8513", + "rev": "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4" + }, + "recipe": { + "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/mode-line-debug.git", + "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [] + }, + "helm-mode-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-mode-manager.git", + "sha256": "f35f85c2ca073578a149fa7bd2a61d7933e83ad3a661af8e55fff4a4812b3deb", + "rev": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5" + }, + "recipe": { + "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "helm-aws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-aws.git", + "sha256": "5bc6c04bd2e5cc49378356c424872371ed297937fd995471409d94f6b52eb704", + "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/pcache.git", + "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "eieio" + ] + }, + "fuzzy-match": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el", + "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq" + }, + "recipe": { + "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-reverse-theme.git", + "sha256": "d0bc0fb317a93165b8939e468ba4d393ec103ecdb1f21a6bec9a0b111df9b697", + "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [] + }, + "menu-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el", + "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7" + }, + "recipe": { + "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/perspective-el.git", + "sha256": "784c10983791e9742d1ce2b64dff1a39acd5a9d9ff42c3b2129465ed61ce8289", + "rev": "3a8d59045a6370fae1ec2011865190a7465d707f" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.12", + "deps": [ + "cl-lib" + ] + }, + "offlineimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/offlineimap.el.git", + "sha256": "ebe4a1a09edf95ccec425d8cabb501d2baf74e15ba302fe9dd9ca8fd1ca5e42b", + "rev": "646482203aacdf847d57d0a96263fddcfc33fb61" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-lib.git", + "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "sqlplus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", + "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" + }, + "recipe": { + "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/pt.el.git", + "sha256": "7c16f66b195fd34cc14166005c82d1a0801a9202516b54fb423c9a04c13913dc", + "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "mb-depth+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el", + "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q" + }, + "recipe": { + "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/fold-dwim-org.git", + "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "fold-dwim" + ] + }, + "ac-mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/igjit/ac-mozc.git", + "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "rev": "4c6c8be4701010d9362184437c0f783e0335c631" + }, + "recipe": { + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ] + }, + "logalimacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/logaling/logalimacs.git", + "sha256": "914ea957aa321e0bada3ccb62be66065f716469e825e3e1d1fcdb1f750a0e2e5", + "rev": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac" + }, + "recipe": { + "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "cl-lib", + "company", + "nixos-options" + ] + }, + "face-remap+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/face-remap+.el", + "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi" + }, + "recipe": { + "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-json": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-json.git", + "sha256": "064aef39b5c1b996c06631bb0b24141f0c0a5aeb743ecac6efc62a42a9037ca0", + "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/sass-mode.git", + "sha256": "68ec20a25190f04abb6a1a76f84f5a0a1706e8e460291cb2c1f74d369e66571b", + "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0.18", + "deps": [ + "haml-mode" + ] + }, + "string-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/string-edit.el.git", + "sha256": "bcdd15928f06feac800eb30589889934ea7e3addbf50ff46b4ca4eec189d3148", + "rev": "9f9c9cd659156fd2217be814eb4e91da48d44647" + }, + "recipe": { + "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "dash" + ] + }, + "showkey": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showkey.el", + "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r" + }, + "recipe": { + "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haskell-multi.git", + "sha256": "6876a0e8793c26af02282909133aef966609ed324182da52ec82979d9032c1c9", + "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flymake-easy" + ] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-timemachine.git", + "sha256": "5a99eb89819eb281789dc16088c7d6260622bd55e6643b3d8cb6cdccef8172f2", + "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.7", + "deps": [] + }, + "evil-search-highlight-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/evil-search-highlight-persist.git", + "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", + "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + }, + "recipe": { + "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/edn.el.git", + "sha256": "1691dbf8c20bb27abc2ebc79cfd89a144db6b11abea8bb12123498d92228c5ed", + "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [ + "cl-lib", + "dash", + "emacs", + "peg", + "s" + ] + }, + "isearch-prop": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el", + "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09" + }, + "recipe": { + "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-table-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-table-comment.el.git", + "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" + }, + "recipe": { + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/hl-sexp.git", + "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/avy-migemo.git", + "sha256": "a32d2628b9c93b978b0ffb6e3b63a82478d749b946322547eab25926169e0b25", + "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.11", + "deps": [ + "avy", + "emacs", + "migemo" + ] + }, + "crosshairs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/crosshairs.el", + "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b" + }, + "recipe": { + "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "col-highlight", + "hl-line+", + "vline" + ] + }, + "osx-browse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/osx-browse.git", + "sha256": "515731c2d6275a74981d4731fcbb6e4a41a25812232943b81e1f4af52d52c897", + "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7" + }, + "recipe": { + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.8", + "deps": [ + "browse-url-dwim", + "string-utils" + ] + }, + "helm-orgcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-orgcard.git", + "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" + }, + "recipe": { + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nishimaki10/emacs-phpcbf.git", + "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/dispass.el.git", + "sha256": "d4d2ea781b22c6e74efa7971114bec37d5b464c52c3c89dae4665bc3f80a2aac", + "rev": "38b880e72cfe5e65179b16791903b0900c73eff4" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "ac-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-inf-ruby.git", + "sha256": "55fba20ab7482cbea6658465d28bd2a5075972fe9d6916ffdeafe954ec0895a9", + "rev": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318" + }, + "recipe": { + "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete", + "inf-ruby" + ] + }, + "cider-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", + "sha256": "5225d62e374c2c2f9fe0ae1b198409247e87bd42bfb4e344ddd95132df5932f5", + "rev": "dbe6a19c835ea42b099dd17f040db0baf9774aaf" + }, + "recipe": { + "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs", + "eval-sexp-fu", + "highlight" + ] + }, + "wn-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luismbo/wn-mode.git", + "sha256": "df22db01f4185a30728333bbec9a5b4957919c98f6d752e1c6e4b5980619261b", + "rev": "6e7029b0d5773a79914a289937be068784931cad" + }, + "recipe": { + "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "emacs" + ] + }, + "goto-last-change": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/goto-last-change.el.git", + "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" + }, + "recipe": { + "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-css.git", + "sha256": "25fb26439cadc5694166f34e45fe71d0274a40c749f068b846dd9e768192a295", + "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flymake-easy" + ] + }, + "auto-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/auto-yasnippet.git", + "sha256": "b8ddb6d6eafb2160713776764967f65f59cffc2d1e12248e167e6936903c7958", + "rev": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f" + }, + "recipe": { + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "yasnippet" + ] + }, + "emacsql-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "haskell-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-snippets.git", + "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" + }, + "recipe": { + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "yasnippet" + ] + }, + "typed-clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/typedclojure/typed-clojure-mode.git", + "sha256": "199dab92d6bc3033f5ccd2b8a6c8f2b323706b5d6535729ebb6658a2c601e947", + "rev": "00bc20db78901204a67722ab47482660e36d0463" + }, + "recipe": { + "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "vim-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-vim-region.git", + "sha256": "a935f83c55fa7257b30c93cef5eb70463059b6a3ab74a850552b565f4c7fa09c", + "rev": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d" + }, + "recipe": { + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "expand-region" + ] + }, + "hideshowvis": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el", + "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6" + }, + "recipe": { + "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tumble": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/febuiles/tumble.git", + "sha256": "fea19a7c6970a71b315e8f6819992064f0afef19690260065dbefcce0b971246", + "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [] + }, + "aurel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/aurel.git", + "sha256": "f2caf606144e0d18bf755d4d490515d438ac465209077176de0fbc02dcb05df9", + "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/anaconda-mode.git", + "sha256": "106ab7fe82ae79f3247d0a175da4a092e659c0c7aa269073e03db5959a0e1634", + "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "emacs", + "f", + "pythonic", + "s" + ] + }, + "js2-closure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/js2-closure.git", + "sha256": "8a40e9ad3574c56de369ef489c1652da94350caebd1505bf023c27501fc55034", + "rev": "e1b3e7db13285e63c3c428d87c018289352bd043" + }, + "recipe": { + "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/drag-stuff.git", + "sha256": "4cea54bcfe3d760a6bd738e40a5409789bd0072df661458ca0bcebe5fe4846a8", + "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/clocker.el.git", + "sha256": "773e6b16e868ae6988510a33a8ebdd5dfa846b1ff739efa9200af7afd2cc75c0", + "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.10", + "deps": [ + "dash", + "projectile" + ] + }, + "hl-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el", + "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh" + }, + "recipe": { + "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "instapaper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jfm/emacs-instapaper", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8", + "rev": "8daa0058ede7" + }, + "recipe": { + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.5", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "findr": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/findr.el", + "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" + }, + "recipe": { + "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/whitaker.git", + "sha256": "64956ae44a8e645555894001f9613d40f2c4a8bb03584f18cfec8a145d86dc05", + "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-mode.git", + "sha256": "e02f89af12f8425fa23c5d9ee0874cc241308bb052286efcb3dd706ab4c91a5a", + "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.12", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "macro-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/macro-math.el.git", + "sha256": "8db36fd45ba8bad70377e4b826432ac2c6f96a103d38baa260048ad678e0ec04", + "rev": "105e03c80290d1b88984b2d265a149a13d722920" + }, + "recipe": { + "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/elscreen-mew.git", + "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/helm-backup.git", + "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "dired-sort-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el", + "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi" + }, + "recipe": { + "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rinari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.11", + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ] + }, + "seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/seq.el.git", + "sha256": "34530414c3bf71a8d9466e9378ad6963540573acf45dfe13408b50e9abfab053", + "rev": "ff8083a29b7e0a3686ded17d35c2aa839e8489e4" + }, + "recipe": { + "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [] + }, + "ucs-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ucs-utils.git", + "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" + }, + "recipe": { + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.4", + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ] + }, + "string-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/string-utils.git", + "sha256": "635852a6853573c0a066dfbf4e0ce8f82c6d7c720ebbf5705bdfda85575ca6d7", + "rev": "3ae530143899f533a9ef5e1f26f28b577ebe72ee" + }, + "recipe": { + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "list-utils" + ] + }, + "nose": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/durin42/nosemacs", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm", + "rev": "194d7789bf79" + }, + "recipe": { + "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/egisatoshi/egison3.git", + "sha256": "87323240534725aa4dc723685346c8f198a45007e15ebb311da4e3a8b192d7bf", + "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.5.10", + "deps": [] + }, + "ido-occur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-occur.git", + "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "cus-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el", + "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s" + }, + "recipe": { + "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "outshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outshine.git", + "sha256": "d4c6610a0c2e63434b38868e5b0c191909b205083f4250c0f6fde1c2023fefe2", + "rev": "cf1097692b3ea0367d3c821769399fec5831e200" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "ack-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/ack-menu.git", + "sha256": "f76d463f0dbe41a65c85aacd063ebb33f642d5ff262070d6bf9d7e250a803818", + "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059" + }, + "recipe": { + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [] + }, + "golden-ratio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/golden-ratio.el.git", + "sha256": "276af59970a0fcf2655aea7688c9d4e02d9073227445a71c32e97a16005aeb5e", + "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d" + }, + "recipe": { + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-mark-replace.git", + "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "evil" + ] + }, + "helm-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ag.git", + "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" + }, + "recipe": { + "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.48", + "deps": [ + "cl-lib", + "helm" + ] + }, + "direx-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/direx-grep.git", + "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "rev": "1109a512a80b2673a70b18b8568514049017faad" + }, + "recipe": { + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "direx" + ] + }, + "muttrc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el", + "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis" + }, + "recipe": { + "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmds-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el", + "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5" + }, + "recipe": { + "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kitware/CMake.git", + "sha256": "22770d107b8e17d8360f8f57ec45b1c2a0a7770d4cb9489c635ac17a109ac03a", + "rev": "fd7180f0c0c2554c31afda235469df986a109fe4" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.4.1", + "deps": [] + }, + "eyedropper": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", + "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" + }, + "recipe": { + "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "interleave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/interleave.git", + "sha256": "721d21a98b52285b18b5ed2e389f0ef4a126d32e7d86dbc81fdcb2af137180f6", + "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "eyebrowse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/eyebrowse.git", + "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" + }, + "recipe": { + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.9", + "deps": [ + "dash", + "emacs" + ] + }, + "delight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/delight.el", + "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" + }, + "recipe": { + "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/speech-tagger.git", + "sha256": "f4073504fe97f141710263a970242076a4dbdc5e7e886c6aeaf62a2c7070ee2a", + "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.0", + "deps": [] + }, + "whole-line-or-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whole-line-or-region.git", + "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" + }, + "recipe": { + "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/git-link.git", + "sha256": "1fac6cb1bc50a7bc4ddcb29c32f79ae0c1aedce2754c6a29f3698b1cfa463c9c", + "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "evil-nerd-commenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", + "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" + }, + "recipe": { + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sauermann/emacs-aes.git", + "sha256": "1ff74e70eea1b566cc45c5c330d03b68c307bae9703c96714a1bacdfde4e837a", + "rev": "d78796facc034b09f379cda5f27090f3139305ec" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/orgit.git", + "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "dash", + "emacs", + "magit", + "org" + ] + }, + "jump-to-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/jump-to-line.git", + "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" + }, + "recipe": { + "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "pkg-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/pkg-info.el.git", + "sha256": "05e8680852c3ad9d0566bb23cb3bb6a49c3e675a1bf72a5b5f50ef0a97f0d50e", + "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "epl" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-space.git", + "sha256": "33e36e204effe277eae7a8579f14b2732fdf2e6d089864bae939e10db65590e5", + "rev": "f77860fa00662e2def3e1885adac777f051e1e61" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "evil" + ] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/wcheck-mode.git", + "sha256": "356171bba2026d943c826723a147decafa7cf12a94c1e789acd0b5ed539922d1", + "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2015.11.29", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/overseer.el.git", + "sha256": "8a582f4a661ab11cb7300c7a568a97fe6fc3a8fcfbc526d1e1de7fd69e8bf9b8", + "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "emacs", + "pkg-info" + ] + }, + "pp-c-l": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el", + "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd" + }, + "recipe": { + "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "win-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/win-switch.git", + "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lein-sync.git", + "sha256": "68865267e6eadbac115128960110dfc8ad4e2f35bbd78e190a24a35a6d5beb6a", + "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cider" + ] + }, + "erefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", + "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "cl-lib" + ] + }, + "identica-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", + "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" + }, + "recipe": { + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "mentor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skangas/mentor.git", + "sha256": "1d4e392c0c241512df945907939bb8e0be2b382f7642dfebf8414149b1dd4b1b", + "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "etags-table": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-table.el", + "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf" + }, + "recipe": { + "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-alchemist.git", + "sha256": "703766c49a96deaee2b3141da5bd95b6a1ab22b64af1c09124e3f32b8ec01442", + "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ] + }, + "jvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martintrojer/jvm-mode.el.git", + "sha256": "036952c019f79cc09f3b236d524ca98bd76f76ee5c4435fda5a1d460b6b6059d", + "rev": "16d84c8c80bb214367bae6ed30b08756521c27d6" + }, + "recipe": { + "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "emacs" + ] + }, + "replace-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/replace-symbol-el.git", + "sha256": "2e0f5f9f06bab79ffc2ee42801d4f540e36c9cf99c16b80bbcb1e5c73c1cff6a", + "rev": "153197a4631a1ed0c3485d210efb41b4b727326c" + }, + "recipe": { + "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-which-key.git", + "sha256": "966381db690345e6e7aceee095b37de26fbd18394ac9c681da8061cc95260372", + "rev": "777c28444a2497733a2fb62308fa5e2ef434f427" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs" + ] + }, + "esxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tali713/esxml.git", + "sha256": "17355d533a4ee874430af42bc57622faf576a5855de598a3b35ac03117c59b4c", + "rev": "cd096242fadbf878d9428786306e54ed60522b43" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "kv" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/fwb-cmds.git", + "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/notmuch-labeler.git", + "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "notmuch" + ] + }, + "helm-c-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", + "sha256": "2ef985f43c054e17002c5fab4b904bbb2c3fff18c36dd7266ef1355517410581", + "rev": "1fa400233ba8e990066c47cca1e2af64bd192d4d" + }, + "recipe": { + "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.7", + "deps": [ + "cl-lib", + "helm-core", + "yasnippet" + ] + }, + "codic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-codic.git", + "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" + }, + "recipe": { + "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/spaceline.git", + "sha256": "b3d6e4aec5eacc2f489b9170c22043e08882ab480643d14860ad45f9e6809e39", + "rev": "3990442b0b1f4f5975ae1bba3248fd89d4b5dff8" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "cl-lib", + "dash", + "emacs", + "powerline", + "s" + ] + }, + "auto-complete-clang-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Golevka/emacs-clang-complete-async.git", + "sha256": "5fbafb006c891827a05306a500b04efe68a369d68433bd882291ffb90dc10ccc", + "rev": "a5114e3477793ccb9420acc5cd6a1cb26be65964" + }, + "recipe": { + "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gscholar-bibtex.git", + "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "anyins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/anyins.git", + "sha256": "3845cb0352860e1402a476b5a29f35ae3cdcc969a87dc7916ca467e3ff416896", + "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "d-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", + "sha256": "66f36dfcd8e643efa275b320e67448c9dee14db9ce7b84f1d5e842c92f33ef2a", + "rev": "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626" + }, + "recipe": { + "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.6", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/emacs-google-this.git", + "sha256": "d9a1d487a8444e1f3a4df204949ce3f4a7a2b624bb327de7e225fc71b89e835c", + "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [ + "emacs" + ] + }, + "goto-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/goto-chg.el", + "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij" + }, + "recipe": { + "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dired-fdclone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/dired-fdclone.el.git", + "sha256": "005be73159ffda7f811c8f6c88b7f4885c761892d0082a4b3fe7c12710202c53", + "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf" + }, + "recipe": { + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [] + }, + "package-safe-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/package-safe-delete.git", + "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" + }, + "recipe": { + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.7", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/emacsc.git", + "sha256": "92f8550024d3349d4356e13684218e7db463a5663dff83cfb2bf4ce6cebacce4", + "rev": "69607bdc3a0c070e924a3bcac93180f917992368" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.20131027", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/fuzzy-el.git", + "sha256": "5ae7426af9e7edc1fa90f5dadb51d8f0bef298e506292eef78dcb2a260f2f5bc", + "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hlissner/evil-snipe.git", + "sha256": "2f9648b97305fdcf46c1713ab2a94ee63e20256cae25e8ed5bad65b9f67d7490", + "rev": "9df049eb83789ea5711632672e077cebf4c54e14" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "auto-complete", + "emacs", + "jedi-core" + ] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", + "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "emacs", + "f", + "s", + "shut-up" + ] + }, + "wc-goal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/wc-goal-mode.git", + "sha256": "fcd4a50ddc14002f5a03b18e18288b21e5c64ad6b560669281b22ba4bd98ce56", + "rev": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb" + }, + "recipe": { + "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/window-numbering.el.git", + "sha256": "de22abd1050ecf9930e9a91b8d7adc4bc261902cb996ef71f4d0b4c6b797a82b", + "rev": "653afce73854d629c2b9d63dad73126032d6a24c" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/company-math.git", + "sha256": "7e4a48e63736c1de5e5fd363beb4267b3fffd16673477dbe07d6bda7c1052e01", + "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "company", + "math-symbol-lists" + ] + }, + "window-number": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window-number.el", + "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6" + }, + "recipe": { + "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "minibuffer-complete-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-complete-cycle.git", + "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" + }, + "recipe": { + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.25.20130814", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imgix/imgix-emacs.git", + "sha256": "0896e37823f0458605d3241487c0064f1cf7fe0501f0fc60d61f4eb0009c26a9", + "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "dash", + "ht", + "json", + "s" + ] + }, + "bog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/bog.git", + "sha256": "a47d1a691743a6edaf001b6f863e251db0c4113656865beee1b33fac34433a1a", + "rev": "19c70efa3e4e9bd27308f68bdae62dff16852c0f" + }, + "recipe": { + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/fixmee.git", + "sha256": "69aa279b81af9eac7a9c3283238249bb651cb96b447b4989c274b2efb8a6746d", + "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.6", + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ] + }, + "thesaurus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thesaurus.el", + "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq" + }, + "recipe": { + "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "relax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/relax.el.git", + "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", + "sha256": "0b76288138867c098c55dd666567a5b7eccf7783d181aef968c9cbb6fe8ded5a", + "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/git.el.git", + "sha256": "7ae1a96861dfc809f2c0218ad5fe0ead974d25752d3948ebc029f29c9b3a2e3b", + "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "f", + "s" + ] + }, + "operate-on-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/operate-on-number.el.git", + "sha256": "abdd6093b640c9564b31c520a90f24f1a547e43834ab5761a0d0ecc7da4c008b", + "rev": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6" + }, + "recipe": { + "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "thumb-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el", + "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i" + }, + "recipe": { + "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "browse-url-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/browse-url-dwim.git", + "sha256": "38ab7b880e6ab926f6d95fc0197998b59e6d5219ac169fa32d327c56e91dd48c", + "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30" + }, + "recipe": { + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.8", + "deps": [ + "string-utils" + ] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smihica/emmet.git", + "sha256": "97a30c99cc4763805a2e5da53125f5a059898ee3b95e6d940d6b0fdd7fdaa9e0", + "rev": "bf76d717c60f33d223cdac35513105e9f9244885" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.8", + "deps": [] + }, + "edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-edbi.git", + "sha256": "3aad067e7805c47c47a9dd9467d1b94b8813d86e19642e03d2431d1291c1c377", + "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/markdown-toc.git", + "sha256": "2d82c36f88564b6c2c4795b48eeb6a3b16423783f932381cb11c2542e3fcc7f1", + "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.8", + "deps": [ + "dash", + "markdown-mode", + "s" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ac-html.git", + "sha256": "43464e45c5da6071edd5ae6a0a593727e655ac368b0591bf26c08252bd0041c6", + "rev": "415a78c3b84855b0c0411832d21a0fb63239b184" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.31", + "deps": [ + "auto-complete", + "web-completion-data" + ] + }, + "swiper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" + }, + "recipe": { + "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "emacs" + ] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", + "sha256": "73c7137585afacafec8da5f4a98ef86afcaf88798c7a5d89e7f3b3644c6f09ba", + "rev": "deca5e39f31282a06531002d289258cd099433c0" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "helm-descbinds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-descbinds.git", + "sha256": "77c9fd1ae420adadf73826a11e7a73cddb53ffc2d1cc42aae0a20709b8daa2b2", + "rev": "5d8e84e6c047ce8a042fdcd827abb421f4848ac7" + }, + "recipe": { + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.08", + "deps": [ + "helm" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/wispjs-mode.git", + "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "clojure-mode" + ] + }, + "neotree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaypei/emacs-neotree.git", + "sha256": "db74bef5fc7295191f5aea67dc5b572796a73d8a49383d9a760a5ce56ca439c8", + "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-topgit.git", + "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "express": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/express.git", + "sha256": "1311be097f5bdd16d2fdccf6e1fd7fac6af8a58b2420a1c23c6b114616f37f61", + "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "string-utils" + ] + }, + "company-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/company-web.git", + "sha256": "b9fc754c76b45fac12bcbb321c67c7115f6d0f492d46cc5643040ef27239132c", + "rev": "ffb6b969813041d2d90680a7696a9e0208eaed61" + }, + "recipe": { + "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ] + }, + "helm-recoll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-recoll.git", + "sha256": "01c2710f5024844700c111b5bf148b0e06ea0e0c28d80705fcf69d8d7bd57c99", + "rev": "957a099b9425b91d1c6a1fc43110aa5fc834e2e1" + }, + "recipe": { + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "sr-speedbar": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el", + "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i" + }, + "recipe": { + "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/emacs-refactor.git", + "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.6", + "deps": [ + "cl-lib", + "dash", + "emacs", + "list-utils", + "paredit", + "popup", + "projectile", + "redshank", + "s" + ] + }, + "emacs-eclim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/emacs-eclim.git", + "sha256": "305d13f0849c092a0f78e09df2a56d50d67375c66ea98ffcd6894b4ffe40bbf4", + "rev": "c5c7272ae30e5017ebd08d4e03508abc6b23bf4c" + }, + "recipe": { + "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "json", + "popup", + "s" + ] + }, + "typo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/typoel.git", + "sha256": "621610add50d3dc6e0ddf691b78884e5d746e0d3cbf1ee9f083f16c8f2230dca", + "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/foreman-mode.git", + "sha256": "89538f300cc0086d7c3ae0ea23c34c020954e7488897ccadc3dcef25dcf233a5", + "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "timesheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmarble/timesheet.el.git", + "sha256": "e4845d4a0dbac894dca4cdfe632b134260c5c644d25f1edbdb7a2adf5e1f9ffa", + "rev": "354131b1216ccca51a68da74e9491b5518fd7820" + }, + "recipe": { + "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "auctex", + "org", + "s" + ] + }, + "slideview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-slideview.git", + "sha256": "d3c976b63e9dacc9b024c46b22b712d1c2ac3e38af663e399ca2e016aa126166", + "rev": "ec2340e7b0e74201206d14e3eaef1e77149f122d" + }, + "recipe": { + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/direx-el.git", + "sha256": "6e1c6b01dd9f4becc5bd0abd580e023b970ccb1e716c7d436d31a0fc24140c5d", + "rev": "423caeed13249e37afc937dc8134cb3c53e0f111" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/yaxception.git", + "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-mode.git", + "sha256": "4a34e6cacdefa5c114f667f2602c2260aed0fa1ed9b03fcac50cd45ad7d3e898", + "rev": "ea81bbb966a839527a786739b7628fd9cd777456" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13.16", + "deps": [ + "cl-lib" + ] + }, + "icicles": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icicles.el", + "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" + }, + "recipe": { + "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "linum-relative": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/linum-relative.git", + "sha256": "4c33a1dac10f605afc3500cd869c397bb5bc9f896d1e4bdd2d407766d2228fd4", + "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-jslint.git", + "sha256": "31fb74daad79a05d70721bc0e98b45841df5a206384ad3b041436b8af9a8f303", + "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.23", + "deps": [] + }, + "org-bullets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/org-bullets.git", + "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [] + }, + "wimpy-del": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el", + "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z" + }, + "recipe": { + "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "help+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help+.el", + "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" + }, + "recipe": { + "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/org-projectile.git", + "sha256": "cd2769c56ed01b544c11c2f35a434d5e448a9db8be064049039521da618a6b01", + "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "projectile" + ] + }, + "doremi-mac": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el", + "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx" + }, + "recipe": { + "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/flyspell-popup.git", + "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "popup" + ] + }, + "pyvenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/pyvenv.git", + "sha256": "da4d1a78fe1ed7ab82164befcfc2c697925dfc5d39bc6156374c6ec7c6acf1f5", + "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bad-ptr/persp-mode.el.git", + "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.7", + "deps": [] + }, + "replace-from-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", + "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" + }, + "recipe": { + "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190", + "rev": "905ec06d864537fb6be9c46ad98f1b6d101dfbf0" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.96", + "deps": [] + }, + "mic-paren": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mic-paren.el", + "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5" + }, + "recipe": { + "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "wonderland": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", + "sha256": "ecfed5679ebd26cfcdad6288984809c27ba5a3bc48e8d433e3037cf45b191905", + "rev": "28cf6b37000c395ece9519db53147fb826a42bc4" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "dash-functional", + "emacs", + "multi" + ] + }, + "plsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-plsense.git", + "sha256": "e44451c0abe549496c023c904914e5fc19c299cdee2115fd10e5a7ccaaaae6ab", + "rev": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a" + }, + "recipe": { + "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.7", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "synonyms": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/synonyms.el", + "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20" + }, + "recipe": { + "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "save-load-path": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/save-load-path.el", + "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z" + }, + "recipe": { + "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fic-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fic-mode.el", + "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s" + }, + "recipe": { + "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dionysos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/dionysos.git", + "sha256": "44ab211ad157d2f901397351e0c189c34928ad73ae6a6ca4351781bc29461bf3", + "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "libmpdee", + "pkg-info", + "s" + ] + }, + "graphene": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene.git", + "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" + }, + "recipe": { + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.5", + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-ubiquitous", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ] + }, + "flycheck-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-package.git", + "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" + }, + "recipe": { + "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib", + "emacs", + "flycheck" + ] + }, + "org-mac-iCal": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "868656dc794d05db566b6ae0052f148a635a737c625d965d89dc036fdd12ccbf", + "rev": "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1" + }, + "recipe": { + "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.9.3e", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/annotate.el.git", + "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.4", + "deps": [] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/zerodark-theme.git", + "sha256": "cc6d516fbf738ebe96cb5a252d43f67a3d771c3a7f2effe22c71c4765434bedf", + "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hardhat.git", + "sha256": "5eabdfcb353d8ad55a3cde14d146f27164389979ee85af13d5b7e5a28b0144c5", + "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.4", + "deps": [ + "ignoramus" + ] + }, + "pinyin-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/pinyin-search.el.git", + "sha256": "e0fc1d7f197fafd58280447910bd7e64d486524bb418294b334a4ce6de6c508a", + "rev": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e" + }, + "recipe": { + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "mouse+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse+.el", + "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" + }, + "recipe": { + "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/sexp-move.git", + "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.6", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/mc-extras.el.git", + "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "multiple-cursors" + ] + }, + "desktop-registry": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/desktop-registry.git", + "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d", + "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd" + }, + "recipe": { + "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jjasghar/test-kitchen-el.git", + "sha256": "b63de5a6d586ec1dc76405bcdcfc8504e48bfc90668764fb233a1fae4625770b", + "rev": "9464c7dda14020099053218e959971117396091e" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "thrift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apache/thrift.git", + "sha256": "a132e886758ffb4c72cacaea5833a97eebd24f45c354fb438642121425193ef7", + "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/better-defaults.git", + "sha256": "1508575387f1290ef308bb096f6e5d9c38a49109e63cd76be51221ac6c1b9625", + "rev": "c286d55528f148733c696fe07eb01073dc412fb8" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "plsense-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/plsense-direx.git", + "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" + }, + "recipe": { + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ] + }, + "cygwin-mount": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el", + "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw" + }, + "recipe": { + "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://repo.or.cz/stgit.git", + "sha256": "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16", + "rev": "48e5cef14cea5c810833d119900cd484c2a6ca85" + }, + "recipe": { + "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.17.1", + "deps": [] + }, + "ac-html-bootstrap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-bootstrap.git", + "sha256": "641652bf1b99ef486340437500e4e9ad97321446e6cbb56e27cad22741ff7fce", + "rev": "591e1e996c820da218ea1eee0a500c556769f128" + }, + "recipe": { + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "web-completion-data" + ] + }, + "julia-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JuliaLang/julia.git", + "sha256": "c45b5c254ebb09537ad61b409bcfe46793b0910b60a677b9930f25f3bca21716", + "rev": "bb73f3489d837e3339fce2c1aab283d3b2e97a4c" + }, + "recipe": { + "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [] + }, + "flycheck-status-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/flycheck-status-emoji.git", + "sha256": "2458c64fb30fcfaa74416a6157baa7f9ea002a8d7f819593f45f0e4a5ce79be1", + "rev": "37ed04b76b7338afd2237d3a11487bef3970ff0f" + }, + "recipe": { + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs", + "flycheck", + "let-alist" + ] + }, + "gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" + }, + "recipe": { + "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "highlight-tail": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el", + "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg" + }, + "recipe": { + "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/common-lisp-snippets.git", + "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tequilasunset/apples-mode.git", + "sha256": "c45cd8fab7b9f7eb10001a18373c179d5a97d57bd6f807f9f7555083512f2771", + "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "reveal-in-osx-finder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", + "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" + }, + "recipe": { + "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arthurnn/minitest-emacs.git", + "sha256": "763f79991eb0797db89c0e73ee1018ccf419a966a27afea516f1e9ec61f5e8b2", + "rev": "2bed01262b0d888473468b5c7bd7d73694d31320" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.0", + "deps": [ + "dash" + ] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-matchit.git", + "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/trevoke/sqlup-mode.el.git", + "sha256": "b37f1c7a10eac786efa5a5c4d9450b361b87f47b41d70447443adc128d835416", + "rev": "7a51e34685c65952cd0635c3d35a36337fde361b" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/favadi/flycheck-gometalinter.git", + "sha256": "37acb536623a5cb224deb506e146bf6353dddf7d1a4d650b7d9b72934027eafa", + "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "flycheck" + ] + }, + "ir-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/ir-black-theme.el.git", + "sha256": "beee6c020fded073b7d25542b97924ee31e63056cd0f82adadf11eeec748d80c", + "rev": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2" + }, + "recipe": { + "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "password-store": { + "fetch": { + "tag": "fetchgit", + "url": "http://git.zx2c4.com/password-store", + "sha256": "f71d0b36570983c35e08b6672c186b5c308b57536a96a747f09665bab794be30", + "rev": "1aac79d9617431bbaf218f9a9d270929762d2816" + }, + "recipe": { + "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.5", + "deps": [ + "dash", + "f", + "s" + ] + }, + "subr+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/subr+.el", + "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk" + }, + "recipe": { + "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/extend-dnd.git", + "sha256": "74226cea94d4361a0aa566002866e6a84c607799842d14f5c6ee75af5d2d0ecb", + "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "ac-haskell-process": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-haskell-process.git", + "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" + }, + "recipe": { + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "auto-complete", + "haskell-mode" + ] + }, + "flx-ido": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" + }, + "recipe": { + "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib", + "flx" + ] + }, + "helm-open-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-open-github.git", + "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + }, + "recipe": { + "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [ + "cl-lib", + "gh", + "helm-core" + ] + }, + "nvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/nvm.el.git", + "sha256": "a297ebf755b1297421ba6918803505a462a91fbda80e6f1823c5583bfc3b9445", + "rev": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad" + }, + "recipe": { + "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ] + }, + "editorconfig-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib", + "editorconfig-fnmatch" + ] + }, + "imenu-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/imenu-list.git", + "sha256": "2c612c4ae40526bafac23bd3a66cc3f1af2ba4743baa9e964baaf0e9551c51a4", + "rev": "1324cffd571df5e35113efc57e1cdc8490068f9c" + }, + "recipe": { + "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "minor-mode-hack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el", + "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0" + }, + "recipe": { + "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-less.git", + "sha256": "95062e781f49a4b6a23cf7ff6ed0f56fb2fe7fce59028c1a171092fe8a46dadf", + "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "less-css-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/LefterisJP/malinka.git", + "sha256": "95d36927c70689216d37d8effdb3839d72c2e179d3496284051798662d8d0fa4", + "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ] + }, + "aggressive-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/aggressive-indent-mode.git", + "sha256": "3379a4c259b62e0fbbab52365b34d1bb0fad093ef1e00800069e62f4b3115a5b", + "rev": "970c5e3bd4519deed8b8b604a5a96269166bf697" + }, + "recipe": { + "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/helm-pt.git", + "sha256": "3b2fb3e9c6912a8fa4f594db4887de50700bfbc015403b43ad93342fadb5a64a", + "rev": "03e35e2bb5b683d79897d07acb57ee67009cc6cd" + }, + "recipe": { + "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbauer/subemacs.git", + "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "magit-find-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bradleywright/magit-find-file.el.git", + "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + }, + "recipe": { + "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [ + "dash", + "magit" + ] + }, + "awk-it": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/awk-it.el", + "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw" + }, + "recipe": { + "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/ace-isearch.git", + "sha256": "a91ecfb998618a2a19c9d378801ebbe2f2e729330188b3a12f5ec32f4c546308", + "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "ace-jump-mode", + "avy", + "emacs", + "helm-swoop" + ] + }, + "sparkline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/woudshoo/sparkline.git", + "sha256": "de9e32d6eef90b32ac34472d567229d4af4c9bdd444c6c6815ffd2deffacb5be", + "rev": "e44498cf1a58fb165991198fe5104d51c92ea904" + }, + "recipe": { + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "cl-lib" + ] + }, + "slime-volleyball": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fitzsim/slime-volleyball.git", + "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" + }, + "recipe": { + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "emms-player-simple-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", + "sha256": "588b4e8c26e3d85ca026aa30a53c17af28b9fd218a4b9d5d5e25732aae436b95", + "rev": "ae4c0032d4d2d0b069ee147b19f962e6a8a73c79" + }, + "recipe": { + "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "emms" + ] + }, + "ta": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/ta.el.git", + "sha256": "73ffa3802cce1263812dc00ff89d4b0253a00235f337d05314bb683e506fd626", + "rev": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2" + }, + "recipe": { + "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "enlive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/enlive.git", + "sha256": "c36c7103247446f602b679e53d61a69eac25fb86632e159a223e23bfd3594622", + "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/rake.git", + "sha256": "917cabbe0f0854f0595587541dc909096e9df793b9b75a04ca509aca055b5391", + "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "slim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slim-template/emacs-slim.git", + "sha256": "e7e90c997aba0e11141e5fea65ef7415104980ae12ce404749eab019665588b2", + "rev": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8" + }, + "recipe": { + "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "mu4e-maildirs-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", + "sha256": "dd83e8d67adb06c3a3f48d258883cff08b58006ecfe045f9372058aed845cdd3", + "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528" + }, + "recipe": { + "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "header2": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/header2.el", + "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" + }, + "recipe": { + "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wyuenho/move-dup.git", + "sha256": "7dee5a2856d9126512fc4fa60d37855df91251547e4d2ba30fea7d53211292f1", + "rev": "4df67072eebac69d6be7619335b03f56f9960235" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/stash.el.git", + "sha256": "dbe5b7ccd2e0c9d4091ce9b6ac1ef54e1ac3ec3fb4fccbaf3b453413161912e7", + "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/autopair.git", + "sha256": "d81ea0125a65a725846190b9b93ccb28357df794e5c26504afea470e7268d33c", + "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "chinese-word-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", + "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" + }, + "recipe": { + "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "cl-lib" + ] + }, + "key-seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vlevit/key-seq.el.git", + "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" + }, + "recipe": { + "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "key-chord" + ] + }, + "ox-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ox-pandoc.git", + "sha256": "497825b3a7df60f0dfc4f9939a67f940523df6cdc2e453b54987ee93a8bb8940", + "rev": "035f1d60a0139349232c382cfd23a96902b7003d" + }, + "recipe": { + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.150707", + "deps": [ + "dash", + "emacs", + "ht", + "org" + ] + }, + "helm-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-ghc.git", + "sha256": "a7141edd983871ee53b4fae9d5fad8b5f78ca376fbad6430e888edd2dfd1c6eb", + "rev": "d3603ee18299b789be255297dc42af16dd431869" + }, + "recipe": { + "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs", + "ghc", + "helm" + ] + }, + "projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "dash", + "pkg-info" + ] + }, + "fabric": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/fabric.el.git", + "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "rev": "004934318f63d8cf955022f87b2c33eb97ada280" + }, + "recipe": { + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "sage-shell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/sage-shell-mode.git", + "sha256": "1c61b8c3125c9c029452b9a05fcefa3215a65646f5ab60df46023c9c8e3ca5ce", + "rev": "8e659438ff419f7f1fddd1b56fb706dbecf9e469" + }, + "recipe": { + "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.8.9", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck.git", + "sha256": "f945da0f043a220fd0dd78d22366cc79a9a60bb80b25f3e51c2b7f17e0e9ef61", + "rev": "efaf2e3894428fec065ac6ab0b204db66dbdaa85" + }, + "recipe": { + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.25.1", + "deps": [ + "cl-lib", + "dash", + "emacs", + "let-alist", + "pkg-info", + "seq" + ] + }, + "cuda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chachi/cuda-mode.git", + "sha256": "5d728e7b073f3959c550a986742b891bb466cdca87f00fc1967356850ef8db77", + "rev": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf" + }, + "recipe": { + "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired+.el", + "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + }, + "recipe": { + "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/mocker.el.git", + "sha256": "02769eb735b52f2a0f96f992d659685522813c42f922bcd5ebc3ec40aa3a5bd1", + "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "eieio", + "el-x" + ] + }, + "hide-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-region.el", + "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval" + }, + "recipe": { + "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pungi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/pungi.git", + "sha256": "f55917cbfe377b1c4088a5f4169e8977f106a7f483ef80b48d1b529ee1d95404", + "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/colorsarenice-theme.git", + "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.20", + "deps": [ + "emacs" + ] + }, + "browse-kill-ring+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el", + "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca" + }, + "recipe": { + "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "browse-kill-ring" + ] + }, + "ace-jump-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-buffer.git", + "sha256": "fa652b2e228226c215e09fcc391984ce0afd58cfc7eb8babd2359895295002fd", + "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7" + }, + "recipe": { + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "find-dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/find-dired+.el", + "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2" + }, + "recipe": { + "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-octave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/ac-octave.git", + "sha256": "aef1b37cddecb17d908001fd2d031f4f9114f8ce9e2470a4d31679f3db86c899", + "rev": "eb6463631a69dfd06fe750c1c155594d11de0590" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete" + ] + }, + "ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ansi.git", + "sha256": "cc8e3a51e192745f9d738cb5e5f23a72713cc118db5d13afdd61367bc8b04e16", + "rev": "a042c5954453bab9a74177e2b78ad17a824caebc" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [ + "dash", + "s" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-describe-bindings.git", + "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "birds-of-paradise-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", + "sha256": "5acd6d3cbd05bf6d8d480c5994f1a2e6fb59bb13bfa30ffb30067915084effbf", + "rev": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa" + }, + "recipe": { + "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/elixir-lang/emacs-elixir.git", + "sha256": "89ab5d3eb060ba3c2cadc5605eab0976ec331b6621d777e47bf8a998b72fdb1b", + "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.8", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/hookify.git", + "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/gntp.el.git", + "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/github-browse-file.git", + "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/diminish.git", + "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", + "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + }, + "recipe": { + "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.44", + "deps": [] + }, + "easy-kill-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/easy-kill-extras.el.git", + "sha256": "20aee5587b635e522b0d0c9bbe5dde8b84e2017e8037a7389ac1a4997ea7cda1", + "rev": "242844bc95b9015396405d84c4335338037968c3" + }, + "recipe": { + "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/projekt.git", + "sha256": "08fd5f68bbbfc87f36dd8cc476da7141fc7be1a46c9a11e4e179aceb042f85e7", + "rev": "107232c191375b59d065354470d0af83062e2a4c" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "naked": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/naked.el", + "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi" + }, + "recipe": { + "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ranger.el.git", + "sha256": "288588d875c4a38106af55b08b4c7a971c86faed68e670c52119ac0c6e42723a", + "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.7", + "deps": [ + "emacs" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/yascroll-el.git", + "sha256": "1fb71ec47cd5db6b84762efa31cee68bc138a8b151bc034711f3b467f819e800", + "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "date-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/date-at-point.el.git", + "sha256": "e9ba32c149a949cec5834a61f3b82ef58b66d84d489f53a2c2252426787e75a5", + "rev": "662f8350a83311503dc0aae47a28752f9f1270c9" + }, + "recipe": { + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "flycheck-ledger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-ledger.git", + "sha256": "66b10443c2b728a856c19f5aeeb3a77991ab8dd8d251fa992bd523340bd7badd", + "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e" + }, + "recipe": { + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/killer.git", + "sha256": "d420457dda39d440224a4a33271b5f679fb983b2fa4ef4c6dafb5f1e15a3be46", + "rev": "52256640aebbb8c25f8527843c2425b848031cd8" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/flycheck-tip.git", + "sha256": "03f13fadd0b9c4547d6212f05610e612579a59381016e657e05c848bcd8e5a61", + "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "emacs", + "flycheck", + "popup" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/victorhge/iedit.git", + "sha256": "e240bd5d73807651ea9a04208b20e6d83b5d4154b66d9bfec7449e184104445f", + "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.9", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-alert.git", + "sha256": "fb08773ac2d47cc4c4397a9db227c81a4dd689568ce4678b2b977f34eb652890", + "rev": "879ea638120639299aae602f06c46d9c27312ff1" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "alert", + "term-cmd" + ] + }, + "org-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/org-vcard.git", + "sha256": "c47bd23b8776fe466110de600193b99e6ae2c06dc583d84ec7c18bf034bec4e1", + "rev": "5c4e17c166fb0406d5dfdc8876b0e182ba7af8fd" + }, + "recipe": { + "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "eide": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git", + "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271", + "rev": "524494fd2b23217c6807b30b43bb95b5724f809e" + }, + "recipe": { + "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [] + }, + "simple+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/simple+.el", + "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" + }, + "recipe": { + "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "strings" + ] + }, + "weather-metno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/weather-metno-el.git", + "sha256": "3d9baeea5611b478eb1c447ffca1269bf98fe83b1130e80743715de3f8e43ea3", + "rev": "b59680c1ab908b32513954034ba894dfb8564dd8" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gitconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/gitconfig.el.git", + "sha256": "9b10b3d62ce88daa8831594bcb589d0320e4de1fdc0331dbe9f5aa08b9371c48", + "rev": "6c313a39e20702ddcebc12d146f69db1ce668901" + }, + "recipe": { + "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "auth-password-store": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/auth-password-store.git", + "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" + }, + "recipe": { + "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [ + "cl-lib", + "emacs", + "password-store", + "seq" + ] + }, + "cpputils-cmake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cpputils-cmake.git", + "sha256": "c484cc2f6d0334b4db9d28b40bba28cde8ce15ede3812cc869a6d7b4d36a7f9d", + "rev": "d11e5496a0bf885900e7d0d004decc66f95dda3f" + }, + "recipe": { + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-anzu.git", + "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.59", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "format-sql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/format-sql.el.git", + "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" + }, + "recipe": { + "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/writegood-mode.git", + "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.2", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/simpleclip.git", + "sha256": "cbd26ff22ff3360b12e1690ab3fed6335146a4981298774297b7dea3994447b1", + "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/pallet.git", + "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "cask", + "dash", + "f", + "s" + ] + }, + "org-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arbox/org-sync.git", + "sha256": "0e7defe6571bc6697dfb7c6c1e351fbed36ed13c79af8ff2ad08f74610366bb7", + "rev": "8c65dceaa2f3d436f83ed591916f22556a6e7f91" + }, + "recipe": { + "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaron-em/rcirc-styles.el.git", + "sha256": "76f7fa9563766606fd159ad52a3217aca64cffa0b7a2c4100f5825ee55ae8ff8", + "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib" + ] + }, + "key-chord": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/key-chord.el", + "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg" + }, + "recipe": { + "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "yatemplate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mineo/yatemplate.git", + "sha256": "481b34908818b9a3c20994241cd59604aa8152921d6f88f4c583f87c8f54f4fa", + "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajc/nginx-mode.git", + "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/emoji-fontset.el.git", + "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ergoemacs/ergoemacs-mode.git", + "sha256": "d04116072b6b4eaeeb9aee59c8b1dddecea67c833112e1667045fe6e9adbd954", + "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.14.7.3.1", + "deps": [ + "emacs", + "undo-tree" + ] + }, + "cyphejor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/cyphejor.git", + "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" + }, + "recipe": { + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "guide-key-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/guide-key-tip.git", + "sha256": "a39777308865e3d00de50254daf310cbaeb07a3e37be1b38baef3d21a1631510", + "rev": "e08b2585228529aeaae5e0ae0948f898e83a6200" + }, + "recipe": { + "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "guide-key", + "pos-tip" + ] + }, + "apache-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apache-mode.el", + "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik" + }, + "recipe": { + "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-racer.git", + "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "auto-complete", + "cl-lib", + "racer" + ] + }, + "nemerle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rsdn/nemerle.git", + "sha256": "e8c7798e8a4b02040e5b5a055bb41fc3f07bf0743dfb2004268074a3d8e2fb34", + "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60" + }, + "recipe": { + "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-terraform-mode.git", + "sha256": "768dadff0ed54515f9608800f513542f98d7f75044d4a5ef4b3aa0d9b5e42214", + "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib" + ] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elpa-audit.git", + "sha256": "7de472b1c16b50d2ac81845df3d21a9b790f71916a868ee0eeac01e801809d50", + "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ruby-block": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ruby-block.el", + "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq" + }, + "recipe": { + "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "inline-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", + "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" + }, + "recipe": { + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "fsharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", + "sha256": "e33f9218a55ef0461e9a7cdaea2ce3bf6996faf6c96486e5fd097c2311586e8c", + "rev": "21ec2209cf0aa33f6046735e2455fe58490b7406" + }, + "recipe": { + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.1", + "deps": [ + "auto-complete", + "dash", + "popup", + "pos-tip", + "s" + ] + }, + "mmm-mako": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pjenvey/mmm-mako", + "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr", + "rev": "5c9ff92137b5" + }, + "recipe": { + "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "mmm-mode" + ] + }, + "auto-complete-pcmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-pcmp.git", + "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" + }, + "recipe": { + "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "macrostep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/macrostep.git", + "sha256": "eeaf77cc89002d23c35b3e01ee99879c3a35ac3d12d7469ab7a07a99e357c24a", + "rev": "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a" + }, + "recipe": { + "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "keydef": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/keydef.git", + "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.15", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-coffee.git", + "sha256": "0ba81f88c646b0f2cd8b910150eaedbf2b0dce9811d82b803ce6a18fa3247ee9", + "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.12", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-svn.git", + "sha256": "c85c3590b4a58a6dcc2469edf1438e4011e92738e34a0a293729363434c01fbd", + "rev": "c6222981d4aae088d658cce5e58a14efea8590d6" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "hl-defined": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-defined.el", + "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y" + }, + "recipe": { + "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "diffview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgalgs/diffview-mode.git", + "sha256": "e60f691a7eb49bfda1d8e7279b8d9d5768489e77e7c0aec532e344407d7d22b2", + "rev": "471dc36af93e68849bf2da0db991e186283b3546" + }, + "recipe": { + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "tree-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tree-mode.el", + "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx" + }, + "recipe": { + "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-cscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/helm-cscope.el.git", + "sha256": "2c9d13a87a81c59e1c6ccbae2f4672f511d6516b07b947cb0ea40af1099bd876", + "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288" + }, + "recipe": { + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs", + "helm", + "xcscope" + ] + }, + "cil-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ForNeVeR/cil-mode.git", + "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "rev": "1cacd8bca125dbdeb97fdf156e32c2b74bac2186" + }, + "recipe": { + "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/babel.git", + "sha256": "39b6b01990badd4b937bb9e462f4d39e44a179fef719e87304eb846ba53ef0fa", + "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [] + }, + "hide-lines": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-lines.el", + "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2" + }, + "recipe": { + "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-firefox.git", + "sha256": "44e25977368189a7f1ca1a1e9778b810da20db759ad3b01c7f920af1a7b3fc77", + "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "engine-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hrs/engine-mode.git", + "sha256": "5c1bec4cf6afad4a22f64d9db176cf50913c3ec23b55c0576b40dc98461e4ab7", + "rev": "9e8b10b029f63bc0399f8975a28247eaa78dfcbc" + }, + "recipe": { + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "textmate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/textmate.el.git", + "sha256": "58e075cee06e236462beda466363f565ed6f36a4d31856563ca36517ce8598cc", + "rev": "484845493a3c9b570799aea5195a5435a5a01b76" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/squiggly-clojure.git", + "sha256": "ed89d95e003327c50c9f78713236b626ad4f6afad681909cbe0d99c7f59dfb2a", + "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "modeline-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-char.el", + "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi" + }, + "recipe": { + "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/el-autoyas.el.git", + "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "system-specific-settings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", + "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" + }, + "recipe": { + "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "windata": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/windata.el", + "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" + }, + "recipe": { + "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ert-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-async.el.git", + "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "textmate-to-yas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/textmate-to-yas.el.git", + "sha256": "87fb26aeceb8d5b15d4dcddf878fd6428b0592d2af30451e194e7b65cfba4a3a", + "rev": "8805e5159329e1b74629b7b584373fc446f57d31" + }, + "recipe": { + "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.21", + "deps": [] + }, + "dracula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenorocha/dracula-theme.git", + "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" + }, + "recipe": { + "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "emacs" + ] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hisea/elixir-yasnippets.git", + "sha256": "3fcf57d4937e80032d25b658c4a70e17965e529c18db2ec35d8231e6f480a537", + "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "yasnippet" + ] + }, + "misc-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el", + "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq" + }, + "recipe": { + "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-mode.git", + "sha256": "debf980d5421a33089434d488631504641a3b81110bb9f44b3bb998a79acb264", + "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "php-mode" + ] + }, + "company-jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-company-jedi.git", + "sha256": "79622ef1df065fd2af7524b46be9695b039693045b6d22d87d455aa81b0f0742", + "rev": "5533e12d6895be1d0909c73374f704e7dd13c055" + }, + "recipe": { + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "company", + "emacs", + "jedi-core" + ] + }, + "termbright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/termbright-theme-el.git", + "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "rev": "bec6ab14336c0611e85f45486276004f16d20607" + }, + "recipe": { + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "list-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/list-utils.git", + "sha256": "d4df944deb07788d680ec83df1f2f977944faa0f2d91e87d132c191ac0f5ac2c", + "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ack.git", + "sha256": "a40a1b043251c0fa83902e4f18d8ee583e57235f575d82bf4144450547e586ae", + "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [ + "cl-lib", + "helm" + ] + }, + "packed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/packed.git", + "sha256": "91d93518b6a8dea48516e82e85bce0779700364b2cb51f42ca6870b90905b44c", + "rev": "478613da38b0a47f4419acc50017ac871433b13c" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib", + "dash" + ] + }, + "guide-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kai2nenobu/guide-key.git", + "sha256": "c40fd6d06cdf9fcdda09394c0f2558b240e93aceb66f054b8d88d6b1a0f71501", + "rev": "626f3aacfe4561eddc46617570426246b88e9cab" + }, + "recipe": { + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.5", + "deps": [ + "popwin" + ] + }, + "pip-requirements": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/pip-requirements.el.git", + "sha256": "7a8f5664aac4eae210e96c5d1c7287ec1bc0f400de921b519bd0555342224fb7", + "rev": "733ec3e4c30875944601b566e9dba6ef05812fcd" + }, + "recipe": { + "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "dash" + ] + }, + "cliphist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cliphist.git", + "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "popup" + ] + }, + "haskell-emacs-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "synosaurus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rootzlevel/synosaurus.git", + "sha256": "02ca926eeb8bf0dcb98281634980ab6e21ca60ba5b1424d7ece75e9aa9932242", + "rev": "56efdc38952b9bd56a445591fcdeb626aede8678" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib" + ] + }, + "flycheck-color-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-color-mode-line.git", + "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" + }, + "recipe": { + "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/ph.git", + "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/es-mode.git", + "sha256": "53c27c18e729bcf01b2dfa811fb291d3e1b9cfacb296ec6628692ada7e6cbe80", + "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.0.0", + "deps": [] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-ruby.git", + "sha256": "a55cd028a0fae7e4f52df164fd3a0cf5353ef30d219831e1f0e3388aad420d31", + "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "commander": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/commander.el.git", + "sha256": "c4dff12a535a110fd209b5babd0692f51215e9ec27e7eace0b57bcb494849a2c", + "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "olivetti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/olivetti.git", + "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" + }, + "recipe": { + "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gmpl-mode.git", + "sha256": "61938c80449fa09a326120975bbb0a4f635048cfcad4923d9ee2cce916490a74", + "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "back-button": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/back-button.git", + "sha256": "06c5fd0c252700985d76841f7cb00121074033d97d80fad40e98fa6fcb21e7ca", + "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.6", + "deps": [ + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ] + }, + "ox-twbs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marsmining/ox-twbs.git", + "sha256": "c922adbbf9140e17b6a08524bbbc025f448c5803707b4c06c9760028eb87ba82", + "rev": "b54058ae4e26e8ce2318c36e5b7369cbbed7c4b1" + }, + "recipe": { + "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/mediawiki-el.git", + "sha256": "3b16a0831d2c765ed84bdac324d86ca3961a0688425a4ebe6e1c6aadf0899691", + "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.5", + "deps": [] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-pydoc.git", + "sha256": "870f16c968f4a252251058dcf2dc96891d476705de5dea41980117dde4fb57f1", + "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/org-pdfview.git", + "sha256": "929aaf570e20d37d9067aca6cd0cd24b46702aa52758ed1ace4c7e9afd839a92", + "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "org", + "pdf-tools" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/revolver.git", + "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "grapnel", + "json" + ] + }, + "vline": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/vline.el", + "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" + }, + "recipe": { + "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "artbollocks-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sachac/artbollocks-mode.git", + "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" + }, + "recipe": { + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "org-elisp-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/org-elisp-help.git", + "sha256": "1446224783e61a7d83acd53f477369fb6f1a20ca5343f2d3a9ca4dcca461a8a3", + "rev": "0ead4f715b0a8fd21428f763cfc502177d82b3db" + }, + "recipe": { + "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "org" + ] + }, + "elpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/elpy.git", + "branchName": "release", + "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.0", + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "yasnippet" + ] + }, + "fcitx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/fcitx.el.git", + "sha256": "3da89ffffefbe218b44138afd53f743cfda15f85d8b6f4179941e236ffa81dac", + "rev": "bdcbccc04934766e6d3fc54b2bccfe38c25859c1" + }, + "recipe": { + "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/avy-zap.git", + "sha256": "098cf9fa52b9dabba5b7c4c5a82d11287fe8bccb94f0119d39b0e1142f19bb52", + "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/inf-ruby.git", + "sha256": "5fd6d528dcc7528a84cb9734c62052c6ae064e67a4355446c4ce325f76befa87", + "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.4.0", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "backup-each-save": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el", + "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7" + }, + "recipe": { + "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/cl-lib-highlight.git", + "sha256": "9c152f4d82e166f5c5a98d1ade78f20e66eaec78e931f9ecef7474165b896f8b", + "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "ob-http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-http.git", + "sha256": "cd0e118c4e826786693a58b8594ac00e00ef7642a3def528253c563649687b66", + "rev": "89ba18b22cf6b8533358a9c76a82326343391f0b" + }, + "recipe": { + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "cl-lib", + "s" + ] + }, + "wiki-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" + }, + "recipe": { + "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "button-lock", + "nav-flash" + ] + }, + "ac-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/ac-clang.git", + "sha256": "12b0c782dc28657a40c4169b02a5fa7eb18fdbb595b776668d25bae780ac48b2", + "rev": "610ff778697eb5499394be3fc3652756d0bfb772" + }, + "recipe": { + "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "pos-tip", + "yasnippet" + ] + }, + "stekene-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/stekene-theme.git", + "sha256": "eec242ed6ea1369ee35834b251279b588451de7e1c699b689a1d7a8d7035335e", + "rev": "5a5ed0aed5c6c6c56aa1e59516a40c697b04a673" + }, + "recipe": { + "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.15", + "deps": [ + "emacs" + ] + }, + "checkbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/checkbox.el.git", + "sha256": "f4ecf1068bcb02814ae76d3026d3cdf2355757e79f52ea88362666c149e66aae", + "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "color-theme-modern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/replace-colorthemes.git", + "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" + }, + "recipe": { + "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs" + ] + }, + "opam": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/opam.el.git", + "sha256": "c8e7fda52940759e314bf09eb6f1b2650d60543e07a01c775b853bf2de993785", + "rev": "83fb2850d29ec792754e0af18b015e089aad2695" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "deferred", + "emacs", + "f", + "popup" + ] + }, + "zone-nyan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/zone-nyan.git", + "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" + }, + "recipe": { + "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "esxml" + ] + }, + "cursor-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el", + "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7" + }, + "recipe": { + "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/emacs-emojify.git", + "sha256": "c829cee6c7fa5873651329163df4aca312f43d6370555e56098400ba5c43e912", + "rev": "e3c269838277db29560352365b7b9ceb3db9593e" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/sx.el.git", + "sha256": "a7a7db38a7e664b54a70a86472aeb3f525824beced899c2647aa513bd248e3e5", + "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib", + "emacs", + "json", + "let-alist", + "markdown-mode" + ] + }, + "mykie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/mykie-el.git", + "sha256": "8be15aaa2b19239984f619141354667ed7f39d61a8d994d062b14d0e6bf64264", + "rev": "ab8f7549f9018c26278d101af1b90997c9e5e0b3" + }, + "recipe": { + "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/esup.git", + "sha256": "bf4cec8fdda5b56a00e9b551bf7b2a9c038461c0cf71b763bcb140a3a668ebdf", + "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-rsi.git", + "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/letcheck.git", + "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "zoom-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el", + "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y" + }, + "recipe": { + "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "find-file-in-repository": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoffstaetter/find-file-in-repository.git", + "sha256": "2dcb896b642cdc455ba606ecb930a14cfdb53661f2862bcf4b4726fcfe665c56", + "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420" + }, + "recipe": { + "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "auto-install": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-install.el", + "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d" + }, + "recipe": { + "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpenet/clojure-snippets.git", + "sha256": "867aa04bfbec648b281295210c58b4e8ceb61c7b4421f388da461199ea401cdc", + "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "yasnippet" + ] + }, + "helm-lobsters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/helm-lobste.rs.git", + "sha256": "22cfa1913ce86bc58b0440a383066507ffbd08e8e445ad752d2e9daf4f39e62e", + "rev": "d798bebb1a65e255c8ec791753a0c78e6b19243b" + }, + "recipe": { + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-commandlinefu.git", + "sha256": "706e8e12413fd38f3398f77c81cc15e41181bc63c074f9cb9be7e3179a66c1d0", + "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs", + "helm", + "json", + "let-alist" + ] + }, + "ac-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-emoji.git", + "sha256": "7bb2d5f19e5afa5b9aba35cb6dcbd42185d844986afb7756012676b729896444", + "rev": "53677f754929ead403ccde64b714ebb6b8fc808e" + }, + "recipe": { + "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "ido-load-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ido-load-library.git", + "sha256": "212ab3c4e43d6fa97e785fd1e9713b3aef6e0d7c16cbed2c6543dab488b78f24", + "rev": "8589cb1e4303066eb333f1cfc789835d1cbe21df" + }, + "recipe": { + "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/elmacro.git", + "sha256": "30b1dcc07e45fb6c922d79799e060e91764456803ff921b74f7adea9998d5150", + "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "fit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fit-frame.el", + "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1" + }, + "recipe": { + "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-make": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-make.git", + "sha256": "ca3b3ea59d269af0d33a11032917a1473ffd72143d8930dec642494bef029a9e", + "rev": "6558a79d20d04465419b312da198190be6832647" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/beeminder.el.git", + "sha256": "38c80e55438d15e7ea099d1ba355715868d7ffb0c7fd7a5a272ac5faa802a105", + "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "idris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idris-hackers/idris-mode.git", + "sha256": "288613fcd1db826f580766354dcb3127fae1f7a9b246f918b14108d29d18a36e", + "rev": "314a0baea5752069de08e814bb134a9643fb675d" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.19", + "deps": [ + "cl-lib", + "emacs", + "prop-menu" + ] + }, + "exec-path-from-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/exec-path-from-shell.git", + "sha256": "d8e2773e0c2fd6e193e56997d380f399b3a25d7458ff917413fe04e4a2124f14", + "rev": "30c793b388312e5044afb7549b50996bf2b71941" + }, + "recipe": { + "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-symbol.el.git", + "sha256": "d878a11e94cf23173b5d91819cca8a61aed633eb1aadc1fc7a10c5dacfaa5b9e", + "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", + "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "reveal-next": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", + "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" + }, + "recipe": { + "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "vbasense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-vbasense.git", + "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "lively": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lively.el", + "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76" + }, + "recipe": { + "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "creds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-creds.git", + "sha256": "83f8ce55aa2f6346c359a302fefb1f4e42cf603dfc5d5e40a67f982243be8105", + "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6.1", + "deps": [ + "dash", + "s" + ] + }, + "helm-project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-project-persist.git", + "sha256": "33a2bcaa44d86821983183c22fe8f6d7e806acdeb7689bae843bf2469174f0e0", + "rev": "df63a21b9118f9639f0f4a336127b4fb8ec6deec" + }, + "recipe": { + "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm", + "project-persist" + ] + }, + "eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", + "sha256": "259a6dda365422bc4f0c809254f16e28d733cf035bbf1b8a4bb4f63655a29753", + "rev": "b28d9c4d57511072aa17b2464693e38b769482e0" + }, + "recipe": { + "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/httprepl.el.git", + "sha256": "6a8dcdd3de194f8f55e37ab6291f54eabe02b12a1c712dc0c1e3a7179614f8f6", + "rev": "d2de8a676544deed1a5e084631a7799e487dbe55" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "tern-auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" + }, + "recipe": { + "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16.0", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "tern" + ] + }, + "ox-ioslide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-ioslide.git", + "sha256": "9c684f010d49207e9b483ad788f657423e3efbdb4e16dd8d8320efed501ab4e6", + "rev": "e81f7a6dab512da7eaa8c2c50c673538b97db267" + }, + "recipe": { + "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "f", + "org" + ] + }, + "quasi-monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", + "sha256": "6807ae76325c6506c1e4495c9ae63355e1bb09b29ca94deb7a631961166dd551", + "rev": "e329a8d55b22151e29df1f81552a4361f85aeafa" + }, + "recipe": { + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "rfringe": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/rfringe.el", + "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" + }, + "recipe": { + "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "editorconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "editorconfig-core" + ] + }, + "evil-anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-evil-anzu.git", + "sha256": "635af6719d5aa3e38525f9646ee3e28c8e29b4b5fcd78984d979dd34328c9089", + "rev": "64cc08a3546373f28cd7bfd76a3e93bd78efa251" + }, + "recipe": { + "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "anzu", + "evil" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/hl-anything.git", + "sha256": "b47802d0a59f6e45ad6729686d4a1636b7e681e450cc1ae44b29b810e785f3fb", + "rev": "990fe4b323b6222d6c6a35898d8128cddda34848" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.9", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/restart-emacs.git", + "sha256": "97ef135d16e568cefa6f0ef1b80e9731a47d773d361ead6599d2961447e8acf5", + "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "lispxmp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", + "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" + }, + "recipe": { + "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/passthword.git", + "sha256": "d167ccbd4f4e3566fc3aa51fb29d7ca9cbf9c969a482451663583814d3db15bc", + "rev": "58a91defdbeec9014b4e46f909a7411b3a627285" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "cl-lib" + ] + }, + "s": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/s.el.git", + "sha256": "c95259ab71d1f953b7300e29f5c16108f44337db2e0f210ec1698f6105ec6099", + "rev": "b16c6641649cb79435f745863bd76aaed3da3698" + }, + "recipe": { + "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.0", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/sweetgreen.el.git", + "sha256": "b834e70ecc2cdda6e930b1d392fe85de583cda6fa17af950a11a5614e9b31cf3", + "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/immutant-server.el.git", + "sha256": "9da08d58efc99c5fffe1730295ff62d2b189b0bbb6dcfd1f81db7f8f20bec7dd", + "rev": "6f3d303354a229780a33e6bae64460a95bfefe60" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/git-ps1-mode-el.git", + "sha256": "867282922b84a0e78a6fc80ae3497a12b25b47b60bcade9f73a077daf11894e6", + "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/evil-textobj-anyblock.git", + "sha256": "725fcc86659326299879749e9d94f1faa693820f685a765861478a45bf3f4e6f", + "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "evil" + ] + }, + "osx-plist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/osx-plist.git", + "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" + }, + "recipe": { + "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/n3mo/cyberpunk-theme.el.git", + "sha256": "0b341581ec14c75b62368a673db2798810230ab0fc3e690eae795d3a86214e35", + "rev": "ae3f3d14fd92b70c988847aa760967dfff06c796" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.15", + "deps": [] + }, + "elwm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/elwm.git", + "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", + "sha256": "971f8e6bfa542e167ddc184447643b4c1958f46cfd6e7cb33f179803233d3561", + "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/shackle.git", + "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/scpaste.git", + "sha256": "f5bafb3ad1ea01909f4b649f87e39b5324933bb0ad00f7d072a9756ec285488f", + "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.5", + "deps": [ + "htmlize" + ] + }, + "helm-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-themes.git", + "sha256": "6fad66e983daaa7bd17ca4315836b6bebbbe5bd991fdeffc8fb1744164d16464", + "rev": "8c979f4efc6174eed7df5f3b62db955246202818" + }, + "recipe": { + "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.05", + "deps": [ + "helm" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruceravel/gnuplot-mode.git", + "sha256": "1c844c79b48b597f31c01a02f1e093b80c9028627b691f3739cee2d1667d8bbb", + "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-etags.git", + "sha256": "a20500d1add2940e44f8c63dbeb6e3f064960a650fe608ed871299f6f0885646", + "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.06", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", + "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.10", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-hlint.git", + "sha256": "a38ac0d1a28b5e2ff9b2807037c468ae9dee6029d31ffe7d4a9f7685bcce9bda", + "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "emacs", + "flycheck", + "ycmd" + ] + }, + "ansible-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/ansible-doc.el.git", + "sha256": "b79e6e46242288cf7741d768d26f5ad608c862cedc9bad4565cd6b7e6304a61e", + "rev": "6ab94392c860e23439ea3213b74ca56834d1ab14" + }, + "recipe": { + "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs" + ] + }, + "ido-vertical-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/creichert/ido-vertical-mode.el.git", + "sha256": "075a402e74e760a09eba5a1812de96c0cc7ad223592340a21aea6e515c1a7a53", + "rev": "c3e0514405ba5c15b5527e7f8e2d42dff259788f" + }, + "recipe": { + "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.6", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1.0", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "cdlatex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cdominik/cdlatex.git", + "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" + }, + "recipe": { + "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.7", + "deps": [] + }, + "sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "dash", + "dash-functional", + "emacs" + ] + }, + "guru-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/guru-mode.git", + "sha256": "a06bbf201e2c47ecd42775916ca568f09ceb99957a6e262e07cbcdc752c386f8", + "rev": "62a9a0025249f2f8866b94683c4114c39f48e1fa" + }, + "recipe": { + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/msvc.git", + "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "ac-clang", + "cedet", + "cl-lib", + "emacs" + ] + }, + "describe-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netromdk/describe-number.git", + "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "rev": "40618345a37831804b29589849a785ef5aa5ac24" + }, + "recipe": { + "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/smex.git", + "sha256": "45364a69b81d20776b7bdbb98b38634490b0c4238ba38c44b771fc7e4e8192c1", + "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0", + "deps": [] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/fancy-battery.el.git", + "sha256": "63b4cd1df91529341c713dc85c3fa9b5ee67b27378d76ed72881f3e83c6dbd93", + "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "org-trello": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/org-trello/org-trello.git", + "sha256": "aedae59ff245df4c11960ef1d0f6c73ad7edef9af63cfe9adf56cc0927347ae6", + "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73" + }, + "recipe": { + "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.5", + "deps": [ + "dash", + "dash-functional", + "deferred", + "emacs", + "request-deferred", + "s" + ] + }, + "know-your-http-well": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/for-GET/know-your-http-well.git", + "sha256": "2f2e03c099dacf13aff312763dacb2af3bd51837f89bf65a0ca57fd3e6dd218e", + "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/homebrew-mode.git", + "sha256": "252a82e0203233ccbace28fe557a20df9138eb5ee7c57104aa5c3e33bd1e8488", + "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "dash", + "emacs", + "inf-ruby" + ] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "2b6d9dbc07fb68c99fe36c9f0663c67f3e9d0c245c2d226d297641246396b724", + "rev": "f2735d28f50962eb8db717d231e7779bd99bf873" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-java-bytecode.git", + "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", + "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/irony-mode.git", + "sha256": "bac2fbf0bdbc5b105502ee8928d42cc040836604b5a5e62c530904dd4a38a423", + "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib" + ] + }, + "swiper-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper-helm.git", + "sha256": "c47414370da836bac42ab54b931f3b709c237a9e1284df51dcf2b619475b4df8", + "rev": "f3d6dba865629eed8fb14f92dab1fad50734891b" + }, + "recipe": { + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "helm", + "swiper" + ] + }, + "e2wm-sww": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-sww.git", + "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" + }, + "recipe": { + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "e2wm" + ] + }, + "wisp-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/wisp", + "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd", + "rev": "34fc6f12d740" + }, + "recipe": { + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/syntactic-sugar.git", + "sha256": "f99d0ce0d23f308180186b0c748a3f8e66347beaf0f38be92cd9e5215072b8e0", + "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "savekill": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/savekill.el", + "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" + }, + "recipe": { + "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smartrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/smartrep.el.git", + "sha256": "6e30c6384aab88d6a26b9bd5910203aaf3c40075228f86f85f1b519f5f7ab448", + "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/prodigy.el.git", + "sha256": "e4a2630ee03593ab8c4f1d05647f11500e3aa14d75c54e659d0ea52717c32596", + "rev": "7034873908a616853b3a65258a7580a3b402e8a2" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "dash", + "emacs", + "f", + "s" + ] + }, + "scss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/scss-mode.git", + "sha256": "0936cd77ffb8cc071c8cb3869a47c59f266795e597c2fab87d993c745972f27e", + "rev": "d663069667d9b158d56e863b80dd4cc02984e49f" + }, + "recipe": { + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", + "sha256": "700de58289e3cf15637c4b59a6df1c01704340639153adb1385b29d9b21fe4ff", + "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "list-register": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-register.el", + "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l" + }, + "recipe": { + "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "thingatpt+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", + "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" + }, + "recipe": { + "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hide-comnt": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el", + "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn" + }, + "recipe": { + "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/emms-player-mpv.git", + "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "emms" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brunchboy/kibit-helper.git", + "sha256": "fb0b2e37e33849513572b5d8fc82fef2fd28b187f22fdfa8c635c300fb31c14f", + "rev": "ec5f154db3bb0c838e86f527353f08644cede926" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs", + "s" + ] + }, + "slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slime/slime.git", + "sha256": "83978dda1e08373fa2e4de859401de2b892f9808cb0af513aca144ddaa27460c", + "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.15", + "deps": [ + "cl-lib" + ] + }, + "define-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/define-word.git", + "sha256": "2f211540bd9abd369e262aa3eab2155d5b8e64e1cc1ba715158b1df9586ad8d3", + "rev": "38e2f94779652fc6280a51b68dc910431513a8e1" + }, + "recipe": { + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "ecukes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/ecukes.git", + "sha256": "7fa51478598883ba688536380cd98c94b382b27c8727b291145d8aa31b59ed2b", + "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.15", + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ] + }, + "shell-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/shell-switcher.git", + "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" + }, + "recipe": { + "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.12.1", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/haml-mode.git", + "sha256": "168924444661a40ce3a04b230b2e60994eee74ac4cdb66d06b36735f7170d1c4", + "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.9", + "deps": [ + "ruby-mode" + ] + }, + "helm-github-stars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-github-stars.git", + "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" + }, + "recipe": { + "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/elmine.git", + "sha256": "dfad27564b59011c73deb420a54a25ff4a81b324fcdb2339a8055c9b4202f1e9", + "rev": "091f61c70c9e7630a74b7b127488051d143a35e7" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "ace-jump-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-zap.git", + "sha256": "8ad57561be7bc861478564045c86558c340a1f4131c7dd18994de1ef1536cf7a", + "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359" + }, + "recipe": { + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "anchored-transpose": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el", + "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651" + }, + "recipe": { + "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smeargle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-smeargle.git", + "sha256": "83235ec6befe1000f80d16ae9dcaf05636a7c4ebd1f0413201d8e4463da517f8", + "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "epc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-epc.git", + "sha256": "1f254cf7bfa6fe944c67242bea23c2cebc30a195e874f0987eb92df8fea92217", + "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "concurrent", + "ctable" + ] + }, + "suomalainen-kalenteri": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", + "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" + }, + "recipe": { + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2015.11.29", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/init-loader.git", + "sha256": "d9e5689702f7a229afc6ec9a80a66306ce7b472c3ed726c44e1fd9c4b98ea686", + "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [] + }, + "font-lock+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/font-lock+.el", + "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4" + }, + "recipe": { + "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/session.git", + "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3a", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/bundler.el.git", + "sha256": "0dd553d24d928787bec405c592d4f5fdf4daa1bbb614bb69dec74b8221d96e0a", + "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "inf-ruby" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brettlangdon/jsfmt.el.git", + "sha256": "1d1c1914b5a70a06c690bba51bf8e73e3c1a70f7dae122c76269d1ca3bd5555e", + "rev": "c5d9742872509143db0250a77db705ef78f02cd0" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-mode.el.git", + "sha256": "04bf758fafd269d176985fd84a241f3eb5fa0bf5e6acf805f30c43ea23d61ee9", + "rev": "dce210fdde620bed3d179816fda79dc83a66b8de" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/xtest.git", + "sha256": "09ac67e5e3125da57124d65f240e47cf00de12eaaec0d8bca411578629341df3", + "rev": "b227414d714e7baddef79bd306a43024b9a34d45" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/noccur.el.git", + "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "speck": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/speck.el", + "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" + }, + "recipe": { + "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/lispyscript-mode.git", + "sha256": "f2771440e04eb3e0063fd4269f9b41ad74bc5a6864a47656f4f4b426e1fa948b", + "rev": "9a4200085e2a15725a58616d131a56f5edce214b" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.5", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/ac-anaconda.git", + "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaconda-mode", + "auto-complete", + "dash" + ] + }, + "fliptext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fliptext.el", + "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw" + }, + "recipe": { + "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs", + "git-commit", + "magit-popup", + "with-editor" + ] + }, + "sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly.git", + "sha256": "9eba7edf46db8987d3d8d42fcf4dde7fbbdcef15a7f29f09ef6d32322442770c", + "rev": "1942c53fc40fd6ace0e822b5c9bf551f59061f32" + }, + "recipe": { + "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.14", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-stgit.git", + "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [ + "emacs", + "magit" + ] + }, + "shelltest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rtrn/shelltest-mode.git", + "sha256": "bacfb378ce6ccd095e2ccbbc865d9bec7a239348578651842a67fb20375fc756", + "rev": "fead97c7ff1b39715ec033a793de41176f1788f5" + }, + "recipe": { + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "tagedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/tagedit.git", + "sha256": "950cdd0b92e25fc9bfe7d60061cee1d3a22e688a2b1f5983f98b996a3ff93035", + "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.0", + "deps": [ + "dash", + "s" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/navi.git", + "sha256": "72a4847930f56b502ddcc2ea3730410965c1f652cca89a3e0f8e2cbe21ec9ec6", + "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-sass.git", + "sha256": "e189465dc3913a629853321f5144fe92d9a6a8969e187a951f04bed13860cdae", + "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "flymake-easy" + ] + }, + "sackspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/sackspace.el.git", + "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.2", + "deps": [] + }, + "org2blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/org2blog.git", + "sha256": "f46457d13a51f2ffdccd86395bcbda6790adc05afab4ea67d1440f2bcf21612b", + "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "metaweblog", + "org", + "xml-rpc" + ] + }, + "mhc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/mhc.git", + "sha256": "5de67a67ba5c00b4003fd07a939e989395db60d3dc4129ce228961ff50e6f290", + "rev": "46d2a983b77b3139c9694ffba16ae875edc7d5b0" + }, + "recipe": { + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-ghc.git", + "sha256": "afea0aefdb018729e8c73b2ef59a9800fc7a666088e544ab824806248b4b8f13", + "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "ghc" + ] + }, + "evil": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/lyro/evil", + "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3", + "rev": "73ad80e8fea1" + }, + "recipe": { + "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.8", + "deps": [ + "goto-chg", + "undo-tree" + ] + }, + "ruby-end": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-end.git", + "sha256": "6467b8c73cd98f11a4402415753f3189fcf0511d7042db0a593cb709f2d1b29b", + "rev": "648b81af136a581bcef387744d93c011d9cdf54b" + }, + "recipe": { + "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [] + }, + "f": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/f.el.git", + "sha256": "fad74e0febe9e7bb8a7dde19366b6b44b20a96cdf839aeb44b242502b7e3790a", + "rev": "7003428ead6d80e81ff14c3614239efdbce7391b" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.18.0", + "deps": [ + "dash", + "s" + ] + }, + "ac-cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/ac-cider.git", + "sha256": "c979c406c5fd29220ad7f46dbf558497417078028126f18574aed3bd3a05f2ee", + "rev": "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4" + }, + "recipe": { + "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ] + }, + "project-root": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/piranha/project-root", + "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8", + "rev": "fcd9df2eadca" + }, + "recipe": { + "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "irfc": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/irfc.el", + "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" + }, + "recipe": { + "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "swbuff-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el", + "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5" + }, + "recipe": { + "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "swbuff" + ] + }, + "sound-wav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sound-wav.git", + "sha256": "465fd9213339a245b3f93c692860247cf5c52807bf4bd33a120b38c60c3ac26f", + "rev": "215e23b118fba11a7132b7c79326ad0a723e2605" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/psession.git", + "sha256": "e8edec68eb59df2342363fa2a95f0685054f5c117db7fb072c1eca9604434a57", + "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/cljr-helm.git", + "sha256": "0a426d4c392c271125a19207b17516beb0bac4b4295b829909d8c75beb46fba1", + "rev": "916d070503d0f484f36626c7a42f156b737e3fab" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "clj-refactor", + "helm" + ] + }, + "ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ansible.git", + "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/japanlaw.el.git", + "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.1", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/link-hint.el.git", + "sha256": "68a0a230e419b312634adc5a75b69c31ef32c5bf5d349b00a3a6fab37b538eec", + "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "dash", + "emacs", + "with-editor" + ] + }, + "json-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshwnj/json-mode.git", + "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" + }, + "recipe": { + "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "json-reformat", + "json-snatcher" + ] + }, + "fountain-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/fountain-mode.git", + "sha256": "b8fd1d7d825997599cfe1cd9ff33909e15e494968811bd82b7f4e19dc6b0cc7b", + "rev": "167238b3cdd5e510300abe3afd02b820f026b501" + }, + "recipe": { + "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "s" + ] + }, + "ace-jump-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/winterTTr/ace-jump-mode.git", + "sha256": "6893c9ba9c6bed8157c926c0eebcd8f676ed01c12f1115625d6329b247898832", + "rev": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71" + }, + "recipe": { + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-translate.git", + "sha256": "3b2a963f859474741476a547a7b959c0ac13b7d8610aef13749d126cba1dd5c0", + "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "google-translate", + "org" + ] + }, + "default-text-scale": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/default-text-scale.git", + "sha256": "0161a470d5da1fc590d5cc335868de67f2339abc6499c74e3812201c34452e0c", + "rev": "c90c08b9fe5f25474067a00c4a4babdb413b25b1" + }, + "recipe": { + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/structured-haskell-mode.git", + "sha256": "b496595dcf8d87b822f3effa1a85a36b6a13cb1fe7959efc28d6037798690ed6", + "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.20", + "deps": [] + }, + "strings": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/strings.el", + "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" + }, + "recipe": { + "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "iy-go-to-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el", + "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi" + }, + "recipe": { + "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "git-gutter-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", + "sha256": "66cce8dfe64ea79ca1e62472f160f44f741f39801f7da57f75698641876b55c2", + "rev": "3efa997ec8330d3e408a225616273d1d40327aec" + }, + "recipe": { + "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [ + "cl-lib", + "emacs", + "fringe-helper", + "git-gutter" + ] + }, + "flyspell-lazy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/flyspell-lazy.git", + "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" + }, + "recipe": { + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.10", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psachin/insert-shebang.git", + "sha256": "31b6c945adcd80ba8b36fc26b703b9532ee68343c8a600aada2a239bb7e9753a", + "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "anything-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", + "sha256": "2d0fbc1db0d4be6a839f2388b9b1ae5f80c43ea9a5f87657e2e575954a489c06", + "rev": "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c" + }, + "recipe": { + "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "anything" + ] + }, + "py-autopep8": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-autopep8.el.git", + "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" + }, + "recipe": { + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "syntax-subword": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/syntax-subword", + "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h", + "rev": "a1e0accb754d" + }, + "recipe": { + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TeMPOraL/nyan-mode.git", + "sha256": "4b0a710b2c25392a3f20940935999d4b491c60271d50eacd99886263b49191dd", + "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-repeatable-motion.git", + "sha256": "6da320bd363ec0f4d025389c65c0b8692d7a64633e3327e15fa687701cbbae6f", + "rev": "69f71c02a1dbec5d7406492449f5c03048d6e529" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "abc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/abc-mode.git", + "sha256": "db675eb1f68af49c9150acd4c427b00bf030e04f64cd09502db593fe7ba2c48d", + "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.944", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/enotify.git", + "sha256": "c5671705a16324e4da80ff60525f5d22f6b266743364fa254809462393b66ebd", + "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [] + }, + "org-outlook": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-outlook.el.git", + "sha256": "eb3cdcf784b90f61dea05aa6f54871e59bb83c52b53615d3af657e4f2fe04cf8", + "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc" + }, + "recipe": { + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11", + "deps": [] + }, + "kill-ring-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/kill-ring-search.el.git", + "sha256": "52cd2895527401bf21354be6ea23f3eef50f707ebdb9ad63080b957c6354ac9d", + "rev": "3a5bc1767f742c91aa788df79ecec836a0946edb" + }, + "recipe": { + "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "scala-outline-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ancane/scala-outline-popup.git", + "sha256": "23f20d5776753125ead2be6e5417a87ea2618039b033ad90661ebe0f43c8f2e6", + "rev": "f950e026ffbf471046f02edea56f0d329cca0e01" + }, + "recipe": { + "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.4", + "deps": [ + "dash", + "popup", + "scala-mode2" + ] + }, + "smart-tabs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcsalomon/smarttabs.git", + "sha256": "9f349f0f0abaa9f7319d83b96cdedec99d15e3b8b3d8ef3167e814a40984d1cd", + "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7" + }, + "recipe": { + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/amd-mode.el.git", + "sha256": "db1e25df20688e9a290ece00cf7d28d553b6a54714e439761253f71cc22deab2", + "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "dash", + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s" + ] + }, + "lua-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/lua-mode.git", + "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" + }, + "recipe": { + "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-window.git", + "sha256": "0607ef26eef8f351173745fccf9dc0791797e72a563892b4dc0de757e56fac1e", + "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "avy" + ] + }, + "ace-popup-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ace-popup-menu.git", + "sha256": "b38c602a7c718376ac55d607e1e2f49071eb40d432ec8626581313c5bf6e84cd", + "rev": "eb8d0d938debdf89575d2ed204aeb7c0b52060b0" + }, + "recipe": { + "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "zoom-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-zoom-window.git", + "sha256": "529cca01315230346f1e4e4a818544c2f7eaef3b7a438cba089cc13c2c938cec", + "rev": "d92dcf265170cf8ea0294d1aaf2e6025eda228e6" + }, + "recipe": { + "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [] + }, + "ghc-imported-from": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", + "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "rev": "fcff08628a19f5d26151564659218cc677779b79" + }, + "recipe": { + "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/company-emoji.git", + "sha256": "89bd9629aa8d549711d274a9158df1b96b1848aac45db654dcc6a4ed55f5ca4c", + "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.0", + "deps": [ + "cl-lib", + "company" + ] + }, + "graphene-meta-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene-meta-theme.git", + "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" + }, + "recipe": { + "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-term.git", + "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "e2wm", + "log4e", + "yaxception" + ] + }, + "files+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/files+.el", + "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + }, + "recipe": { + "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/x86-lookup.git", + "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "badwolf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bkruczyk/badwolf-emacs.git", + "sha256": "14810b3a5875cc11991f35d36920e9e8a601a1e04a6837f0021f2b830e60daca", + "rev": "aa8dfa11da4f24894c8efdcd09fc792325387634" + }, + "recipe": { + "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs" + ] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pezra/rspec-mode.git", + "sha256": "d52d765c4b396436bfb9e133c34fcab50a99a033459e1315a333f8acff592358", + "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [ + "cl-lib", + "ruby-mode" + ] + }, + "mb-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/mb-url.git", + "sha256": "42e575014e3756a0328301cfb2dfb48e960d62942810df8205928178a5e08b64", + "rev": "34234214d1e62b9980cc64dac582e6771c92638d" + }, + "recipe": { + "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "cl-lib" + ] + }, + "shell-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/shell-toggle.el.git", + "sha256": "f8d40d6363946fd69d53d8a1567e3f8f7b415263467af9b7f48aae956d516a73", + "rev": "9820b0ad6f22c700759555aae8a454a7dc5a46b3" + }, + "recipe": { + "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/birkenfeld/idomenu.git", + "sha256": "8264c3b375e802f319cfcf7261deffd7f4dffdb8d2cb4a3c37678f6bf8251e2f", + "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/goto-gem.git", + "sha256": "a79f1941e3925dd8cefc66b6b762f04b50be8da3a88ac18756e2201fb23c18a1", + "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-cua.el.git", + "sha256": "924fe22b5dfa26a4bd5a0efcd9d1285ac2d63e35557733429e635ccaafb0cb1e", + "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/yagist.el.git", + "sha256": "10ed1b028dc775e876754c32b92416b74b1c1380fa3b362124529ccd11422b51", + "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.12", + "deps": [ + "cl-lib" + ] + }, + "maxframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmm5t/maxframe.el.git", + "sha256": "1e20817a8f5fdfdcfb1e8abd30560b9e2f984669ff83db7d920959ca519beb21", + "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1" + }, + "recipe": { + "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/company-irony.git", + "sha256": "9f25a2de3007af631a0d45d0be2a5dd4fdf04b5bcd0ebba3577468f69152babd", + "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "irony" + ] + }, + "easy-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/easy-kill.git", + "sha256": "35359ebb02fd6424042547ec66643b3b523f71c10d43a3fd295f452333b6a664", + "rev": "e3b2442e2096cefff94ea8656e49af07fee58f47" + }, + "recipe": { + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-imenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/dired-imenu.git", + "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" + }, + "recipe": { + "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NixOS/nix.git", + "sha256": "acbc789f5aca62495c5f53bd4fb519fe41b1cf0517f9bca4f516e59060f2572c", + "rev": "71a5161365f40699092e491bbff88473237fc432" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/angular-snippets.el.git", + "sha256": "4a8050fb380c8fe2d1245276b86f3049e73286b24932e0f1827b595563043141", + "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "dash", + "s" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacsagist.git", + "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/yafolding.el.git", + "sha256": "d1a8d0f5d9b527a3f97483c611a31f46d801badec6bc7e648ebad16aaa53f4e6", + "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-cmd.git", + "sha256": "2e00d60dfe2e0999c77f0739d22280150a88c79c5339512411c1f237004f291b", + "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "shell-split-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/shell-split-string-el.git", + "sha256": "e8d7b425c91d840384798cfe7b5626a1a2edcbd5fd675b8552096265ab18a505", + "rev": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb" + }, + "recipe": { + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "evil-visual-mark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-visual-mark-mode.git", + "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" + }, + "recipe": { + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/package.git", + "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "faces+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/faces+.el", + "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + }, + "recipe": { + "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rvm.el.git", + "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" + }, + "recipe": { + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.0", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/isgd.el.git", + "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "swift-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/swift-mode.git", + "sha256": "4d702c5eddb989254cf779c753d4e646e949d686c0e7cdfcb71e5d576be45609", + "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a" + }, + "recipe": { + "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doublep/logview.git", + "sha256": "e8879cbfad63ab4707d951715d68ab76f97a55a612980930319cc306d62361da", + "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "emacs" + ] + }, + "facemenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", + "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" + }, + "recipe": { + "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emallson/narrow-reindent.el.git", + "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "emacs" + ] + }, + "epl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/epl.git", + "sha256": "f2f8994650b852285a09dce3ff9b65d3acd0c0b57766108e669c49721d3bb6a3", + "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "paradox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/paradox.git", + "sha256": "838e99809dfdfd006927e2949ad5fd965cdf33f33c2de1d5d4e70abe7e280030", + "rev": "d62d883b8c980d679970bed79c12091df9120a77" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.6", + "deps": [ + "cl-lib", + "emacs", + "hydra", + "json", + "let-alist", + "seq", + "spinner" + ] + }, + "ix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/ix.el.git", + "sha256": "eaa0ad3db29d0e79210d7e573683a113920fce9474ca46cb4ab4a1b46580fd66", + "rev": "498dac674f4f1910d39087b1457c5da5465a0614" + }, + "recipe": { + "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "grapnel" + ] + }, + "req-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/req-package.git", + "sha256": "ece8ab206556d4c27045d9a9e5351af1a3782ae6daf3eceabcd26b46497bece7", + "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "log4e", + "use-package" + ] + }, + "cmake-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alamaison/emacs-cmake-project.git", + "sha256": "b3af015dad9677d00245ec6e0ebc0f66b4b13c0b84db26edb653f6a784b7b483", + "rev": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f" + }, + "recipe": { + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "matlab-mode": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "module": "matlab-emacs", + "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" + }, + "recipe": { + "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/org-time-budgets.git", + "sha256": "86b8707d377d16c69dc7700a3665554ef1323592a1fd0372e9198be59c143c26", + "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "alert", + "cl-lib" + ] + }, + "fancy-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/fancy-narrow.git", + "sha256": "21e9872e1f435e6e1fc4c7acf88c8d075e9b3fc5a2a851aeee4587faa935ba81", + "rev": "cd381c1acd5e0d9b6acd7f3e76c3b1de21e8b6df" + }, + "recipe": { + "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "dirtree": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dirtree.el", + "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" + }, + "recipe": { + "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "tree-mode", + "windata" + ] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/test-case-mode.git", + "sha256": "bd618ace09584d69e30fef55183008d153426aac52170227492ed2b2a7ff2b24", + "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "fringe-helper" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/fiplr.git", + "sha256": "9bb9875b2c8110ddcd9c21aef65ae8f88e71a9648d675980719da62c13626a6f", + "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "grizzl" + ] + }, + "rainbow-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/rainbow-blocks.git", + "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" + }, + "recipe": { + "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "ucs-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el", + "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4" + }, + "recipe": { + "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dot-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dot-mode.el", + "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk" + }, + "recipe": { + "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ido-grid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larkery/ido-grid-mode.el.git", + "sha256": "8b8ac3b031fa3ddccbaece48689cdf7e9d4b1dc3362518bc602c2b402d333738", + "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab" + }, + "recipe": { + "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.5", + "deps": [ + "emacs" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "company", + "dash", + "dash-functional", + "emacs", + "sourcekit" + ] + }, + "kaesar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib", + "kaesar" + ] + }, + "e2wm-pkgex4pl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", + "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" + }, + "recipe": { + "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "e2wm", + "plsense-direx" + ] + }, + "org-linkany": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-linkany.git", + "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" + }, + "recipe": { + "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "log4e", + "yaxception" + ] + }, + "powershell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/powershell.el.git", + "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/underwater-theme.el.git", + "sha256": "125eafa3c23b23cee42764d051517500cecd46d2a4c1fd6817716041be6f34bc", + "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "column-marker": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/column-marker.el", + "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9" + }, + "recipe": { + "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "bbdb-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tohojo/bbdb-vcard.git", + "sha256": "f62474f3cf4e1657fb80ebdef0ed75893d60cbff3fff27035a2daa9525531a22", + "rev": "9e11fafef1a94bc6395bd1eeacd00f94848ac560" + }, + "recipe": { + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-hayoo.git", + "sha256": "0d07855c576fd17d9adbdd3f3050df3cc4b25132a618541dc09236e001625c41", + "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "haskell-mode", + "helm", + "json" + ] + }, + "igrep": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/igrep.el", + "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" + }, + "recipe": { + "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", + "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edwtjo/evil-org-mode.git", + "sha256": "675e87b22f0ae0c3611c000808563ed46077046f007f144e9e81249613bc8026", + "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "evil", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/modalka.git", + "sha256": "4f6463d8db0cbf332b8acc16a461a605b041f30296782fbe0d651f0fbfa448f0", + "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "subshell-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrewmains12/subshell-proc.git", + "sha256": "ae1f2c78b2c628f3480a80bb534a1cb4bdf0f516aee208866b622862b748a857", + "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b" + }, + "recipe": { + "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "imenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/imenu+.el", + "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" + }, + "recipe": { + "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "phi-search-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/phi-search-mc.el.git", + "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" + }, + "recipe": { + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.1", + "deps": [ + "multiple-cursors", + "phi-search" + ] + }, + "bury-successful-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/bury-successful-compilation.git", + "sha256": "dc476a3cbce544b2146a265560d53dcea251d9e19a7f20a89a4c4ac1e3580a0e", + "rev": "ca58a5df0aa3f266a8df0e3e5d3d962c086be0a9" + }, + "recipe": { + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/html-to-markdown.git", + "sha256": "da321b02f003277a25dc90c4d20ad8967dd1bfb7267f6353c759f25f6843c430", + "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-refactor.git", + "sha256": "2c931ef7fcc4afc2b1220465d2932e64ce6aef2bc325129e702b23381fa2a873", + "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "wacspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/wacspace.el.git", + "sha256": "83ddb67e606e103356d8df08df8e9653b5e9d59235efba14ad19cf8c8a9492f7", + "rev": "b951995c204ff23699d2bda515a96221147a725d" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "cl-lib", + "dash" + ] + }, + "helm-pages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-pages.git", + "sha256": "52a1e29e2d1eea8df36d04ce5c0639d8299a00c68a2aa06195f9938253fc5ed9", + "rev": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e" + }, + "recipe": { + "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "php-auto-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-auto-yasnippets.git", + "sha256": "86624c94b77fd9d672fd17ea6ffe514a0341f8438dc5c0de0fddf419020a417f", + "rev": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf" + }, + "recipe": { + "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "php-mode", + "yasnippet" + ] + }, + "summarye": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/summarye.el", + "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py" + }, + "recipe": { + "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-ls-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-git.git", + "sha256": "e3aa5dbd1ed838f8fbb52ee43b3aef767cbb486a73adda2cfcf99f9bcb0e6d90", + "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2" + }, + "recipe": { + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.8.0", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/hl-todo.git", + "sha256": "b83b44813262ed7a5976a7aa96a1f5af48a72c0d71b1daa3fecd9174dee5391e", + "rev": "878220c111add155b9ee1aeb3d3475cc5e488525" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.5", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cython/cython.git", + "sha256": "76a34abcc29b2cdfb377f36fa550ce7ec678a729ff1b28d8e4e7e92eb642d48d", + "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.23.4", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider.git", + "sha256": "235fe476a251fcaec6b1e363c27a98ecd9976dcfcbbe1d911c3c5bde6c4f62bf", + "rev": "7cc4a192323ef0911c150e6150d3bbd319253342" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [ + "clojure-mode", + "emacs", + "pkg-info", + "queue", + "seq", + "spinner" + ] + }, + "sudo-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el", + "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2" + }, + "recipe": { + "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "levenshtein": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", + "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" + }, + "recipe": { + "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-slime.git", + "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ] + }, + "fastnav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gleber/fastnav.el.git", + "sha256": "cbf0e87027006fde039286dbe5be2e6bc05cc957727991d1b75bd9d2bc11947a", + "rev": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1" + }, + "recipe": { + "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.7", + "deps": [] + }, + "etags-select": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-select.el", + "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb" + }, + "recipe": { + "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "traad-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" + }, + "recipe": { + "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init-viewer.git", + "sha256": "f181a535e9c34ea1d000ef84444d17e9eb7a72523860a54323c45da14822b7f2", + "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init", + "emacs" + ] + }, + "gist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/gist.el.git", + "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "rev": "144280f5353bceb902d5278fa64078337e99fa4d" + }, + "recipe": { + "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs", + "gh" + ] + }, + "clojure-mode-extra-font-locking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" + }, + "recipe": { + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.0.1", + "deps": [ + "clojure-mode" + ] + }, + "ggo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/ggo-mode.git", + "sha256": "ff073c756976e25246e3698260552e4225d58735c57aecac32eead73715239d5", + "rev": "ea5097f87072309c7b77204888d459d084bf630f" + }, + "recipe": { + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130521", + "deps": [] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", + "sha256": "70610f4067e1bb3f5b2d8e14a638a0d3f2f88699850cdb38f0067411a0010c5a", + "rev": "f8db406b7b13a580c142d08865c9a03c101235fa" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "cider", + "helm" + ] + }, + "org-gnome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/org-gnome.el.git", + "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" + }, + "recipe": { + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ] + }, + "osx-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/osx-dictionary.el.git", + "sha256": "7b77e62a818833d7a3cdd516c993ba8ed7bdd7ea0f3e820949b17988f8c7dcef", + "rev": "b909e38723caa37157ad6be90ac107c1c7102e07" + }, + "recipe": { + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "chinese-word-at-point", + "cl-lib" + ] + }, + "zzz-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/zzz-to-char.git", + "sha256": "72e4ea3baaa2f5f29a3780d1e301faecdda8691e5b359c734663d194f423b670", + "rev": "82dc3382e58091ae32160a91e8c781b813faf856" + }, + "recipe": { + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "pass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/pass.git", + "sha256": "5848c7b1eaca4a08c28859acbd04785f0ed0809fe4b1968f02a38eaf26bb7a68", + "rev": "93d99883a95e70f931d2abad87e697f5243115d3" + }, + "recipe": { + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs", + "f", + "password-store" + ] + }, + "request": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" + }, + "recipe": { + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "markdown-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/markdown-mode.git", + "sha256": "89a2577a17836715d06cbeba64364accedaf603bb4cca9627b7e3116ea51ddd8", + "rev": "a3f710de163ec729090ecc13d03e400793fb9e95" + }, + "recipe": { + "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naiquevin/sphinx-doc.el.git", + "sha256": "4feff4aaaf956ac45e63534e9948778cf60508afd9c7139e5f9feffe5132a3fe", + "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "s" + ] + }, + "evil-smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/evil-smartparens.git", + "sha256": "441faf9df12c2ed062fbd39b3b318599088c9943161d46b1a6373e08d528529a", + "rev": "12521212b8e4a02cbec733882bb89c6fac37301f" + }, + "recipe": { + "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "evil", + "smartparens" + ] + }, + "org-protocol-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vonavi/org-protocol-jekyll.git", + "sha256": "3e2718635958f26ff64bac708921fa35c2d667bd2e9ebb640477e75292fcb2b3", + "rev": "c1ac46793eb9bf22b1a601e841947428be5c9766" + }, + "recipe": { + "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "autodisass-llvm-bitcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", + "sha256": "1821eaaa3f6ccff93fea6692df48090142951452bd7cfb6efc3269a139225dfe", + "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0" + }, + "recipe": { + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sourcemap.git", + "sha256": "b11a36528c0f01ccf8561aa73c386f17c8e59fbaa76bc8b1089fceac7fff3a29", + "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "json-snatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sterlingg/json-snatcher.git", + "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" + }, + "recipe": { + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "dired-details": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details.el", + "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza" + }, + "recipe": { + "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-link-travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-link-travis.git", + "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" + }, + "recipe": { + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thoughtpolice/cryptol-mode.git", + "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "company", + "deferred", + "s", + "ycmd" + ] + }, + "literate-coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", + "sha256": "2c388ff418ba113bc02f45c5ff7c2e45692dacbfe45688d21e0cf7e123e1d5bc", + "rev": "39fe3bfa1f68a7b8b91160875589219b214a2cd6" + }, + "recipe": { + "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.04", + "deps": [ + "coffee-mode" + ] + } +} \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix new file mode 100644 index 00000000000..b17bda56c28 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -0,0 +1,42 @@ +pkgs: with pkgs; + +let + + inherit (stdenv.lib) makeScope mapAttrs; + + json = builtins.readFile ./melpa-stable-packages.json; + manifest = builtins.fromJSON json; + + mkPackage = self: name: recipe: + let drv = + { melpaBuild, stdenv, fetchurl }: + let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" + or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit src; + deps = + let lookupDep = d: + self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + in map lookupDep recipe.deps; + meta = { + homepage = "http://stable.melpa.org/#/${name}"; + license = stdenv.lib.licenses.free; + }; + }; + in self.callPackage drv {}; + + packages = self: + let + melpaStablePackages = mapAttrs (mkPackage self) manifest; + + melpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + in melpaStablePackages // { inherit melpaBuild melpaStablePackages; }; + +in makeScope pkgs.newScope packages From 4e99a11653fc91fd5adf7d2738ac4fd1e4eef810 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 19:48:13 -0600 Subject: [PATCH 295/707] melpa-packages 2015-12-14 --- .../editors/emacs-modes/melpa-packages.json | 43714 ++++++++++++++++ .../editors/emacs-modes/melpa-packages.nix | 42 + 2 files changed, 43756 insertions(+) create mode 100644 pkgs/applications/editors/emacs-modes/melpa-packages.json create mode 100644 pkgs/applications/editors/emacs-modes/melpa-packages.nix diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json new file mode 100644 index 00000000000..2e8d323eaa3 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -0,0 +1,43714 @@ +{ + "netherlands-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/netherlands-holidays.git", + "sha256": "bf700dac77d054e1001c125f21168df880526ca172191ae09fc6668b85a46ece", + "rev": "26236178cdd650df9958bf5a086e184096559f00" + }, + "recipe": { + "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1017", + "deps": [] + }, + "qiita": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/qiita-el.git", + "sha256": "45416bcdf7d6404c4a2d4e03ad9cfbb29b94f7716bb82b275c2b272115ddf13d", + "rev": "93c697b97d540fd1601a13a3d9889fb939b19878" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140118.244", + "deps": [ + "helm", + "markdown-mode" + ] + }, + "drawille": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshbio/drawille.git", + "sha256": "cabe02680a026ed6f1e2826b00955254470953c8b79e5576b3c8eae2ed0ac72b", + "rev": "d56a71a168b391365c8d6f567391a6892bbd3909" + }, + "recipe": { + "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1208", + "deps": [ + "cl-lib" + ] + }, + "om-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielsz/om-mode.git", + "sha256": "eb6f3bd5a595f1edea776dfaedf3008d2edd9ace2d7c864ec176cc2ea2585f0f", + "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba" + }, + "recipe": { + "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140915.1610", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outorg.git", + "sha256": "52b9241d44db9495056093c086217511dc73504a875c6f7a32acecc135b18478", + "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1440", + "deps": [] + }, + "cg": { + "fetch": { + "tag": "fetchsvn", + "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", + "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", + "rev": "11136" + }, + "recipe": { + "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.604", + "deps": [] + }, + "helm-ls-hg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-hg.git", + "sha256": "9af53e37e1ff732c1e9a108d63bdabdec5c38c422ab2e2f32b6f9dc923d659d7", + "rev": "61b91a22fcfb62d0fc56e361ec01ce96973c7165" + }, + "recipe": { + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.43", + "deps": [ + "helm" + ] + }, + "wgrep-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.511", + "deps": [ + "wgrep" + ] + }, + "color-theme-sanityinc-tomorrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", + "sha256": "efcb38614d0773c2d67ba48280956b7d3d2489a8339d6e4b01b1a7b88d310cef", + "rev": "cf47d5fb27eed10fbd4e5c1fa10958d862e5a1bd" + }, + "recipe": { + "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1619", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Focus.git", + "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.215", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "xahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xahk-mode.el.git", + "sha256": "a0a0be47cba4a5e6ff21505593a4e143a0b370a649a5b51a8c1782c8f1248735", + "rev": "91301b8eae7fd703b258a4c68066d9d5af943c4b" + }, + "recipe": { + "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.1811", + "deps": [] + }, + "buffer-move": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lukhas/buffer-move.git", + "sha256": "d1a5372dc0a40ed8394a72eb3a5101341eb320eaf303541f1f8826f95c9af8d6", + "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5" + }, + "recipe": { + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.249", + "deps": [] + }, + "slovak-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/slovak-holidays.git", + "sha256": "4870c79b0ca2223d292a7d68b3ee0f14f81afa8a9878fa403280850483572ff8", + "rev": "effb16dfcd14797bf7448f5113085479db339c02" + }, + "recipe": { + "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.355", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", + "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.144", + "deps": [ + "chinese-word-at-point", + "emacs", + "names", + "popup" + ] + }, + "ox-nikola": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masayuko/ox-nikola.git", + "sha256": "672eb9bd73d2dbed1952627b55e946226029d65280a999ab938db4c1cc258131", + "rev": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48" + }, + "recipe": { + "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.516", + "deps": [ + "emacs", + "org", + "ox-rst" + ] + }, + "io-mode-inf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slackorama/io-emacs.git", + "sha256": "1a886ac2ab1e736876596e28f4a1e2b965c44500d9cff6933f858dc026422dab", + "rev": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6" + }, + "recipe": { + "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.1334", + "deps": [] + }, + "emacsql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.2131", + "deps": [ + "cl-lib", + "emacs", + "finalize" + ] + }, + "ido-skk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsukimizake/ido-skk.git", + "sha256": "7e4bba0bc9012e996c49969d9a08e17da222ec24d0deede57c40f2e597fd2c91", + "rev": "89a2e62799bff2841ff634517c86084c4ce69246" + }, + "recipe": { + "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.350", + "deps": [ + "ddskk", + "emacs" + ] + }, + "help-fns+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", + "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + }, + "recipe": { + "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1038", + "deps": [] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/cmake-ide.git", + "sha256": "c0d7fbb8f64d547872f2be4500b834dec605c0a51708ab574743e8465218c059", + "rev": "503374eb9c353c662bddc87bc886db87a231d9f8" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.243", + "deps": [ + "emacs" + ] + }, + "hideshow-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shanecelis/hideshow-org.git", + "sha256": "59d01fd19f386d75e6fe8380bb480f0029d0074f549879d247307e69d33220b7", + "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626" + }, + "recipe": { + "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120223.1650", + "deps": [] + }, + "jammer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/jammer.git", + "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.814", + "deps": [] + }, + "ghci-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/ghci-completion.git", + "sha256": "b89059723986ccffaf11919f3be7b5d7c884eeb8369bbbc65e5b45acc51cd49d", + "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5" + }, + "recipe": { + "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.657", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-sort-menu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el", + "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday" + }, + "recipe": { + "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1640", + "deps": [ + "dired-sort-menu" + ] + }, + "tide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/tide.git", + "sha256": "302f3ca24db4a7494f2cc707804cc7874666372c3549036fae07a2b3e69a2ef8", + "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab" + }, + "recipe": { + "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.245", + "deps": [ + "dash", + "emacs", + "flycheck", + "typescript-mode" + ] + }, + "org-doing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/org-doing.git", + "sha256": "44f1a73184b167680ff7ac32e42d9c3210eeddffe25a8e77d8606b36cdc72097", + "rev": "7d0a8ef5dcd18ee375da6298d96e6858508fb919" + }, + "recipe": { + "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.901", + "deps": [] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-eldoc.git", + "sha256": "3f2f9fd6c9fac4d528f86327d3ec456fece9646e35b566d45394131e2f3180f7", + "rev": "684f1414913c85695eb8ca4a2643cea04ee60527" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.210", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "w32browser-dlgopen": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el", + "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq" + }, + "recipe": { + "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1906", + "deps": [] + }, + "cerbere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/cerbere.git", + "sha256": "9076f7497220261c3e2adbb911b847bd25aba7a3309ac507e229397b1dcf750c", + "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140418.915", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "key-intercept": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/key-intercept-el.git", + "sha256": "448171636b5740ebafff079319275a9b4c7a9dcbd11e2cebf0bec47791767690", + "rev": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2" + }, + "recipe": { + "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.149", + "deps": [] + }, + "grandshell-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/grandshell-theme.git", + "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" + }, + "recipe": { + "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.701", + "deps": [] + }, + "warm-night-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/warm-night-theme.git", + "sha256": "2e4eb75f4c0bb262b9830f17f9899c10a78fb4aa2916698fa29b9b8c8b1687f4", + "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16" + }, + "recipe": { + "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.941", + "deps": [ + "emacs" + ] + }, + "cbm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akermu/cbm.el.git", + "sha256": "fd03cad78656599d6b8094e9b39c28421d19cc1a29566d93bdde827fc4926cac", + "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7" + }, + "recipe": { + "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1404", + "deps": [] + }, + "lacarte": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lacarte.el", + "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" + }, + "recipe": { + "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1750", + "deps": [] + }, + "diff-hl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/diff-hl.git", + "sha256": "824fcc32aa45b0060b567590df6bf8c11dfe7d40f6afc2985b1fd8349a672ad8", + "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545" + }, + "recipe": { + "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1915", + "deps": [ + "cl-lib" + ] + }, + "outline-magic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outline-magic.git", + "sha256": "b65b67077ec77998faa2d2fab1e41a5f6d8a201d2198bf23cc87e86321e5cc84", + "rev": "5689436cd67edc86066e51be77fa4e1fe21de507" + }, + "recipe": { + "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150209.1626", + "deps": [] + }, + "vim-empty-lines-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmickelin/vim-empty-lines-mode.git", + "sha256": "4cd668b0c2f0901b316db574011db6a8b21382a6bad5d2b75099224eb2191562", + "rev": "442a29b0ba1635a3b352c9dd1faf9ce99656d048" + }, + "recipe": { + "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2226", + "deps": [ + "emacs" + ] + }, + "mmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/mmt.git", + "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1159", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "fetch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/crshd/fetch.el.git", + "sha256": "c863cfbce6bea622c4c2f0d393b099825bca856d2e0264d0681e013b964b5c5e", + "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06" + }, + "recipe": { + "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131201.130", + "deps": [] + }, + "vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/vimish-fold.git", + "sha256": "f42a36a96efda1684af8ee99f26ba8502c9b2387dc8656f632f3aba3b0ae5bd2", + "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a" + }, + "recipe": { + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1009", + "deps": [ + "cl-lib", + "emacs", + "f" + ] + }, + "stripe-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/stripe-buffer.git", + "sha256": "5d7d0095467659994c2638da006b6ee1825b5d0a95ade6d36a9c352e0e94aa37", + "rev": "c252080f55cb78c951b19ebab9687f6d00237baf" + }, + "recipe": { + "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141208.908", + "deps": [ + "cl-lib" + ] + }, + "web-completion-data": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/web-completion-data.git", + "sha256": "9506f5dfc68369020c3ddc69d996138c29d6fca8d7c6aa29442fd7b413c5488a", + "rev": "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870" + }, + "recipe": { + "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.533", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anwyn/slime-company.git", + "sha256": "5d4ecc72874835fbd67a1c10f647cc9b2313148ac68d6d93bbc171652b4c28fa", + "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.814", + "deps": [ + "company", + "slime" + ] + }, + "flymake-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-php.git", + "sha256": "7b48b5cfaf9f430d21eb3e355f3a7cb613d1bac237c47636975815d4f427465a", + "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66" + }, + "recipe": { + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1302", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1144", + "deps": [] + }, + "cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/darksmile/cheatsheet.git", + "sha256": "b6f72d90c80752b2f05f4df78745b6ddeaea27076b31f49882aedbd5cc3a59ec", + "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1" + }, + "recipe": { + "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.351", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "xquery-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mblakele/xquery-mode.git", + "sha256": "1b15136ee305cad064f7b249171228de45563ef21776a458c54d89554aeed725", + "rev": "ac0ca72ccd575952393804330c3efe3b2271c4e2" + }, + "recipe": { + "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140121.1143", + "deps": [] + }, + "dakrone-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/dakrone-theme.git", + "sha256": "3e4ae035aab8370111205b5e45d6cd0988fd27102a4bfd5e80020b520f80a039", + "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235" + }, + "recipe": { + "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.2245", + "deps": [] + }, + "smart-mode-line-powerline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" + }, + "recipe": { + "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.839", + "deps": [ + "emacs", + "powerline", + "smart-mode-line" + ] + }, + "signature": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/signature.git", + "sha256": "121d9e5fd85cf02ca485764f6224d11b4fe4ebed88ecdb36f123277fe1c999bc", + "rev": "c47df2e1189a84505f9224aa78e87b6c65d13d37" + }, + "recipe": { + "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140730.1449", + "deps": [] + }, + "unfill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/unfill.git", + "sha256": "f8ea4ae43bb4568225ee26d52bacdb0cdd517bc6ccc72719299867b800036d78", + "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4" + }, + "recipe": { + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131103.413", + "deps": [] + }, + "sonic-pi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/repl-electric/sonic-pi.el.git", + "sha256": "8ff8340b8d0ab651524c0fcb40448530841feb495d391eb0b664c8caa788cbe2", + "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09" + }, + "recipe": { + "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.530", + "deps": [ + "cl-lib", + "dash", + "emacs", + "osc" + ] + }, + "org-page": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kelvinh/org-page.git", + "sha256": "13f4b384f9e44a5af55e286f7791451457e55cb45dc419d1470c2effeace97ad", + "rev": "75859f2d7e05be5dd9899f765adbf2e2d434ba83" + }, + "recipe": { + "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.1933", + "deps": [ + "dash", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ] + }, + "auto-complete-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/auto-complete-c-headers.git", + "sha256": "d3a65d244aa18661dacb2272f5f86ef6af97c759f7083af3640f1d78e928b3b0", + "rev": "52fef720c6f274ad8de52bef39a343421006c511" + }, + "recipe": { + "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.2223", + "deps": [ + "auto-complete" + ] + }, + "grails-projectile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yveszoundi/grails-projectile-mode.git", + "sha256": "24f302db5db0468a743b126d34a8d5e6e6eff374d05ce82a95e34190cb253e87", + "rev": "6cb3b7890ce869a911a7b1d5892a6eef7992c199" + }, + "recipe": { + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1329", + "deps": [ + "cl-lib", + "emacs", + "projectile" + ] + }, + "web-beautify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/web-beautify.git", + "sha256": "f4c3cf8429c4820c911d076b2a4d5fbfb964e2838e3dc3f0d676e56ec2cbc24f", + "rev": "be2b9a7f510e1719396ebeab9135bc64f0785b78" + }, + "recipe": { + "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131118.426", + "deps": [] + }, + "inf-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/inf-clojure.git", + "sha256": "ac96038ec0a97ea7f0bc8454af3ff45bf00f4748f9074440222dba04d7f45fee", + "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548" + }, + "recipe": { + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.234", + "deps": [ + "clojure-mode", + "emacs" + ] + }, + "php-boris-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/php-boris-minor-mode.git", + "sha256": "0fb3bfbf7926c6706ea26f0768ea0b86b56958259e5ff05cd7f7a40d10de67f2", + "rev": "c70e176dd6545f2d42ca3427e87b469635616d8a" + }, + "recipe": { + "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140209.1235", + "deps": [ + "highlight", + "php-boris" + ] + }, + "rcirc-alertify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/rcirc-alertify.git", + "sha256": "269aafba76835d0cba1e92314da4724a35e0e310beb5374c42287b16cc4f1b61", + "rev": "ea5cafc55893f375eccbe013d12dbaa94bf6e259" + }, + "recipe": { + "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140406.2019", + "deps": [ + "alert" + ] + }, + "git-wip-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/itsjeyd/git-wip-timemachine.git", + "sha256": "c500243759a5354ae7a2e53ccb91002fec186000d3ca05423556ef794a568fc6", + "rev": "ed4c7931a5f5233bf3e358b1e81647d063526460" + }, + "recipe": { + "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.506", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyagi/shell-pop-el.git", + "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.830", + "deps": [ + "emacs" + ] + }, + "cider-decompile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-decompile.git", + "sha256": "4c5d4a3241b14ab4a25b1f77553f115a1bba2b9b183b1c897a398a3a74319ef0", + "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651" + }, + "recipe": { + "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2337", + "deps": [ + "cider", + "javap-mode" + ] + }, + "j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zellio/j-mode.git", + "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" + }, + "recipe": { + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140702.1009", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/persistent-scratch.git", + "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1143", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-regexp.git", + "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130522.1603", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/djcb/sauron.git", + "sha256": "0f4ce48bb57a4e5904ad005211eaccccafa1e86c46f3ea8e367c5fba20b99316", + "rev": "d7704fd9a0623d862f03f40588ac816a8877f308" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.246", + "deps": [] + }, + "ob-browser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-browser.git", + "sha256": "0c305b8c579872c6eb324c881223945231ec79454b2df258b927865ab6c9d4a1", + "rev": "9271453d28d0912093ab5f91807745ada69ada0c" + }, + "recipe": { + "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.910", + "deps": [ + "org" + ] + }, + "scratch-palette": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scratch-palette.git", + "sha256": "a285a388068e644e916846e07257b92eb1d28809e0c58dc24c82758a17ca6401", + "rev": "f6803b448079f4a81cc699cec7442ef543cd5818" + }, + "recipe": { + "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150225.242", + "deps": [ + "popwin" + ] + }, + "ariadne": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/ariadne-el.git", + "sha256": "f0085977f1be7e1d00a781b2099fe8a71c67deed99c9e54568fa143398e3096e", + "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15" + }, + "recipe": { + "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1111", + "deps": [ + "bert" + ] + }, + "company-ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krzysztof-magosa/company-ansible.git", + "sha256": "2da17ef9067495b225c99c5034f0c1420a4d5fcc961727451dcdf64066001f20", + "rev": "cfe1c915f49d716f30eec654c54db761f662952c" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.450", + "deps": [ + "company", + "emacs" + ] + }, + "flycheck-ocaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-ocaml.git", + "sha256": "58709877cd3eed59cc56cd6b265a21194ae4b47a1f3b706eac27e8c0d194adf6", + "rev": "e4412025f27850918762237fa80b33e285a63e7c" + }, + "recipe": { + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.412", + "deps": [ + "emacs", + "flycheck", + "let-alist", + "merlin" + ] + }, + "eshell-z": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-z.git", + "sha256": "60669592b85874eae37c5d731a2a6de4f4bf5b5b5cb1234eac659db92b17d37e", + "rev": "5a1317a58d9761c200d0ad49dc4793dec9f9490f" + }, + "recipe": { + "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2246", + "deps": [ + "cl-lib" + ] + }, + "fix-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/fix-word.git", + "sha256": "87cbb4b8b6739d3dc7f06e8fa6bcb08dc4c6595744b5130bf47d768ae86628b2", + "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f" + }, + "recipe": { + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.802", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "celery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-celery.git", + "sha256": "53cac21e25ff593a64ea9d7b32088ac9b7cd7e8d20c4c16f51dacfd237202842", + "rev": "5b5b1968fd258c444dc2372e989aab82830004c3" + }, + "recipe": { + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.347", + "deps": [ + "dash-functional", + "deferred", + "emacs", + "s" + ] + }, + "lib-requires": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lib-requires.el", + "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk" + }, + "recipe": { + "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1751", + "deps": [] + }, + "charmap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lateau/charmap.git", + "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131019.2358", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/parsebib.git", + "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.432", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/hindent.git", + "sha256": "1755027326f98d2138a42d1337617be4296f3f08100ebf58ccc49643704d6af3", + "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.224", + "deps": [ + "cl-lib" + ] + }, + "world-time-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-world-time-mode.git", + "sha256": "5102a8ec5d10ac544c58cd40a96db70822f9a432049afac61677599f49ed0044", + "rev": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc" + }, + "recipe": { + "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140627.307", + "deps": [] + }, + "sudden-death": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yewton/sudden-death.el.git", + "sha256": "4b7096f03ed34d11725b62f26f2dd6a7c1e389028ee3b069ecfbf1d0c9ef0780", + "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736" + }, + "recipe": { + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140829.738", + "deps": [] + }, + "multifiles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multifiles.el.git", + "sha256": "b5504ab57618ee9a5b70f3e84389806327052fcdd6c259af5677ee4e742cb0e7", + "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897" + }, + "recipe": { + "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130615.1633", + "deps": [] + }, + "remark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/torgeir/remark-mode.el.git", + "sha256": "de9c6f786c0963f4e30ccaba4ab5d2ed331e50b3fc0b3aa79531e5aa2272738e", + "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b" + }, + "recipe": { + "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1155", + "deps": [ + "markdown-mode" + ] + }, + "flatland-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gchp/flatland-emacs.git", + "sha256": "eefae66bf187442b75d4f4c95b19dc17f6072e84ccc19967fd842b1562a88832", + "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9" + }, + "recipe": { + "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.505", + "deps": [] + }, + "jist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/jist.el.git", + "sha256": "d1aaf371711e217ba2ef48c6c504efeef18d0a2c3bf605d631e295be228535e2", + "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950" + }, + "recipe": { + "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1318", + "deps": [ + "cl-lib", + "emacs", + "magit", + "pkg-info", + "request" + ] + }, + "groovy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", + "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" + }, + "recipe": { + "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "redshank": { + "fetch": { + "tag": "fetchgit", + "url": "http://www.foldr.org/~michaelw/projects/redshank.git", + "sha256": "5547c5db0caa147ae2fa0099b9c58a8629b47bf4facb6c5cc72cee45e84be392", + "rev": "f98e68f532e622bcd464292ca4a9cf5fbea14ebb" + }, + "recipe": { + "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120510.1430", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/simplenote2.el.git", + "sha256": "fab470ba766a029fff743b1687e8c2ea361c10cf2cb6a2f3edd1dc3aa3ff31ac", + "rev": "2a6c539d98968837ec09d2754e9235ff278057a8" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.916", + "deps": [ + "request-deferred" + ] + }, + "pivotal-tracker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jxa/pivotal-tracker.git", + "sha256": "9ad2c6983ab31500ae47bad796cebfff2797b21d78393d4ae538329b66c67ce9", + "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5" + }, + "recipe": { + "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1350", + "deps": [] + }, + "cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake.git", + "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140603.2331", + "deps": [ + "anything", + "cake-inflector", + "historyf" + ] + }, + "realgud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-dbgr.git", + "sha256": "605c2083247f540a5c020eeedc9310af2d2e1b56bce5f567a4f7143e337f8d6a", + "rev": "a216bf09123b48d06f8633c2b99db54818c72257" + }, + "recipe": { + "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.713", + "deps": [ + "list-utils", + "load-relative", + "loc-changes", + "test-simple" + ] + }, + "js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/js2-refactor.el.git", + "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" + }, + "recipe": { + "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.707", + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ] + }, + "ecb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexott/ecb.git", + "sha256": "9b63eb0ed7c19cdbdf415675c0c5ed4658912a74138375d3be2442721ec15b59", + "rev": "071706b22efcfeb65da8381e317220d7f9d8cb54" + }, + "recipe": { + "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140215.314", + "deps": [] + }, + "meta-presenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/meta-presenter.git", + "sha256": "b4901d059a3eb88d11adf9fef628ea327fd41eb9fefbddefb85e563fa02a82f4", + "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f" + }, + "recipe": { + "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.610", + "deps": [] + }, + "kroman": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/kroman-el.git", + "sha256": "d9913350eaafe42d6cb8281704c8e789cb8f57711700f1a567f9f1db60ed5d85", + "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70" + }, + "recipe": { + "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.1840", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-quickrun.git", + "sha256": "4f4f953b07ee98234d1d931e15b8c3a1b4322aac4c23e506cc78f43ed72c64d2", + "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2352", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "enh-ruby-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/enhanced-ruby-mode.git", + "sha256": "f211fb78fb211280d347e538d70425592303c4fb07a2e1800167c240650b6d15", + "rev": "73d949ab1de16a4d3f368cde94dd5403c0402ab4" + }, + "recipe": { + "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.341", + "deps": [] + }, + "ukrainian-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ukrainian-holidays.git", + "sha256": "9f53576e43ce71634a0daddc01f0b43d30c714652532baf89d90a69326237b0c", + "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d" + }, + "recipe": { + "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.849", + "deps": [] + }, + "rsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/rsense.git", + "sha256": "8d505fc69958d42de31f86b0be97120087cb54c156c91058d97354872c0e7976", + "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100510.2305", + "deps": [] + }, + "capture": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashinin/capture.el.git", + "sha256": "2791ae00e04bd895c171cd53effe0f675d5a7d025ece013f43e917a8a5bdf1a8", + "rev": "1bb26060311da76767f70096218313fc93b0c806" + }, + "recipe": { + "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130828.1144", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocodo/ocodo-svg-modelines.git", + "sha256": "8838980eee6f6af0cb93a918073a7d601e6fd2fa3321c928717f7c6634adaf94", + "rev": "c7b0789a177219f117c4de5659ecfa8622958c40" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.919", + "deps": [ + "svg-mode-line-themes" + ] + }, + "jedi-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.905", + "deps": [ + "cl-lib", + "emacs", + "epc", + "python-environment" + ] + }, + "dim-autoload": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/dim-autoload.git", + "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" + }, + "recipe": { + "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1032", + "deps": [] + }, + "sentence-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el", + "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k" + }, + "recipe": { + "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121026.950", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", + "sha256": "a09c6accbdd437ec4b3066723cce656af09046f4d1f0e6515a4776deddb8fb1c", + "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.936", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-youtube.el.git", + "sha256": "bcc84f8e0f6d8b185a967fb79a88357af925c3545e6e1f1526410d3a7a55044e", + "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.1636", + "deps": [] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stevenremot/roguel-ike.git", + "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.929", + "deps": [ + "popup" + ] + }, + "memoize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-memoize.git", + "sha256": "fcf6811b90df7e05974fa72a4ab02966ca087de1596de77066181c515ba65c3a", + "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75" + }, + "recipe": { + "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130421.1434", + "deps": [] + }, + "helm-words": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pronobis/helm-words.git", + "sha256": "f3c6eda1b4b08ff0ea5d3a9f6e5445bab929842ef92b30f4a86e53d5d826e8ee", + "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185" + }, + "recipe": { + "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1518", + "deps": [] + }, + "name-this-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knl/name-this-color.el.git", + "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" + }, + "recipe": { + "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.1530", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "git-messenger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-messenger.git", + "sha256": "029a1b163e3df3ebd617a196c55ea2f2c232a25e46ab4752687f49d57e319953", + "rev": "7b16fdc9f6fd1a3b9c9f212b1633291c4c18fc9b" + }, + "recipe": { + "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.802", + "deps": [ + "cl-lib", + "popup" + ] + }, + "maven-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/maven-test-mode.git", + "sha256": "54bf2197f2bdca7f207bdf695a1a019625c1c37b90720bbf3a9b489f7aa334a0", + "rev": "a19151861df2ad8ae4880a2e7c86ddf848cb569a" + }, + "recipe": { + "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.2357", + "deps": [ + "emacs", + "s" + ] + }, + "rails-new": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/rails-new.git", + "sha256": "a6f61674734ff8a34e233a0d5d2152a4c290f976b33f3a5df657637b5e3aa5a5", + "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283" + }, + "recipe": { + "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141221.249", + "deps": [] + }, + "help-mode+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-mode+.el", + "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j" + }, + "recipe": { + "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1616", + "deps": [] + }, + "nnir-est": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/nnir-est.git", + "sha256": "a1b7f575fac8784e6f630585dff870d1060cff40c688a6d26f09c5f90066fd3f", + "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687" + }, + "recipe": { + "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140301.802", + "deps": [] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/discover-my-major.git", + "sha256": "d5fa5d7c342c305586c9aabd7f840d8bba79f2dd42006e54b16ce138efc92f89", + "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.212", + "deps": [ + "makey" + ] + }, + "never-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/To1ne/never-comment.git", + "sha256": "7cda3a345f1b3fe5e2b15787cbdae530d3b2595e9a337a5aff6c25fbb784d032", + "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4" + }, + "recipe": { + "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140104.1607", + "deps": [] + }, + "helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", + "rev": "b99615090efa622cba280fff0615dc7f269877fd" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1558", + "deps": [ + "async", + "cl-lib", + "emacs", + "helm-core" + ] + }, + "helm-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pronobis/helm-flyspell.git", + "sha256": "f60197147dff9668b91d0ed8cb78edfc42edc3a80243c2908d05fd1afc329320", + "rev": "a9ea896fd932fec15709b88ef8bf101dff261b2d" + }, + "recipe": { + "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1112", + "deps": [ + "helm" + ] + }, + "latex-preview-pane": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsinglet/latex-preview-pane.git", + "sha256": "35f80f98058a99e90427b39c16173d7ff913186ec7e05df668c1b6b0ba12a71b", + "rev": "1a0539ab70eaf5dd31c2c94773dddd6f437fed41" + }, + "recipe": { + "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1503", + "deps": [] + }, + "pastelmac-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", + "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "rev": "bead21741e3f46f6506e8aef4469d4240a819389" + }, + "recipe": { + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2136", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", + "sha256": "a7f3b00a636e83a8c9b483cc565a7f18a923eb03ad04d91667659da155efd250", + "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1059", + "deps": [] + }, + "company-auctex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexeyr/company-auctex.git", + "sha256": "e54ae9c61cc4e8b3760437d5243ce11f60e1b7d537940c7f8386c21c7c7a7e56", + "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b" + }, + "recipe": { + "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.843", + "deps": [ + "auctex", + "company", + "yasnippet" + ] + }, + "newlisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kosh04/newlisp-mode.git", + "sha256": "b52f7f4c61be54848ff900597142db4a1957ec9a5809259818a69bc85d6acbfe", + "rev": "7f44e7c763bd16481e78bced5ff310b8113883e5" + }, + "recipe": { + "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.1240", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-hdevtools.git", + "sha256": "3eb221580d55f199530e3fa89e7886f0279bdc1b4194bfc21816d5821b14f9d3", + "rev": "6997f8d033811b7a169052fa23c086fd8e904edb" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.523", + "deps": [ + "dash", + "flycheck" + ] + }, + "mellow-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mellow-theme.git", + "sha256": "8d165468c7108d0b20b3ff733d52d91ed0bc338dddc232351966fe7c37e4342e", + "rev": "ab72898824af6452d0cefea16e49491e42b660d1" + }, + "recipe": { + "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "org-fstree": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/org-fstree.git", + "sha256": "35000fb42e317ec1a6e6c7b448bfdec7ecf65fd9f5ab4723062513c3a4acba79", + "rev": "24e305c6443be9f45198185772eecfddc390a9ce" + }, + "recipe": { + "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090723.1019", + "deps": [] + }, + "el-sprunge": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/el-sprunge.git", + "sha256": "55859133e51dfa43eb89c7a671cd966750a710acc8fcadc61f457f7324ef4e41", + "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb" + }, + "recipe": { + "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140106.1939", + "deps": [ + "emacs", + "htmlize", + "web-server" + ] + }, + "4clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshuarh/4clojure.el.git", + "sha256": "78769fe6a718d1643b363d3d272a2a36f5206d1b4dbcb3b1948539431e8bcbbb", + "rev": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca" + }, + "recipe": { + "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.1707", + "deps": [ + "json", + "request" + ] + }, + "mustard-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mustard-theme.git", + "sha256": "ee7158f086403aeab07ac0d643cc0c1fd56263493935f7a5792d6db6d782189c", + "rev": "33bc6e3a0e2abc5668afdb349bca7e8b5730582c" + }, + "recipe": { + "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "blank-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/blank-mode.el", + "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv" + }, + "recipe": { + "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.659", + "deps": [] + }, + "sly-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-company.git", + "sha256": "0c4511c2bfccde800c11fed5aa6c213ca73495ea891326414b3430ba58504cdf", + "rev": "21248bd852c9520ec27692f286c5f43b50892b12" + }, + "recipe": { + "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.222", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ht.el.git", + "sha256": "06df27b8f6bdc2e967224e3296cdf0672deb235e7e239a6bdabfb03cb7af8eb5", + "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1315", + "deps": [] + }, + "quelpa": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quelpa/quelpa.git", + "sha256": "4991a1efcc94b010bf936fa5ca05d670e7ad4588012f742ff8b972804f983bb2", + "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443" + }, + "recipe": { + "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.305", + "deps": [ + "emacs", + "package-build" + ] + }, + "erc-yt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yhvh/erc-yt.git", + "sha256": "e9a7bf3aa2f90e9161ad2426542cc6f82c91cda99938a8b2b6db53ad26199cb6", + "rev": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8" + }, + "recipe": { + "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150426.749", + "deps": [ + "dash" + ] + }, + "org-webpage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/org-webpage.git", + "sha256": "119c35c604db42aa7f8791fb8fed233ff70bea63c5097662817192cb54a7ee09", + "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4" + }, + "recipe": { + "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.15", + "deps": [ + "cl-lib", + "dash", + "ht", + "htmlize", + "mustache", + "org", + "web-server" + ] + }, + "elisp-slime-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elisp-slime-nav.git", + "sha256": "fb29682ed4596c3c86dbd219f19636eaf63958646c558bef0353c4caa96b40a4", + "rev": "f6d241b11abbc4064e17e02dbd0bc6c61db256cc" + }, + "recipe": { + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1448", + "deps": [] + }, + "vlf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/vlfi.git", + "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.918", + "deps": [] + }, + "xkcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/emacs-xkcd.git", + "sha256": "579d723ba238b4aafa064319d457698a5be9ed9579ae9c3c9a6e7eccce53a73d", + "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d" + }, + "recipe": { + "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2353", + "deps": [ + "json" + ] + }, + "github-notifier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/github-notifier.el.git", + "sha256": "13cfa4c56479d1aaad3f3f12a8e559ad788020a0f428e3edc74f7c4e549f71fc", + "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a" + }, + "recipe": { + "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.523", + "deps": [ + "emacs" + ] + }, + "easy-after-load": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/easy-after-load.git", + "sha256": "9a90a2db1832ad560d9ce278099636b3c6e7b12e366906cf4fdb789be0d9d8e4", + "rev": "f8e6e10725d80d3b7e8b1ca966de6190089d8f12" + }, + "recipe": { + "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121224.2049", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tripleee/recover-buffers.git", + "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.205", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wcsmith/evil-args.git", + "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140329.1629", + "deps": [ + "evil" + ] + }, + "smart-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/smart-region.git", + "sha256": "4e49d0263fb9abefe8916d00f980f63ff2137d3628876e5f24ae58ea1b4ba540", + "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6" + }, + "recipe": { + "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.903", + "deps": [ + "cl-lib", + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "color-theme-approximate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tungd/color-theme-approximate.git", + "sha256": "b8f31f58cc9ee29a016bfa2c3f608f03a5aaa423fa5cb7188c4c6afc35af1eac", + "rev": "f54301ca39bc5d2ffb000f233f8114184a3e7d71" + }, + "recipe": { + "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.2236", + "deps": [] + }, + "framemove": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/framemove.el", + "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" + }, + "recipe": { + "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.633", + "deps": [] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chillaranand/real-auto-save.git", + "sha256": "821626e1340a05b49398b52b6f59096bbbe09f1bfb739c0a2ddae38af485f0cd", + "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150701.1015", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/ebib.git", + "sha256": "bc7d25e75c5a714dccf98bddba4bddd44b6b67b5f001579769610b2084df47d2", + "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.933", + "deps": [ + "dash", + "emacs", + "parsebib" + ] + }, + "db-pg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-db-pg.git", + "sha256": "0a99697dea53d2bdb5890086050e9961cf6579fa7d9629e044770c3a25c72097", + "rev": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded" + }, + "recipe": { + "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.1302", + "deps": [ + "db", + "pg" + ] + }, + "multiple-cursors": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multiple-cursors.el.git", + "sha256": "0eea70a8598e6eea6073a53a881cfad0cb23cfa9d92f6bd922b72fa71c481226", + "rev": "a393384b3508e7d8d721e66d2bfb97fa7153dd4f" + }, + "recipe": { + "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1425", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-tss.git", + "sha256": "b1f5fd7e423503d67f2fdf3b21795ca97642051159551c585a20663678d8c090", + "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.908", + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ] + }, + "isearch+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch+.el", + "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6" + }, + "recipe": { + "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.941", + "deps": [] + }, + "ac-js2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ScottyB/ac-js2.git", + "sha256": "f3f45de22b0f9c55f0a0d203890465ed29ac29bb4a86c9c3fa576899c718c97a", + "rev": "721c482e1d4a08f4a29a74437257d573e8f69969" + }, + "recipe": { + "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.642", + "deps": [ + "js2-mode", + "skewer-mode" + ] + }, + "turnip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/turnip.el.git", + "sha256": "0447850f0ff7a00029c466c2e5ecc58db4328a2b0fe3d60fb26d9b2e0426144e", + "rev": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de" + }, + "recipe": { + "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150309.129", + "deps": [ + "dash", + "s" + ] + }, + "soft-stone-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-stone-theme.git", + "sha256": "5442437ac0759ff73da86bf3c92632e7b1cd1880bfa007f9af35390d1672150c", + "rev": "fb475514cfb02cf30ce358a61c48e46614344d48" + }, + "recipe": { + "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140614.335", + "deps": [ + "emacs" + ] + }, + "el2markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/el2markdown.git", + "sha256": "b00e0ac52648cd1dca0568849aedcc393951cf717b3a75724d2d867f4aefb40f", + "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d" + }, + "recipe": { + "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.1538", + "deps": [] + }, + "espuds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/espuds.git", + "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.959", + "deps": [ + "dash", + "f", + "s" + ] + }, + "nav-flash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/nav-flash.git", + "sha256": "ded55c914045522ee905087d7cf55ff898f865f4b580ad256b40ef6c84d4be87", + "rev": "53f5bc59e3f32c1192d15637d3979732dacb2c35" + }, + "recipe": { + "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "persp-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.327", + "deps": [ + "cl-lib", + "perspective", + "projectile" + ] + }, + "osx-location": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/osx-location.git", + "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150613.417", + "deps": [] + }, + "objc-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/objc-font-lock.git", + "sha256": "13af9bb5cf13e6b49769de7f3a47e54a6838dd541ae78bdb1979a753aa0d0c8d", + "rev": "34b457d577f97ca94b8792d025f9a909c7610612" + }, + "recipe": { + "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141021.1322", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/unify-opening.git", + "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1848", + "deps": [ + "emacs" + ] + }, + "visual-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/visual-regexp.el.git", + "sha256": "e96b29c145ace240436688038906026fb673330af5898210282ac2ef03d08d13", + "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8" + }, + "recipe": { + "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.719", + "deps": [ + "cl-lib" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/ghc-mod.git", + "sha256": "73f2a33d0b01bf2a743d93f05a8a4bc1f5a2c1df6552db501f3a5904854b0805", + "rev": "e7a186a1035a0b204360698229f974282c5388e2" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1843", + "deps": [ + "haskell-mode" + ] + }, + "orgtbl-show-header": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/orgtbl-show-header.git", + "sha256": "4a7b7c8bf5075a9c9eb0d3f1979ebda51c9c0c9af8ac831d879af1467ed04e86", + "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f" + }, + "recipe": { + "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.337", + "deps": [] + }, + "inf-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/taksatou/inf-php.git", + "sha256": "f94b056d69870bed898876cf9b42d5bdf1bf4c579309a6c59e4dc8d749d2b6fc", + "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a" + }, + "recipe": { + "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130414.221", + "deps": [ + "php-mode" + ] + }, + "omniref": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/omniref.el.git", + "sha256": "c8a61f314cb6cff452ae0857324a2da6dec342579c67f1cf34fea282a5bafbc3", + "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115" + }, + "recipe": { + "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.221", + "deps": [] + }, + "flycheck-dialyzer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-dialyzer.git", + "sha256": "b02b34f56785f9f3f85901696c181bfc9b636fbde0272128edf61e02b239ac95", + "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36" + }, + "recipe": { + "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151024.37", + "deps": [ + "flycheck" + ] + }, + "ninja-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martine/ninja.git", + "sha256": "5968613797683b66c800fd6455d4c4cde42f1868b56952bb573157c218653c46", + "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7" + }, + "recipe": { + "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.2359", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/el-x.git", + "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140111.1601", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/migemo.git", + "sha256": "d99f69932cfe6c2ed5d795a6952d459c7585f8184e1af2807ae943abaaade4ab", + "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.941", + "deps": [ + "cl-lib" + ] + }, + "screenshot": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/screenshot.el", + "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw" + }, + "recipe": { + "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120509.605", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/easy-repeat.el.git", + "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.348", + "deps": [ + "emacs" + ] + }, + "python3-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dvhansen/python3-info.git", + "sha256": "b399f1740e39065c9b2ac2eb3b4605bb3c2a6d0e024d6727fd00473285250053", + "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5" + }, + "recipe": { + "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.31", + "deps": [] + }, + "doremi-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el", + "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc" + }, + "recipe": { + "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.1554", + "deps": [ + "doremi", + "faces+", + "frame-fns", + "hexrgb" + ] + }, + "helm-ad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tnoda/helm-ad.git", + "sha256": "a4d37c5ad3ab20c9ca0735b1d414e09528defb86e9a59289c9f830536c7bae43", + "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55" + }, + "recipe": { + "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.415", + "deps": [ + "dash", + "helm" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-pophint.git", + "sha256": "cc7bc891f13ee8a2d21a65a83f36d94ed04665e1a76c4c241be5d76b9e64d41e", + "rev": "fc02a155e28ae27466bedabc756e75c936b01266" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.1234", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "shell-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-command.el", + "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l" + }, + "recipe": { + "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090621.832", + "deps": [] + }, + "filesets+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/filesets+.el", + "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" + }, + "recipe": { + "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1602", + "deps": [] + }, + "find-file-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/find-file-in-project.git", + "sha256": "1b5c1d9e171bf90695d63bf53c00b6fa75ff93f8c2dbceae27ed7a48968dd20b", + "rev": "e44a77a0143a02b4eecc0b22aece598eaa8cc5ac" + }, + "recipe": { + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.41", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/paren-face.git", + "sha256": "4e25aa2a939bc133f52f9511fab07c54b1e6902206c8cf404cbb11de5059f73d", + "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.2106", + "deps": [] + }, + "racket-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/greghendershott/racket-mode.git", + "sha256": "4806141fc2d889ef586f1bfd4ed4163f8b0cbbc369ea7e224cfc7a42298c5b96", + "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd" + }, + "recipe": { + "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.2152", + "deps": [ + "emacs", + "faceup", + "s" + ] + }, + "mozc-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/mozc-popup.git", + "sha256": "b6ce050255161afdb66a333e3e17bad872e6052daae4aa5fc5f84c6d989c77d5", + "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420" + }, + "recipe": { + "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1834", + "deps": [ + "mozc", + "popup" + ] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/writeroom-mode.git", + "sha256": "c0894df2c685e5e6e1060d664d44941c0498385b3089dff2ff17d9558d849f9f", + "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.301", + "deps": [ + "emacs", + "visual-fill-column" + ] + }, + "use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + }, + "recipe": { + "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1639", + "deps": [ + "bind-key", + "diminish" + ] + }, + "unicode-input": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/m00nlight/unicode-input", + "sha256": "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l", + "rev": "e76ccb549e6a" + }, + "recipe": { + "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.120", + "deps": [] + }, + "highlight-defined": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-defined.git", + "sha256": "c2afb40b7c0bb4dea57570697bb6c265baf18f62aa51dad10e7bb1eda5ed20d0", + "rev": "243478cc204ab42d29805ed610961cbb260c1dfd" + }, + "recipe": { + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141225.930", + "deps": [ + "emacs" + ] + }, + "org-present": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rlister/org-present.git", + "sha256": "d5d567cba724fe230ebc06f73a28385a1027bf35d00dd24ce0b69f7cde5335d9", + "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f" + }, + "recipe": { + "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.1956", + "deps": [ + "org" + ] + }, + "vkill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/vkill.git", + "sha256": "6d3e151a06b53587a028e8e41bd03bbd18d8d7824831aa8c9ada0b686f216841", + "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9" + }, + "recipe": { + "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1222", + "deps": [] + }, + "spacemacs-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nashamri/spacemacs-theme.git", + "sha256": "76aaf6e9fb5e4330a09aaca786a3a2890993d37eaec6d03d6af9e3c26f79e56d", + "rev": "febe56c3e56757b149eac0536c087259782d2345" + }, + "recipe": { + "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.848", + "deps": [] + }, + "historyf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-historyf.git", + "sha256": "055ac1ab1e38aa40aac059b32500e2a55754bf7c639b6962a80f7f41034b84f8", + "rev": "66590519a02816cde8f442032fb144f3c38ebc6e" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1959", + "deps": [] + }, + "dired-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1141", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "skype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-skype.git", + "sha256": "dda5f1947c82c65e9cc84ef76fc80f1f205b9763fd0915981a175a411c3bf23f", + "rev": "c10f96d1d105acee8a9a9804652bf6a813591da4" + }, + "recipe": { + "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131001.2318", + "deps": [] + }, + "flymake-rust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joaoxsouls/flymake-rust.git", + "sha256": "9b2945f59d584dee5f65b660262d1c808a1b5b8e47d7846a85330e04e11eabe3", + "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a" + }, + "recipe": { + "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141004.1752", + "deps": [ + "flymake-easy" + ] + }, + "js-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js-doc.git", + "sha256": "0fd507e941bf24942c98db6f39cd54b568daf0c8f5eb9d25a067071ec3f152b4", + "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6" + }, + "recipe": { + "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131215.719", + "deps": [] + }, + "ess-smart-underscore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", + "sha256": "6507a3af49e1c0c5851cea381d5ed7f82bdca4bcb44743fd234ee30b304aaa07", + "rev": "f3bbee01754888452232b337173b57c6c266de49" + }, + "recipe": { + "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.2051", + "deps": [ + "ess" + ] + }, + "edbi-database-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-database-url.git", + "sha256": "653f834e5296bb0edc43c34f8c4d7499326825f31c75847d59aeb5801815b6cf", + "rev": "08b833584460ddfd4d0d76e5b159625dde684bcf" + }, + "recipe": { + "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.603", + "deps": [ + "edbi", + "emacs" + ] + }, + "geeknote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/avendael/emacs-geeknote.git", + "sha256": "f871883dc71beeac06bc5fda5dbd349a9d0e23c9326e0da9739ab530527d6593", + "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9" + }, + "recipe": { + "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1015", + "deps": [ + "emacs" + ] + }, + "autofit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el", + "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s" + }, + "recipe": { + "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1508", + "deps": [ + "fit-frame" + ] + }, + "winpoint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/winpoint.git", + "sha256": "9e17a401021a83ae1b1abbca82bf5744911e3e600b89a59597e7bd6a5bdc2be3", + "rev": "e6050093c076308184566fa1d1012423d6934773" + }, + "recipe": { + "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131023.1213", + "deps": [] + }, + "vala-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/vala-mode.git", + "sha256": "84f0194fe9e4394026fe489d6f86faff17ff59336ee81b64408773cd50237a83", + "rev": "fb2871a4492d75d03d72e60474919ab89adb267b" + }, + "recipe": { + "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.1725", + "deps": [] + }, + "pinot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-pinot-search.git", + "sha256": "107f25fae7826e4eee1cf1798f02fcd2e69fc7dee7ddb589252ab2eb4a0e83f1", + "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a" + }, + "recipe": { + "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.1426", + "deps": [] + }, + "mmm-jinja2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/beardedprojamz/mmm-jinja2.git", + "sha256": "7ba5e9133c4da4a7f63292ed4dae549ae288c1d651a0fea6bf139c8fd3158cd1", + "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef" + }, + "recipe": { + "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.1334", + "deps": [ + "mmm-mode" + ] + }, + "tronesque-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aurelienbottazini/tronesque.git", + "sha256": "baffc38962b2d7872b40717693919855c8deedbca78700860671493d3b52668a", + "rev": "42093c08a50c860601c364c8a746c803458c10ba" + }, + "recipe": { + "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150125.441", + "deps": [] + }, + "sensitive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/sensitive.el.git", + "sha256": "c3867e6114a4d9ad757aa94929f64869e39a6ab4bdd6255280de88591873923c", + "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3" + }, + "recipe": { + "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.835", + "deps": [ + "emacs", + "sequences" + ] + }, + "dark-souls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomjakubowski/dark-souls.el.git", + "sha256": "99285e21815815686ad20b23305bd24e427de34a59cf33573b20d82481141ef0", + "rev": "94122b1215423e58dcf18584a2bd022029d54d4b" + }, + "recipe": { + "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.628", + "deps": [] + }, + "narrowed-page-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", + "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" + }, + "recipe": { + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.2319", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "thingopt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/thingopt-el.git", + "sha256": "26f3866b02c312fabdb089b34b73ce09af7cba61ee5a4c6934a35abcc7cabf46", + "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8" + }, + "recipe": { + "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.723", + "deps": [] + }, + "broadcast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/broadcast.el.git", + "sha256": "b23698de17ce14481eb0ac9bac4aeb28cbfcf680ceb8378b19c147d67a4ecb70", + "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16" + }, + "recipe": { + "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.2012", + "deps": [ + "emacs" + ] + }, + "lxc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-lxc.git", + "sha256": "38e1c2e21a873af609acb74630a203c9f1465593190bb8e4bfde7b4223980f24", + "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835" + }, + "recipe": { + "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1522", + "deps": [] + }, + "conkeror-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/conkeror-minor-mode.git", + "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "rev": "476e81c27b056e21c192391fe674a2bf875466b0" + }, + "recipe": { + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.1004", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/pycarddavel.git", + "sha256": "5e0a865e6dda8a314685cc2cdc69a37e4ddc57a144492888bf05ef8ca06a9e91", + "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.716", + "deps": [ + "emacs", + "helm" + ] + }, + "org-jira": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baohaojun/org-jira.git", + "sha256": "b7d3b1278fc796b8d2b2611f8a5d807bc9db481d52ad3d87e492c0ef2746ae2c", + "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78" + }, + "recipe": { + "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.758", + "deps": [] + }, + "flycheck-mercury": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-mercury.git", + "sha256": "7fd4ceb23507d70aba19e110d62afb2aae60dada358928033dd50a149e15c7f0", + "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861" + }, + "recipe": { + "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.134", + "deps": [ + "dash", + "flycheck", + "s" + ] + }, + "chatwork": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/chatwork.git", + "sha256": "b4f0b17b28bcb45df20342edcda008b7306579696170b140e6ef97e0de3b7c8b", + "rev": "7a1def04735423d47e058a8137e859391a6aaf7e" + }, + "recipe": { + "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.2148", + "deps": [] + }, + "bookmark+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", + "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" + }, + "recipe": { + "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1047", + "deps": [] + }, + "ert-expectations": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el", + "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7" + }, + "recipe": { + "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "orgtbl-join": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgtbljoin.git", + "sha256": "7a4ccb997f298a005e626e94181fadfd35d4706d5d85a8e6c0a56343c49df5fc", + "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2" + }, + "recipe": { + "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1646", + "deps": [ + "cl-lib" + ] + }, + "sclang-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/sclang-snippets.git", + "sha256": "f0c82d7bd2fda25e1651f5b7cf2b5dd406b5436f9c9f1c4d75155c235ba56b38", + "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58" + }, + "recipe": { + "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.251", + "deps": [ + "yasnippet" + ] + }, + "multi-eshell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el", + "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl" + }, + "recipe": { + "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120608.1335", + "deps": [] + }, + "disaster": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/disaster.git", + "sha256": "8e8b4df8e4588398d775c33f14e6450c4c7c4aa68483bfa8b40708a11f0e1fb8", + "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0" + }, + "recipe": { + "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130509.1255", + "deps": [] + }, + "emoji-cheat-sheet-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", + "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "rev": "96a003127d646a2683d81ca906a17eace0a6413e" + }, + "recipe": { + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150617.831", + "deps": [ + "emacs", + "helm" + ] + }, + "helm-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-proc.git", + "sha256": "469fb2f46f3d509228989689b260f4a0446d6be330e6d62f351884b904bbc168", + "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937" + }, + "recipe": { + "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140504.357", + "deps": [ + "helm" + ] + }, + "minimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dustinlacewell/emacs-minimap.git", + "sha256": "f3b5cb2954cd488010af775ca96cf5263c9ff841405d81b31c429d46cd5a2569", + "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c" + }, + "recipe": { + "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1815", + "deps": [] + }, + "evil-lisp-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-lisp-state.git", + "sha256": "e4a91b18f74749aa993f8ee37339a413cd62baee01e7f61b46facaf5d85916c7", + "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d" + }, + "recipe": { + "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.924", + "deps": [ + "bind-map", + "evil", + "smartparens" + ] + }, + "gitolite-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/gitolite-clone.git", + "sha256": "c1eb3c46f41d04570f463ca3e5c3004020472504446b202d1262c8d72470b731", + "rev": "36e8dbc2906b7bfce382db64211d982c9719ab59" + }, + "recipe": { + "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.839", + "deps": [ + "dash", + "emacs", + "pcache", + "s" + ] + }, + "helm-spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/helm-spotify.git", + "sha256": "13df5bdffb8533943bc5d29974c50765e8963cdab19d01e7d3e4a812a5015698", + "rev": "a1a8275a4769221f7df9a67ed9a028fecbdc29ca" + }, + "recipe": { + "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.1621", + "deps": [ + "helm", + "multi" + ] + }, + "linphone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zabbal/emacs-linphone.git", + "sha256": "9620b6bb636a12db7ad590c0f1a2d8ddef4ea02d2fd5ca99dd10a49f8630db07", + "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302" + }, + "recipe": { + "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130524.609", + "deps": [] + }, + "popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/popwin-el.git", + "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" + }, + "recipe": { + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.800", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-isort.el.git", + "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.1039", + "deps": [] + }, + "theme-looper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/theme-looper.git", + "sha256": "b266e41896ab8836e6ea93184178b90fbc613aab9ae7bd6755bd7896bfaaa4cd", + "rev": "41c15ae98f9406b7932974318a2eada3668a88e7" + }, + "recipe": { + "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.1304", + "deps": [ + "cl-lib" + ] + }, + "org-octopress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/org-octopress.git", + "sha256": "991bbb3008f40605c38fdf613b626369b480d4b0806a4fd425d78fbb7fd8528c", + "rev": "e04d55c3f4bb88e5661ee136cb3a55f998dca931" + }, + "recipe": { + "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.616", + "deps": [ + "ctable", + "org", + "orglue" + ] + }, + "django-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myfreeweb/django-mode.git", + "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" + }, + "recipe": { + "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150207.717", + "deps": [] + }, + "mobdebug-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/deftsp/mobdebug-mode.git", + "sha256": "224959c8146ef3a4edbabfd2887039fdc1ae99f4cd8799871c76bf7b02d19cd2", + "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da" + }, + "recipe": { + "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.2146", + "deps": [ + "emacs", + "lua-mode" + ] + }, + "paredit": { + "fetch": { + "tag": "fetchgit", + "url": "http://mumble.net/~campbell/git/paredit.git", + "sha256": "34dd7d8c07c697b54ea943566e6967012f7366d6f5a21e31e3d768716bc4928f", + "rev": "9a696fdcce87c9d9eec4569a9929d0300ac6ae5c" + }, + "recipe": { + "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.913", + "deps": [] + }, + "gh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/gh.el.git", + "sha256": "c4e24c5352052cce996ddc3d24510a437633c1c63f1797548f743bc52f193e96", + "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1048", + "deps": [ + "emacs", + "logito", + "pcache" + ] + }, + "cider-profile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thunknyc/nrepl-profile.git", + "sha256": "bcd1427312dc30cfc69c01ab13a6799525f1a38898f144a19e6b1bc040a42bfc", + "rev": "9aa7e404f53f5136ac8d15301ce8ca2924785cb3" + }, + "recipe": { + "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.825", + "deps": [ + "cider" + ] + }, + "simp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/simp.git", + "sha256": "4e2dfe90d639614de77397b63137f9e8938b3f5838cdc8af81ad774b96ff0ad5", + "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab" + }, + "recipe": { + "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.1132", + "deps": [] + }, + "org-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/org-grep.git", + "sha256": "2c0186a6fd2f7b33d6b4ab2f1d08a75365b48165b5e113cee7b68641f4c75c82", + "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684" + }, + "recipe": { + "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.629", + "deps": [ + "cl-lib" + ] + }, + "minimal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikame/minimal-theme.git", + "sha256": "bf52c0531516d1956fa41d371286e7ab0f0aea275e3f92cb87fd2fcba7f8c1c7", + "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238" + }, + "recipe": { + "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140409.1801", + "deps": [] + }, + "lispy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/lispy.git", + "sha256": "953f6425ca249ed258360f3775b2aec961ef539238f2b0f52169db7356cd8431", + "rev": "9479a0214656ea2cff5c59d52ab24ced4b09a765" + }, + "recipe": { + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.437", + "deps": [ + "ace-window", + "emacs", + "iedit", + "swiper" + ] + }, + "bpe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/bpe.git", + "sha256": "e80c99d998ece862eb5b143dbe143d4b29eca0f15839bc5ebe94baf0ff08c6c8", + "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189" + }, + "recipe": { + "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141228.1605", + "deps": [ + "emacs" + ] + }, + "sphinx-frontend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/sphinx-frontend.git", + "sha256": "3c977e2a18ff1af362296077380e6695a6e9ee2fe548fccffbe7dd7bce21d7d5", + "rev": "a46e81ce65fd24c03acab9311b162cad21343744" + }, + "recipe": { + "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.412", + "deps": [] + }, + "request-deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130526.1215", + "deps": [ + "deferred", + "request" + ] + }, + "railscasts-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mikenichols/railscasts-theme.git", + "sha256": "b4a367d543fa131c277f1e80a9766e2247bda494149e55ce684cd1ca14cdaeb9", + "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b" + }, + "recipe": { + "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.925", + "deps": [] + }, + "second-sel": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/second-sel.el", + "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd" + }, + "recipe": { + "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1846", + "deps": [] + }, + "on-parens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-on-parens.git", + "sha256": "de18990058fe6e7bb53f3cf6171057dc08aefaa26a1df930e36a0597775b2698", + "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c" + }, + "recipe": { + "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1706", + "deps": [ + "dash", + "emacs", + "evil", + "smartparens" + ] + }, + "ace-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-flyspell.git", + "sha256": "f2e7dbc47fad1f9d6c98c5f37233fce5b243c9aeb9405eba92c02af7570352d7", + "rev": "76c255d91c86b57a07cc7660450e37107d73505f" + }, + "recipe": { + "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150523.1315", + "deps": [ + "ace-jump-mode" + ] + }, + "list-unicode-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/list-unicode-display.git", + "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" + }, + "recipe": { + "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.301", + "deps": [ + "cl-lib" + ] + }, + "import-popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-import-popwin.git", + "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" + }, + "recipe": { + "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.433", + "deps": [ + "cl-lib", + "popwin" + ] + }, + "company-tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-tern.git", + "sha256": "a42f037a7b9c85d4b3078eb7d861b5ff65742c354ab2e2f3e99e49877a414273", + "rev": "bd358af7c1492391ea39d35672ac12f8587ade21" + }, + "recipe": { + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.416", + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ] + }, + "lit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HectorAE/lit-mode.git", + "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" + }, + "recipe": { + "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1136", + "deps": [] + }, + "w32-browser": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", + "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" + }, + "recipe": { + "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1905", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/miniedit.git", + "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100419.1245", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/magit-gh-pulls.git", + "sha256": "6575f8dc757543ca5b7a1afa3806e0c1f5e81ecdb14163ffd019556a507ea40e", + "rev": "728819217c697b4eed996eb14261a8c7c3388df7" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1243", + "deps": [ + "emacs", + "gh", + "magit", + "pcache", + "s" + ] + }, + "pcre2el": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/pcre2el.git", + "sha256": "98508dd642149a5a2a6853a204bee1648556f671fae3bcd475b3ffc5f177c364", + "rev": "57ee828d07953329fd85ff85d6a4f27a0ce512a1" + }, + "recipe": { + "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.434", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "highlight-current-line": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el", + "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c" + }, + "recipe": { + "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20051013.1256", + "deps": [] + }, + "znc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshirokov/ZNC.el.git", + "sha256": "5d577dc03c3c4de11cf5ee24936b18855446fcee8f8daac348291a3c172603d5", + "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19" + }, + "recipe": { + "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140722.1621", + "deps": [ + "cl-lib", + "erc" + ] + }, + "window+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window+.el", + "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz" + }, + "recipe": { + "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1911", + "deps": [] + }, + "dired-open": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "firestarter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/firestarter.git", + "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.815", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/adoc-mode.git", + "sha256": "dc3d45e913c6a541f6c5424ef9728a295bcf9c7fd186a9c4b0d926415dd967fb", + "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1114", + "deps": [ + "markup-faces" + ] + }, + "racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/racer-rust/emacs-racer.git", + "sha256": "224e9d4be82197d5947a64962d80d14850f7d5b0775aee8b225c00f3d1b231f9", + "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd" + }, + "recipe": { + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1916", + "deps": [ + "dash", + "emacs", + "rust-mode", + "s" + ] + }, + "hamlet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lightquake/hamlet-mode.git", + "sha256": "4673ebc8927be06d3d328a4fb44844d76fdf336548acb79c9f3a6da1c3ba59da", + "rev": "7362b955e556a3d007fa06945a27e5b99349527d" + }, + "recipe": { + "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.124", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "simplezen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/simplezen.el.git", + "sha256": "7eeb928c66c04e05be9b03d3709be8013c01d530c7b8f0319c3e2f525970e71d", + "rev": "119fdf2c6890a0c56045ae72cf4fce0071a81481" + }, + "recipe": { + "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130421.500", + "deps": [ + "dash", + "s" + ] + }, + "geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaor/geiser.git", + "sha256": "64c48eb1c4af3b93e2c134691f7d7f3eadec174f90e02a785c6d5fda9016cf89", + "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2122", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/tup-mode.git", + "sha256": "f5db34da14c97f296961f00839fe7369241d1701f2fba803b97bf0c5f74f2b78", + "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1114", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yitang/voca-builder.git", + "sha256": "e56b26d7fd4a35befe4e1e6ff021e07d46deef9d36646d5e6ee9c535bc87336c", + "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150625.1333", + "deps": [] + }, + "replace+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace+.el", + "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" + }, + "recipe": { + "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.833", + "deps": [] + }, + "pager-default-keybindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/pager-default-keybindings.git", + "sha256": "15af81dd529eabfafab29eb20ef6185c8fd828a02ef05688d4c8f2b491c6ba86", + "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3" + }, + "recipe": { + "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130719.1557", + "deps": [ + "pager" + ] + }, + "zotelo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/zotelo.git", + "sha256": "3bd21c9241e540e4e28dbc38c75e60bd897e4573d8b8198f2c78fa14912ed999", + "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.541", + "deps": [ + "cl-lib" + ] + }, + "material-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpaulik/emacs-material-theme.git", + "sha256": "94d38adf5d1cfd3d45a33231ab4405f2da7b01f5220c7b5924ddf886e59af8ee", + "rev": "68a2e4d9f09dc3a45c765edb271c3460af885de0" + }, + "recipe": { + "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.225", + "deps": [ + "emacs" + ] + }, + "helm-dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/areina/helm-dash.git", + "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1347", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/vcomp.git", + "sha256": "347f00aae82976a97c101aab7610f11656208a681f368b4a1c5fb51b9811ff3b", + "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.1708", + "deps": [] + }, + "togetherly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/togetherly.git", + "sha256": "261d05a1f1c81acf56bb4112b4b512c117337d513cf239bf3640885a0d7254b9", + "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7" + }, + "recipe": { + "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.338", + "deps": [ + "cl-lib" + ] + }, + "jsx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsx/jsx-mode.el.git", + "sha256": "085d1c6e2efad81b20653a05b4de34dda7c4a8610b64aee0c49fbaa012c0d190", + "rev": "47213429c09259126cddb5742482cfc444c70d50" + }, + "recipe": { + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130908.1224", + "deps": [] + }, + "literate-starter-kit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/emacs24-starter-kit.git", + "sha256": "6a103abaaf0f541271bea73b451bf8d584b0567a8ed9e32c14f666d0b3893996", + "rev": "6dce1d01781966c14558aa553cfc85008c06e115" + }, + "recipe": { + "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.1354", + "deps": [ + "emacs" + ] + }, + "searchq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/searchq.git", + "sha256": "047a971070c79396759499fa5f1a87d0bf5961b6b219ec6c237e2c59fb46407f", + "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82" + }, + "recipe": { + "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.711", + "deps": [ + "emacs" + ] + }, + "x-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/x-dict.git", + "sha256": "984ed13093537bff67944c2059504a24b65593d19d7c03659b6d5332e17aeb44", + "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee" + }, + "recipe": { + "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1223", + "deps": [] + }, + "tool-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el", + "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9" + }, + "recipe": { + "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1902", + "deps": [] + }, + "python-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/python-info.git", + "sha256": "57c2ff2640ae9a1068e124c86269ef145e374d37276da1ff4e59aa76ca215511", + "rev": "39996472d78420986e62ae9d16bf62a4a26aab60" + }, + "recipe": { + "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141106.1551", + "deps": [] + }, + "mo-git-blame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbunkus/mo-git-blame.git", + "sha256": "d86c884319ad4216ff12ba062036f1c64cd644012787d5d7606c686bc137bbf9", + "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68" + }, + "recipe": { + "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.215", + "deps": [] + }, + "auto-async-byte-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el", + "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17" + }, + "recipe": { + "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.916", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacobono/emacs-gradle-mode.git", + "sha256": "75c6e7dc52730a4fbeccf1095208654e7c8b34597f769b846649d5f7253667fa", + "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150313.1405", + "deps": [ + "s" + ] + }, + "code-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/code-library.git", + "sha256": "78fd611bea8387afe0572344845a34574aac9032a0fe0517381356590feaed2a", + "rev": "af0c971c38bf990415acb2ae8b0b69ecf3faa9fd" + }, + "recipe": { + "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.819", + "deps": [ + "gist" + ] + }, + "redo+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/redo+.el", + "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" + }, + "recipe": { + "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.551", + "deps": [] + }, + "cycle-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/cycle-themes.el.git", + "sha256": "558d0455a7ed2037b2500b9cd6e12e645d94edb1b6e73da0e9f7a7b5f836ba88", + "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898" + }, + "recipe": { + "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.2209", + "deps": [ + "cl-lib" + ] + }, + "ess-R-data-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-data-view.el.git", + "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" + }, + "recipe": { + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130509.658", + "deps": [ + "ctable", + "ess", + "popup" + ] + }, + "string-inflection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akicho8/string-inflection.git", + "sha256": "742f1a8ed45154ab35c1372ecee8edb6fe63a7d94ff70f7a520324b18b932435", + "rev": "147990de9d07d8e603ade92a23ef27a71e52b850" + }, + "recipe": { + "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.456", + "deps": [] + }, + "keyfreq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dacap/keyfreq.git", + "sha256": "8075eda3e4b541e0438015cacf7f3c953b4b1e245136b66e9526a2ea4125bf62", + "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.2205", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/malroc/sourcetalk_emacs.git", + "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140823.939", + "deps": [ + "request" + ] + }, + "darkmine-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/darkmine-theme.git", + "sha256": "9ca754a6ee3a6f6bc4c6aa7c3f4da2323f265d67e6ba923950ff700586194fc9", + "rev": "758ce6adfebbebbf0f714119180ec3992c10894b" + }, + "recipe": { + "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.315", + "deps": [] + }, + "archive-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/archive-region.el", + "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52" + }, + "recipe": { + "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140201.1745", + "deps": [] + }, + "path-headerline-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/path-headerline-mode.git", + "sha256": "d0a64a46534630451458ff067a3bd3b53d815a3778a18c06fec4f4d6c6fe1d7d", + "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69" + }, + "recipe": { + "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140423.832", + "deps": [] + }, + "pointback": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/pointback.git", + "sha256": "5bc1d77d39520386d64071525b4cb8c64d836562585ab0b0640c5b7b8b97cc04", + "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8" + }, + "recipe": { + "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100210.952", + "deps": [] + }, + "vc-osc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/vc-osc.git", + "sha256": "4462dd775c362f6a8c8403e1681957db2d4b758488d6ae715d7c800ade771f72", + "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331" + }, + "recipe": { + "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120910.411", + "deps": [] + }, + "kaesar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.505", + "deps": [ + "cl-lib" + ] + }, + "image-dired+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", + "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" + }, + "recipe": { + "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.44", + "deps": [ + "cl-lib" + ] + }, + "anything-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/anything-sage.git", + "sha256": "f27c45c01f45f0868d868b9e83ef7dd7a20c9ea3aa05569b8fe7596ba2d34875", + "rev": "370b4248935dd4527127954788a028399644f578" + }, + "recipe": { + "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.613", + "deps": [ + "anything", + "cl-lib", + "sage-shell-mode" + ] + }, + "ignoramus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ignoramus.git", + "sha256": "db6c9dce6b9fff5c14efb1514e2d0d8e302e615b47a1e969d2f2a4b7fd4ba749", + "rev": "cab192aa621d1087f2d574b65fffd295c5efb919" + }, + "recipe": { + "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150216.1542", + "deps": [] + }, + "stock-ticker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/stock-ticker.git", + "sha256": "ddc6499eda448381e4149c0572d24b8dc2e82e0d3111bb6af74fc5f0c5783aa4", + "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9" + }, + "recipe": { + "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150204.452", + "deps": [ + "request", + "s" + ] + }, + "telephone-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbordak/telephone-line.git", + "sha256": "f2de1318df480845a76314699f32423e87f7ff84db0995e2d6e874b247d7b2c6", + "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.642", + "deps": [ + "cl-lib", + "eieio", + "emacs", + "s", + "seq" + ] + }, + "ac-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xcwen/ac-php.git", + "sha256": "36e719b810b174f15d0f28b4c50869600deca2242f69c90780b7614a82c253dc", + "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" + }, + "recipe": { + "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2128", + "deps": [ + "auto-complete", + "company", + "dash", + "emacs", + "f", + "php-mode", + "popup", + "s", + "xcscope", + "yasnippet" + ] + }, + "helm-ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-ghq.git", + "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.512", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841", + "rev": "150f52176242ba3bc4f58179cd2dbee4d89580f4" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1359", + "deps": [] + }, + "math-symbol-lists": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/math-symbol-lists.git", + "sha256": "ee58ce2fe0814f7c06bfc0742f6ad2993406f8009e276ca858ad41787b16bbc1", + "rev": "0d9147c6f7432d7b7a1b7c7bba28165202c96d23" + }, + "recipe": { + "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1833", + "deps": [] + }, + "ox-rst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masayuko/ox-rst.git", + "sha256": "a31bd3a0adefbe7e0f7ea8c967b10f5af7483c5cf03725ae3388d5c823b244cb", + "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10" + }, + "recipe": { + "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.143", + "deps": [ + "emacs", + "org" + ] + }, + "multicolumn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/multicolumn.git", + "sha256": "2ea37f52d1d8308759d60bed7263a67165c794f74c13e919a8cdcfdb395057c7", + "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa" + }, + "recipe": { + "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1651", + "deps": [] + }, + "css-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/css-eldoc.git", + "sha256": "3d134ee93fa0fdd14cba5ecc762f6ada5f2b3b1615491f700b37ff06da32ecd5", + "rev": "c558ac4c470742c98a37290e6b409db28183df30" + }, + "recipe": { + "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.2123", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-gtags.git", + "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.820", + "deps": [ + "cl-lib", + "helm" + ] + }, + "chinese-pyim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-pyim.git", + "sha256": "9e70d00f9bdda8168d26582cefeab893cf4eaeb70d3c403373f69baa7396e4b9", + "rev": "e85cf228243555c80fc12de7e43c544733fe8597" + }, + "recipe": { + "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2103", + "deps": [ + "cl-lib", + "pos-tip" + ] + }, + "zencoding-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rooney/zencoding.git", + "sha256": "7997dbfce10c2b80822e91dc4042657910fca951abd297049dfa2d374b907cf8", + "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c" + }, + "recipe": { + "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140213.222", + "deps": [] + }, + "company-cabal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-cabal.git", + "sha256": "e316a40f89ea7759e5cdfdf7ecc5c0de4992bbb968472da8de54bfbda72a8857", + "rev": "29b18d9e6ad3dd5132d795cadcb23ee06203d3ac" + }, + "recipe": { + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.629", + "deps": [ + "cl-lib", + "company", + "emacs" + ] + }, + "borland-blue-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/borland-blue-theme.git", + "sha256": "39197537e262bae8001127322d87f438d8c8339c24d3cf27483fa400b4b7f1e8", + "rev": "4b77caf6f40e2ffb4f37cb6e2c526bddb50c405f" + }, + "recipe": { + "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1238", + "deps": [ + "emacs" + ] + }, + "idle-highlight-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/idle-highlight-mode.git", + "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" + }, + "recipe": { + "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120920.1148", + "deps": [] + }, + "tc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kozo2/tc.git", + "sha256": "f35bdf5d5d65534a30e4087680498c28f1e9fa1d2e90d9fd4fd782851dcdf3f6", + "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8" + }, + "recipe": { + "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.2126", + "deps": [] + }, + "java-imports": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/emacs-java-imports.git", + "sha256": "da0dda3aa83801b99446ec7fa4412136a026d4964dcfea9ad8bd89e76ff021aa", + "rev": "42f6a65441b50ae77b82168060baa8d5a8ec9f2e" + }, + "recipe": { + "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1034", + "deps": [ + "pcache", + "s" + ] + }, + "mandoku": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mandoku/mandoku.git", + "sha256": "eebcdce65bbc0848d448aa6d57cf985ffdea6a93643d194e5186b3b56bdcb074", + "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186" + }, + "recipe": { + "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.900", + "deps": [ + "git", + "github-clone", + "magit", + "org" + ] + }, + "bibretrieve": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pzorin/bibretrieve.git", + "sha256": "e352151f8e0ccdbfab061fbb6bbd1c271e2b82dc8fb7581f0ec0386e62742d37", + "rev": "aff34c6e1a074ac4fd574d8e66fd9e0760585419" + }, + "recipe": { + "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131013.1332", + "deps": [ + "auctex", + "emacs" + ] + }, + "cryptsy-public-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/cryptsy-public-api.el.git", + "sha256": "8b047ceb3dba42ac5eeafd3d8a5f03d774318d8f491d2d4f1a23aff00e02c067", + "rev": "59bdf2425dccc27cc1598868a1a810885508cff5" + }, + "recipe": { + "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141008.728", + "deps": [ + "json" + ] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-blocks.git", + "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1015", + "deps": [ + "emacs" + ] + }, + "simple-httpd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-http-server.git", + "sha256": "731209d7a3892aaafa6a5ccf6e118a25035d483952ff4b2d432f4d86f0067fdc", + "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f" + }, + "recipe": { + "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.1955", + "deps": [ + "cl-lib" + ] + }, + "lavender-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-lavender-theme.git", + "sha256": "f3c00e683c1ca192adbd11c51810c882bc3a5c6cc190cc16016136a1f310e9d5", + "rev": "d9e4d7838167a0e07fb5d04877a7b34c4b4cc1ee" + }, + "recipe": { + "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "actionscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austinhaas/actionscript-mode.git", + "sha256": "24612a82172f4357133694134af1468135f49a8f3abe6fc0d44dfe398f14bde7", + "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09" + }, + "recipe": { + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1328", + "deps": [] + }, + "electric-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xwl/electric-spacing.git", + "sha256": "d69595a6d89c94778b9a3be0cb4582ce1f2bc5644611109f5c8d230203583760", + "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e" + }, + "recipe": { + "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.936", + "deps": [] + }, + "fakir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-fakir.git", + "sha256": "3019b93769bcd0cf502ecbdf6a30fbe083d568f2fa67b0064a4d86fcd7bfaaf0", + "rev": "1fca406ad7de80fece6319ff75d4230b648534b0" + }, + "recipe": { + "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.1152", + "deps": [ + "dash", + "kv", + "noflet" + ] + }, + "z3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zv/z3-mode.git", + "sha256": "5f70200557cd8de87bf8524c0c6ad8cae9f49dc2befceb871679e959661ff5cc", + "rev": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1" + }, + "recipe": { + "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1655", + "deps": [ + "emacs", + "flycheck" + ] + }, + "latex-pretty-symbols": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/mortiferus/latex-pretty-symbols.el", + "sha256": "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b", + "rev": "ef4ea64c09ea" + }, + "recipe": { + "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.444", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/emacs-sos.git", + "sha256": "913edcbe062faf77f0f48aab23480671c854d353da0057bf83f608cc2b14394b", + "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.2203", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/nasm-mode.git", + "sha256": "39fce880d0fc6663055a3cb678fa825c113982708ba5da7862fdb0f19fe4b944", + "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1858", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/markup-faces.git", + "sha256": "47640b358d3aee97a1a318688e07a25b849c126565c856ad8c2ce5d64f0dd1f0", + "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141110.217", + "deps": [] + }, + "state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/state.git", + "sha256": "31311a2912992f73d5cf2d21d2a0906cd2d70ebebce6be1fbbc43c45209bdfec", + "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049" + }, + "recipe": { + "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.447", + "deps": [ + "emacs" + ] + }, + "angry-police-captain": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolando2424/angry-police-captain-el.git", + "sha256": "eaa45a2d23aa8138532dc186e7a976601c3e17ca91bec70c7acc4775b43d0cd4", + "rev": "d11931c5cb63368dcc4a48797962428cca6d3e9d" + }, + "recipe": { + "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120829.752", + "deps": [] + }, + "better-registers": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/better-registers.el", + "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh" + }, + "recipe": { + "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140813.319", + "deps": [] + }, + "bison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/bison-mode.git", + "sha256": "67b241d8b59d8717652f1047c5e465d0a92be73933607c9c3050a5ca95538c45", + "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf" + }, + "recipe": { + "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141119.243", + "deps": [] + }, + "wgrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141016.1856", + "deps": [] + }, + "pg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cbbrowne/pg.el.git", + "sha256": "601a81cbc26dc2e3852b0b206d62a77595c915c5d4fa203d8a6bff6b2dd907fe", + "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d" + }, + "recipe": { + "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130731.1642", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-calfw.git", + "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.2149", + "deps": [ + "google-maps" + ] + }, + "tabbar-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/tabbar-ruler.el.git", + "sha256": "b858c2149120e982a27e555d772da92e02d40f725f2aa4847b42265af8ff6b6f", + "rev": "5854ef040a1c45e1ce7dfebea6ed7953ce6bd2b9" + }, + "recipe": { + "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1951", + "deps": [ + "tabbar" + ] + }, + "gruber-darker-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/gruber-darker-theme.git", + "sha256": "75caee197b485fa6a399178de88929dfaed9ecd2a3eb35cce8ce5d2b0465748a", + "rev": "25d52be23017f5a79d5eba53e767eab9d751819e" + }, + "recipe": { + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.126", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuhito/orgbox.git", + "sha256": "6e16b1fc4301f8b2782022a254361d10e79f13994812d863dfb3abf425ad0f89", + "rev": "72373b09768cc2200d143af38e25a0c082e8375d" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140528.2026", + "deps": [ + "cl-lib", + "org" + ] + }, + "kolon-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samvtran/kolon-mode.git", + "sha256": "dca909af2f55fd2688f200db18c0b6d188db67a4583de452bde5f6d779f7247b", + "rev": "5af0955e280ae991862189ebecd3937c5fc8fb9f" + }, + "recipe": { + "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140122.534", + "deps": [] + }, + "mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/Mew.git", + "sha256": "8de30aa9e87487f999aa2dd9a297b4c93ed8b1ff330ce47ce6f5dc94685f4e3c", + "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce" + }, + "recipe": { + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.154", + "deps": [] + }, + "nand2tetris-assembler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1636", + "deps": [ + "names", + "nand2tetris" + ] + }, + "pytest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ionrock/pytest-el.git", + "sha256": "e502eb19be17d7b743fd88778816f8548cd429998b27590c038c12e3375e9eda", + "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3" + }, + "recipe": { + "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2325", + "deps": [ + "s" + ] + }, + "portage-navi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-portage-navi.git", + "sha256": "71ec3cd146fd69b571465240331f8be915db021039b6947f14f5187ec9e9a4de", + "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f" + }, + "recipe": { + "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141208.755", + "deps": [ + "concurrent", + "ctable" + ] + }, + "mouse-slider-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/mouse-slider-mode.git", + "sha256": "fffdc519879c543e88c71e7b4734b64ec647810d072db7f2dec9e3a0ccf971cd", + "rev": "a8d6489fe2a3c2769b421f93f3609f402c9b92f7" + }, + "recipe": { + "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1600", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lesharris/helm-circe.git", + "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" + }, + "recipe": { + "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150317.44", + "deps": [ + "circe", + "cl-lib", + "emacs", + "helm" + ] + }, + "ruby-hash-syntax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ruby-hash-syntax.git", + "sha256": "59e434bf601df60e49d15a846a2ca251c7e6c82d54005a820a6d66d6b783eddc", + "rev": "d73a498143a3a8d6d3a7720104f2f14e70b2e2ae" + }, + "recipe": { + "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141010.1039", + "deps": [] + }, + "skewer-reload-stylesheets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NateEag/skewer-reload-stylesheets.git", + "sha256": "43a72de24748c3a63d8b63bd14c4dd138de780ff067881a16b670ec4246118e0", + "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060" + }, + "recipe": { + "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150111.623", + "deps": [ + "skewer-mode" + ] + }, + "nodejs-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abicky/nodejs-repl.el.git", + "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "rev": "3c51428ccda7b1c4b5cd4a51f9034e6ca3a053f8" + }, + "recipe": { + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.714", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.1726", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "package-filter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/package-filter.git", + "sha256": "86a17f674dd6f05291da85f833321431b226651893f25e02c61e66b6aa42ee44", + "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12" + }, + "recipe": { + "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140105.1626", + "deps": [] + }, + "sekka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/sekka.git", + "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.659", + "deps": [ + "cl-lib", + "concurrent", + "popup" + ] + }, + "auto-complete-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", + "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" + }, + "recipe": { + "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140320.224", + "deps": [ + "auto-complete" + ] + }, + "rcirc-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/rcirc-notify.git", + "sha256": "fdc55aaac45d3467814b117fea8d8750b3771aeb127b7723bcbac772149d2b7a", + "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455" + }, + "recipe": { + "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.1604", + "deps": [] + }, + "full-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/full-ack.git", + "sha256": "46448181df74d25c09098f8261426848b40481fda7d2de598053e75880112533", + "rev": "761d846e105b150f8e6d13d7a8983f0248313a45" + }, + "recipe": { + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140223.1132", + "deps": [] + }, + "elogcat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/youngker/elogcat.el.git", + "sha256": "25784d00effc275af6c892749203aa409906d3d16f7e533dd0ce6ee7fa4299c9", + "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f" + }, + "recipe": { + "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1841", + "deps": [ + "dash", + "s" + ] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "helm", + "nixos-options" + ] + }, + "magit-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-annex.git", + "sha256": "68d0218de9e4da03078d8c65e6202625031749b076a6289d8de0b6f585ad8c1b", + "rev": "154345a5192f3581af105022541911398a566cce" + }, + "recipe": { + "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.38", + "deps": [ + "cl-lib", + "magit" + ] + }, + "matrix-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", + "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341", + "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809" + }, + "recipe": { + "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1443", + "deps": [ + "json", + "request" + ] + }, + "sync-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/sync-recentf.git", + "sha256": "59f7040ac78d34f21737b8a5fc7eb8f605c440b29a71aaa8e64af701d072d765", + "rev": "530254b1f1b569ce958dadad2620c67c31835d5c" + }, + "recipe": { + "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.526", + "deps": [] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", + "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "rev": "497d33632f195354eaa24670db0804c846b7261b" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.826", + "deps": [ + "helm" + ] + }, + "helm-emms": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-emms.git", + "sha256": "b481309f09dd4be0478e138b65e48ce80ec4fda14dc22e064edc06b20ed0600c", + "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d" + }, + "recipe": { + "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1528", + "deps": [ + "cl-lib", + "emacs", + "emms", + "helm" + ] + }, + "gruvbox-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Greduan/emacs-theme-gruvbox.git", + "sha256": "2450e82d4a09040b0056afdade19fa0994230bb637a032d23e9112f462ffa68d", + "rev": "f4035b67ab16f4b2c674dc5c637eeba15690c38a" + }, + "recipe": { + "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1632", + "deps": [] + }, + "java-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nekop/yasnippet-java-mode.git", + "sha256": "5a6f5a6da3314ca8baee0ae06dc2827b24d2f0486a940339e043948cdebb3c1f", + "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8" + }, + "recipe": { + "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140728.36", + "deps": [ + "yasnippet" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql", + "pg" + ] + }, + "jazz-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donderom/jazz-theme.git", + "sha256": "604995d0d80c7e943ce9d6d41f47cacff3d8fb087aed912dbd84b06ef4db0a02", + "rev": "b9f66600fe33d25a230ed26a69f3abaaca03b453" + }, + "recipe": { + "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1044", + "deps": [] + }, + "yaml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshiki/yaml-mode.git", + "sha256": "4cbf6541e1a895eae6b0c0c819f5fadc017d0e155d752cd2f4d05145ad0ae59a", + "rev": "a87ab367fe0015917a1940b5acd9a581b1631801" + }, + "recipe": { + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.35", + "deps": [] + }, + "point-stack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattharrison/point-stack.git", + "sha256": "8199db22e57b92f509a7b08166965d7c1273d02443d3824f8eff1dc9dd1432dc", + "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24" + }, + "recipe": { + "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140102.1423", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/ncl-mode.git", + "sha256": "8de27cfd2f3d2a0e88bfeb32b0db78ebc1c74a26efaaf3bc4d419debd6ebbb62", + "rev": "01559734504d2712606ac30916252d788ea73124" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.1129", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-direx.git", + "sha256": "5a3874ba35615b287b48ec8b9b6cfd8eb8f91f709661f39d8210472ce6547415", + "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.2043", + "deps": [ + "cl-lib", + "direx" + ] + }, + "doremi-cmd": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el", + "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2" + }, + "recipe": { + "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1552", + "deps": [ + "doremi" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dmatveev/shampoo-emacs.git", + "sha256": "7224c35f1a620438a475e662726d26b831d6dc99ad7d421d8d6cf08d9812cdab", + "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.419", + "deps": [] + }, + "dash-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stanaka/dash-at-point.git", + "sha256": "7a4a6ee258d0485d47d0d88e4aeda60e16dd056c004de75917365acd215a3f67", + "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c" + }, + "recipe": { + "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.235", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/emacs-purpose.git", + "sha256": "0b655eb0b7c36b0cdb68b8d77a142e2cb206e8d6c5ca9be0d13ef3a48a1f2b5f", + "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.440", + "deps": [ + "cl-lib", + "emacs", + "imenu-list", + "let-alist" + ] + }, + "boxquote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davep/boxquote.el.git", + "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "rev": "4c49b2046647ed187920c885e175ed388f4833dc" + }, + "recipe": { + "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20081011.1526", + "deps": [] + }, + "sticky": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sticky.el", + "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" + }, + "recipe": { + "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101129.2052", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/emacs-ipython-notebook.git", + "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1316", + "deps": [ + "request", + "websocket" + ] + }, + "scratches": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/scratches.git", + "sha256": "8c6e1000e5be6538ebc35fe790a316d3630c0d93994c1dfdde3fcf4b2ef01582", + "rev": "9441afe6396ca38f08029123fab5d87429cbf315" + }, + "recipe": { + "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2316", + "deps": [ + "dash", + "f" + ] + }, + "magic-filetype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/magic-filetype.el.git", + "sha256": "d39ffec1799d1999f6182e44669dce7f01a668f811ca17d51f3c920b644b7ceb", + "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e" + }, + "recipe": { + "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.1057", + "deps": [ + "emacs", + "s" + ] + }, + "helm-j-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-j-cheatsheet.git", + "sha256": "c30086e3121354c89c798f5f22fc07d51b561e6cf71a43503861497d3693e5bd", + "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4" + }, + "recipe": { + "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.641", + "deps": [ + "helm" + ] + }, + "py-yapf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-yapf.el.git", + "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "rev": "766e57448639ff95eeb018f6d8bdf09170094218" + }, + "recipe": { + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.953", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/paper-theme.git", + "sha256": "9170a2cccc57de956daf1b38cb1bd7233d44c629178c0ce1f0aff9b17d5c6857", + "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1000", + "deps": [ + "emacs", + "hexrgb" + ] + }, + "noctilux-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sjrmanning/noctilux-theme.git", + "sha256": "ba1bf8c99c84dd07daee5a4ce8235852cbdb18644e96c53d9c9cbcd2f4b837a8", + "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626" + }, + "recipe": { + "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.947", + "deps": [] + }, + "emms-mark-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/emms-mark-ext.git", + "sha256": "9418868d1a21c968b10370cfbdb0bc1b452f21e12be79a0bc8f6027a91d5470d", + "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541" + }, + "recipe": { + "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130528.2227", + "deps": [ + "emms" + ] + }, + "hexrgb": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", + "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" + }, + "recipe": { + "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.2036", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-finalize.git", + "sha256": "6ad646d2b59cee68a379c2b54140fba654acf9011d1d8696a741f36ca8954fc2", + "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140127.1246", + "deps": [ + "cl-lib", + "eieio", + "emacs" + ] + }, + "mpg123": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/mpg123.git", + "sha256": "3a9352550182e2b6c193b88de862878f6e149c089b4a52c28b117316875531b4", + "rev": "46b0fb53c2003c08c269371f68c2fb7aeb19ce82" + }, + "recipe": { + "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2016", + "deps": [] + }, + "paredit-everywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/paredit-everywhere.git", + "sha256": "db05f512bf60bdc5e9b6a6a11dbe16046324af2ca834d24a0235c9a299752ff2", + "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9" + }, + "recipe": { + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.2344", + "deps": [ + "paredit" + ] + }, + "jinja2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paradoxxxzero/jinja2-mode.git", + "sha256": "b38c734e19f062791adb2f446fb0dc361406043bfcd5384876f84f543b86d793", + "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86" + }, + "recipe": { + "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.407", + "deps": [] + }, + "org-caldav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dengste/org-caldav.git", + "sha256": "5f61a7c67d0f4d093097d0da2bc784362e7585ee27150e79f50afcc74dcf0253", + "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65" + }, + "recipe": { + "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150131.352", + "deps": [ + "org" + ] + }, + "eval-in-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/eval-in-repl.git", + "sha256": "65e99be7de095ee6276624197f0640c94a95f1628796b61f553f7a30ac00d161", + "rev": "c2c677d39cfad572fe487661ac9e8a70fb88749f" + }, + "recipe": { + "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.528", + "deps": [ + "dash", + "paredit" + ] + }, + "gherkin-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/candera/gherkin-mode.git", + "sha256": "163a3f1279cf2f53f72affa6497b367abe6ac5977a0fdb7b95157e011c608128", + "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d" + }, + "recipe": { + "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.1004", + "deps": [] + }, + "helm-perldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-perldoc.git", + "sha256": "60b3e77f7df8763dd3bd7322e0526a1298ba9d9dd7c004a87a6d216a60a39d49", + "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33" + }, + "recipe": { + "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2227", + "deps": [ + "cl-lib", + "deferred", + "helm-core" + ] + }, + "relative-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/relative-buffers.git", + "sha256": "c97cc94f1e565e727d3c40ee7fcfb14b35b8828f7c6ba8f2d6bad904771b9ef6", + "rev": "7e37e118cc231c8581891bef0e4b5bb775920070" + }, + "recipe": { + "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "helm-grepint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kopoli/helm-grepint.git", + "sha256": "65d21d875ac59f75e9418f205bfac44a695890800ab68c207af900bb3899751d", + "rev": "0327f64121751065a85c76527dda2c037c8fb0d8" + }, + "recipe": { + "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1137", + "deps": [ + "emacs", + "helm" + ] + }, + "emms-info-mediainfo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/emms-info-mediainfo.git", + "sha256": "2f4717ba2013c8567f2be6dd1d7f4f93c2277eb4224d335c861e3dccecb4b1dd", + "rev": "bce16eae9eacd38719fea62a9755225a888da59d" + }, + "recipe": { + "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131223.700", + "deps": [ + "emms" + ] + }, + "javap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hiredman/javap-mode.git", + "sha256": "8f72f6caee3298a3f1b4ca26f3653cb856bd875dedd72520b167a44d5e25191c", + "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629" + }, + "recipe": { + "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120223.1608", + "deps": [] + }, + "ttrss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pedros/ttrss.el.git", + "sha256": "34ba33fa54b4f8503d6325eecbdd334474d15d1ee3e025aead679a1ac34d0e29", + "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130409.1249", + "deps": [ + "emacs" + ] + }, + "term-run": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/term-run-el.git", + "sha256": "3bac85c7e51d35e1cae2dd5b7f9044cd65533d2bf14423da3cd6083a1a5cf2d7", + "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb" + }, + "recipe": { + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.206", + "deps": [] + }, + "anx-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmloveland/emacs-appnexus-api.git", + "sha256": "c155289b6ca5e9314b91acd46a1c0721089fa4db27f3b1bbb31fa78ab2fafd3b", + "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0" + }, + "recipe": { + "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140208.914", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/smooth-scrolling.git", + "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131219.2239", + "deps": [] + }, + "helm-cmd-t": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/helm-cmd-t.git", + "sha256": "7ae3bfafcb82719a83298bea07efc21c59b1514fb6cd2c3644f7f18d76109781", + "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb" + }, + "recipe": { + "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.1357", + "deps": [] + }, + "flymake-python-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-python-pyflakes.git", + "sha256": "229c799e179084202877e15b5286c9f90821bf95ffc91339406097540e39fa6b", + "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a" + }, + "recipe": { + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131127.206", + "deps": [ + "flymake-easy" + ] + }, + "misc-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-fns.el", + "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86" + }, + "recipe": { + "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.1121", + "deps": [] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-cask.git", + "sha256": "da09cf110b0d23dfc6bc7087611bfd0726bf52ad3f1c2c40a850633eea5825e2", + "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.653", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "fzf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/fzf.el.git", + "sha256": "134be086673c38c2c7a9602f0978bc1dd2c628d959433cdd95585573adf82b5f", + "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f" + }, + "recipe": { + "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.833", + "deps": [ + "emacs" + ] + }, + "el-get": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/el-get.git", + "sha256": "89445520430c47659a6e37bdbb9d26934b7830136c45c61bb341c04e9e4bd6bd", + "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e" + }, + "recipe": { + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1015", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/markdown-mode-plus.git", + "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120829.710", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michaelklishin/cucumber.el.git", + "sha256": "ad68454443473eab381c7d3e8456abd4d67de23d7e2ad64edca041a95c3f62a1", + "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141121.1230", + "deps": [] + }, + "dired-details+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details+.el", + "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y" + }, + "recipe": { + "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1550", + "deps": [ + "dired-details" + ] + }, + "mouse3": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse3.el", + "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi" + }, + "recipe": { + "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.1829", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/unkillable-scratch.git", + "sha256": "4c61e80e71b8aca303168b9ef7f0aed54fc494eaeb2f28ef5fabe09dab8bea76", + "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.118", + "deps": [] + }, + "edit-server-htmlize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/frobtech/edit-server-htmlize.git", + "sha256": "835ec7929f43517cce6cc3bf6fe2ba2641b6083e5c999056fe6218d60bc19d9c", + "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392" + }, + "recipe": { + "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130329.1748", + "deps": [ + "edit-server" + ] + }, + "multi-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/multi-line.git", + "sha256": "e96adce716494008044b875e6e4c042071f61f879bd0b7549c7a9a888c43b899", + "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233" + }, + "recipe": { + "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1813", + "deps": [ + "emacs" + ] + }, + "crm-custom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/crm-custom.git", + "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1148", + "deps": [] + }, + "soundcloud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tthieman/soundcloud.el.git", + "sha256": "db14f9ccec3456463e25d208788d2665d609841b2d2f52732ef801e44d651cd5", + "rev": "f998d4276ea90258909c698f6a5a51fccb667c08" + }, + "recipe": { + "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.2226", + "deps": [ + "deferred", + "emms", + "json", + "request", + "request-deferred", + "string-utils" + ] + }, + "ace-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-link.git", + "sha256": "880584ac44ffae0c1e6161abc92b9baee5ec6ab7f293dab6a6cdb6ac77b9c773", + "rev": "b03a91df61f8885c33c8c6812e656a86918572f0" + }, + "recipe": { + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.1035", + "deps": [ + "avy" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/anaphora.git", + "sha256": "7f008c227a19feedd9d53ed7c9bcc8620297bb36a7bf83467fb4d8057427ed8d", + "rev": "ed99ad4502e6fccde76050496984c6454676a410" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140728.1736", + "deps": [] + }, + "wc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wc-mode.el", + "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d" + }, + "recipe": { + "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.2302", + "deps": [] + }, + "csv-nav": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/csv-nav.el", + "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva" + }, + "recipe": { + "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.1320", + "deps": [] + }, + "tiny": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/tiny.git", + "sha256": "43b1b69cb2c9d56358c784063b0d05dd7d81928b2e692e055bdeb9efc042bf56", + "rev": "d775201a6e14aae03dda032132aa288ca93bddc4" + }, + "recipe": { + "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.405", + "deps": [] + }, + "grass-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/tws/grass-mode.el", + "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5", + "rev": "aa8cc5eff764" + }, + "recipe": { + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1120", + "deps": [ + "cl-lib", + "dash" + ] + }, + "fish-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wwwjfy/emacs-fish.git", + "sha256": "58bd36b5d693c258bdeb74b62acf8f47f177664b54b3e0648c193635d314083e", + "rev": "683af1c17c9dfe947166ae4a73fe97a4920d7973" + }, + "recipe": { + "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.334", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/ercn.git", + "sha256": "9b0512b3cd73439bb2a18df24036650abcb7489c84789d7d0db64ef25d6a8377", + "rev": "79a4df5609046ae2e2e3375998287be6dda80615" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150523.1003", + "deps": [] + }, + "roy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/folone/roy-mode.git", + "sha256": "e8931710fe57510874f561650c39c614f67f7b5aa915d9376f0be6dedb446dde", + "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65" + }, + "recipe": { + "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121208.558", + "deps": [] + }, + "jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.329", + "deps": [ + "findr", + "inflections" + ] + }, + "list-packages-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/list-packages-ext.git", + "sha256": "3a5024de92a3a5e3f6a76157ad6647bfaf55ba5ee4f4149132bf797346c1870a", + "rev": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a" + }, + "recipe": { + "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1116", + "deps": [ + "ht", + "persistent-soft", + "s" + ] + }, + "ert-junit": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/olanilsson/ert-junit", + "sha256": "eedfdd6753c32d16baa341e6d20abee8713921d8eb850d16782cde55bdbeec46", + "rev": "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d" + }, + "recipe": { + "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140830.1721", + "deps": [ + "ert" + ] + }, + "railgun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbriggs/railgun.el.git", + "sha256": "85ab5f757c8b718994830f37301ebad78487e2c0d3d0827996c39bea799b8ffd", + "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8" + }, + "recipe": { + "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121017.57", + "deps": [] + }, + "clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clj-refactor.el.git", + "sha256": "bf744ac943dd6aad1a5c6eeb255ba601832d626ec89da91ce06d2fbea7a364de", + "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7" + }, + "recipe": { + "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.400", + "deps": [ + "cider", + "dash", + "edn", + "emacs", + "hydra", + "inflections", + "multiple-cursors", + "paredit", + "s", + "yasnippet" + ] + }, + "org-autolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/calvinwyoung/org-autolist.git", + "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" + }, + "recipe": { + "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.905", + "deps": [] + }, + "nameframe-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.407", + "deps": [ + "nameframe", + "projectile" + ] + }, + "helm-bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-bind-key.el.git", + "sha256": "3e1040f9948ac0592777b2aa14aa69a916bc8c3a96d0a23c725a684ff0f1acf2", + "rev": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25" + }, + "recipe": { + "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.2315", + "deps": [ + "bind-key", + "helm" + ] + }, + "evil-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-escape.git", + "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + }, + "recipe": { + "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.2028", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "camcorder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/camcorder.el.git", + "sha256": "c8bd8748e38e568c7de0fa1f455ffcffe7576ce316375a1b056df63d7d9ab5bb", + "rev": "bfef46deae617825089fb06591e5c25c82a2d4be" + }, + "recipe": { + "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1012", + "deps": [ + "cl-lib", + "emacs", + "names" + ] + }, + "make-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/make-color.el.git", + "sha256": "5b380e1ab864c63a9ed97a5ba12233d53a304ae551633b6bfedd30c4f9d41879", + "rev": "a1b34e95ccd3ebee4fba1489ab613d0b3078026d" + }, + "recipe": { + "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140625.650", + "deps": [] + }, + "nand2tetris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1651", + "deps": [ + "names" + ] + }, + "german-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/german-holidays.git", + "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.943", + "deps": [] + }, + "traad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" + }, + "recipe": { + "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.815", + "deps": [ + "deferred", + "popup", + "python-environment", + "request", + "request-deferred" + ] + }, + "save-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/save-sexp.git", + "sha256": "2c310c995f4b2745709269ba9f14eb75fbd18b37c6e320907518639b70b3ba49", + "rev": "31bd739269e14df70f9519417370ba69a53e540d" + }, + "recipe": { + "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.1046", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/fringe-helper.el.git", + "sha256": "dce636d4d268c687b14ef4c2804ea02a7875f9e88bf352e7bf5a69434cebc431", + "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140620.1609", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/bufshow.git", + "sha256": "21b136aea7dda2c694e08d66fdfeb4466813551550edef4f25dd3cf699857d5f", + "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130711.1239", + "deps": [ + "emacs" + ] + }, + "esh-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/esh-help.git", + "sha256": "baa65aafb646faf9e17a3afcfc2e0d3277e59497524e9385ebb0f7614e6fdbf9", + "rev": "3dc15f2f6086d4e4da977468fda67229a859c927" + }, + "recipe": { + "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.422", + "deps": [ + "dash" + ] + }, + "plsql": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/plsql.el", + "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" + }, + "recipe": { + "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121115.443", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ebal.git", + "sha256": "f7a6ff648e81738a010180e1889a741966c487e9f072db9101dd57336f923590", + "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.15", + "deps": [ + "emacs", + "f", + "ido-completing-read+" + ] + }, + "coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/coffee-mode.git", + "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" + }, + "recipe": { + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.828", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "usage-memo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/usage-memo.el", + "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i" + }, + "recipe": { + "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110722.1051", + "deps": [] + }, + "smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/smartparens.git", + "sha256": "21916a0e68a041d94bcacdfd89fca55bb2bfe0ce4638f925626671585cc7172d", + "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1707", + "deps": [ + "cl-lib", + "dash" + ] + }, + "grunt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gempesaw/grunt.el.git", + "sha256": "5b0bd28ab647d681a7700dd11568ab31c18e00eda41b6490fb579dab2762d3da", + "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29" + }, + "recipe": { + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1029", + "deps": [ + "ansi-color", + "dash", + "emacs" + ] + }, + "buffer-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/buffer-utils.git", + "sha256": "1083e13f138fbf62796f951b2e58816669b7670cacbb6becd9724cb05d34bf90", + "rev": "685b13457e3a2085b7584e41365d2aa0779a1b6f" + }, + "recipe": { + "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140512.900", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robario/elscreen-persist.git", + "sha256": "ef941e8dde02a163bd48405d4533e5450b53fc149cd8ec576abfeee923183165", + "rev": "9d8c9a2f0fc39e064c51b703d84160c06629477d" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141220.238", + "deps": [ + "elscreen", + "revive" + ] + }, + "scheme-here": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/judevc/scheme-here.git", + "sha256": "396663288624bbbe8795f0fd6aea37969df025d366634ced56482e9be1cd9b25", + "rev": "430ba017cc530865218de23a8f7985095a58343f" + }, + "recipe": { + "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141028.218", + "deps": [] + }, + "dictcc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cqql/dictcc.el.git", + "sha256": "7716c0814fb39839a2f2e79c7c2fbbd5cbdb49c12a68cbfd088dddd0a96fcc81", + "rev": "5cc898de535536380e1031b67421bd2a00cdd689" + }, + "recipe": { + "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.455", + "deps": [ + "cl-lib", + "dash", + "emacs", + "helm", + "s" + ] + }, + "ido-clever-match": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bogdanp/ido-clever-match.git", + "sha256": "7bd351520b6206497f163b7075e8cb9a79e1af356c30fb0aa00d1c269ce8f455", + "rev": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3" + }, + "recipe": { + "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1226", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "pyenv-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pyenv-mode.git", + "sha256": "a9b2dd824e7f96be72c49dc944caa76dc380e6216a8a855ad1b5d1a9350829a5", + "rev": "93ddeb2c0fabc224496cdf5ff688243a208376c4" + }, + "recipe": { + "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.441", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csrhodes/iplayer-el.git", + "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.455", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-tools.git", + "sha256": "a344c12bda2fd00215db7e585e92c0f07adb0ab82f852c819108a0cf18403701", + "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1015", + "deps": [] + }, + "multi-term": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-term.el", + "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim" + }, + "recipe": { + "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.720", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/hardcore-mode.el.git", + "sha256": "cb3182e9524931ce6d7d8eb799a62b2e99aa3c93c6fb22c67787f57707409388", + "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.101", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-R.el.git", + "sha256": "2e86a886f2927ab3e580fec654b90b067f80bbd4ffac6083161fc43ade450a46", + "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130506.8", + "deps": [ + "e2wm", + "ess", + "inlineR" + ] + }, + "bibtex-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/plantarum/bibtex-utils.git", + "sha256": "ed26628ba13c8a66e0e5b02509017e07d95094f67b4c4d9b50708f2e808af368", + "rev": "1695db9f4f9198bb27f219bd4da7d34a9ae58069" + }, + "recipe": { + "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.847", + "deps": [] + }, + "fold-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/fold-this.el.git", + "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.542", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/mowedline.git", + "sha256": "5386a121a36f481db8feded92b798a26a0542e7781afebe60fd3d712e8e53189", + "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.1209", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keychain-environment.git", + "sha256": "9125bf86edaa9a10537c4918cd3126a1ebed6e3cca99df41658abe8797dfa776", + "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150416.1458", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/parent-mode.git", + "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.1800", + "deps": [] + }, + "frame-tag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liangzan/frame-tag.el.git", + "sha256": "14a3724395839fede34a2f2d61c3a55c4ea619b316c91a735b419e0bc8348370", + "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17" + }, + "recipe": { + "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.118", + "deps": [ + "cl-lib" + ] + }, + "midje-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bpoweski/midje-test-mode.git", + "sha256": "51b5717bc2e30ec904ec4b28b5fb4655d9b67bc250f85e271c1e6d5bd8ed9537", + "rev": "46fc081865d48f30b950f21a597eadd59a802fc9" + }, + "recipe": { + "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.1114", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "git-gutter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter.git", + "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.203", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "flycheck-flow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-flow.git", + "sha256": "45e03e5c12ee5dd2a423e59919bab194439f2c297b0f939d4363b7a22a6d363b", + "rev": "9629a5dc9a0662ea513783105fc884855379b89c" + }, + "recipe": { + "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1716", + "deps": [ + "flycheck" + ] + }, + "highlight-cl": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el", + "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw" + }, + "recipe": { + "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091012.1230", + "deps": [] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150313.1012", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ellerh/peg.el.git", + "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.141", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/cask.git", + "sha256": "f88f09cbeeb57689c519e6a29258db64214035a7bf7b2d023f9d0768d57337f8", + "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.728", + "deps": [ + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ] + }, + "pcmpl-homebrew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/pcmpl-homebrew.git", + "sha256": "244aeb55b9b18bcfb9da690426a15ebb87d18e0a5216dd3e7f1fb6024091259e", + "rev": "a2b9026a1b3c8206d0eca90c491c0397fb275f94" + }, + "recipe": { + "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.2052", + "deps": [] + }, + "ace-jump-helm-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", + "sha256": "538cd180f81e168cd63803b1a5a64332af2f91a4ae9f8e64a237cf2092b7d079", + "rev": "8400dbdd93d0442493f74f4030b09bbfac2d5700" + }, + "recipe": { + "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1300", + "deps": [ + "avy", + "helm" + ] + }, + "keyword-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/keyword-search/keyword-search.git", + "sha256": "18bf0e5982aa8b4cf888e25dca8c56286cb9c71d4bf994a9f766b9982e9d847f", + "rev": "1a01e3d5a43e48701cfab0332876284f5d3a1bba" + }, + "recipe": { + "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.432", + "deps": [] + }, + "puml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skuro/puml-mode.git", + "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" + }, + "recipe": { + "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1023", + "deps": [] + }, + "gnus-summary-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/gnus-summary-ext.git", + "sha256": "cbec3a1111d2fc5e2b6f64c9326655f54e81593a1fd2d08fe7bc6eae0b1cebb7", + "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b" + }, + "recipe": { + "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.2033", + "deps": [] + }, + "bbdb-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/bbdb-ext.git", + "sha256": "24d3b04f67b706057bde1e0afae6fdc69764c209f7598907b45732ec57e1cd25", + "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc" + }, + "recipe": { + "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.1352", + "deps": [ + "bbdb" + ] + }, + "ac-html-csswatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-csswatcher.git", + "sha256": "39b3c8008b670ff4c91fe9cc60c05d66d69cf342b7ee3b8e933217f885e18b6b", + "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221" + }, + "recipe": { + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1513", + "deps": [ + "web-completion-data" + ] + }, + "viewer": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/viewer.el", + "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb" + }, + "recipe": { + "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141021.1338", + "deps": [] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/gmail2bbdb.git", + "sha256": "7f687cb5d31abe5ab4df19c8229dc51cbe8d11b2dd409e5c2007522ca3551006", + "rev": "f0e23a1262bb683285b381b1d142478ba345af1a" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.2039", + "deps": [] + }, + "wolfram-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/wolfram-mode.git", + "sha256": "7c446844b6243cb2cde60496d8aa84ed2e7c8cfa0c40a1f93da8a6f82403caf6", + "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7" + }, + "recipe": { + "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140118.957", + "deps": [ + "emacs" + ] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-easy.git", + "sha256": "44dca289ebfead0259c991dbc1b29782441041d771c43885771c9f0f86a48d22", + "rev": "de41ea49503f71f997e5c359a2ad08df696c0147" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140818.255", + "deps": [] + }, + "sane-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/adamrt/sane-term.git", + "sha256": "7ce0efe6aa0daa7fd76b954552b5f24b134babdda0b257a393f6cbbf8435cbe4", + "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7" + }, + "recipe": { + "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.1802", + "deps": [ + "emacs" + ] + }, + "org-repo-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/org-repo-todo.git", + "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" + }, + "recipe": { + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1541", + "deps": [] + }, + "anything": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/anything-config.git", + "sha256": "e90ded84609e59a4cef22bfd9d9a543ec6b677b78ab44fb4eb6cbae9eb248669", + "rev": "2d7e0450e13ab04b20f4dff08f32936e78677e58" + }, + "recipe": { + "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.2103", + "deps": [] + }, + "headlong": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/headlong.git", + "sha256": "387b5b253c75956dc08cb34cdc39e89bb6f6b7de05a14ce4caf73ba2cc35181a", + "rev": "f6830f87f236eee88263cb6976125f72422abe72" + }, + "recipe": { + "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.1026", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/robe.git", + "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1658", + "deps": [ + "inf-ruby" + ] + }, + "espresso-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/espresso-theme.git", + "sha256": "d85f5b6f962c7a8bb4fcf8e56b76bae34c1ca7281aab1e974fd801ff1a912747", + "rev": "c3a524e873f33923fe511791197a66dea5156687" + }, + "recipe": { + "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130301.148", + "deps": [] + }, + "ob-axiom": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pdo/axiom-environment", + "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli", + "rev": "d7ea57a27527" + }, + "recipe": { + "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1700", + "deps": [ + "axiom-environment", + "emacs" + ] + }, + "git-auto-commit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/git-auto-commit-mode.git", + "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "rev": "075e5f9ded66c2035581a7b216896556cc586814" + }, + "recipe": { + "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.951", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1224", + "deps": [ + "company", + "go-mode" + ] + }, + "light-soap-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/light-soap-theme.git", + "sha256": "28ea7de39931fb9fb5a381d9b5332b8cac24de34a24d371ac9d8bc2a3e9ab111", + "rev": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d" + }, + "recipe": { + "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.945", + "deps": [ + "emacs" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/google-translate.git", + "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1420", + "deps": [] + }, + "kfg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/kfg.git", + "sha256": "acc80331b30d70adfadef315bde21c22a672ee05b17c35c9227a72ff7b190877", + "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97" + }, + "recipe": { + "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140909.38", + "deps": [ + "f" + ] + }, + "batch-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/batch-mode.el", + "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p" + }, + "recipe": { + "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140807.1550", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/puppet-mode.git", + "sha256": "f87858f13c64aa3c525610daea0d017b042ef3f518976f9a0822fb0001eea76f", + "rev": "268ec790603a4121f62822ca6c26e9038a1b0375" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.1408", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "region-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/region-state.el.git", + "sha256": "2e3c23e8cd86e52bbcfa9c619f9ac555088e166a4959dfbece7f779c4307503f", + "rev": "07ffb7d9ada2fcd204f3447f078c265d25f36f60" + }, + "recipe": { + "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.438", + "deps": [] + }, + "heroku-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonathanchu/heroku-theme.git", + "sha256": "4d469acc927b9f5cd6e1ba2ee259c0471dd6a5de09950ce2b402240291598839", + "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d" + }, + "recipe": { + "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.2119", + "deps": [] + }, + "commify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ddoherty03/commify.git", + "sha256": "22e8330f721e34492ed79e83d5bce5a85b3cdef99693753b02250d775af269c4", + "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a" + }, + "recipe": { + "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.338", + "deps": [ + "s" + ] + }, + "fillcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snarfed/fillcode.git", + "sha256": "87f01c76f0572de76081368fdfcdf42f63f7994527d1fc7d7bd8b4ca56af3cf5", + "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8" + }, + "recipe": { + "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.1141", + "deps": [] + }, + "gs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/emacs-grads.git", + "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.406", + "deps": [] + }, + "mip-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gaudecker/mip-mode.git", + "sha256": "cc4e02c5d93ca9fb3f9ecef74f0a182362423fa13ae2b7fb00b68104488c698a", + "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c" + }, + "recipe": { + "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.17", + "deps": [] + }, + "marmalade-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-marmalade-upload.git", + "sha256": "99ae633075f61392a8c6d893b3ba26997edb2ef2f79022e7afc545671308f304", + "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a" + }, + "recipe": { + "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1407", + "deps": [ + "gh", + "kv", + "web" + ] + }, + "live-code-talks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/live-code-talks.git", + "sha256": "a231172de5fa098b4b1fdce86491fee9579ec1a8b5ff7e522fa7b4e3b7165dc9", + "rev": "fece58108939a53104f88d348298c9e122f25b75" + }, + "recipe": { + "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1623", + "deps": [ + "cl-lib", + "emacs", + "narrowed-page-navigation" + ] + }, + "smooth-scroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/smooth-scroll.el.git", + "sha256": "668ccfdcd9b25ba6ea15b3b4e0c25bb76aad802dd73fb9df6290ddf52ca93887", + "rev": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45" + }, + "recipe": { + "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130321.2314", + "deps": [] + }, + "helm-c-moccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-c-moccur.el.git", + "sha256": "86b08a004db181457c67ed38b26f770496105dc2c8e063420fe22966d5d234ea", + "rev": "a0f70c8bc750b1e0a5f417a70c9ca192eb7a1e83" + }, + "recipe": { + "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.2142", + "deps": [ + "color-moccur", + "helm" + ] + }, + "unicode-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-fonts.git", + "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" + }, + "recipe": { + "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1732", + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "eww-lnum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/eww-lnum.git", + "sha256": "40e8319d2d40dc4754d452420f2fe5dba0df02fa572f36060369289e4f70dfc4", + "rev": "4b0ecec769919ecb05ca4fb15ec51911ba589929" + }, + "recipe": { + "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150102.912", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ijp/mbe.el.git", + "sha256": "665d218cb926450c6b4ccb8c34c34883d0f5f2628042dc1dca5f5cfbdaf3dcff", + "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.534", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "relative-line-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/relative-line-numbers.git", + "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" + }, + "recipe": { + "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1646", + "deps": [ + "emacs" + ] + }, + "electric-case": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/electric-case.git", + "sha256": "28432f21b871128f02544a9b2ad81d6c8aaefbfff00b6826609d649dc2089e68", + "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7" + }, + "recipe": { + "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.612", + "deps": [] + }, + "python-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/python-mode-devs/python-mode.git", + "sha256": "73c91e494d616370b0438c0e060b93ced188919a60f59225a56d10209eff5c60", + "rev": "e8372b87b802ec1771dead1505af9ba71fc04b8d" + }, + "recipe": { + "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.426", + "deps": [] + }, + "ob-sml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/swannodette/ob-sml.git", + "sha256": "cf7be992aad98b0eacf7bcd3fb1187506b6aaf20e8557955ee91bd8888b2d53f", + "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130829.1343", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/mu4e-alert.git", + "sha256": "f9cbf71b5a8ea7f18ef71f09ff3dafd1f001fb72bd1f268f3303ecc672227ad2", + "rev": "2331db1777a401a1385bfadb6d46eaf4d7fc555f" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.317", + "deps": [ + "alert", + "emacs", + "s" + ] + }, + "preseed-generic-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/suntong001/preseed-generic-mode.git", + "sha256": "403aab634dd51ab8626c2ef6e8b75074e51c05e13dfdd80f7272102c984dd1b7", + "rev": "19bce980d41607bef8af4b1901343abfca0f0855" + }, + "recipe": { + "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1441", + "deps": [] + }, + "erc-colorize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/erc-colorize.git", + "sha256": "f0ded255c2d3c8de408a6c05fb6115cd5e1d6cb436d9642c2f2466e9a1516b62", + "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865" + }, + "recipe": { + "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150725.909", + "deps": [] + }, + "django-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myfreeweb/django-mode.git", + "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" + }, + "recipe": { + "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.1011", + "deps": [ + "yasnippet" + ] + }, + "ham-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/ham-mode.git", + "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" + }, + "recipe": { + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.806", + "deps": [ + "html-to-markdown", + "markdown-mode" + ] + }, + "toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/elisp.git", + "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" + }, + "recipe": { + "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1727", + "deps": [] + }, + "slime-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-slime-theme.git", + "sha256": "5d5ada753309e3df3020aa2a0ce79ee3a3a1d18839c70b9baf5a3fa8eb4d358f", + "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f" + }, + "recipe": { + "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "modeline-posn": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el", + "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i" + }, + "recipe": { + "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150228.1213", + "deps": [] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-direx.git", + "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140815.1813", + "deps": [ + "direx", + "e2wm" + ] + }, + "macros+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/macros+.el", + "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q" + }, + "recipe": { + "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1820", + "deps": [] + }, + "ruby-electric": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53114" + }, + "recipe": { + "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.952", + "deps": [] + }, + "rcirc-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csantosb/rcirc-alert.git", + "sha256": "e21339e42a4ab171b3b9eb8b443c88fc797e92ac5251ee2e7d620bfdc1cdbe75", + "rev": "0adf8ff9c47023fec578f678424be62b0f49057f" + }, + "recipe": { + "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.447", + "deps": [] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/multi-web-mode.git", + "sha256": "a8142f518d71a69619d243c33a55d63d0ee2ee504732bac571966f79fb048f58", + "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130823.2254", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110911.504", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/history.git", + "sha256": "e639225dff486cc78fc052fd1ee394a4e670ea0a19b8ca5c616336f2c187c7b9", + "rev": "4bb475513f98ec07db55212a504b6167dae3a646" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150409.1934", + "deps": [ + "emacs" + ] + }, + "auto-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/auto-dictionary-mode.git", + "sha256": "4b643bc3ac02b1c9dbda36bca373fed676143cc16bb281e4597bb792a80ffeba", + "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7" + }, + "recipe": { + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150410.1110", + "deps": [] + }, + "defproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kotfic/defproject.git", + "sha256": "cd8ea23540108ca4f993425e8e62b65e111f459ca2e12152cedde1eb09650d0d", + "rev": "674d48a5e34cb4bba76faa38ee901322ec649086" + }, + "recipe": { + "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1619", + "deps": [ + "emacs" + ] + }, + "project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist.git", + "sha256": "8ff90cf595c202ae759835658a220787f50db5567198c03a3fe81883466481ee", + "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1524", + "deps": [] + }, + "popup-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/popup-kill-ring.git", + "sha256": "d646b03da29f1135b616aa52c0fadd7559aa989578dadc1bc015e43d66a5bcfd", + "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa" + }, + "recipe": { + "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131020.1354", + "deps": [ + "popup", + "pos-tip" + ] + }, + "popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/popup-el.git", + "sha256": "8b57b907e7934ff046c9c5080172e08f925ef4c78aac14d28cec70564272d111", + "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.742", + "deps": [ + "cl-lib" + ] + }, + "evil-commentary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-commentary.git", + "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "rev": "122880a6721fcf16479f406c78c6e490a25efab0" + }, + "recipe": { + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.527", + "deps": [ + "evil" + ] + }, + "mozc-im": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/mozc-im.git", + "sha256": "591880c0bd0d1f6666f60542adeb7101ce4731e33b9ec80f400408de8577450e", + "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d" + }, + "recipe": { + "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150419.649", + "deps": [ + "mozc" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/shut-up.git", + "sha256": "ef307421c393568142ae6c32ed80c386c07468916525d484c6496a89a71c6a2a", + "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.722", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/orglink.git", + "sha256": "6dfc9bd424a99acc83c3316d07d5367c88f348de967997d9a2569ad16849c38b", + "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.1206", + "deps": [ + "dash", + "org" + ] + }, + "flymake-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-shell.git", + "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" + }, + "recipe": { + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1300", + "deps": [ + "flymake-easy" + ] + }, + "uimage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/uimage.git", + "sha256": "431e5b91fd9aa07f125d181b54a2b8152783b48d44198baf41b350f577b01ba7", + "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413" + }, + "recipe": { + "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.804", + "deps": [] + }, + "shakespeare-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CodyReichert/shakespeare-mode.git", + "sha256": "2691fe682314de37209aaf8d46ce435ae7bfdfe30f6ca28366ca134ff8a07d6e", + "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02" + }, + "recipe": { + "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.912", + "deps": [] + }, + "gregorio-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cajetanus/gregorio-mode.el.git", + "sha256": "3f6cfa9b7718deb45c9d47c0668b8cd1580f757ea0531af280d23f258cf8f2a5", + "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3" + }, + "recipe": { + "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.920", + "deps": [] + }, + "ponylang-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/ponylang-mode.git", + "sha256": "23d754a3355f362c79abbfd21a48ef6738943d65038423eb2237d451fb842d33", + "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc" + }, + "recipe": { + "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.450", + "deps": [ + "dash" + ] + }, + "e2ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/e2ansi.git", + "sha256": "bca48071c75dc14b526a22d37014ee36d22e886329403c17c1cb7dc26f9b2834", + "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90" + }, + "recipe": { + "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.1713", + "deps": [] + }, + "sunny-day-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/sunny-day-theme.git", + "sha256": "ac9600e21e9ab8ff2f0c3a4c4372d257a7fef6bb49fbf979a1fc6b2ee5841e56", + "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00" + }, + "recipe": { + "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140413.1625", + "deps": [] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/simenheg/rdf-prefix.git", + "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.816", + "deps": [] + }, + "bs-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bs-ext.el", + "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw" + }, + "recipe": { + "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.659", + "deps": [] + }, + "edit-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/enoson/edit-at-point.el.git", + "sha256": "dcc839e3adfe6454c36d73ebf63ead27994dc49f781ebc7ef0fa9cf1ec6b3c33", + "rev": "3b800c11685102e1eab62ec71c5fc1589ebb81a7" + }, + "recipe": { + "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.824", + "deps": [] + }, + "centered-window-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikame/centered-window-mode.git", + "sha256": "e7e9b7e154326e3ad5ddfe1929c27180cbc404ec684a75a26b4ccc1698675926", + "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd" + }, + "recipe": { + "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140730.447", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-migemo.git", + "sha256": "3d6ee1888c454a0f05003a6356d649b244755817511f37ff1e9e68595cbef43f", + "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.2256", + "deps": [ + "cl-lib", + "emacs", + "helm-core", + "migemo" + ] + }, + "gather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-gather.git", + "sha256": "7f4b09a451121f34dcf382b12d19d08ce3d337eebe0faca53d8dd788b3ee85a8", + "rev": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b" + }, + "recipe": { + "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141230.738", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-test-simple.git", + "sha256": "eb64bcb28aedc1e0ecf15775d47195f15d95438a3153411e9a5cf58865d52781", + "rev": "6fd325beabe3dfe72eb9ec3ceb40ee3f43ae8e92" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2143", + "deps": [] + }, + "auto-dim-other-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mina86/auto-dim-other-buffers.el.git", + "sha256": "e0a9bcaaa6d63503128ded80df0529b32d0b2b40301643363bb4e1c9ea8c959d", + "rev": "8b909cb210a9e4482bcc43858cf8d15da4ecd1d2" + }, + "recipe": { + "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.1102", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/projectile-rails.git", + "sha256": "fcbcedf6867e0f4769b1772087bebf4e4ed0b675b3bbebe3e12a24c471e165e9", + "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1145", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "furl": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/furl-el/", + "sha256": "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5", + "rev": "9a96eeea0046" + }, + "recipe": { + "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110112.1907", + "deps": [] + }, + "change-inner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/change-inner.el.git", + "sha256": "3f29d042fe69e9ed7db61e7fd975aaf417bff492f3534b47a34b2abe46c23ad5", + "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8" + }, + "recipe": { + "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1044", + "deps": [ + "expand-region" + ] + }, + "flymake-yaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-yaml.git", + "sha256": "95de0aaf47d5bbf126774e91d28da445b4f9874c537190568a9a15a4d2a8aa55", + "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10" + }, + "recipe": { + "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130423.1048", + "deps": [ + "flymake-easy" + ] + }, + "tabulated-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/tabulated-list.el.git", + "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" + }, + "recipe": { + "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120406.1551", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/hippie-expand-slime.git", + "sha256": "e3633feb83abc2e85f04bb338f2ba53417b88881516e2b0455ba303eea29dd62", + "rev": "432de36799fffc920e5bff7a4691f3c67236e59c" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130907.332", + "deps": [] + }, + "pgdevenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/pgdevenv-el.git", + "sha256": "92fdf50b6d218383ea5f4ec0450135cb14b6cf2a7b91e30ff0c7b04804232d31", + "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132" + }, + "recipe": { + "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.1636", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rspivak/httpcode.el.git", + "sha256": "c4e6c0422f3fe7dc4fad5f6375c170a4a36c7f090cd37a37873f19da39465f0a", + "rev": "a45e735082b09477cd704a99294d336cdbeb12ba" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121001.2245", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/keyset.git", + "sha256": "de2bb5143ac69279e28c16de3f005d1de441e6a16aee82e1a5c4fb0eb4151285", + "rev": "727661420ce4b2c67c2dc6188d2822c22761904a" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.2330", + "deps": [ + "cl-lib", + "dash" + ] + }, + "editorconfig-fnmatch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "cl-lib" + ] + }, + "plantuml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wildsoul/plantuml-mode.git", + "sha256": "75ed777d60f443ba636462a62ecf2429967a177a8f4f0ddabf7a4f9e5201f543", + "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa" + }, + "recipe": { + "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131031.1832", + "deps": [ + "auto-complete" + ] + }, + "anything-git-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/anything-git-files-el.git", + "sha256": "59acbcd7d2704b373cb7fc83559e36c55816d3928cb5695060a57320c8b9403e", + "rev": "efeec4f8001e2a95f36a9c31181bb30f7561015c" + }, + "recipe": { + "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130609.443", + "deps": [ + "anything" + ] + }, + "smart-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/smart-compile.el", + "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd" + }, + "recipe": { + "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1147", + "deps": [] + }, + "git-gutter-fringe+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", + "sha256": "d1119bb18b5dd752e22c870ad29218ab4b2b28a752c249e26c96aefb470a52e7", + "rev": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc" + }, + "recipe": { + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.603", + "deps": [ + "fringe-helper", + "git-gutter+" + ] + }, + "encourage-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/halbtuerke/encourage-mode.el.git", + "sha256": "089aea9dae8addd52182bd2847419965074ab1499853153fb053dba201d1b64c", + "rev": "99edacf2d94d168d3da0609860dc7253db7c9815" + }, + "recipe": { + "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.305", + "deps": [ + "emacs" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-milkode.git", + "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140927.29", + "deps": [] + }, + "palette": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/palette.el", + "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" + }, + "recipe": { + "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1607", + "deps": [ + "hexrgb" + ] + }, + "egg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/egg.git", + "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.2015", + "deps": [] + }, + "aok": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/aok.el", + "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" + }, + "recipe": { + "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.627", + "deps": [] + }, + "quack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/quack.git", + "sha256": "c2f4a8ec29b474cad20905ead77b5c9c465b203da840c4ac8b40c96682cdf360", + "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb" + }, + "recipe": { + "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130126.1823", + "deps": [] + }, + "jaword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/jaword.git", + "sha256": "6a3a42614e122ce44f059f084eefa28bf0d1814a97b6f95fd8b439831aef6090", + "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3" + }, + "recipe": { + "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150325.918", + "deps": [ + "tinysegmenter" + ] + }, + "greymatters-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/greymatters-theme.git", + "sha256": "77497e9ec30076369072e6fdaaa82baae3b3f5274d390c5ccea61473534d8091", + "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1" + }, + "recipe": { + "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.623", + "deps": [ + "emacs" + ] + }, + "ample-zen-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mjwall/ample-zen.git", + "sha256": "4a0b465fa71d47a725a31d8b654c6705b6b51ce6bb8567a61841a5d00a95e9a3", + "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd" + }, + "recipe": { + "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1554", + "deps": [] + }, + "at": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/at-el.git", + "sha256": "180955917cd8db65f58a42b6deff9e9b9e25f1cc8b3fb5dd0e4fd099de9c0438", + "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc" + }, + "recipe": { + "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140707.720", + "deps": [ + "emacs", + "queue" + ] + }, + "osx-clipboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/osx-clipboard-mode.git", + "sha256": "bba42f6aa9ac0c69bda11db78ee369d3e29b6daa68e85f609e9343d1bd0bd6de", + "rev": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d" + }, + "recipe": { + "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.217", + "deps": [] + }, + "ac-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/ac-c-headers.git", + "sha256": "1e483885770f4695df195f6fd7f90d4eb364133a68326bb9045bbe724b90d9fc", + "rev": "de13a1d35b311e6601556d8ef163de102057deea" + }, + "recipe": { + "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.334", + "deps": [ + "auto-complete" + ] + }, + "tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.853", + "deps": [ + "cl-lib", + "emacs", + "json" + ] + }, + "helm-swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-swoop.git", + "sha256": "de00ac9f6bc4ed0ff3f4ab860fafe27c0918d9431303fc5620bc6206c42f7efc", + "rev": "d953ad605c989c40da5bc0fcb2953104ea7210e6" + }, + "recipe": { + "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1950", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/skeletor.el.git", + "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.10", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "let-alist", + "s" + ] + }, + "css-comb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/channikhabra/css-comb.el.git", + "sha256": "641a187c8c385ee4f162ed346be311223296cb59373c6b4947e82527548e810b", + "rev": "980251dc5d3ce0e607498f8a793f6d67a77d9cda" + }, + "recipe": { + "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150502.1528", + "deps": [] + }, + "counsel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", + "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + }, + "recipe": { + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.519", + "deps": [ + "emacs", + "swiper" + ] + }, + "visual-fill-column": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/visual-fill-column.git", + "sha256": "42250fca9399ef5db123477ad6723f7677fd0f850d26d0cc8e7172800171f8d3", + "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa" + }, + "recipe": { + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1751", + "deps": [ + "emacs" + ] + }, + "google-c-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/styleguide.git", + "sha256": "a6d5f9dcdcf525ca85e5f6f3d449879837f2b97f043f73f98a8a1849e92cb599", + "rev": "e1333014b5ffec70af81ace136c830856d13683e" + }, + "recipe": { + "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1318", + "deps": [] + }, + "android-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/android-mode.git", + "sha256": "399f0199f5a124dc5a12b5f7fd4557e3d32314bf3cbc12bbbb7f6f32deb87f43", + "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.744", + "deps": [] + }, + "efire": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/efire.git", + "sha256": "db54758d39a1c52c1c7583ec822b4d9d8e36060c2049a2b52de32a91c6f651b0", + "rev": "91a644662afb352475efad0b377713656f131e5c" + }, + "recipe": { + "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.1531", + "deps": [ + "circe" + ] + }, + "highlight-escape-sequences": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/highlight-escape-sequences.git", + "sha256": "cfe7e33ba2e3c5c9edad64d4a3b09b008945308b510508652d3841c557404e93", + "rev": "083954e5c39b2cc10cfc12192099e76e2b84b072" + }, + "recipe": { + "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2110", + "deps": [] + }, + "hl-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/hl-indent.git", + "sha256": "4805bbfecf67d8f37240568f0fa31829051705224f8d07d334340e79bdee89c6", + "rev": "e749f726ce589e04bb508160e7b290b61fb64d75" + }, + "recipe": { + "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.1530", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "undercover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sviridov/undercover.el.git", + "sha256": "f29644cd8fc903556f2ed11d12c4e7a9318f91480489a70347d45b4223c2753a", + "rev": "1a203408a43c3d984be143768793a94b8f2ddb0c" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.1210", + "deps": [ + "dash", + "emacs", + "shut-up" + ] + }, + "dklrt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dklrt.git", + "sha256": "1a6af879dbad3fa2d42e7bd43e3bb0c77aa656045fe40d527058905a2cb57618", + "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba" + }, + "recipe": { + "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.741", + "deps": [ + "dkmisc", + "emacs", + "ledger-mode" + ] + }, + "clojure-quick-repls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/symfrog/clojure-quick-repls.git", + "sha256": "f94f394f1a8f917f5532f4a256035bb392c3645ae5f154f136560b2c6684eaed", + "rev": "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9" + }, + "recipe": { + "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.236", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/rase.git", + "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120928.1545", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js2-mode.git", + "sha256": "6fad831cc06397a21b928334e065410a8068b9976972d3adc99a2b79df76697c", + "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.605", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "yabin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/yabin.git", + "sha256": "f5d3619e1f72109d3afead6827db7e8e3e1cb0814478691fe2cc330b3fdfd738", + "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5" + }, + "recipe": { + "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140205.2151", + "deps": [] + }, + "symon-lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/symon-lingr.git", + "sha256": "12f5ed02d84294ee73c84ddea56ed786111982450daefc920b6ee66d3b7d0b0c", + "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f" + }, + "recipe": { + "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.842", + "deps": [ + "cl-lib", + "symon" + ] + }, + "zones": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zones.el", + "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd" + }, + "recipe": { + "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.1438", + "deps": [] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/window-end-visible.git", + "sha256": "006542be695efee08e12d7bacfe59c3ab007c153b31ca63ad28c9a48422f33f0", + "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "dic-lookup-w3m": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/", + "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc", + "rev": "79" + }, + "recipe": { + "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1748", + "deps": [ + "stem", + "w3m" + ] + }, + "spacegray-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruce/emacs-spacegray-theme.git", + "sha256": "4b53e3aedadca66b92d1d90d5640e795e19163f388a5569ea43bab9feab912a9", + "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749" + }, + "recipe": { + "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1431", + "deps": [ + "emacs" + ] + }, + "multi-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ReanGD/emacs-multi-compile.git", + "sha256": "1d29e61e184217c2014e62560166b36916be391d64d71880de3de7e296238c00", + "rev": "61a4a7b35cd78773305150f533f51587367378db" + }, + "recipe": { + "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.1640", + "deps": [ + "emacs" + ] + }, + "scratch-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/scratch-log.git", + "sha256": "7eb3712024c8d53e31dcb66a8d8e7a83c21c0bfdcf4bf98c917118dab74539a6", + "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0" + }, + "recipe": { + "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.143", + "deps": [] + }, + "clmemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/clmemo.git", + "sha256": "a1796c71f43d03d6e39f916aa26bd5fffb2c3572e90ba3a9a87257c6ef91487d", + "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf" + }, + "recipe": { + "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.747", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rbenv.el.git", + "sha256": "506ce345674da0d5f34ed245944b012819b8a32e7cc77ba2d3d430eb8ccea079", + "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.149", + "deps": [] + }, + "org-agenda-property": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/org-agenda-property.git", + "sha256": "9edd0db344b03254e85f9a2cbcbb2b13fcc5716b301690988d11cb9648c55a87", + "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8" + }, + "recipe": { + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.1616", + "deps": [ + "emacs" + ] + }, + "standoff-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lueck/standoff-mode.git", + "sha256": "1f47d54b64d6d94bd41f890708bef0d6c5a93fc4629f60040628b321dc65d007", + "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6" + }, + "recipe": { + "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150628.1842", + "deps": [] + }, + "phi-rectangle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-rectangle.git", + "sha256": "6447d0d0d0600c4dbf9669a44c39814c8a31528fea5b926c758da397d3294c34", + "rev": "0c12716afc71d803d1f39417469521dc465762d9" + }, + "recipe": { + "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.54", + "deps": [] + }, + "dart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/dart-mode.git", + "sha256": "8c36e46be3bb1b3b7295c8b4625046aab259b4a24d6b3841e4d77ffbcd51a7dd", + "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150721.1854", + "deps": [ + "cl-lib", + "dash", + "flycheck" + ] + }, + "peek-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/erikriverson/peek-mode.git", + "sha256": "2bf7b8d0263e0ee54caa1cba3d4f747a74a3d2d8ea7dfadf6c497e40e935db86", + "rev": "55a7dd011375330c7d57322257a5167516702c71" + }, + "recipe": { + "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.1446", + "deps": [ + "elnode" + ] + }, + "disk": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/disk.el", + "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" + }, + "recipe": { + "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20081128.906", + "deps": [] + }, + "refheap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Raynes/refheap.el.git", + "sha256": "280d33c837bdee2adaaeabfcfa12c3681e17037e65aefdb155d462c7a4887f22", + "rev": "d41f8efb8e913b29035f545914859e3f18287492" + }, + "recipe": { + "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1602", + "deps": [ + "json" + ] + }, + "navorski": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/navorski.el.git", + "sha256": "b8ea7b60cbeafef04e6b55d18457acdba8bf0f785a962ef022ea9ae0775045c9", + "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.1224", + "deps": [ + "dash", + "multi-term", + "s" + ] + }, + "info+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/info+.el", + "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g" + }, + "recipe": { + "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1636", + "deps": [] + }, + "manage-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/manage-minor-mode.git", + "sha256": "07f440ff816fad5a4a122297213565e7c92050678532da6a96d13773d83c9483", + "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e" + }, + "recipe": { + "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.1100", + "deps": [ + "emacs" + ] + }, + "yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/yasnippet.git", + "sha256": "ae030f66630e1099efe2897b70ab6f30858139f24e5c2ebef32836207cc18a2d", + "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2333", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/erc-crypt.git", + "sha256": "d9d1b91963f986a018fd79142aaabf8566a77f1b31005bb2d47c1c67ba20f7c3", + "rev": "5d548bab298a27ca5886392c129b14d0e93067be" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1257", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/log4e.git", + "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.705", + "deps": [] + }, + "graphviz-dot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ppareit/graphviz-dot-mode.git", + "sha256": "2e3fdb4bd80015e4a4ebd457e50d00cc8cc0c9254ae54aef6a0cff19e150268b", + "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84" + }, + "recipe": { + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.821", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", + "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140604.1147", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "melpa-upstream-visit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/melpa-upstream-visit.git", + "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" + }, + "recipe": { + "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.533", + "deps": [ + "s" + ] + }, + "php+-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/phpplus-mode.git", + "sha256": "648a2514b287ac585b920f379b830345f4487a36d0a657f969a6fe482249fe60", + "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa" + }, + "recipe": { + "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121129.1452", + "deps": [] + }, + "col-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/col-highlight.el", + "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n" + }, + "recipe": { + "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1534", + "deps": [ + "vline" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/paxedit.git", + "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.1808", + "deps": [ + "cl-lib", + "paredit" + ] + }, + "e2wm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-manager.git", + "sha256": "6841f88d208f048b9fbb153d43f0ef1c06b2c019d39a89336b062c71da74dde1", + "rev": "71543ce4502bdb09c888e24b3a80e47786785b88" + }, + "recipe": { + "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150608.1923", + "deps": [ + "window-layout" + ] + }, + "helm-emmet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-emmet.git", + "sha256": "6907c887ca9a5f0649fd057e6687355ce4dafb2ed74baadfd91a5e9478b17530", + "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91" + }, + "recipe": { + "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.129", + "deps": [ + "emmet-mode", + "helm" + ] + }, + "xmlgen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/xmlgen.git", + "sha256": "002ac9c84e7ec4bd53ab1f600032f7648e9f71e33c51a1430ee02bb3780465da", + "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92" + }, + "recipe": { + "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130219.419", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-spell.git", + "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130520.1155", + "deps": [] + }, + "helm-chronos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dxknight/helm-chronos.git", + "sha256": "11997a9e53a931105d769dde6ce800a43a6f5723975eb7f98941c77c9123b2b6", + "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef" + }, + "recipe": { + "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.1536", + "deps": [ + "chronos", + "helm" + ] + }, + "expand-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/expand-line.git", + "sha256": "ffb87c442a332ec5aa09ec21750985857eb142b6a2597f110791959c6181e473", + "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372" + }, + "recipe": { + "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2107", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-ac.git", + "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140302.613", + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ] + }, + "omnisharp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OmniSharp/omnisharp-emacs.git", + "branchName": "master", + "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" + }, + "recipe": { + "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1314", + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "flycheck", + "json", + "popup", + "s" + ] + }, + "project-local-variables": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el", + "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw" + }, + "recipe": { + "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080502.1152", + "deps": [] + }, + "company-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/company-racer.git", + "sha256": "3ecae70e51619aee0360b742223729e73b77ba3a8db8c167fe6ee9a46b31c19c", + "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00" + }, + "recipe": { + "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150628.2133", + "deps": [ + "cl-lib", + "company", + "deferred", + "emacs" + ] + }, + "lang-refactor-perl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-lang-refactor-perl.git", + "sha256": "d2e10cf063a8738a2eeb356cba134ad6cf5c956ad60eaa8e0ce5b73d6d3cb38c", + "rev": "691bd69639de6b7af357e3b7143563ececd9c497" + }, + "recipe": { + "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131122.1527", + "deps": [] + }, + "top-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/top-mode.el", + "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn" + }, + "recipe": { + "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1239", + "deps": [] + }, + "gnuplot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/gnuplot-mode.git", + "sha256": "a12f7adfab804011429039c8c612f3ebe86ce9a9f3ab22908477e63d4ddd1fd7", + "rev": "296ff8d263513cdfb8e85b06e2441c751565b793" + }, + "recipe": { + "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.139", + "deps": [] + }, + "show-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smmcg/showcss-mode.git", + "sha256": "ad9ec20bae02365e56a6ee2e704ad7cf31e870b3cfc2f57bbb340dc0fd6a6858", + "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039" + }, + "recipe": { + "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1208", + "deps": [ + "dom" + ] + }, + "picolisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/picolisp-mode.git", + "sha256": "2584dbeafc68de7bef5a25fe30cb7a5c1bafa0aee8d0c1ed5679e929bdf6215d", + "rev": "1a537b14090813f46cbba54636d40365e1a8067e" + }, + "recipe": { + "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.355", + "deps": [] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-numbers.git", + "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.807", + "deps": [ + "emacs", + "parent-mode" + ] + }, + "flash-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/flash-region.git", + "sha256": "2ec846275edf6ef7ecd4b4255d9f437da6d74d6759f11b4af9858b2d4da5e77c", + "rev": "261b3597b23cdd40e5c14262a5687bcc6c1d0901" + }, + "recipe": { + "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130923.1317", + "deps": [] + }, + "org-toodledo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-toodledo.git", + "sha256": "1b4c1078be473c088ce5cbb57fd6ba054502fdef7c3b3ede352eef66ad9d3803", + "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968" + }, + "recipe": { + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150301.513", + "deps": [ + "cl-lib", + "emacs", + "request-deferred" + ] + }, + "occur-context-resize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/occur-context-resize.el.git", + "sha256": "8c64ea472a8be03deba65b3bf85b275865dfb4e3b6bc6cac5e5eefa9e55e8f88", + "rev": "e64898124528244134bd125aaa39e396406b01e8" + }, + "recipe": { + "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140826.1449", + "deps": [] + }, + "evil-surround": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timcharper/evil-surround.git", + "sha256": "3b7da258c343456acca4ec284ffc39372039b6f8d6116e2707a57e800d157e97", + "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94" + }, + "recipe": { + "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1418", + "deps": [] + }, + "dts-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bgamari/dts-mode.git", + "sha256": "34ad4b8272c893d5e852e5ae3d99a0d9e7498c76a71cf1b054a8617717dc4e31", + "rev": "6ec1443ead16105234765f9b48df9b4aca562e61" + }, + "recipe": { + "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.1804", + "deps": [] + }, + "js2-highlight-vars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/js2-highlight-vars.el.git", + "sha256": "2f79aa5897929d5a29afc7b2bb7d80302e2eee5013484da7854e8e8a822a4dbd", + "rev": "5857999e6a376810816a0bee71f6d235ffe8911d" + }, + "recipe": { + "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.308", + "deps": [ + "js2-mode" + ] + }, + "processing-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.632", + "deps": [] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/csharp-mode.git", + "sha256": "02b7dfe91e0e59d929d1351c0ddd30e49e030fbc52042286a665ad878543b03a", + "rev": "d0d7ec3ca71fe4d89c33b2803dc6bb68b6b8c69e" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1630", + "deps": [] + }, + "evil-avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louy2/evil-avy.git", + "sha256": "34c952bcd4b21135478a8588aaf121ef2ce816c529944e5fab854ca8edb2dfe0", + "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5" + }, + "recipe": { + "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.248", + "deps": [ + "avy", + "cl-lib", + "emacs", + "evil" + ] + }, + "evil-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabesoft/evil-mc.git", + "sha256": "487bd0544681be37ad27ae57de4e5d6c02f712728d4e7568e75cf70110d46ee5", + "rev": "a56f83460a6a90dc504f5935b0ab105810a41179" + }, + "recipe": { + "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.2032", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "bbdb-csv-import": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/iankelling/bbdb-csv-import.git", + "sha256": "34248f4f6ec5afeb8960cb563c5487fa7fa78099d7bb5f7896ffb7b1788a3bc1", + "rev": "7739d10ebe1787a72aa74085e9baedd0f4988b00" + }, + "recipe": { + "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140802.642", + "deps": [ + "bbdb", + "dash", + "pcsv" + ] + }, + "all-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/all-ext.el", + "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m" + }, + "recipe": { + "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.706", + "deps": [ + "all" + ] + }, + "cherry-blossom-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inlinestyle/emacs-cherry-blossom-theme.git", + "sha256": "7ac6a2afdde616ed5644ba81aab7de0488f3484e385373e995fa67dc8c60376b", + "rev": "eea7653e00f35973857ee23b27bc2fae5e753e50" + }, + "recipe": { + "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2242", + "deps": [ + "emacs" + ] + }, + "wanderlust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/wanderlust.git", + "sha256": "a241b1729b95fdaa7f98380490203f0398042e259fe9e980087193a1dce9a66d", + "rev": "912c443a912e037d898941397b747d3325aa01b3" + }, + "recipe": { + "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1727", + "deps": [ + "semi" + ] + }, + "private": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/private.git", + "sha256": "56737b7a1eacb81e0ba76b1d5b2c0a1ea826e76efea18ddfe1cb4bf558d309c4", + "rev": "9266d01c095895cc3ee9de95bc20511e88353755" + }, + "recipe": { + "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1957", + "deps": [ + "aes" + ] + }, + "jquery-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/jquery-doc.el.git", + "sha256": "ecb0c47313989ed8af3b2167bb48bbdfb52f31f1160ee87bb36ea1e682bd2a29", + "rev": "24032284919b942ec27707d929bdd8bf48420062" + }, + "recipe": { + "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.258", + "deps": [] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-mode.git", + "sha256": "420d69f4c150ae61f75a3c941fc420e83c783f6c4766471e443320ebb466a3a3", + "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.2225", + "deps": [] + }, + "i2b2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danlamanna/i2b2-mode.git", + "sha256": "686dbb91bb216de167f9823ea0fa5fe55de9d8c7a44b255e4174bb09def56486", + "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a" + }, + "recipe": { + "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140709.2004", + "deps": [] + }, + "ess-R-object-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-object-popup.el.git", + "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" + }, + "recipe": { + "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130302.536", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/solarized-emacs.git", + "sha256": "67a82b93e56d4e61be904255317e5358fcbfc8a23509fd8958585ce750e68935", + "rev": "7a43652689de5188198c77715e2dbc111de760bf" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.735", + "deps": [ + "cl-lib", + "dash" + ] + }, + "tab-group": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/tab-group-el.git", + "sha256": "24430509a76df7e466b310f81240f0ee64cba4b3d04a56cb9ec154bddf7adb51", + "rev": "5a290ec2608e4100fb188fd60ecb77affcc3465b" + }, + "recipe": { + "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.850", + "deps": [] + }, + "pig-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/motus/pig-mode.git", + "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" + }, + "recipe": { + "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130913.124", + "deps": [ + "yasnippet" + ] + }, + "closure-lint-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/closure-lint-mode.git", + "sha256": "ca8e981668bc3f23a33163b572c684e26235dca371d0761ae8e4cbb2006e1c6c", + "rev": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5" + }, + "recipe": { + "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101118.1524", + "deps": [] + }, + "helm-jstack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/helm-jstack.git", + "sha256": "ef08b3fdd2b7144c08b3696e07882e3d64197f83aa77630f36cac48e36bb186e", + "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4" + }, + "recipe": { + "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.2322", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "osx-trash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/osx-trash.el.git", + "sha256": "0eb04d1737d208e3dccd84f623af5346f796bf753705189cbd4bbe895cd302fe", + "rev": "a8fe326624e27a0e128c68940c7a9efb001ceee6" + }, + "recipe": { + "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.935", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-readme.git", + "sha256": "0dcd617c281ef9675ca1fe829defbdc938777657b3a9d16c86f2500ab4087ae0", + "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.617", + "deps": [ + "cl-lib", + "header2", + "http-post-simple", + "lib-requires", + "yaoddmuse" + ] + }, + "org2jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/org2jekyll.git", + "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" + }, + "recipe": { + "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.847", + "deps": [ + "dash-functional", + "deferred", + "s" + ] + }, + "pastels-on-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/1974259.git", + "sha256": "c53b4f2c7449bf74648c091f249c33da3ddd8f621474a8901745b4e985cb26ab", + "rev": "854839a0b4bf8c3f6a7d947926bf41d690547002" + }, + "recipe": { + "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120304.1222", + "deps": [] + }, + "bing-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/bing-dict.el.git", + "sha256": "74480bc2489f145f9c7e207b32252a21ef40dcf250a616628b9b8d3e0ac9cd27", + "rev": "85d94acc9a85f60125f00083af9702bca8bdbd19" + }, + "recipe": { + "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.1311", + "deps": [] + }, + "django-manage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gopar/django-manage.git", + "sha256": "d7121d2c457f451c654a3533ac1b4d640c511ca27d3805eb2f81ebd9a968e1a9", + "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398" + }, + "recipe": { + "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.130", + "deps": [ + "hydra" + ] + }, + "ctable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-ctable.git", + "sha256": "c009d0aa7bc81f03d335738600b960c50c7139dda2feb74bf6fa490e97a59e01", + "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140304.1859", + "deps": [] + }, + "elscreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/elscreen.git", + "sha256": "35b0dffdc054bc780ca660e4744a13e666dbb6be0c8431f80fd192894255b314", + "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61" + }, + "recipe": { + "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.2000", + "deps": [] + }, + "highlight-indent-guides": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarthFennec/highlight-indent-guides.git", + "sha256": "b2bbe3f3b530eb94d722150b98a8cd8d410eb86064328a005e5d7f7a4b66a182", + "rev": "4473af2bbeb80d50681a64b66f5891262cf52346" + }, + "recipe": { + "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1427", + "deps": [] + }, + "ivs-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ivs-edit.git", + "sha256": "6acf5b90ce8f5c9cf1da2e2ae0f4cb24ad06f48a08c7362c3bd2e4a59dbf46a4", + "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b" + }, + "recipe": { + "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140720.546", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "typing": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/typing.el", + "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31" + }, + "recipe": { + "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121026.1618", + "deps": [] + }, + "pcmpl-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/pcmpl-git-el.git", + "sha256": "b3952a82c4f2b36e181dcf0f430fc66a6e714fe217cbce13acba3a34ee7a930d", + "rev": "2db904452b7367a9bf84a926e886945fc9128fad" + }, + "recipe": { + "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140218.2004", + "deps": [] + }, + "leuven-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fniessen/emacs-leuven-theme.git", + "sha256": "b3d8802d2b232f61f5859911661765ac5e8e6eff49068a26361988201b67a1cf", + "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0" + }, + "recipe": { + "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.952", + "deps": [] + }, + "snippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pkazmier/snippet.el.git", + "sha256": "de90c27c4e55e9f1d6045532cd8112f380ea8fcb49080429ce9c9c97e572d9db", + "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63" + }, + "recipe": { + "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130210.1715", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-ess/ESS.git", + "sha256": "827d7cf4084e297c55bc75523385bbc3358507bc94c3a4ca2e0086403a03871a", + "rev": "680549abaaa3750de090c47049c392adcb25aaaa" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.252", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OCamlPro/ocp-indent.git", + "sha256": "53043c537e850398c0902ca94e5612e9d495ba9be668c65d381de41dadb11560", + "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.332", + "deps": [] + }, + "uuid": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-uuid.git", + "sha256": "f29708e97a9140fae71d4d90757b887c1a3b18f85611b9b330392ff6107fe464", + "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe" + }, + "recipe": { + "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120910.351", + "deps": [] + }, + "launch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sfllaw/emacs-launch.git", + "sha256": "96b2c00c63f58666fd4c2570436a445399615f9cbf7d39065eb270d630105470", + "rev": "e7c3b573fc05fe4d3d322389079909311542e799" + }, + "recipe": { + "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130619.1704", + "deps": [] + }, + "hoa-pp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", + "sha256": "66d48935b1fbe094c4c061842db24a3c053a1ac2da451655a57cc418f9f0076b", + "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e" + }, + "recipe": { + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.236", + "deps": [ + "emacs", + "names" + ] + }, + "eldoc-extension": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el", + "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch" + }, + "recipe": { + "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.845", + "deps": [] + }, + "2048-game": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/zck/2048.el", + "sha256": "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l", + "rev": "ea6c3bce8ac1" + }, + "recipe": { + "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1433", + "deps": [] + }, + "mag-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/mag-menu.git", + "sha256": "fcd16991c6d0623bfff031e5e4430f4d91556ce99d71fad8c5ffaa7451b6e0cc", + "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6" + }, + "recipe": { + "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1350", + "deps": [ + "splitter" + ] + }, + "seethru": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Benaiah/seethru.git", + "sha256": "f9dd52ed7951bf827a141b893c8836ae4b1a2133c7b536601fa537bcb030a461", + "rev": "d87e231f99313bea75b1e69e48c0f32968c82060" + }, + "recipe": { + "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.1229", + "deps": [ + "shadchen" + ] + }, + "helm-w32-launcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/helm-w32-launcher.git", + "sha256": "3659135cbc03984c199778c15820d7bac46860c67037932bde9b9e9c8fc29ced", + "rev": "3e59ad62b89dd21d334af0203d445a83eb25dc5b" + }, + "recipe": { + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141223.1414", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "org-iv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuangdash/org-iv.git", + "sha256": "c618fb5ecf1e89ede26883c7ba8db32e91e8470bfa9973294ea27bf9a51881d7", + "rev": "c45e5ab30183f7b1934f636758750ee2f8a05346" + }, + "recipe": { + "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.914", + "deps": [ + "cl-lib", + "impatient-mode", + "org" + ] + }, + "ac-ispell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-ispell.git", + "sha256": "cbff99f73616031e4d2b46cf63db3919577ca2e847d792a66d97045888c4b256", + "rev": "22bace7387e9012002a6a444922f75f9913077b0" + }, + "recipe": { + "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2126", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "buffer-buttons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rpav/buffer-buttons.git", + "sha256": "782ffeaedcbf88aba6767c763e84dad41a20813f399ba58d7e2163795712aadc", + "rev": "2feb8494fa7863b98256bc85da670d74a3a8a975" + }, + "recipe": { + "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.839", + "deps": [] + }, + "alect-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/alect-themes.git", + "sha256": "ffc2de69d84f008f6da905dbb14352124a5682317729e8a3b9ada9f89a89165a", + "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1324", + "deps": [ + "emacs" + ] + }, + "evil-exchange": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/evil-exchange.git", + "sha256": "1786faf8be44d0fefc2967b313014be47444e69340bc077c5755795d979382e5", + "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b" + }, + "recipe": { + "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.43", + "deps": [ + "cl-lib", + "evil" + ] + }, + "markup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/markup.el.git", + "sha256": "115b4df1f26a5305be3c704a997ab4a5852c4f6eda4384a38873ce5d4b5825c5", + "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5" + }, + "recipe": { + "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130207.1509", + "deps": [] + }, + "jira": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/jira.el", + "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" + }, + "recipe": { + "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131210.1222", + "deps": [] + }, + "dired-k": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-dired-k.git", + "sha256": "91d089ac1df104d639b87f9aa04c6e5b45d0654195fe7c6222360c9173022439", + "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.2036", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "stack-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/commercialhaskell/stack-ide.git", + "sha256": "6ecd37a02a41f0c29c977e6e4558291bf32ee33d9f07dfef0a0dbccbbd93a414", + "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" + }, + "recipe": { + "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.1023", + "deps": [ + "cl-lib", + "flycheck", + "haskell-mode" + ] + }, + "pcmpl-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JonWaltman/pcmpl-args.el.git", + "sha256": "7199b97dcbdd803d9397fd1de1da4a2e55831d2221948ed0a572129e8530d755", + "rev": "2ba03b3125ada8037585e545b88bd85b79da5c37" + }, + "recipe": { + "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120912.24", + "deps": [] + }, + "eprime-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AndrewHynes/eprime-mode.git", + "sha256": "4952a732abe4ed2913c5d7f37427294751d5da36b93e8942fa76e4bfbcd83ecc", + "rev": "17a481af26496be91c07139a9bfc05cfe722506f" + }, + "recipe": { + "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140513.1316", + "deps": [] + }, + "legalese": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/legalese.el", + "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" + }, + "recipe": { + "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100119.1548", + "deps": [] + }, + "tco": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/tco.el.git", + "sha256": "98508310cff39dab988dd412d486931d1188294d728ea948a64d181e8d573ccf", + "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24" + }, + "recipe": { + "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140412.812", + "deps": [ + "dash", + "emacs" + ] + }, + "autobookmarks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/autobookmarks.git", + "sha256": "67268427f58dc0b4616854016855d5862d702d22701e5032bb47e78d229a0307", + "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b" + }, + "recipe": { + "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1645", + "deps": [ + "cl-lib", + "dash" + ] + }, + "hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/hayoo.el.git", + "sha256": "7478140af14f10b1bea5693fb4d234d46156c345196b99142951008520f45d5e", + "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984" + }, + "recipe": { + "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140831.721", + "deps": [ + "emacs", + "json" + ] + }, + "dedukti-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rafoo/dedukti-mode.git", + "sha256": "e27ff030d37e261ac535cf0077c310a688e8cebabe11a3becba064927cec51c1", + "rev": "7d9f459c87c84f1067eb87542da4549de5e38650" + }, + "recipe": { + "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.908", + "deps": [] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist-drawer.git", + "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.622", + "deps": [ + "project-persist" + ] + }, + "dos": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dos.el", + "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp" + }, + "recipe": { + "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140808.1635", + "deps": [] + }, + "pianobar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agrif/pianobar.el.git", + "sha256": "2d046e443a2edf1564b3b074ac658a97b58c3b1871a79008b56d5c0de8c77214", + "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160" + }, + "recipe": { + "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120128.1501", + "deps": [] + }, + "image-archive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", + "sha256": "cb96826e6ffa740e0859f6ecc08b40bef04f4844e430effde9efee440a784c41", + "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.18", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "nummm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/nummm-mode.git", + "sha256": "bd0b97d2f18ee035c0040b1259e0035056fd6c9a93bf3c1712364ed475f51ec4", + "rev": "81951e12032274543c5f7a585b29bd93961e94e4" + }, + "recipe": { + "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.414", + "deps": [] + }, + "el-spice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vedang/el-spice.git", + "sha256": "85ecdd64a7e601e8575a2181aaca5aadf8bdc67773e80d526904598c276c7780", + "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d" + }, + "recipe": { + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.1338", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/package-utils.git", + "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.606", + "deps": [ + "epl" + ] + }, + "julia-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dennisog/julia-shell-mode.git", + "sha256": "08df93ffc6ac200df0853c6319c18e8a24ff3dff1bc630500616b1e086958a64", + "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48" + }, + "recipe": { + "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1252", + "deps": [ + "julia-mode" + ] + }, + "cycbuf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martinp26/cycbuf.git", + "sha256": "bcdc606bbe67ad97de8feda8fde0b97c5408c8f2ae455fc92657e71eaa46b1b4", + "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e" + }, + "recipe": { + "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.1437", + "deps": [] + }, + "ruby-additional": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53114" + }, + "recipe": { + "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150306.1959", + "deps": [ + "emacs", + "ruby-mode" + ] + }, + "open-junk-file": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el", + "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj" + }, + "recipe": { + "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.120", + "deps": [] + }, + "git-commit-insert-issue": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/emacs-stuff/git-commit-insert-issue.git", + "sha256": "e17279ceedb59f98913c2425d2842af952723d7ee79ea277d7ad22cd4046be2b", + "rev": "1bdfd1960bc279ca830e034a6708b25493b3f460" + }, + "recipe": { + "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.619", + "deps": [ + "github-issues", + "helm", + "projectile", + "s" + ] + }, + "seeing-is-believing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcinnamond/seeing-is-believing.git", + "sha256": "7b89fb8610f3acc23e831ea0baa160122dc2309d6616f6f913331ec9c8fde3a6", + "rev": "a698443529ea26fba3fd0748fe10439be7721e96" + }, + "recipe": { + "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.1229", + "deps": [] + }, + "cdnjs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/cdnjs.el.git", + "sha256": "53062daa4ee4ebd92fe7cd35ffc43fa67e271d72809221e8508aa3f74164572b", + "rev": "eac2b4d150907aeb2d568327d04775578c82887f" + }, + "recipe": { + "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140217.1512", + "deps": [ + "cl-lib", + "dash", + "deferred", + "f", + "pkg-info" + ] + }, + "pdb-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sixpi/pdb-mode.git", + "sha256": "9b5f985a3ddd6191086af42addd3ab6731b6b7f28679627de19b9fb69f515025", + "rev": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a" + }, + "recipe": { + "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150128.1151", + "deps": [] + }, + "interval-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/interval-list.git", + "sha256": "5f7234a8484283cfc1aa217f1a545fdf9d6ceee7c8c1a1e88649539f89a866ff", + "rev": "38af7ecf0a493ad8f487074938a2a115f3531177" + }, + "recipe": { + "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150327.1218", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "beginend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/beginend.git", + "sha256": "0de8996dd32ff4082ccc7d429bde5843c928692f514daff4dc648ed5429c92df", + "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.1201", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/org-if.git", + "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1013", + "deps": [] + }, + "recursive-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/recursive-narrow.git", + "sha256": "63386e45611da1eec9686e4b8b2335cf915f70ccea27375ee46bd8df94a747d6", + "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922" + }, + "recipe": { + "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1227", + "deps": [] + }, + "tidy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tidy.el", + "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" + }, + "recipe": { + "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111222.1156", + "deps": [] + }, + "shift-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/shift-text.git", + "sha256": "c49153f8360b05f4e36a75910d36ce6e9782bf46755bf0de91586564d2e255c3", + "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba" + }, + "recipe": { + "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130831.1155", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "vimgolf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/vimgolf.git", + "sha256": "881e3b81f47fc501aff8e34ee8a703a820f2dd6868297a330766bdeabfc3b1b1", + "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.1648", + "deps": [] + }, + "palimpsest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielsz/Palimpsest.git", + "sha256": "dd0cd1212736778e81f455946ce7c18a281a4d58bacf47048df28436e03d78cc", + "rev": "69fe61494bfd24305bf7e387fa716474918eafa2" + }, + "recipe": { + "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130731.1021", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xiaohanyu/ac-geiser.git", + "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130929.147", + "deps": [ + "auto-complete", + "geiser" + ] + }, + "git-dwim": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/git-dwim.el", + "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv" + }, + "recipe": { + "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1550", + "deps": [] + }, + "hound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryoung786/hound.el.git", + "sha256": "d2f418d4cd00346bf91a6342bcb19b9dff629e7352a1b1dcc45dd3823fb3a5be", + "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665" + }, + "recipe": { + "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.1149", + "deps": [ + "cl-lib", + "web" + ] + }, + "tuareg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocaml/tuareg.git", + "sha256": "5d9e5b483f7fa92387ce9efccf4e9b9f5c9a61b868df80443f24416ac1b51be3", + "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.851", + "deps": [ + "caml" + ] + }, + "twilight-anti-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", + "sha256": "d3f08b4a43f1936bcc659adef65d929e44873cdc847ef71ad03aaf7eda265a7c", + "rev": "c3a7b4177416031284da73f53b4dddaa27570bd7" + }, + "recipe": { + "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.234", + "deps": [] + }, + "benchmark-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dholm/benchmark-init-el.git", + "sha256": "b3c94c4bd6096115f824aef84bb9bdb88ff5d6c8b6406686ae5013b7f5adb418", + "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178" + }, + "recipe": { + "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.438", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-octicons.git", + "sha256": "7ca676d42e451a8ec7b19a7ce11f3e1f4b3c52ca2cd40b654607e0fc2a6ce736", + "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2240", + "deps": [ + "cl-lib" + ] + }, + "loc-changes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-loc-changes.git", + "sha256": "79030be31e6cddd1b33d6d04dd24c66085b71bc2d8d15874f819f027c8a289ed", + "rev": "58000738accf2f80ea2bf210f7dea5914adb14ee" + }, + "recipe": { + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.1048", + "deps": [] + }, + "go-stacktracer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samertm/go-stacktracer.el.git", + "sha256": "1e9c26152183c18a8a1369d7a8326fc537e55de665d0653aa7ed8ace9dd7b658", + "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976" + }, + "recipe": { + "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.1642", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dabrahams/initsplit.git", + "sha256": "268c240e6a42ae807da540ead4f24c78ff6991d82d27036efc514706a303310c", + "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1829", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobias/downplay-mode.git", + "sha256": "88141dcdd72d8e3b3326d5512f83797c279f95d17756c9860519c1d3dce6fa68", + "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1409", + "deps": [] + }, + "stupid-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/5487564.git", + "sha256": "242b90e4c403fbcadd40777cd98899c96aab78b84dea88dfa97583b734c9876b", + "rev": "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222" + }, + "recipe": { + "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130816.1554", + "deps": [] + }, + "math-symbols": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/math-symbols.git", + "sha256": "8a225117cd8a4009ea2935a9689fe7c4d6c7f7cc36aff7535c324f9340ec1eb2", + "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764" + }, + "recipe": { + "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1842", + "deps": [ + "helm" + ] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.140", + "deps": [ + "inf-ruby" + ] + }, + "flycheck-google-cpplint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-google-cpplint.git", + "sha256": "f0cf357e97f84afaaba6e41e44d1574ca7601649a78148310955005fa28f112f", + "rev": "dc23300757c6762c018d536a5831aef2486f7a17" + }, + "recipe": { + "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140806.1125", + "deps": [ + "flycheck" + ] + }, + "thing-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el", + "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m" + }, + "recipe": { + "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1632", + "deps": [ + "hide-comnt" + ] + }, + "rebox2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/rebox2.git", + "sha256": "41f73f7c0ebdad3ba70cddf1fd7adbf4ef9a2a90e0af9fdf3199890a894d48f0", + "rev": "00634eca420cc48657b81e40e599ff8548083985" + }, + "recipe": { + "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121113.700", + "deps": [] + }, + "alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/alchemist.el.git", + "sha256": "864717b68c3ad2c940d34c6a0314c6b1651c4f70df1d140a0ee24bbc2b20f720", + "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.49", + "deps": [ + "company", + "dash", + "elixir-mode", + "emacs", + "pkg-info" + ] + }, + "eopengrok": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/youngker/eopengrok.el.git", + "sha256": "f3d4e725c36c7a4c739576b46904484b8d59aaf7b95c4646fe180a7a013bebfb", + "rev": "1e471ee40145e73316ad5a965a44b46edbae68a3" + }, + "recipe": { + "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.109", + "deps": [ + "cl-lib", + "dash", + "magit", + "s" + ] + }, + "pretty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akatov/pretty-mode.git", + "sha256": "e83518274f8199df364f34fdee53a87ed1e99c45ebd8a6c09f0d8e0f25c6d25f", + "rev": "3e0b88d3db20f89fda2cdce3f54371728dcfd05b" + }, + "recipe": { + "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.1352", + "deps": [] + }, + "function-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/function-args.git", + "sha256": "487907165dd444b9d6a20e840b77ea4f0d7538dce62d55228fd773cd0067ee54", + "rev": "25e447d8a8930a8c515077de57a7693c6a642514" + }, + "recipe": { + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.751", + "deps": [ + "swiper" + ] + }, + "dayone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/emacs-dayone.git", + "sha256": "25d989f8c68da2bd51a2d3c3987f1b1dc6d543b40ee3ec1d8d01ef292aa78a20", + "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d" + }, + "recipe": { + "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.455", + "deps": [ + "ht", + "mustache", + "uuid" + ] + }, + "splitjoin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-splitjoin.git", + "sha256": "da5c5c63175c171df6b766634fc68dc8107f64dfa3669d89c15eaea97d7431f0", + "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.932", + "deps": [ + "cl-lib" + ] + }, + "url-shortener": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuyang0/url-shortener.git", + "sha256": "a50b0b1ec254ceafffbb27848183e4e3f1eaa69f81530138f257c9154b37ccfd", + "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88" + }, + "recipe": { + "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.113", + "deps": [] + }, + "frame-restore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/frame-restore.el.git", + "sha256": "581e94c8e7c6ed472e28eb0590e532c0495bb58a50fc187a0e40c6805e664e90", + "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140811.1609", + "deps": [ + "emacs" + ] + }, + "fortune-cookie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andschwa/fortune-cookie.git", + "sha256": "90996f701f96d0691f86681f9a88d03706ffb579b585b92c3b77b4c39ffa854c", + "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465" + }, + "recipe": { + "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.35", + "deps": [] + }, + "link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [] + }, + "bind-map": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-bind-map.git", + "sha256": "a1096492c880af65717276343d8e576e623ac983a7590d67751271aded02069e", + "rev": "af26966c9a32bdfc71bbe388bba27fde144bda4b" + }, + "recipe": { + "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.819", + "deps": [ + "emacs" + ] + }, + "jumplist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ganmacs/jumplist.git", + "sha256": "d4230811c427ed1b509c69d887b17d4666cf2dde277ae70c86ac920190df7f7a", + "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502" + }, + "recipe": { + "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.2145", + "deps": [ + "cl-lib" + ] + }, + "narrow-indirect": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el", + "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8" + }, + "recipe": { + "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1833", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.754", + "deps": [] + }, + "readline-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/monsanto/readline-complete.el.git", + "sha256": "a65a12e1947a2656ce5ae317ba93e25465112850fb9d2414829f5377552fabc8", + "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf" + }, + "recipe": { + "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.937", + "deps": [] + }, + "fill-column-indicator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpaker/Fill-Column-Indicator.git", + "sha256": "38eff1d0565ca7ff30d29cac933f6042e032cd0241208cb913ee7862f1d5783d", + "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6" + }, + "recipe": { + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1433", + "deps": [] + }, + "mallard-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-snippets.git", + "sha256": "c2dba98a425cc148f7963a7c1f8d984ca0d94a0c11747339a5e4fa6a0f896762", + "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc" + }, + "recipe": { + "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131023.1351", + "deps": [ + "mallard-mode", + "yasnippet" + ] + }, + "ido-gnus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/ido-gnus.git", + "sha256": "3716e0d07f51be352ffc48a2ee6bf580d13264bce8db55968f624bbb4be3cd45", + "rev": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089" + }, + "recipe": { + "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140216.1046", + "deps": [ + "gnus" + ] + }, + "farmhouse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattly/emacs-farmhouse-theme.git", + "sha256": "7f551514979c5df0ead6abb3854d59df9ca7993f67a5948866170b3285728f22", + "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1" + }, + "recipe": { + "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.2327", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-serverspec.git", + "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.655", + "deps": [ + "dash", + "f", + "helm", + "s" + ] + }, + "prognth": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/prognth.git", + "sha256": "955332b8f1f3b46cec6c7d9e558194c4590b93da406470ae1ccf8143e6d2fdeb", + "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62" + }, + "recipe": { + "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130920.1259", + "deps": [] + }, + "butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AshtonKem/Butler.git", + "sha256": "73642b08f3ed6f0dcfc5e474361c1f64166dd18612de113cab04543861ea3bed", + "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016" + }, + "recipe": { + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.1908", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrosdahl/iflipb.git", + "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1516", + "deps": [] + }, + "ido-complete-space-or-hyphen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", + "sha256": "c66f9ee98281e0c5a0705368eedc2e611f29a19d45df13c94e476ce3ec13dc4a", + "rev": "3fe1fe1e1a743f8deb8f4025977647afecd58f14" + }, + "recipe": { + "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130228.408", + "deps": [] + }, + "bbdb-android": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-android.git", + "sha256": "5027710ede91d0f36752a175bebf72b0316bdea313c066dfb512ab51f40b521c", + "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4" + }, + "recipe": { + "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150706.24", + "deps": [ + "bbdb-vcard" + ] + }, + "sift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/sift.el.git", + "sha256": "f8c3740afefdbc636ebc27662d8bbbdef6fc0a89ede76d62c00e222f99c559fe", + "rev": "a757745492124e5a021a4cc7e62d5349c21213c6" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1123", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/mozrepl.git", + "sha256": "808970f4ab8cdcf160aec0a3fcdcfc89a12d49bafff31ac117dda8048c6fea5b", + "rev": "57f278849e4246a992e731e188b221a2574fc81e" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1206", + "deps": [] + }, + "baidu-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-baidu-life.git", + "sha256": "ae94b5acc387e5553d9d05ff895674d1c4e233afc2065235c6767fee55e85303", + "rev": "4cb251d44e97da54306af9d99444d9b8525f043e" + }, + "recipe": { + "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.615", + "deps": [ + "cl-lib" + ] + }, + "use-package-chords": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/use-package-chords.git", + "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" + }, + "recipe": { + "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1528", + "deps": [ + "bind-chord", + "bind-key", + "use-package" + ] + }, + "jekyll-modes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fred-o/jekyll-modes.git", + "sha256": "c34ca7de87533176ebc700127ebbec5af27aed24ef3a71d56c077da4856e255e", + "rev": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c" + }, + "recipe": { + "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141117.714", + "deps": [ + "polymode" + ] + }, + "timer-revert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/timer-revert.git", + "sha256": "0acd5c46e41bc0481f5391a570d5daec8b25c29a217c5433943206fae8496c90", + "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150122.1432", + "deps": [] + }, + "igv": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/sbarbit/eigv", + "sha256": "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86", + "rev": "47ac6ceede252f451348a2c696398c0cb5279555" + }, + "recipe": { + "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141210.627", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfdeshom/helm-mt.git", + "sha256": "f4a96df13dd432ce52a5da88b77f1bf0cacfd49c8b473a7830c65977b0422b27", + "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2320", + "deps": [ + "cl-lib", + "emacs", + "helm", + "multi-term" + ] + }, + "web-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/emacs-web-server.git", + "sha256": "e8e64c4cb210079d56771bf659b2fa6a2b0236986b844902cf04f440ae71fa68", + "rev": "469cd3bc117bfb8da0c03a2a2fb185e80c81d068" + }, + "recipe": { + "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140905.1906", + "deps": [ + "emacs" + ] + }, + "bpr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ilya-babanov/emacs-bpr.git", + "sha256": "292f8d0c8a6f179a2570d4eb2d415dfad8cb62b9eb65b6c7282c9a25219f4729", + "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4" + }, + "recipe": { + "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1415", + "deps": [ + "emacs" + ] + }, + "thumb-through": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/thumb-through.git", + "sha256": "967bb5f560bf63ccf43f1cde24a9c61f89ebccd60f9ed831574d738e7d66d75b", + "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63" + }, + "recipe": { + "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120118.2334", + "deps": [] + }, + "darcula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/darcula-theme-emacs.git", + "sha256": "4f1c655b71a7afd131d97a2b92f53692a41301ab1271af2732bc5e4b015ea8c5", + "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e" + }, + "recipe": { + "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.435", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/criticmarkup-emacs.git", + "sha256": "cad88a3292200d88276fd7a53af96729c828453cce1a7517d06bb50e7ab223c6", + "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141112.1915", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/dynamic-fonts.git", + "sha256": "dea6c666560df1ffd7cee22112427b5bb3c2d92643565deab802e0ff10bad83b", + "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140731.726", + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ] + }, + "ethan-wspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/glasserc/ethan-wspace.git", + "sha256": "449b5c11a486897a9c77a4967146b873c0104e33b0cc8b4f0e3b8632fe93b02a", + "rev": "acba9d4a8c25719ef7acfb0edd04e3339eb07312" + }, + "recipe": { + "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140709.743", + "deps": [] + }, + "ssh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/ssh-el.git", + "sha256": "6da77166f0d18a504978d14144142a596a00a299ddf751643ee22cd8f86cb0e5", + "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1" + }, + "recipe": { + "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120904.1542", + "deps": [] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/bbdb2erc.git", + "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.129", + "deps": [ + "bbdb" + ] + }, + "whitespace-cleanup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whitespace-cleanup-mode.git", + "sha256": "7988261fc656c624b942a4885e86a45f0b6f5bf3d4531be34f4d4f90bd5fd097", + "rev": "14eaf40e0e67539106d3636af440a167105be296" + }, + "recipe": { + "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.647", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/m-buffer-el.git", + "sha256": "84223cbaddcce66510e49654ceacdb61343116eac03441418fd79f9820449085", + "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1116", + "deps": [ + "dash", + "emacs" + ] + }, + "yard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/yard-mode.el.git", + "sha256": "62be969f3ce113c605be94a4cf30ce692288a7e80d85c9deffbf7cad3eb80b29", + "rev": "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf" + }, + "recipe": { + "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1244", + "deps": [] + }, + "lodgeit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ionrock/lodgeit-el.git", + "sha256": "94abb5a54f39cb3e3b5d874d3f0fc414f1b9bce01de87827503dfe098ea8b6b1", + "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c" + }, + "recipe": { + "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.849", + "deps": [] + }, + "distinguished-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lokaltog/distinguished-theme.git", + "sha256": "3e2e18718c165c5dfaa00be0bb547a6ca1f0dad6225857ea9a3015e4bdc4e4ae", + "rev": "7fe66fbe6f808047a66d3174d1e2152fedb93ec6" + }, + "recipe": { + "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.448", + "deps": [] + }, + "wavefront-obj-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abend/wavefront-obj-mode.git", + "sha256": "de051d41a7413f516ee2ffc796fece2c72bfcef01f2cf067a4062581b2f8887f", + "rev": "75eedad052848e82cdd94064764956b906e6d6b2" + }, + "recipe": { + "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1316", + "deps": [] + }, + "pow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yukihr/emacs-pow.git", + "sha256": "01ce7da470aecabf151927bce9d009c3a205836c08283f89621dd05a6bf39f5d", + "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140" + }, + "recipe": { + "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "memolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mikanfactory/memolist.el.git", + "sha256": "f56adb555e40471ca199d78b8eaa2004c83335faad7b4eee3c3b8a80b6cca4c9", + "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f" + }, + "recipe": { + "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1221", + "deps": [ + "ag", + "markdown-mode" + ] + }, + "iasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RAttab/iasm-mode.git", + "sha256": "e5356cfc7d945e38661046a90a0f135ab1b888425c3a4734ddd2e19d220d82be", + "rev": "6b404ff94bbfe971b3614007c8e5dcd5757c5727" + }, + "recipe": { + "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1844", + "deps": [] + }, + "marshal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/marshal.el.git", + "sha256": "37755db345001f7f1acfeb0d9826fc53c832ea8620f15c8b53f76dd3dc87903b", + "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2057", + "deps": [ + "eieio", + "json" + ] + }, + "chinese-yasdcv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-yasdcv.git", + "sha256": "1638878007a282834b6babf599db4bb475fb7ec5d89fafcfe22dfe9b29323a9e", + "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb" + }, + "recipe": { + "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.816", + "deps": [ + "chinese-pyim", + "cl-lib" + ] + }, + "company-nand2tetris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1636", + "deps": [ + "cl-lib", + "company", + "names", + "nand2tetris" + ] + }, + "zygospore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louiskottmann/zygospore.el.git", + "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" + }, + "recipe": { + "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140703.352", + "deps": [] + }, + "elisp-depend": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el", + "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02" + }, + "recipe": { + "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120426.2023", + "deps": [] + }, + "eproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/eproject.git", + "sha256": "f9117dfb851fe714abb25007b727ff5faf8d8b25cf73a7990959e5fdec29e756", + "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78" + }, + "recipe": { + "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.2330", + "deps": [ + "helm" + ] + }, + "bonjourmadame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/bonjourmadame.git", + "sha256": "c60d8758b446af66cfe9a4caef494f1c4f0448de9b9d1059758f6525926f57e9", + "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b" + }, + "recipe": { + "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.508", + "deps": [] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/scala-mode2.git", + "sha256": "7887edd7ac95398b59383ef2099aefdced36f555dd4b98b5a753a7d7afb7f7b0", + "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f" + }, + "recipe": { + "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150618.150", + "deps": [] + }, + "show-marks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/show-marks.git", + "sha256": "8709d17f9803f0952fa820548128084d7c7b71a0e1e3cbe3fc8f3b6be9997397", + "rev": "97609566582e65eed0d0a854efa5c312f209115d" + }, + "recipe": { + "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130805.949", + "deps": [ + "fm" + ] + }, + "simple-rtm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbunkus/simple-rtm.git", + "sha256": "921b2dea7b716561aac9405287cee0972441a824a0fcedb7ac1f560f439f564a", + "rev": "cff3e87bc2d440aa643c9f43bf99972668147231" + }, + "recipe": { + "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140926.639", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/rigid-tabs.el.git", + "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.1056", + "deps": [ + "emacs" + ] + }, + "inform7-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://github.com/fred-o/inform7-mode.git", + "sha256": "3c00805529518edba788671fed0c3e56810d1dbec2a0dbd3cb42f42991326ca6", + "rev": "42458733947f2fbd44bc78f7264be247a5d8980b" + }, + "recipe": { + "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131010.154", + "deps": [ + "sws-mode" + ] + }, + "hc-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edran/hc-zenburn-emacs.git", + "sha256": "1322701d2ac920ee92d1a5fc6c51f7993ca24265d72463f8c4c7a8030f91ec65", + "rev": "fd0024a5191cdce204d91c8f1db99ba31640f6e9" + }, + "recipe": { + "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.1133", + "deps": [] + }, + "synonymous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/synonymous.el.git", + "sha256": "bccb0ba188b275ea7970f5a7a44b6a37f9adac1344c774eb642cca7deb74b60b", + "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4" + }, + "recipe": { + "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1034", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "theme-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hadronzoo/theme-changer.git", + "sha256": "a812bee96ee38b689f528ceb8a68b75d1498d3a98153c6eb4c7b9ce35bb1555a", + "rev": "c28ea477e8277c03e14657f167695e3c4bf3c11f" + }, + "recipe": { + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130725.2119", + "deps": [] + }, + "uncrustify-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/koko1000ban/emacs-uncrustify-mode.git", + "sha256": "55c5635a9b7be6c0506ee2a385406b180bf7fa273f339e54f38781e82481c60c", + "rev": "73893d000361e95784911e5ec268ad0ab2a1473c" + }, + "recipe": { + "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.859", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/hl-sentence.git", + "sha256": "babf6681e44a5e2a17669974bb75db2423fbfceca8af72c8ccee1c70515d4e5e", + "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140802.1120", + "deps": [] + }, + "mynt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/crshd/mynt-mode.git", + "sha256": "aac24e44b98ef53114f966fefd6441e8e5b5d8399fef6f064ff5c6383e06b4a2", + "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9" + }, + "recipe": { + "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.1549", + "deps": [ + "virtualenvwrapper" + ] + }, + "svg-mode-line-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/svg-mode-line-themes.git", + "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "rev": "80a0e01839cafbd66899202e7764c33231974259" + }, + "recipe": { + "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1506", + "deps": [ + "xmlgen" + ] + }, + "tdd-status-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/algernon/tdd-status-mode-line.git", + "sha256": "0a895ac24250e090fddd138278babab81da60b29488ae74f81f2128912c17c6b", + "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b" + }, + "recipe": { + "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.1116", + "deps": [] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140426.928", + "deps": [ + "yasnippet" + ] + }, + "namespaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/elisp-namespaces.git", + "sha256": "313f696729e167457b4646d99c4d3f0182aa533cec9c14876871ae5a294c9a58", + "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270" + }, + "recipe": { + "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130326.1750", + "deps": [] + }, + "doremi": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi.el", + "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" + }, + "recipe": { + "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.938", + "deps": [] + }, + "clevercss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/CleverCSS-Mode.git", + "sha256": "bda129acd83d11bfa6ba36c2e89b036f787331b9a799121f67e4b944edfa06a7", + "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc" + }, + "recipe": { + "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.1955", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/grizzl.git", + "sha256": "3cc4f6f8257fa4c552df7ff93abbe05ba2317e94c967013546e2c2ad410d9c79", + "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.30", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hyde": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nibrahim/Hyde.git", + "sha256": "0ab40ee83db247b3b5a085f95e9006156a862204d3365a6d6a168c55742f6f23", + "rev": "640959dd6837487dd4545809d6cc9ef54283673d" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.1225", + "deps": [] + }, + "on-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michael-heerdegen/on-screen.el.git", + "sha256": "044517ab266c1c8a886841383274a5fe6e16a7383b3f5604c3e403743ce4dccf", + "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27" + }, + "recipe": { + "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.2308", + "deps": [ + "cl-lib" + ] + }, + "html-script-src": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/html-script-src.git", + "sha256": "d86b250d953d3d9014ae19d05ccc7acd951f24a4cb53da531275d5c5cde62724", + "rev": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422" + }, + "recipe": { + "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120403.1315", + "deps": [] + }, + "shoulda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcwebbie/shoulda.el.git", + "sha256": "1145f4152a1344d1b38f42a38b79f3ecb84928943001af0a17d0500e893ae4a6", + "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e" + }, + "recipe": { + "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140616.1333", + "deps": [ + "cl-lib" + ] + }, + "wid-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el", + "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k" + }, + "recipe": { + "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1907", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/pabbrev.git", + "sha256": "d0b8442405823eddc5219b12758f7c1a0a410933ec72f139300e5dbe3ba9f881", + "rev": "d28cf8632d2691dc93afbb28500126242d37961c" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.645", + "deps": [] + }, + "tumblesocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gcr/tumblesocks.git", + "sha256": "82c99006a5a14d0ee7912bd84bd31a32ebf928652617c669d1ac1eab3e3bfebc", + "rev": "85a6cdc2db3390593fd886c474959b675460b310" + }, + "recipe": { + "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140215.1447", + "deps": [ + "htmlize", + "markdown-mode", + "oauth" + ] + }, + "jack-connect": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/sbarbit/jack-connect", + "sha256": "7036a0eddf25a2274a6fd1584ff497d2b8078869fa6cc9d61504e6540ff863a8", + "rev": "b00658dfe3d5d67431c18ffa693d5a3705067ba0" + }, + "recipe": { + "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.607", + "deps": [] + }, + "auto-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/auto-indent-mode.el.git", + "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "rev": "1a12448ce3a030ed905226450dfb01bba37f127c" + }, + "recipe": { + "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140505.855", + "deps": [] + }, + "main-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-mainline.git", + "sha256": "058b7ee04639807da7a16e3ee0abbcbe574cedc306fa9aade58898b900e5521b", + "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f" + }, + "recipe": { + "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.2006", + "deps": [ + "cl-lib" + ] + }, + "helm-ls-svn": { + "fetch": { + "tag": "fetchsvn", + "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", + "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", + "rev": "143530" + }, + "recipe": { + "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.239", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "pig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/motus/pig-mode.git", + "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" + }, + "recipe": { + "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140617.1258", + "deps": [] + }, + "logstash-conf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/logstash-conf.el.git", + "sha256": "0af7d235a7e65e01307eb0fe15ecc6acf45fa80254d503ab14f3e838d81ffd16", + "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de" + }, + "recipe": { + "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150308.718", + "deps": [] + }, + "volume": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/volume-el.git", + "sha256": "6749fd85d47162b654ae0e0520d289cbb2521ff9903e17542c4bf168b05cb17a", + "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6" + }, + "recipe": { + "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.1509", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-leader.git", + "sha256": "8a0ec0a9e26e195d8bcbd5f8ad23895dfe82915d647903185541243187af3a96", + "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.743", + "deps": [ + "evil" + ] + }, + "niflheim-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/niflheim-theme/emacs.git", + "sha256": "b5231a609e2787e52fab56c24a7b725fa6dd4ac65f56c9102c9e5e4df1e0fb90", + "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e" + }, + "recipe": { + "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1021", + "deps": [] + }, + "inf-mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/inf-mongo.git", + "sha256": "6832c1ea91247d223500297ae73b76f9ccbbd6b80f9fbd4ceccefaf68b5b19ea", + "rev": "2d910f2143610f12de9c573ee202a322cf579e85" + }, + "recipe": { + "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131216.428", + "deps": [] + }, + "highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight.el", + "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" + }, + "recipe": { + "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1851", + "deps": [] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", + "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1922", + "deps": [] + }, + "helm-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rubikitch/helm-anything.git", + "sha256": "4bbe4da505be42ff2916f805191cb2f10e161b4e91795e0294300e3d70c07f94", + "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea" + }, + "recipe": { + "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141126.431", + "deps": [ + "anything", + "helm" + ] + }, + "window-layout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-layout.git", + "sha256": "afcd8897476077497cf52f5327c55c6a828246df5ba9648045e7aa45568a9021", + "rev": "03ee615fc8fad5be4efec9c3febab8c851271257" + }, + "recipe": { + "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.7", + "deps": [] + }, + "draft-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gaudecker/draft-mode.git", + "sha256": "64d1330e69ce634228c14b40ca055b24c8a69e216613a95f2d6c6efb5ccba190", + "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7" + }, + "recipe": { + "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140609.956", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/edit-list.git", + "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100930.943", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/grapnel.git", + "sha256": "6c6891b916a07414208fbc1812a02267254d4c5c05868175a45175796045745b", + "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131001.1034", + "deps": [] + }, + "fcopy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/fcopy.git", + "sha256": "3671af137dddbfebd4d327a2407a63652e1a62b37f9653356c7beb11c341471a", + "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941" + }, + "recipe": { + "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150304.803", + "deps": [] + }, + "litable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/litable.git", + "sha256": "29553557c3f334ed0a2ab6969fdd39815120506fa0a6d6479d5bf24653087fd9", + "rev": "9065bade1ba42ad04d9839d58082b73da589dca6" + }, + "recipe": { + "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.909", + "deps": [ + "dash" + ] + }, + "ducpel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/ducpel.git", + "sha256": "db3e32038784fd6d08b363c25374c14802264f36c2d7e04a9d8dde2f5934a3d9", + "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140419.16", + "deps": [ + "cl-lib" + ] + }, + "sclang-extensions": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/sclang-extensions.git", + "sha256": "0d6616e2aeb78b5334f86b5a21e44a70facf2b404cd3f5910dbd6d8ebc0859a5", + "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e" + }, + "recipe": { + "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1639", + "deps": [ + "auto-complete", + "dash", + "emacs", + "s" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", + "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2113", + "deps": [ + "emacs" + ] + }, + "org-dropbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/heikkil/org-dropbox.git", + "sha256": "bd45b3bf42a5ddf0f29d31a7169c0e72cfaa5dfb58d9d4365c9c54779ed54d4a", + "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e" + }, + "recipe": { + "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.2309", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "resize-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dpsutton/resize-window.git", + "sha256": "f0b649ac1b75e962eed8992b11bf437359b583cbceee87c8fb8376bdc9d3390c", + "rev": "0bc23978d1084da5638becf93b66816edc4ece54" + }, + "recipe": { + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.2229", + "deps": [ + "emacs" + ] + }, + "kite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jscheid/kite.git", + "sha256": "e3a3abad2b99827f5659915caa2b5fe74fa353c85cebd18c27d08b4d41a4eb4c", + "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144" + }, + "recipe": { + "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130201.1338", + "deps": [ + "json", + "websocket" + ] + }, + "google-maps": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/google-maps.el.git", + "sha256": "a0d528677351b767c20e2192d3f484ad3b6dce7401b07c22661f884b4b7e71a0", + "rev": "90151ab59e693243ca8da660ce7b9ce361ea5126" + }, + "recipe": { + "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130412.430", + "deps": [] + }, + "htmlize": { + "fetch": { + "tag": "fetchgit", + "url": "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git", + "sha256": "8afaf87b30628afd8d376965247a6b2791129339ad7238c5529f4b173f908251", + "rev": "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f" + }, + "recipe": { + "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130207.1402", + "deps": [] + }, + "forecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/forecast.el.git", + "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1635", + "deps": [ + "emacs" + ] + }, + "perl6-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hinrik/perl6-mode.git", + "sha256": "5ddbf7c949f5d2b9258b3c98b0614a2278581027806dbf664436bc41f4e0e418", + "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4" + }, + "recipe": { + "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.1718", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "tox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/tox.el.git", + "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141004.1603", + "deps": [] + }, + "swap-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ekazakov/swap-buffers.git", + "sha256": "3939adc992ed01a3ab0724d00abd554ede23b4427907ed7a80a09b0c4e01c7ce", + "rev": "46ab31359b70d935add6c6e9533443116dc51103" + }, + "recipe": { + "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.1639", + "deps": [] + }, + "window-jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.1436", + "deps": [] + }, + "org-screenshot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org-screenshot.git", + "sha256": "7ec85b7a6e07f114f7fea1722e4753d3fbb4986896afe4b73624e31afe46c62b", + "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb" + }, + "recipe": { + "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.704", + "deps": [ + "org" + ] + }, + "init-open-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/init-open-recentf.el.git", + "sha256": "50d645d38b648291e01f55a1f37dd1cbbe2de0c44271ccf482eaddd4a0a76776", + "rev": "f7999730ed8b02a9f4b9f884defd40a90772765b" + }, + "recipe": { + "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.2223", + "deps": [ + "emacs" + ] + }, + "geben": { + "fetch": { + "tag": "fetchsvn", + "url": "http://geben-on-emacs.googlecode.com/svn/trunk/", + "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4", + "rev": "124" + }, + "recipe": { + "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100330.543", + "deps": [] + }, + "date-field": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-date-field.git", + "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.1905", + "deps": [ + "dash", + "log4e", + "yaxception" + ] + }, + "regex-dsl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alk/elisp-regex-dsl.git", + "sha256": "fdb9021b1b5399ddcc54d72d15151fcf9650439bdf14df9edbe9241d4f9364b4", + "rev": "ac89ab8b7691a165ef3007cb84417125cfc0632e" + }, + "recipe": { + "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100124.428", + "deps": [] + }, + "lemon-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/lemon-mode.git", + "sha256": "47fe920e81548c46633a6195521b8720d492f5b05dfa03b3fbbc541a4bcdd258", + "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430" + }, + "recipe": { + "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130216.704", + "deps": [] + }, + "atom-one-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonathanchu/atom-one-dark-theme.git", + "sha256": "deaf9f306eaabaa4ca1771e4fb08153e6178de487dfcc45965a7eeaa0a8b9815", + "rev": "5fe3c1463daa4736435eb0c4716d4bf29f25f0a6" + }, + "recipe": { + "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.2245", + "deps": [] + }, + "toggle-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/deadghost/toggle-window.git", + "sha256": "b978eb5117e936801ff3038345d73f2303ff0321f1ba0ad77dbbd21764540639", + "rev": "e82c60e543933880402ede11e9423e48a17dde53" + }, + "recipe": { + "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.948", + "deps": [] + }, + "slamhound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/slamhound.git", + "sha256": "8f20989698ac0b8849e906d20ffc518a67749567960ab2de22f30b5331f7b27f", + "rev": "f43dd49b63b2838081735ea1988f70de05389692" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140506.1818", + "deps": [] + }, + "syslog-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/syslog-mode.git", + "sha256": "c4e9090063061cf72763523f86888371365331cb549c569cb53c3180866ab7eb", + "rev": "c18661b3058f0ec00e6957c955559a762cb0062c" + }, + "recipe": { + "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140217.1818", + "deps": [ + "hide-lines" + ] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-numbers.git", + "sha256": "ccea3c266c22f67896e5b96d9f1d1c56288e52c5cf05bafc8bd8548bbaf2c64a", + "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.751", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/switch-window.git", + "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.415", + "deps": [] + }, + "zeal-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jinzhu/zeal-at-point.git", + "sha256": "6e1f4c56fe881662b5945ee38f53260f42f2d9b34eec0ac7faa9c46a50f05db3", + "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb" + }, + "recipe": { + "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2107", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-robe.git", + "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2155", + "deps": [ + "helm" + ] + }, + "helm-flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/helm-flx.git", + "sha256": "fa9d207737c3e64b5728b89677dbcd074a59a8e5e606bca39ecacad8ea9fd529", + "rev": "f634e85ee92f6a390da33d1a618a4c353e270762" + }, + "recipe": { + "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1025", + "deps": [ + "emacs", + "flx", + "helm" + ] + }, + "ac-capf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-capf.git", + "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" + }, + "recipe": { + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2117", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/lice-el.git", + "sha256": "7357fc317b6dc14b906c2ae17fcdc6cf2cea02397998d21692a0c51ead02b53a", + "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2223", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs-mark-tools.git", + "sha256": "7f4792a649629f4a09e03b6df51bed9e259b4bd1286ce7da4679d604f4da9f4c", + "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130614.525", + "deps": [] + }, + "xah-get-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-get-thing-or-selection.git", + "sha256": "e2740e45fc88221dbe3455d7b1f3168addc147c610b05bf007286a71edb77329", + "rev": "d2dadc54417468cc42da72c4e02fd23e3fd0584a" + }, + "recipe": { + "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.1630", + "deps": [] + }, + "helm-gitignore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jupl/helm-gitignore.git", + "sha256": "0f43ea411395beaf9f53a84d1f11a99870183bc6d0386053a12f6290d4e5963c", + "rev": "03aad6edb0ed4471c093230856f26719754e570b" + }, + "recipe": { + "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.2256", + "deps": [ + "cl-lib", + "gitignore-mode", + "helm", + "request" + ] + }, + "echo-bell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/echo-bell.el", + "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v" + }, + "recipe": { + "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.2025", + "deps": [] + }, + "dkmisc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dkmisc.git", + "sha256": "89ec8c71084bdebed8e675168009600c0c692c842469b298c42a8575d10be7db", + "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608" + }, + "recipe": { + "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.515", + "deps": [ + "emacs" + ] + }, + "dedicated": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/dedicated.git", + "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090428.1431", + "deps": [] + }, + "pixiv-novel-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", + "sha256": "add447df623bedb255dba19117e2f42bc67625ebcf32013f767f74711a16f691", + "rev": "65809cf31816257d8c6c92868af6c30abf7b2043" + }, + "recipe": { + "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.54", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/edit-indirect.git", + "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141213.1205", + "deps": [ + "emacs" + ] + }, + "asn1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/asn1-mode.git", + "sha256": "923d44b1f11ef3ba37daa3d78f74398b23aaa7fc61952db1b74d94006dea2840", + "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5" + }, + "recipe": { + "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.28", + "deps": [ + "emacs", + "s" + ] + }, + "soundklaus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/soundklaus.el.git", + "sha256": "b8c069ea09b04a462368fe8a940ee4caae41778c9cb8aa3851e6b7a86828b6bc", + "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058" + }, + "recipe": { + "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150102.1521", + "deps": [ + "cl-lib", + "dash", + "deferred", + "emacs", + "emms", + "pkg-info", + "s" + ] + }, + "morlock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/morlock.git", + "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1034", + "deps": [] + }, + "helm-fuzzy-find": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-fuzzy-find.git", + "sha256": "cae06030c8f0be73808724c8622471720a645d2fcce73273e7cfdd6b70afb6fb", + "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64" + }, + "recipe": { + "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150613.549", + "deps": [ + "emacs", + "helm" + ] + }, + "auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/auto-complete.git", + "sha256": "729e6a0ed96b742261775c16a0fac77f5032cbb7231a67af0996dce624bdeac8", + "rev": "67df105a4210b114e01ec08368b8b6b07f28de77" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.427", + "deps": [ + "cl-lib", + "popup" + ] + }, + "psvn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/psvn.git", + "sha256": "a6013b3b8bd9c2f92b3a06d51fd1f51104e9dc2a401012b2b052dbfb2278e1cb", + "rev": "23048d302858fc3a52c118652bd83491a4956410" + }, + "recipe": { + "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1242", + "deps": [] + }, + "go-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toumorokoshi/go-snippets.git", + "sha256": "1658ee3e9a737dc6fac127a55b2de63fbf867ea40f0181c120205e432fef2636", + "rev": "983eb74025030bf6d405f1ed63be3162cc28a528" + }, + "recipe": { + "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.57", + "deps": [ + "yasnippet" + ] + }, + "sparql-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/sparql-mode.git", + "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "rev": "303858e7f91829ec720141482c777460e66f310b" + }, + "recipe": { + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1114", + "deps": [ + "cl-lib" + ] + }, + "emamux-ruby-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emamux-ruby-test.git", + "sha256": "8c67302628f4da87bb02f6369c9867de6c8cba7644c714249d25101618a9ba30", + "rev": "23b73c650573b340351a919da3da416acfc2ac84" + }, + "recipe": { + "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130812.1139", + "deps": [ + "emamux", + "projectile" + ] + }, + "expand-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/expand-region.el.git", + "sha256": "ca4a279f1b537bca9c468bfb74f0f86989c12ebdeae895b02dd5ff95a2b6a6b5", + "rev": "59f67115263676de5345581216640019975c4fda" + }, + "recipe": { + "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.758", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/auto-compile.git", + "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1608", + "deps": [ + "dash", + "emacs", + "packed" + ] + }, + "ruby-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajvargo/ruby-refactor.git", + "sha256": "ca533e550f4bfe0c7eee9b922770a558840590b86d674e474d6cf83fc0205dc2", + "rev": "8be821e89dac15fa402dba211a27b843147e4d17" + }, + "recipe": { + "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1207", + "deps": [ + "ruby-mode" + ] + }, + "redpen-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karronoli/redpen-paragraph.el.git", + "sha256": "5d4d555bb2b081a2fe8ad298b67759338fd113de1dd1d1e077a9b6c053ac6868", + "rev": "dcba4dc48593fedd48e398af50f6cdc60f453a07" + }, + "recipe": { + "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.941", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tomatinho": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/konr/tomatinho.git", + "sha256": "d6dc78ec93ecd1ae11aaaf70b5529498fce53f3dac414be6474877393cdc7f28", + "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7" + }, + "recipe": { + "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140120.1740", + "deps": [] + }, + "r-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/r-autoyas.el.git", + "sha256": "727cee1460e64061594912a689dee553de69ff46371f9db818e892475b951436", + "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530" + }, + "recipe": { + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140101.910", + "deps": [ + "ess", + "yasnippet" + ] + }, + "buffer-stack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el", + "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r" + }, + "recipe": { + "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101223.420", + "deps": [] + }, + "frame-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-fns.el", + "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7" + }, + "recipe": { + "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1608", + "deps": [] + }, + "scad-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/openscad/openscad.git", + "sha256": "e57ce0dd6532f82adec76026b1bbb3d89a68a514096001317187a522bfb8ab23", + "rev": "81994d2c3d88dc4b1b7221a57b831060484fd27b" + }, + "recipe": { + "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.2229", + "deps": [] + }, + "ccc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.743", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomoya/search-web.el.git", + "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.603", + "deps": [] + }, + "helm-growthforecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daic-h/helm-growthforecast.git", + "sha256": "1862be9a0748d3975bce0933703b7f866846ae0c7223b57b7306251de39ee339", + "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b" + }, + "recipe": { + "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140119.2144", + "deps": [ + "helm" + ] + }, + "id-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-id-manager.git", + "sha256": "80e829eee86d6e1b5c224d1ae774940cc46b67ed992d48470d6d7ffb36b8eb2f", + "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09" + }, + "recipe": { + "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150605.2239", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grettke/clips-mode.git", + "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131012.1601", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kivy/kivy.git", + "sha256": "54891a62afa23336e8c711dc210067b816e4341a073ac9634b24daf073a0625a", + "rev": "bd131ee882c8de9f6a7fd15a6c2a1537ea792ee9" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140524.757", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/mpv.el.git", + "sha256": "ac7b75fdc868976b2a3c84f00a2ad0c714c91bdf35249b273f57dbe08efa248b", + "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.318", + "deps": [ + "cl-lib", + "emacs", + "json", + "names", + "org" + ] + }, + "go-dlv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/go-dlv.el.git", + "sha256": "5be34ee2bf4d16af3d8a572d142c13f285b9736e0117a7a2b6035a5b0b0c0a72", + "rev": "8d5a0076b3d43e7af61149370e583c0d15cb2dd1" + }, + "recipe": { + "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.259", + "deps": [ + "go-mode" + ] + }, + "column-enforce-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/column-enforce-mode.git", + "sha256": "f05c31b1ec7a28aea413169160761fc73a91558d2196416a5a1aee013a7d23fd", + "rev": "f43263e50ae83db099d83ea445f93e248a3207a0" + }, + "recipe": { + "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1149", + "deps": [] + }, + "busybee-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/busybee-theme.git", + "sha256": "9da5f28e779b4d53512954501b8bfdc1d3c679d2808e87aad796eb9fdd41e987", + "rev": "70850d1781ff91c4ce125a31ed451d080f8da643" + }, + "recipe": { + "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130920.1142", + "deps": [] + }, + "erlang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/erlang/otp.git", + "sha256": "30f8dc5e1cbe811f93ed832609243934c69acbbe7df460fd9ee2c32bc12a17fd", + "rev": "a16b7d63cc665dca90305b146c15de04487808db" + }, + "recipe": { + "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.357", + "deps": [] + }, + "cssh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/cssh.git", + "sha256": "2aa8a1eec42d3ad39710662dbd48fe5db27b31a08085e430fa2ebb738087c2f5", + "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f" + }, + "recipe": { + "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150810.1209", + "deps": [] + }, + "apropos-fn+var": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el", + "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf" + }, + "recipe": { + "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1301", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", + "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150309.2252", + "deps": [ + "deferred" + ] + }, + "yari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hron/yari.el.git", + "sha256": "ee6ec58601e34035642878a6408de0fdaf8765d99b9cf4c257dcdd6681342a71", + "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9" + }, + "recipe": { + "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.139", + "deps": [] + }, + "cobra-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Nekroze/cobra-mode.git", + "sha256": "0ffdd6be72df3109acfcf329b69c2810ecd258e41f1075ccfd80cee156731baf", + "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01" + }, + "recipe": { + "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140116.1516", + "deps": [] + }, + "grep+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/grep+.el", + "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" + }, + "recipe": { + "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1610", + "deps": [] + }, + "textile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juba/textile-mode.git", + "sha256": "8b08d37cd4dd99b5124a67ffd0c7131c3bb698d23831def8b27a9823295a3d49", + "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31" + }, + "recipe": { + "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.253", + "deps": [] + }, + "xterm-title": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/xterm-title.git", + "sha256": "d4c5d4452ccadd7ee41d87764b614fbd39d2aa79a768bf2c45f25c3efcc98b19", + "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c" + }, + "recipe": { + "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1223", + "deps": [] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", + "sha256": "00a507245d2865fc6337835a5fd41eb7bd081341f9a6c553891f2ac0dfff8f6c", + "rev": "c084d2505621dbb71d83ec10550fa0801623cafc" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.319", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "vector-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/vector-utils.git", + "sha256": "96f4ed12f6dadbd5774b26a6fabcedcdd47f03d376b4e6c7ac44fe15376242c2", + "rev": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21" + }, + "recipe": { + "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "darkburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gorauskas/darkburn-theme.git", + "sha256": "6e63585a54ebbc230a70105ac1c3952217d304f8a5cb9fdd71588308bfeb79a7", + "rev": "a0151684ae4fa7c364115188422f6c3425d1594c" + }, + "recipe": { + "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.300", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/bongo.git", + "sha256": "0adef70763f6c47447f90c0b8b26a4d2bb37c57385613b5ecf0444c17876123e", + "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1009", + "deps": [ + "cl-lib" + ] + }, + "ac-dabbrev": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el", + "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh" + }, + "recipe": { + "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130906.18", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/caskxy.git", + "sha256": "f5aafdcbb74293ecb5464653586a1953a12c3e140d59cb53a48d4e246fff8a22", + "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140513.1039", + "deps": [ + "log4e", + "yaxception" + ] + }, + "aurora-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bdd/aurora-config.el.git", + "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" + }, + "recipe": { + "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.403", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hayamiz/twittering-mode.git", + "sha256": "eff9151fbc33a09030cd2899be09c08a2396a158c46fafc346e7a5512b1df503", + "rev": "97197cdd3cc005000dc2599f67c754d74fab5972" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1203", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Andersbakken/rtags.git", + "sha256": "7993727a883800048b94e3e855cdb96b2474ebd4e83ce2a0b15176be37a7e7d7", + "rev": "725f85778f9dda303bc49437752ada8159d8f6a6" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.112", + "deps": [] + }, + "totd": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/egh/emacs-totd.git", + "sha256": "e2234b4c1f04d87beffdb1c6479be478c26e34aaeef44b8d1588a8a5a37ee157", + "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660" + }, + "recipe": { + "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.940", + "deps": [ + "cl-lib", + "s" + ] + }, + "skewer-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/skewer-mode.git", + "sha256": "91df5c6b9e18bcb5f711446e703c5ae6116afd9d5a7d4af765e2430a1a844d8d", + "rev": "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2" + }, + "recipe": { + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1504", + "deps": [ + "emacs", + "js2-mode", + "simple-httpd" + ] + }, + "yesql-ghosts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/yesql-ghosts.git", + "sha256": "353d3830d34591c54dee2e69418e5e85fdc629f3047a96325b81a86bfadcdbbb", + "rev": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb" + }, + "recipe": { + "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.637", + "deps": [ + "cider", + "dash", + "s" + ] + }, + "latex-extra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/latex-extra.git", + "sha256": "e7280e43a887e5630c9e4246f1db982b616cb4dcda0a7d8076ad4232c6e8611a", + "rev": "b4ca0185b7046b1d4e2ef90082f23e9e774d626d" + }, + "recipe": { + "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.322", + "deps": [ + "auctex", + "cl-lib" + ] + }, + "minizinc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00nlight/minizinc-mode.git", + "sha256": "306aa28188753c985dc9bfe8cf0baea5bf0d169261cfe3bbd81e0e39e06f7901", + "rev": "98064f098e6871382614fcf3c99520f7a526af0a" + }, + "recipe": { + "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.758", + "deps": [ + "emacs" + ] + }, + "transpose-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el", + "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4" + }, + "recipe": { + "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.826", + "deps": [] + }, + "travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-travis.git", + "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.638", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "mocha-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cowboyd/mocha-snippets.el.git", + "sha256": "3587f6340948e402accdf473a86fea45468c1b6c84684c922e2df467cd8832ae", + "rev": "b8d321eda797e8382f0033901694860fe52f19a9" + }, + "recipe": { + "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.1000", + "deps": [ + "yasnippet" + ] + }, + "calfw-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/calfw-gcal.el.git", + "sha256": "b18f1c0d7022fdc77064bf0729da7e54daee5e326dee7e063874cd4522cbc592", + "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870" + }, + "recipe": { + "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120111.400", + "deps": [] + }, + "project-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/project-explorer.git", + "sha256": "a90012bae8d319d0b14e6cc6539b44a50a03403cb87e67d95fa586cf2ed1a025", + "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9" + }, + "recipe": { + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150503.1914", + "deps": [ + "cl-lib", + "emacs", + "es-lib", + "es-windows" + ] + }, + "sequential-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sequential-command.el", + "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk" + }, + "recipe": { + "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1603", + "deps": [] + }, + "ant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/ant-el.git", + "sha256": "072a4894a3f9bec68560ab85cffe1bc7be380b8d466b903bfb7b67cc23808abc", + "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49" + }, + "recipe": { + "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.107", + "deps": [] + }, + "ac-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-helm.git", + "sha256": "d06d3ed72e0d8962f3888c7323265040c21e3ebf4f2fb0056cb081f0696ded6f", + "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140919.1117", + "deps": [ + "auto-complete", + "cl-lib", + "helm", + "popup" + ] + }, + "node-resolver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/meandavejustice/node-resolver.el.git", + "sha256": "a70ad08ca75a91a907168afd5c72049f23e0d15ac2024828e34b4da600c0f5b1", + "rev": "ef9d0486907a746a80b02ffc6208a09c168a9f7c" + }, + "recipe": { + "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140930.1223", + "deps": [ + "cl-lib" + ] + }, + "rainbow-delimiters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-delimiters.git", + "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" + }, + "recipe": { + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.217", + "deps": [] + }, + "pp+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp+.el", + "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" + }, + "recipe": { + "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.1028", + "deps": [] + }, + "evil-annoying-arrows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/endrebak/evil-annoying-arrows.git", + "sha256": "ee78ab554f0e45041651c89e45fd255772763eef1511dac51388f6ed4150cb15", + "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f" + }, + "recipe": { + "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1618", + "deps": [ + "cl-lib" + ] + }, + "dired-hacks-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash" + ] + }, + "twig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/moljac024/twig-mode.git", + "sha256": "4aa3b7cc35886992f27b77c7b2d673d6fdaa19e2c18bdeb562c7c3e1058c7573", + "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6" + }, + "recipe": { + "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130220.1250", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-genrnc.git", + "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140612.737", + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ] + }, + "unicode-progress-reporter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", + "sha256": "b8528151d1697c4e9ec511527aadd758d502481ef84ec58d71c2d46080abd922", + "rev": "5e66724fd7d15743213b082474d798117b194494" + }, + "recipe": { + "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "emacs", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "faff-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/WJCFerguson/emacs-faff-theme.git", + "sha256": "db88dcaa1cf45a9bdc224d89448f10f38a152c6e9ee1d49eb0201e780c7285e9", + "rev": "8ec2bee09b386c711b0753ab12ace926d06fca7e" + }, + "recipe": { + "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.717", + "deps": [] + }, + "fm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fm.git", + "sha256": "7ae3ebd7b5780ffc89dfb51950584d87dc201fbeab7cac41f83c524996fe64ba", + "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59" + }, + "recipe": { + "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130126.1818", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-anaconda.git", + "sha256": "d82eeacf709b6d86f9dc9007a72b02e0c40ff4f2d4f33be611d2bda2be88fc8b", + "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.523", + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ] + }, + "inlineR": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/inlineR.el.git", + "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" + }, + "recipe": { + "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120520.932", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-tutor.git", + "sha256": "bab3fdd9f65c8d6f62dd787ab67437ffd3e7331ab5b700470facad29ab95c396", + "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150103.50", + "deps": [ + "evil" + ] + }, + "flycheck-dmd-dub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", + "sha256": "d5865e86098fd1e5f429ee068fd4ba97d65cf0a5c34d875a4c7783dbdc0698ad", + "rev": "1acd7e3683ed55ac11f013e325c1cbf19be8ad66" + }, + "recipe": { + "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.822", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-visualstar.git", + "sha256": "a035ef65b14bff6b936ba76cd3d6e25ab944b4dec3a61dbdbd91e8187e9ba49e", + "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.1610", + "deps": [ + "evil" + ] + }, + "hlinum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/hlinum-mode.git", + "sha256": "04d757d07653dd788bca7e0fa10d4a81ba377bb94bd381574e7194bffb4c887b", + "rev": "22218c9883a2de6468bf6ad13864b50b44c93592" + }, + "recipe": { + "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2133", + "deps": [ + "cl-lib" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-identifiers.git", + "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.926", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/demangle-mode.git", + "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1453", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "github-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/github-clone.el.git", + "sha256": "ac21881cb359e8614869527e3e182b6768f8c70121369233e3097c643e8b03e6", + "rev": "93e6604c2137b308adeb5cf1653c25b445ee143a" + }, + "recipe": { + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150705.1905", + "deps": [ + "emacs", + "gh", + "magit" + ] + }, + "shrink-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", + "sha256": "9397acde96bd985a3781f57ffdd8486e42324bb37e2692be27982bca720839be", + "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7" + }, + "recipe": { + "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.1415", + "deps": [] + }, + "helm-git-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenbeese/helm-git-files.git", + "sha256": "2039fe70e88744a4459e74792a0f8a4c592f4b98bf71d8e8669730406644a4f7", + "rev": "43193960774069369ac6964bbf7c026900206fa8" + }, + "recipe": { + "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141212.717", + "deps": [ + "helm" + ] + }, + "hi2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nilcons/hi2.git", + "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.1431", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", + "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.1857", + "deps": [] + }, + "eshell-did-you-mean": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-did-you-mean.git", + "sha256": "6f6d49ab37747e8e58039d9a70257b317653ad7861feb0d9d590d83219d41c6c", + "rev": "7cb6ef8e2274d0a50a9e114d412307a6543533d5" + }, + "recipe": { + "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.1452", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150321.413", + "deps": [] + }, + "urlenc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/urlenc-el.git", + "sha256": "845bf1ecb99a1e148040e525e2177203222b7dc9e4c5464b84a711e3c8069977", + "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac" + }, + "recipe": { + "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140116.856", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/bbdb-.git", + "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140221.1754", + "deps": [ + "bbdb", + "log4e", + "yaxception" + ] + }, + "ace-pinyin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-pinyin.git", + "sha256": "fd4fef31d0c3085ccd2a087dbd3bb4a45d046dcaf8657fd73fee886f856bec02", + "rev": "d7c8fed8ab6f6fbbbcb95bcd74516c30d05dcdfa" + }, + "recipe": { + "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1517", + "deps": [ + "ace-jump-mode", + "avy" + ] + }, + "vc-auto-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/vc-auto-commit.git", + "sha256": "e74826b55567f9fdf62c1b89606a218349b2a917ccbf47c81ab995b5c9158a14", + "rev": "b23ee2727495b89d0a979a7420ce3a313434fdfe" + }, + "recipe": { + "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.303", + "deps": [] + }, + "etable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/ETable.git", + "sha256": "beaf4cf590093a0eb301b7ad04f37ebb45a64f0fab7ae6293ee1a7c6d70a66cc", + "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e" + }, + "recipe": { + "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150327.1216", + "deps": [ + "dash", + "emacs", + "interval-list" + ] + }, + "gplusify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/gplusify.git", + "sha256": "01e3eebcfaf7a68b069e37d4ad7ca9472ae49b18758a4599e2c61e8a008083d0", + "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2" + }, + "recipe": { + "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.1444", + "deps": [] + }, + "prop-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/prop-menu-el.git", + "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" + }, + "recipe": { + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.618", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", + "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.606", + "deps": [ + "pcsv" + ] + }, + "green-phosphor-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aalpern/emacs-color-theme-green-phosphor.git", + "sha256": "b0ad76b2a8a4be8c0f85c10338ee911a643d121f319dae514a2bfefa34a170bb", + "rev": "fa42f598626adfdc5450e5c380fa2d5df6110f28" + }, + "recipe": { + "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.947", + "deps": [] + }, + "cypher-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/cypher-mode.git", + "sha256": "141572679e97cb1e8140c2170f7aaa85129f2a0c7a30e96b4049cbb48750faa0", + "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6" + }, + "recipe": { + "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.542", + "deps": [] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/bbcode-mode.git", + "sha256": "c7fae8b84a35c5428b55a112442ac45621a52cc91a0bdbe84f528d301d11379e", + "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141103.1541", + "deps": [] + }, + "ob-kotlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-kotlin.git", + "sha256": "c7bb65703bab660f8b1fea0714770747ccbd112f1b50ce67b338827ac4e39205", + "rev": "c494f50184d25e196c009bf5cc105c4931b9464d" + }, + "recipe": { + "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.814", + "deps": [ + "org" + ] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fold-dwim.git", + "sha256": "219a7922278b25f9b836ac1d686d17008bc942f391aa5a54375cab3074e4e1fb", + "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140208.1037", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake-inflector.git", + "sha256": "14749dfef78173160d9e6d5e53c8db2dd7a23dada8afac24a1af573924b0ed8d", + "rev": "a91cecd533930bacf1dc30f5209831f79847abda" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.358", + "deps": [ + "s" + ] + }, + "kwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/reactormonk/kwin-minor-mode.git", + "sha256": "9e6984bcb2ef61f5d7496cdb021ccadcbd1a293bcbea5a08f4702472e3732b47", + "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566" + }, + "recipe": { + "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150308.1312", + "deps": [] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dysinger/purescript-mode.git", + "sha256": "271ed4bc574cc9f4803b54003b19d5086f2d61772ca58082e1e5d315b44c29aa", + "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.2028", + "deps": [] + }, + "centered-cursor-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el", + "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl" + }, + "recipe": { + "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.834", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", + "sha256": "0913a861ebcc2a946eae67882e4118a936d8a5b383c13f2461acea669b5cda93", + "rev": "81071e62862c0062b8559eb217e6658878c34a1e" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.1428", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-R.el.git", + "sha256": "9991a8fe5147c327955a0c29613322499d0ab2cf8535d181e784245bf307375a", + "rev": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2" + }, + "recipe": { + "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120819.1914", + "deps": [ + "ess", + "helm" + ] + }, + "mingus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pft/mingus.git", + "sha256": "9de9b14e5313990554578139297e4add32c515d51891658871a205c8fae2fdb4", + "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4" + }, + "recipe": { + "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1317", + "deps": [ + "libmpdee" + ] + }, + "hippie-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hippie-namespace.git", + "sha256": "d9552498eb4b8af1018ae734fcf0e242754e569b0d71fb3b48e001c898e742c7", + "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49" + }, + "recipe": { + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/sbt-mode.git", + "sha256": "d2d940ba293683c78712c46484fff8c54221b128d5912d34cfc342c699f32a63", + "rev": "209a396babd0a302cbb5a32f16525aabb409528b" + }, + "recipe": { + "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.242", + "deps": [ + "scala-mode2" + ] + }, + "evil-easymotion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/evil-easymotion.git", + "sha256": "a65a10e383c9703db833e38dcd71e2027deaf25fdf5a1b99497c156f2c0cc7b1", + "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79" + }, + "recipe": { + "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2259", + "deps": [ + "avy", + "emacs" + ] + }, + "org-dashboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/org-dashboard.git", + "sha256": "4536ff0b128a4aa2abb28f561051dc277905538119cdce11a5e3299646880edb", + "rev": "b523aefb5822c1f09a70bc429579c2959929782b" + }, + "recipe": { + "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.502", + "deps": [ + "cl-lib" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shpec/shpec-mode.git", + "sha256": "390093d68134f1a008a724a5dd0493b88b17dcd1dee4e4aaf57c12de0e278a93", + "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.422", + "deps": [] + }, + "jonprl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/jonprl-mode.git", + "sha256": "5a2e21fbe4d4146e2566d5152f087ea56c9e13c31afe154a9b9be6c6d4fc3b68", + "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10" + }, + "recipe": { + "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.342", + "deps": [ + "cl-lib", + "emacs", + "yasnippet" + ] + }, + "anything-replace-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-replace-string.git", + "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "rev": "1962f24243d6013bcef7e8d23136277d42e13130" + }, + "recipe": { + "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140317.536", + "deps": [ + "anything" + ] + }, + "novice+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/novice+.el", + "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" + }, + "recipe": { + "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1834", + "deps": [] + }, + "discover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/discover.el.git", + "sha256": "6ad242aa6a06d4878d7f707054cbe6ca056d22152848cabad1999e016116f038", + "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.1539", + "deps": [ + "makey" + ] + }, + "ob-elixir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-elixir.git", + "sha256": "79ac6816302e9fcdd0bcebf5cf3bb5a1afcf5e04c59e5748478f1615958d6c98", + "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210" + }, + "recipe": { + "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.647", + "deps": [ + "org" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ledger/ledger.git", + "branchName": "next", + "sha256": "130cde00075ffeece7575f475e63be1e6bd64715028ede06b7b802c776c869da", + "rev": "429765ee4dbf6ea2ad654b4287fa6498bc55fa3a" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1742", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/eshell-autojump.git", + "sha256": "82411271983f24f39a271bbc68b754b51cf4be90d03ced6ca80ad2d0e7fb998d", + "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.224", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-restclient.git", + "sha256": "a5e7b4babbd51bc77b0d478d051818db7bfeed760ae19b3897fd83508e4f0211", + "rev": "752f39490178832f6a09abd82e10d9356636350a" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.601", + "deps": [ + "cl-lib", + "company", + "emacs", + "know-your-http-well", + "restclient" + ] + }, + "ac-cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake.git", + "sha256": "ae7cd5dc6833cd780bfbac478b2fea7850f66dcfe64412c4d32218bfd3b297d2", + "rev": "f34c9e3ba8cb962e4708c8f53b623e1922500176" + }, + "recipe": { + "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140315.1129", + "deps": [ + "auto-complete", + "cake" + ] + }, + "ddskk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.552", + "deps": [ + "ccc", + "cdb" + ] + }, + "el-swank-fuzzy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el", + "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn" + }, + "recipe": { + "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.657", + "deps": [] + }, + "org-tree-slide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/takaxp/org-tree-slide.git", + "sha256": "85cca95c04cce82c87613e546b75e199615a54a600939c1cf0eb4b0e79ef4c29", + "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" + }, + "recipe": { + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.253", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", + "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.833", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/asilea.git", + "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.925", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "icomplete+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icomplete+.el", + "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky" + }, + "recipe": { + "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1003", + "deps": [] + }, + "ox-reveal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yjwen/org-reveal.git", + "branchName": "stable", + "sha256": "9b6270464def71e1ee275a83442d420de5177eb1e44cbc1a3c447f0b1e312eb7", + "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd" + }, + "recipe": { + "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.106", + "deps": [ + "org" + ] + }, + "demo-it": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/howardabrams/demo-it.git", + "sha256": "229e1314efdc452738fbd1e82ee626150de8ef03a0a24f2c136dd9c6f47244ea", + "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c" + }, + "recipe": { + "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1429", + "deps": [] + }, + "helm-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-package.git", + "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.248", + "deps": [ + "cl-lib", + "helm" + ] + }, + "dired-filter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1336", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "mmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/mmm-mode.git", + "sha256": "884a10fa62940123c4181c04d7d82e5e4349bf75417bd04724154167d62ece79", + "rev": "c9a857a638701482931ffaaee262b61ce53489f3" + }, + "recipe": { + "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1916", + "deps": [] + }, + "revive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/revive.git", + "sha256": "2107ab8d3a44ca8fe508e0fbbffc91f02727c99c1e39fadf17d4fced0a53fa0c", + "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818" + }, + "recipe": { + "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.1755", + "deps": [] + }, + "smart-tab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genehack/smart-tab.git", + "sha256": "84564063ecdce590bf6509b4b3b79f4cd33ff91aa3d46396a4194ee4d7852f2a", + "rev": "28918a72045811294ecb33f666ba23fe66c169af" + }, + "recipe": { + "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.1117", + "deps": [] + }, + "man-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/man-commands.git", + "sha256": "db9577297237bbd0eecb1f5d427d1e513700a31e26f91ffe1c8f324370006d70", + "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211" + }, + "recipe": { + "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130627.1853", + "deps": [] + }, + "helm-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/helm-git.git", + "sha256": "2e2d1635a583a173d9422383af038b1baacdfacd32f4bd4080dc8e6b94777bd4", + "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55" + }, + "recipe": { + "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120630.1603", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-lens.git", + "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.214", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-setup.git", + "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120727.926", + "deps": [] + }, + "interaction-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michael-heerdegen/interaction-log.el.git", + "sha256": "546385d25e675d526c68dc82b04d35d441d36a69100a8b74c9add0fb6527b549", + "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f" + }, + "recipe": { + "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.1210", + "deps": [ + "cl-lib" + ] + }, + "ac-emmet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-emmet.git", + "sha256": "4f080ce79ee28bfa173bc56a1baba9c9f93bba92f5d49049c4473d395dc570d2", + "rev": "88f24876ee3b759978d4614a758280b5d512d543" + }, + "recipe": { + "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.1058", + "deps": [ + "auto-complete", + "emmet-mode" + ] + }, + "dummy-h-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el", + "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v" + }, + "recipe": { + "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.733", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-quoted.git", + "sha256": "0a492d3a6ad5d80e90519dd29264f82456080dba276b4f168e9d7efd6153136f", + "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140916.1322", + "deps": [ + "emacs" + ] + }, + "org-wc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dato/org-wc.git", + "sha256": "28e129c8edea383d8a01b015b434ab6c9e1faee4b80b610bf27af40ec2832a56", + "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8" + }, + "recipe": { + "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141101.120", + "deps": [] + }, + "undo-tree": { + "fetch": { + "tag": "fetchgit", + "url": "http://www.dr-qubit.org/git/undo-tree.git", + "sha256": "1ef5db7cf476dd37348fd1f11dd199613a89a2351dc583a42afd9d35a53d8ae2", + "rev": "a3e81b682053a81e082139300ef0a913a7a610a2" + }, + "recipe": { + "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140509.722", + "deps": [] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/wordsmith-mode.git", + "sha256": "d000091c7e22e7301cdbe57d0a7c2621e4d4d8d3b71b180bfc208ba807f54b34", + "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.436", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/makey.git", + "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131231.830", + "deps": [ + "cl-lib" + ] + }, + "stumpwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/stumpwm.git", + "sha256": "3547616b9e5694fd09014bbbf29458ee0dea828428b6bf7a6231670aacfb8271", + "rev": "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4" + }, + "recipe": { + "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140130.2016", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jtatarik/magit-gitflow.git", + "sha256": "00524486775639f7de4a082bf10946e1c97b0e682eff6d616536c15535373d52", + "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.239", + "deps": [ + "magit", + "magit-popup" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/wsd-mode.git", + "sha256": "eb751ef9994b0df2d67a87a1d48f5fd0f816c2a5aebf68651184d3aa3aa53503", + "rev": "a5b012607793a5edc9d54b30e04f4a324144e930" + }, + "recipe": { + "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.1230", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/rubocop-emacs.git", + "sha256": "7329265be66994d2a214a67395ff95823773d7ba308309b777a4714cf204bff8", + "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.2337", + "deps": [ + "dash", + "emacs" + ] + }, + "planet-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cmack/emacs-planet-theme.git", + "sha256": "f8cfdca190055945f87d29f0d57c304ec5b3018694800e73ba982b8f0a6f9f60", + "rev": "e2bd6645535a3044fceafb1ce5d296cc111d5f2a" + }, + "recipe": { + "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150627.951", + "deps": [ + "emacs" + ] + }, + "ert-runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-runner.el.git", + "sha256": "6fef3cc63cb122657a82b99fc36ed9870d408f782442299f011bd526b85f4304", + "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b" + }, + "recipe": { + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.313", + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ] + }, + "coffee-fof": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/coffee-fof.git", + "sha256": "77b8af71bb821eb017e7c7bf2886d029c0372ba846f2ce315c2b83a90c421b04", + "rev": "211529594bc074721c6cbc4edb73a63cc05f89ac" + }, + "recipe": { + "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131012.730", + "deps": [ + "coffee-mode" + ] + }, + "zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/zenburn-emacs.git", + "sha256": "a7b05262fd0177e09e3a3a0cfd5bdbda7267818039f8b283d160b640a4a614e6", + "rev": "ded76bfc1d9a5ff9e0deb3b695922c02c17c7d61" + }, + "recipe": { + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.1358", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/web-mode.git", + "sha256": "776a4dae7b7234e80d5083feebb6a1e63a12ebde5a1c15b9e0eae0d16ae907b2", + "rev": "79b921e13444c8f4da9ec89a45a1bfa0eb85aaa6" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.757", + "deps": [] + }, + "helm-filesets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gcla/helm-filesets.git", + "sha256": "5ec466ca01d9ff1eaf97621289cc56afd49c8f605b91eccb64ad600228553ff1", + "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa" + }, + "recipe": { + "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1335", + "deps": [ + "filesets+", + "helm" + ] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "helm-sheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-sheet.git", + "sha256": "fd379699a597dc3c58994879de475ace5da049fe31ff22b16d1812771fc39603", + "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463" + }, + "recipe": { + "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130630.739", + "deps": [ + "helm" + ] + }, + "tao-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/11111000000/tao-theme-emacs.git", + "sha256": "f581fe13092ad7aac9ac3ae750a037a14ff73b15934e80fe002d17fc28fd767b", + "rev": "48df99623bd183d17961eef73293c62a1045c708" + }, + "recipe": { + "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.758", + "deps": [] + }, + "ahg": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/agriggio/ahg", + "sha256": "1kh7a9hyw24qrlp4ngvy2548a95l5k89k7nb3h75sk9pabw078cf", + "rev": "c3d9a903e3a3" + }, + "recipe": { + "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.937", + "deps": [] + }, + "isearch-dabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/isearch-dabbrev.git", + "sha256": "2b7beb8d53ba7b757d9a1a26a9faabb21c95a3b9201f8603d7bb29ae4c40a09d", + "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8" + }, + "recipe": { + "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141224.22", + "deps": [ + "cl-lib" + ] + }, + "helm-bm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-bm.git", + "sha256": "df2df8040202cd8d1371ce5abd838b2dd35a2fed482114607daebf846b3c9dbd", + "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd" + }, + "recipe": { + "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131224.905", + "deps": [ + "bm", + "cl-lib", + "helm", + "s" + ] + }, + "tornado-template-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paradoxxxzero/tornado-template-mode.git", + "sha256": "62e85fe5668e775c11621c3db19289689eb5a82b7ba59801f7c8428c18237c83", + "rev": "667c0663dbbd279b6c345446b9f2bc50eb52b747" + }, + "recipe": { + "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.408", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/mwim.el.git", + "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.1436", + "deps": [] + }, + "launchctl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pekingduck/launchctl-el.git", + "sha256": "d2aaebcb95d00fdd0f79f4c9380c121f32f25ad7343fda06dd4fe1b3e03a9f94", + "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4" + }, + "recipe": { + "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150518.809", + "deps": [ + "emacs" + ] + }, + "transmission": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/transmission.git", + "sha256": "37e9f71ebc5ecde919bb9c4f3dc0defa92d56c3c15bdc89fc9af6d52e3b64c47", + "rev": "810484fbb3b5930b633a98e679e3396ca5d35844" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1100", + "deps": [ + "emacs", + "let-alist" + ] + }, + "ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rcoedo/emacs-ghq.git", + "sha256": "846a64613fb39c70beb645a4770560018be97cb4c2c29b19820515d33c30efb5", + "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24" + }, + "recipe": { + "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.318", + "deps": [] + }, + "soft-charcoal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-charcoal-theme.git", + "sha256": "9533f4b9473250f1ff562b5ffa178e264526cfc5e69c639801fce927ed35051c", + "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f" + }, + "recipe": { + "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.1143", + "deps": [] + }, + "dyalog-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/harsman/dyalog-mode", + "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj", + "rev": "ce795beb8747" + }, + "recipe": { + "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.854", + "deps": [ + "cl-lib" + ] + }, + "xah-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/lookup-word-on-internet.git", + "sha256": "7a547753b93de4a8116401a972c452b63619dfd0efa53f6eb26ccb2513e7bea9", + "rev": "75590c52af87e635b2f19640095b805fdb3e5d8b" + }, + "recipe": { + "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1346", + "deps": [] + }, + "character-fold+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/character-fold+.el", + "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy" + }, + "recipe": { + "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.924", + "deps": [] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "1b103da2084cb38dcf5ce07a62d69b6a15f81b59fae9130686934ec9820dc7b4", + "rev": "8881a61fe7a1956534b89cd1f79984793ff694fe" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.640", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "emacs" + ] + }, + "monky": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/monky.git", + "sha256": "3d8bc1962ee4f30e5fa7d029b02ec07018a56675d39b90ecb077528b565efb48", + "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482" + }, + "recipe": { + "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.218", + "deps": [] + }, + "pythonic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pythonic.git", + "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.416", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "s" + ] + }, + "auto-capitalize": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el", + "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi" + }, + "recipe": { + "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.5", + "deps": [] + }, + "emms-mode-line-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", + "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" + }, + "recipe": { + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.946", + "deps": [ + "emacs", + "emms" + ] + }, + "ember-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ronco/ember-yasnippets.el.git", + "sha256": "64c434b6aa5192681614503b98873c114295125759f6856ff949543c1e043618", + "rev": "650a6d31748175aa7df074bcfffd433a0b072ab5" + }, + "recipe": { + "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1126", + "deps": [ + "yasnippet" + ] + }, + "go-errcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-errcheck.el.git", + "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" + }, + "recipe": { + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1335", + "deps": [] + }, + "lexbind-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spacebat/lexbind-mode.git", + "sha256": "3675f14da51b1711dfd3f9d3ff819d6b9309326de28a956e719a2b9d219614d7", + "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d" + }, + "recipe": { + "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.929", + "deps": [] + }, + "minimal-session-saver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/minimal-session-saver.git", + "sha256": "48a001446daeac6423488aaee4452017afa1f7fba92c2ff2eaf0d456a5bdd8cc", + "rev": "cf654ac549850746dc21091746e4bcc1aef7668e" + }, + "recipe": { + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "flymake-vala": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daniellawrence/flymake-vala.git", + "sha256": "fd0b64747c75ee9eb50a99e689556620dbe8465eccbe86b27142edee87380441", + "rev": "c3674f461fc84fb0300cd3a562fb903a59782745" + }, + "recipe": { + "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150326.31", + "deps": [ + "flymake-easy" + ] + }, + "popup-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-popup-complete.git", + "sha256": "b11301df4c14431a70ed1c62f5c9f473e8e3febfd46bdd979d4d1b1badd4ef4f", + "rev": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca" + }, + "recipe": { + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.2108", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake2.git", + "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.742", + "deps": [ + "anything", + "cake-inflector", + "dash", + "f", + "historyf", + "ht", + "json", + "s" + ] + }, + "helm-rhythmbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrBliss/helm-rhythmbox.git", + "sha256": "333341c7797a4e4f79da40b0593102d77737697c0c09af7dfd2443190400ae16", + "rev": "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98" + }, + "recipe": { + "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150813.808", + "deps": [ + "cl-lib", + "helm" + ] + }, + "async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/emacs-async.git", + "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" + }, + "recipe": { + "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.456", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/gotest.el.git", + "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", + "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.950", + "deps": [ + "emacs", + "f", + "go-mode", + "s" + ] + }, + "ede-compdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randomphrase/ede-compdb.git", + "sha256": "0a785f8f8a976d894ed9d542f7122ea691283486c0bace9d16adc2888b65c27b", + "rev": "d6d8466cd62876fc90adeff5875a1a584fd846cd" + }, + "recipe": { + "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1533", + "deps": [ + "cl-lib", + "ede", + "semantic" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Floobits/floobits-emacs.git", + "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1836", + "deps": [ + "highlight", + "json" + ] + }, + "md-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomas11/md-readme.git", + "sha256": "836d88feb65f49fdb9dc01a356c6a6dcb397d1401b12a611aec159e5d7b80fc9", + "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec" + }, + "recipe": { + "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.159", + "deps": [] + }, + "annoying-arrows-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/annoying-arrows-mode.el.git", + "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" + }, + "recipe": { + "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1102", + "deps": [] + }, + "foreign-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/foreign-regexp.el.git", + "sha256": "fca3272a37d16bbfd6f48e9e20b80aecae9033636576ddb4acd2ae49e1523332", + "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e" + }, + "recipe": { + "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140823.1942", + "deps": [] + }, + "wilt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sixty-north/emacs-wilt.git", + "sha256": "a51e30d46f4466172d371b544f4019eb052777f1b54cc3c33533caea69973ffb", + "rev": "5febe367c6c3729848654358af4d17ee2987da8d" + }, + "recipe": { + "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.718", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "airplay": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/airplay-el.git", + "sha256": "8499df3a59b1cf947ebb23d30890f43048383a06df8b7a6bf4f170b284390c98", + "rev": "bd690aafcae3a887946e1bba8327597932d964ad" + }, + "recipe": { + "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130212.626", + "deps": [ + "deferred", + "request", + "simple-httpd" + ] + }, + "mode-icons": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/mode-icons.git", + "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40", + "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467" + }, + "recipe": { + "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130602.748", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austin-----/weibo.emacs.git", + "sha256": "f0ed5faab006636b836bee87f680adcd328d04cd5311a4ad49694676a58f8541", + "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.1642", + "deps": [ + "cl-lib" + ] + }, + "volatile-highlights": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/volatile-highlights.el.git", + "sha256": "ab3d1dc60b3f087b2a2b6a7c56fb660098e710167959ba7ec522bfa65272d30a", + "rev": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24" + }, + "recipe": { + "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.40", + "deps": [] + }, + "bbdb-china": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-china.git", + "sha256": "101284a21d1b33c5b0292047f70e0913a26eaccb463b318c0adeec876541f59c", + "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c" + }, + "recipe": { + "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.2056", + "deps": [ + "bbdb-vcard", + "chinese-pyim" + ] + }, + "grep-a-lot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ZungBang/emacs-grep-a-lot.git", + "sha256": "9c1a5212b15ae93316f19708f5ffae818d0a835c30914aac7ddf469aab3002b9", + "rev": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad" + }, + "recipe": { + "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131006.847", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.2215", + "deps": [] + }, + "parse-csv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrc/el-csv.git", + "sha256": "5a2071adad5edd42db44a46765a2205d060d24b3bbf74875c4adf6d958b80cfd", + "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd" + }, + "recipe": { + "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140203.316", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjarvstrand/edts.git", + "sha256": "77a3437794bc04b6cef069f6bb539a1c4ce5c4407e49693b1c12621646b1c9d9", + "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.710", + "deps": [ + "auto-complete", + "auto-highlight-symbol", + "dash", + "eproject", + "erlang", + "f", + "popup", + "s" + ] + }, + "unison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/impaktor/unison-mode.git", + "sha256": "d11e3845374bb491d898e3a3826639212d485eedf098b7b6e85baed909021051", + "rev": "7e1bfee1a6796cc749a583605a9c948eccbc8cc5" + }, + "recipe": { + "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.614", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/avy.git", + "sha256": "ef7382ab4751b7989f269f1931632244ba3afdf0157c27091907627b6788a6ed", + "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.756", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/marmalade.git", + "sha256": "78617a9d2005e419aab6e38fb59ec8bbfc4e897407a638d3923cd7fc1d52e3ea", + "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110602.1822", + "deps": [ + "furl" + ] + }, + "per-buffer-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el", + "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf", + "rev": "2b82a04b28d0" + }, + "recipe": { + "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1212", + "deps": [ + "cl-lib" + ] + }, + "aurora-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xzerocode/aurora-theme.git", + "sha256": "26e201d8002ae5d45a0ecfac9fe9e711ccecea0bcfd8422417f2d561da3356fc", + "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79" + }, + "recipe": { + "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1302", + "deps": [] + }, + "systemtap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/systemtap-mode.git", + "sha256": "f9ddb0fb74bfd4593251e023bd120229331e53257273f3d647abeba2cb02009d", + "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9" + }, + "recipe": { + "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1340", + "deps": [] + }, + "evil-dvorak": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jbranso/evil-dvorak.git", + "sha256": "058408c00be4116f82b23dc9c66125622382587e0fa1c03dce835c522c056b49", + "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b" + }, + "recipe": { + "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.726", + "deps": [ + "ace-jump-mode", + "evil", + "evil-surround", + "helm", + "helm-swoop" + ] + }, + "shadow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/shadow.el.git", + "sha256": "bcebe1a23988ac97ba7d888983001dcc1d3e168cec8cdad1eeaec69cb5042ac4", + "rev": "eafc93b090895102ac299220a84ec99244f633af" + }, + "recipe": { + "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110507.224", + "deps": [] + }, + "zop-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/zop-to-char.git", + "sha256": "efb045f400fff42dc9685088c22394dad6269cc3409f29ede6701d1837ef14bf", + "rev": "e1b4080286d7c905119eac745b8b7aaca2784844" + }, + "recipe": { + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.247", + "deps": [ + "cl-lib" + ] + }, + "phoenix-dark-mono-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/j0ni/phoenix-dark-mono.git", + "sha256": "318b15eb1520c8d9ba8e5981007a77742f922f58acd1e13428b7a6cac21be6b9", + "rev": "dafb65c542605145d6b1702aae5b195b70f98285" + }, + "recipe": { + "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130306.1415", + "deps": [] + }, + "connection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/gmail-mode.git", + "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140815.1016", + "deps": [ + "ham-mode" + ] + }, + "rust-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rust-lang/rust-mode.git", + "sha256": "f67c192b05f84b23e639a79ad713a82112420ba49fe473dc5b0726191f93c5bf", + "rev": "95d089cbc3a23c0dd23869e716520c31daefdf8f" + }, + "recipe": { + "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.832", + "deps": [] + }, + "bug-reference-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/bug-reference-github.git", + "sha256": "8b20d2efc2e13e6c154cfaf6d2f1c98c61d6d2f989c0d7306e81e8c8ab81d474", + "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd" + }, + "recipe": { + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131202.1503", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1238", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/diml/utop.git", + "sha256": "3f85dd7eac8dd50482ed9cb410b2b929cc8d6da599745f842089eac2c4a6e1c2", + "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.447", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "evil-jumper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-jumper.git", + "sha256": "08d774fc23eecd49fe8e2ea8662061a620408d248c5301ff36a3aa0a00aa92f8", + "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2" + }, + "recipe": { + "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1002", + "deps": [ + "cl-lib", + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lugecy/lingr-el.git", + "sha256": "8038b25560e872e5e4a8104ebc7a1d48e6f0607f9b0f8d25e4391d3f26047d66", + "rev": "4215a8704492d3c860097cbe2649936c22c196df" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100807.1231", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/auto-complete-sage.git", + "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1257", + "deps": [ + "auto-complete", + "sage-shell-mode" + ] + }, + "rich-minority": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/rich-minority.git", + "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" + }, + "recipe": { + "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.600", + "deps": [ + "cl-lib" + ] + }, + "el-spy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/el-spy.git", + "sha256": "f6866b464ca98c3f9d9078774de9339357bfaf9052595438f0ab9df56d1cd404", + "rev": "b1dead9d1877660856ada22d906ac4e54695aec7" + }, + "recipe": { + "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131226.1408", + "deps": [] + }, + "marcopolo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/marcopolo.git", + "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150326.1118", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "openwith": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/openwith", + "sha256": "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01", + "rev": "aeb78782ec87" + }, + "recipe": { + "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120531.1636", + "deps": [] + }, + "el-mock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/el-mock.el.git", + "sha256": "a9ae84c5bc965ea4a8cb3d1fb68655d48777ceb31c2adfd3dc8e6ef053209601", + "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39" + }, + "recipe": { + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.521", + "deps": [] + }, + "smart-newline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/smart-newline.el.git", + "sha256": "467f958f35ef88eac38c02dbab506e629e6b104a176227891c9b4dea39c3ec75", + "rev": "f5f5ff033645aea0652aa375b034746754a38b1e" + }, + "recipe": { + "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131207.2140", + "deps": [] + }, + "fringe-current-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyanagi/fringe-current-line.git", + "sha256": "6108e2f95042f2834c6dfa9acb59103a88c8fb4d3ac927c377138614d7b7947f", + "rev": "0ef000bac76abae30601222e6f06c7d133ab4942" + }, + "recipe": { + "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140110.2211", + "deps": [] + }, + "vertica": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/vertica-el.git", + "sha256": "325c546cb1a96c56ddaddcc7beb07841996c77a38efb07296fb9eda1bb0ae7d6", + "rev": "3c9647b425c5c13c30bf0cba483646af18196588" + }, + "recipe": { + "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131217.911", + "deps": [ + "sql" + ] + }, + "hydra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/hydra.git", + "sha256": "d28da7ce564a639003d29433d7265defa28a3b9fb613210a1e55c0e8e952e136", + "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.617", + "deps": [ + "cl-lib" + ] + }, + "xmlunicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ndw/xmlunicode.git", + "sha256": "6f853574d262d1a16819b61d68da8a98d6b2061edcd914aac86a1bf06b2f3678", + "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21" + }, + "recipe": { + "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1113", + "deps": [] + }, + "pony-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidmiller/pony-mode.git", + "sha256": "d28ed9149832838a4c6000a897aa0b942a47b2d90b94fe89c15c607d94eb2512", + "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7" + }, + "recipe": { + "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.502", + "deps": [] + }, + "browse-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", + "sha256": "d3302bcb998575191ffa0ee1d86ea01e9a82befe008e3660cacd2ea0434f33ac", + "rev": "66b5a0872b4278b49a815fc759c3eb48aebe10bf" + }, + "recipe": { + "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.832", + "deps": [] + }, + "auto-shell-command": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/auto-shell-command.git", + "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" + }, + "recipe": { + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150416.1257", + "deps": [ + "deferred", + "popwin" + ] + }, + "gerrit-download": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/gerrit-download.el.git", + "sha256": "a4c77027e6d9e78b8f4ef5569643734748aced9c7b256f2fe8a7cc57c1f508b2", + "rev": "d568acc7c5935188c9bc19ba72719a6092d9f6fd" + }, + "recipe": { + "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.908", + "deps": [ + "emacs", + "magit" + ] + }, + "emms-player-mpv-jp-radios": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-mpv-jp-radios.git", + "sha256": "115f86d16945f4801b2c901a52e7c47485112818584a35650dbc127c677fb01b", + "rev": "325d78e161cacbd8279d53a0e786fdb5914f85d1" + }, + "recipe": { + "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.617", + "deps": [ + "cl-lib", + "emacs", + "emms", + "emms-player-simple-mpv" + ] + }, + "paren-completer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/MatthewBregg/paren-completer.git", + "sha256": "0d47deec35c632ab6d1f1d0d0165e459d2a1cfd28bb942f54e5eb32628ab4fa7", + "rev": "afb6d596ffac85b3457178cfdb384cd2a382b120" + }, + "recipe": { + "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150711.1723", + "deps": [ + "emacs" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", + "sha256": "d91cb51799e19d15a5bfeb97510b6ed4102919e47babf08b529e7f01c88dfe18", + "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2125", + "deps": [ + "cl-lib", + "s" + ] + }, + "malabar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m0smith/malabar-mode.git", + "sha256": "8c09e75bfeb8e8fc81b24a9f5ce953f37b121386168c7c0ace562cc9b3e9a57a", + "rev": "830f38efae813db4388da6b4abd386eb0a4e861c" + }, + "recipe": { + "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1255", + "deps": [ + "fringe-helper", + "groovy-mode" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/fullframe.git", + "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.505", + "deps": [ + "cl-lib" + ] + }, + "cperl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/cperl-mode.git", + "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "rev": "06f5668653a114991836139344dbe8f0674577af" + }, + "recipe": { + "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140309.422", + "deps": [] + }, + "handlebars-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielevans/handlebars-mode.git", + "sha256": "776070c6abb6ec9bfdb9711205a85ed0d37b422bd1b274aaa8724f73ed1c8470", + "rev": "81f6b73fea8f397807781a1b51568397af21a6ef" + }, + "recipe": { + "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150211.1149", + "deps": [] + }, + "helm-git-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-git-grep.git", + "sha256": "d93b88b594f63d7448432c629808266623b196374aed9c425f5f07a4da7ae5d6", + "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86" + }, + "recipe": { + "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140222.2022", + "deps": [ + "helm" + ] + }, + "ido-select-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/ido-select-window.git", + "sha256": "f2d37dc889df751ce9317ddc406482180b678e0660ddd42fe896dc2c5d45ad87", + "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" + }, + "recipe": { + "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131220.1447", + "deps": [ + "emacs" + ] + }, + "highlight-chars": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el", + "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf" + }, + "recipe": { + "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1635", + "deps": [] + }, + "wgrep-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140528.1627", + "deps": [ + "wgrep" + ] + }, + "flymake-cursor": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el", + "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr" + }, + "recipe": { + "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130822.532", + "deps": [] + }, + "tabbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dholm/tabbar.git", + "sha256": "7d487fbb6189b8eb520c25ddb985bcef407a95b82129fd7355f2d1f0a2b54358", + "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded" + }, + "recipe": { + "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.343", + "deps": [] + }, + "pretty-symbols": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/drothlis/pretty-symbols.git", + "sha256": "60208b979981fbb6fa213f3e442f93a49e7101af4918073d823558655ca200b8", + "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956" + }, + "recipe": { + "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.459", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyferre/comment-dwim-2.git", + "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.1749", + "deps": [] + }, + "dom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/dom.el.git", + "sha256": "a2d6b6f1a40e9d829a71560b27d2a7531d5b72480958baf447adb739b110ad98", + "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6" + }, + "recipe": { + "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.1810", + "deps": [ + "cl-lib" + ] + }, + "s-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-s-buffer.git", + "sha256": "0565383db76e415e7f00f07ec9b5060ba25e58c4c0660816b73b0ae98049cf1a", + "rev": "f95d234282377f00a2c3a9846681080cb95bb1df" + }, + "recipe": { + "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1624", + "deps": [ + "noflet", + "s" + ] + }, + "ctags-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/helm-etags-plus.git", + "sha256": "a29adec5d4893d563888fa4c7cabe2967d0d31871f991fd929465811e9980c80", + "rev": "eeed834b25a1c084b2c672bf15e4f96ee3df6a4e" + }, + "recipe": { + "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.2214", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", + "sha256": "4e212f945e58a53810a3c0ef0aa9b51da8f2ad76815fcf76a16a38f999cc5729", + "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.531", + "deps": [] + }, + "projectile-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anshulverma/projectile-speedbar.git", + "sha256": "94472999394b672ec75c8cdbefffedd2fff6187c4c779e5bc625beb7962f6854", + "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16" + }, + "recipe": { + "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.1353", + "deps": [ + "projectile" + ] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/helm-unicode.git", + "sha256": "6fdaef3f969894c5789050944ba446c37f29909d2bf777001eef0d61fad2f6fa", + "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1354", + "deps": [ + "emacs", + "helm" + ] + }, + "base16-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkaito/base16-emacs.git", + "sha256": "59d316cc71bd647f4c90e7688ef508a2aff99ae4e3a4a495a4b36f0864034498", + "rev": "18693adea42ec2667534651c28c32934bc1bcec0" + }, + "recipe": { + "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.911", + "deps": [] + }, + "xah-fly-keys": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-fly-keys.git", + "sha256": "36708da17c4d9114a47003d857002e706d1a12b7ea9137d9e28b5aa589481431", + "rev": "83d0da590640dda6d175cf88e83062717e39ed50" + }, + "recipe": { + "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.348", + "deps": [] + }, + "chm-view": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/chm-view.el", + "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" + }, + "recipe": { + "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110616.1219", + "deps": [] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/company-quickhelp.git", + "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.519", + "deps": [ + "company", + "emacs", + "pos-tip" + ] + }, + "fxrd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/msherry/fxrd-mode.git", + "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" + }, + "recipe": { + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1328", + "deps": [ + "s" + ] + }, + "gnus-desktop-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/gnus-desktop-notify.git", + "sha256": "992aea09c651de17ecb102ed7d9d0084e2637f2c74b6afe2446753e22cbc8c7a", + "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b" + }, + "recipe": { + "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.854", + "deps": [ + "gnus" + ] + }, + "abyss-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/emacs-abyss-theme.git", + "sha256": "1a72a705e58f709505dfca8d12b6e59f0b7bd013fe063404f03b8e1900938f89", + "rev": "7971da041f5fb608e32cdac9259b53c87013c04f" + }, + "recipe": { + "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.608", + "deps": [ + "emacs" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/js-comint.git", + "sha256": "3b313ca577447321f5245fe7cffb507eb038275ba7da30eefc87db67894c0442", + "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.2038", + "deps": [ + "nvm" + ] + }, + "orglue": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/orglue.git", + "sha256": "e60b8642c9e3685864e4573a77ee240e1325f51931d1ee93b09275aa6f5310f0", + "rev": "4732f8bfd6866e20230b36e5971f2492827c6944" + }, + "recipe": { + "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.713", + "deps": [ + "epic", + "org", + "org-mac-link" + ] + }, + "qml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/qml-mode.git", + "sha256": "4e0e8f6395d42f50c081f6acda37f6eb3951ee75e5130fe09310f7a688775e9c", + "rev": "5e8fb8819e2d7f6fdbb5609a19570db6eaa6a83a" + }, + "recipe": { + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130427.1008", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/emacs-journal.git", + "sha256": "33b199ff09579b4c58a17df0b0d707d7ef8cdcaea8b9f4a8f48a1f7eb6ff94f8", + "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.949", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rbanffy/selectric-mode.git", + "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.918", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.344", + "deps": [ + "cl-lib" + ] + }, + "blgrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/blgrep.git", + "sha256": "a0f62ec8ec32d092c0c2383761b44e649978841d300aafdcf9a1a18095e754df", + "rev": "605beda210610a5829750a987f5fcebea97af546" + }, + "recipe": { + "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150401.916", + "deps": [ + "clmemo" + ] + }, + "sublime-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/owainlewis/emacs-color-themes.git", + "sha256": "a9ec93ea3c10d4f5807f7cdaaaece2a40456f17b754b0bb0d2fd61df5f15bbf3", + "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0" + }, + "recipe": { + "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.203", + "deps": [] + }, + "evm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/evm.el.git", + "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141007.656", + "deps": [ + "dash", + "f" + ] + }, + "snakemake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/snakemake-mode.git", + "sha256": "2724143dd987c019a4ba0b6eec316004a1bab422115a3b47ac51522c15689f5c", + "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a" + }, + "recipe": { + "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2203", + "deps": [ + "emacs" + ] + }, + "nameless": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/Nameless.git", + "sha256": "7a8e061545c3bb84dfeb3309f82f3579496f28bef5577e22075cb0bc41da608f", + "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448" + }, + "recipe": { + "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.639", + "deps": [ + "emacs" + ] + }, + "epresent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/epresent.git", + "sha256": "415e6ec2f5f72dc2967022e009e326e6cc514b23848d8497fda2d599e5172702", + "rev": "c185826a464f780467dff240fd63ec385bd1d9c2" + }, + "recipe": { + "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.810", + "deps": [] + }, + "truthy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/truthy.git", + "sha256": "639642c72c810ab8a35be74928c07f454895d0273755dc7edd8342ce61368e1e", + "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "php-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-mode.git", + "sha256": "29f5668158a753d55e31c82a8f25ee06d429d7b9b52ee266415003c42b7696ca", + "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa" + }, + "recipe": { + "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2230", + "deps": [] + }, + "helm-bibtexkey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenbeese/helm-bibtexkey.git", + "sha256": "5eb06aac13c91e9f70c80b64642dc93de3c5e9bdad3db1f0de152b9acc08c0be", + "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f" + }, + "recipe": { + "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140214.904", + "deps": [ + "helm" + ] + }, + "sotlisp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", + "sha256": "38bd7fd3ebd26fdaeeb4c3c291db72d7495791529bb37f721ec996632dd208af", + "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.934", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-spaces.git", + "sha256": "6b28370ffce75428111e7256c59f75984c4d4fc292f77c2fc34e06cd7e78876b", + "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1100", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/logito.git", + "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120225.1455", + "deps": [ + "eieio" + ] + }, + "slack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuya373/emacs-slack.git", + "sha256": "c66fa3ab65f1a857a5993d34db1c312e01cb1109e616e782504fed673a552b81", + "rev": "4b0e2994a4b5ad57db7f9506b9b2b4d2de3c9dca" + }, + "recipe": { + "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2250", + "deps": [ + "alert", + "circe", + "emojify", + "oauth2", + "request", + "websocket" + ] + }, + "auto-save-buffers-enhanced": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kentaro/auto-save-buffers-enhanced.git", + "sha256": "229ebe2f1318ce7ba11fec13ddef9f75747e0ac07fe78568907872b5ef1a5c81", + "rev": "caf594120781a323ac37eab82bcf87f1ed4c9c42" + }, + "recipe": { + "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.2149", + "deps": [] + }, + "programmer-dvorak": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yangchenyun/programmer-dvorak.git", + "sha256": "006cb6558f3fde69f8a78504a17bade48b84aa590ac31a3571fe5ed006a974fa", + "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350" + }, + "recipe": { + "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150426.2037", + "deps": [] + }, + "gold-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/gold-mode-el.git", + "sha256": "3b2f67e79919a00b6073e66a819127205f26be495ef184c85085baeb334e3651", + "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1" + }, + "recipe": { + "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.2106", + "deps": [ + "sws-mode" + ] + }, + "org-tracktable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tty-tourist/org-tracktable.git", + "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" + }, + "recipe": { + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.1441", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "showtip": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showtip.el", + "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql" + }, + "recipe": { + "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080329.2159", + "deps": [] + }, + "electric-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/electric-operator.git", + "sha256": "dcb7a08d971d02b7291c6fa4564981f36d5067dcd118f06f9f4a98583fff8a17", + "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1536", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "duplicate-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/duplicate-thing.git", + "sha256": "91ba8f93a573b66c89db57947cbd967329e2df8e48b61bd833c5105751e551e1", + "rev": "f6ed0232fd0653621afe450d53775a32a9d0e328" + }, + "recipe": { + "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120515.1148", + "deps": [] + }, + "owdriver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/owdriver.git", + "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141011.938", + "deps": [ + "log4e", + "smartrep", + "yaxception" + ] + }, + "color-identifiers-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ankurdave/color-identifiers-mode.git", + "sha256": "1b1a981fb25f652d1b5887a4bcb95bced2715a3349253ef5fced8f50388a2855", + "rev": "e35ee05588d84517193db07d94ce7f29ace10ef6" + }, + "recipe": { + "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.2004", + "deps": [ + "dash", + "emacs" + ] + }, + "visible-mark": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/iankelling/visible-mark.git", + "sha256": "cf1745da4f5fc3b4104e73bc7a2c961a80328a8ed7de3691b9672ce1d7a2909c", + "rev": "c1852e13b6b61982738b56977a452ec9026faf1b" + }, + "recipe": { + "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.2350", + "deps": [] + }, + "message-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/message-x.el", + "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf" + }, + "recipe": { + "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.918", + "deps": [] + }, + "spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/spotify-el.git", + "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1003", + "deps": [] + }, + "vi-tilde-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/vi-tilde-fringe.git", + "sha256": "0baa23af0ddd92ecb98f9ce288e4d9a818c779d46d117546435ed2d5572fc252", + "rev": "f1597a8d54535bb1d84b442577b2024e6f910308" + }, + "recipe": { + "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.2142", + "deps": [ + "emacs" + ] + }, + "babel-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hung-phan/babel-repl.git", + "sha256": "a1aa0eb08410d25cd835abfea5c4244eaadafd11bc0af7545d61fb89f81c52a7", + "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e" + }, + "recipe": { + "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.1000", + "deps": [ + "emacs" + ] + }, + "spotlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benmaughan/spotlight.el.git", + "sha256": "08f3c6fdfe534af7e7f3ec144cc09202ce42dd21ac214ed3c5feee2614a37616", + "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68" + }, + "recipe": { + "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.255", + "deps": [ + "counsel", + "emacs", + "swiper" + ] + }, + "http-post-simple": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el", + "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my" + }, + "recipe": { + "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131010.2258", + "deps": [] + }, + "shadchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/VincentToups/shadchen-el.git", + "sha256": "eda47fd25aed9ac3a58b5840e76aec3028ab0a8907e2b9cf88a7c9b5f02b97fc", + "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f" + }, + "recipe": { + "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.1239", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mustache/emacs.git", + "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.932", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/persistent-soft.git", + "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1253", + "deps": [ + "list-utils", + "pcache" + ] + }, + "prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.816", + "deps": [ + "dash" + ] + }, + "chef-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpasternacki/chef-mode.git", + "sha256": "4a954cda3f4a54ac4983c7af43bd1cc10060ab3a1d98a7d8ff9e865c629edad6", + "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42" + }, + "recipe": { + "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111121.900", + "deps": [] + }, + "simplenote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/simplenote.el.git", + "sha256": "2926ccf7a5614d9e1f8aafb985ea657f9036499ac228351af351b6f786df0477", + "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078" + }, + "recipe": { + "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141118.840", + "deps": [] + }, + "key-combo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/key-combo.git", + "sha256": "4e5234cdeb340efb4945a11502d0730d4bd3b95771aac77ba7e7d84741d147c7", + "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754" + }, + "recipe": { + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.939", + "deps": [] + }, + "white-sand-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/white-sand-theme.git", + "sha256": "b627cba32c8e31e5f460b7a541124851127ee5c4926e3a01722894b6cb13096a", + "rev": "97621edd69267dd143760d94393db2c2558c9ea4" + }, + "recipe": { + "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1048", + "deps": [ + "emacs" + ] + }, + "company-irony-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hotpxl/company-irony-c-headers.git", + "sha256": "5c6466bc183691e2eac3076c08acf0032ce606887b13b7b4a37b22a7720ef2e8", + "rev": "ba304fe7eebdff90bbc7dea063b45b82638427fa" + }, + "recipe": { + "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.409", + "deps": [ + "cl-lib", + "company", + "irony" + ] + }, + "eshell-prompt-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/eshell-prompt-extras.git", + "sha256": "c9ca24798143e3dd85fd598e14d14e6fc1d67c3e05c5c592b7bb8cf4cb5f4e64", + "rev": "0b7670972b6b424b4a15a88b1733b99324dcf387" + }, + "recipe": { + "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.159", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-filenotify.git", + "sha256": "26c77a487e3f174374d65f80c67a3532ddaf6e5b9cc01932de7c4ea985042785", + "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1740", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/xterm-color.git", + "sha256": "de02f00f1d46e0310a3ca5b3ee4a73195ce0df37bc19107aa9e8ea2099bc8e18", + "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.846", + "deps": [] + }, + "cp5022x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/awasira/cp5022x.el.git", + "sha256": "1fdebde08a8756defd8752c60cb8a1ad5145ce1c838b68706a2c660514e9c7fc", + "rev": "ea7327dd75e54539576916f592ae1be98179ae35" + }, + "recipe": { + "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120323.1835", + "deps": [] + }, + "sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cnngimenez/sqlite.el.git", + "sha256": "b18c04fa7a3bac3d82ebc968af65bdd76c4959ac5954c68cd31d5bc1aa25ae57", + "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986" + }, + "recipe": { + "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.15", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/phpunit.el.git", + "sha256": "5b0643e019e0660ff6931e137ad131215f686f0936a7a6ad06c7df9ae14fe205", + "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.454", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "pastebin": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pastebin.el", + "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn" + }, + "recipe": { + "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101125.1355", + "deps": [] + }, + "org-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-gcal.el.git", + "sha256": "1f8bf9693fb5e8675a001c5bbf3a5a352b55d56721adccad4cc325c27df54348", + "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.2148", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred" + ] + }, + "evil-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antono/evil-rails.git", + "sha256": "911ff8bb72de512a90fbb70949c7023ee40c80e0777a860098ec962b7fe92d8b", + "rev": "6a9375bf7f5823c8138e679249c4e2ce58f2e93a" + }, + "recipe": { + "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.646", + "deps": [ + "evil", + "projectile-rails" + ] + }, + "pcmpl-pip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/pcmpl-pip.git", + "sha256": "a8d857482e1fcc6347f0c32e9e90f265645641826937b60e18e0bee45709ff92", + "rev": "b775bef9fa3ae9fb8015409554ecdd165c4bc325" + }, + "recipe": { + "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.348", + "deps": [] + }, + "helm-rubygems-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neomantic/helm-rubygems-org.git", + "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" + }, + "recipe": { + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140826.656", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ag.el.git", + "sha256": "04f01565d6b032fda4c7d4a8d557d3dcfc3ce802ca7c802520a9fd804aa66393", + "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0" + }, + "recipe": { + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1750", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "smartscan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/smart-scan.git", + "sha256": "b79030438356b3ff3794b6b6ec5c3d7260bfb57ec9dd8884e17e1801adeb6ca4", + "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3" + }, + "recipe": { + "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.939", + "deps": [] + }, + "propfont-mixed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/propfont-mixed.git", + "sha256": "fcef75491a5270479c4649e40ca6dfc7007873f10c04a421c574f9f20ff047b2", + "rev": "0b461ef4754a469610dba71874a34b6da42176bf" + }, + "recipe": { + "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.1611", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jenkins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/jenkins.el.git", + "sha256": "e44b893caaeeca57a2bb2568737b8d76e1050aa878da6afa89e4a9a02fa99c5f", + "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79" + }, + "recipe": { + "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2108", + "deps": [ + "dash", + "emacs", + "json" + ] + }, + "el-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init.git", + "sha256": "f63e820fa9e7949044ff74b2f3e89786d97a4f3398a53816d815a7a3c9fc77bb", + "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.420", + "deps": [ + "anaphora", + "cl-lib", + "emacs" + ] + }, + "todotxt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/avillafiorita/todotxt-mode.git", + "sha256": "7cf723972f71cd857ed129f11f67d49a88813453f2d47688d7fcfbe56d4eb134", + "rev": "dc6ae151edee88f329ba7abc5d39b7440002232f" + }, + "recipe": { + "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.904", + "deps": [] + }, + "alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/alert.git", + "sha256": "5ff43b167c4b20d60c6a0c8176def479f7d86a50214e9dea6df62f129e74fe7c", + "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce" + }, + "recipe": { + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.959", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pallet/ritz.git", + "sha256": "7ff352d5040cab189a14147f50634097f6c2cd451c5d32110660416b45e7b411", + "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130218.1737", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/buffer-flip.el.git", + "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.1050", + "deps": [ + "key-chord" + ] + }, + "point-undo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/point-undo.el", + "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz" + }, + "recipe": { + "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100504.329", + "deps": [] + }, + "frame-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el", + "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a" + }, + "recipe": { + "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.952", + "deps": [ + "frame-fns" + ] + }, + "yaoddmuse": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el", + "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4" + }, + "recipe": { + "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.621", + "deps": [] + }, + "company-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsukimizake/company-dcd.git", + "sha256": "34237a92c5549f866da486f767486946fa5375773e45e45838f2658665d27161", + "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2" + }, + "recipe": { + "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.604", + "deps": [ + "cl-lib", + "company", + "flycheck-dmd-dub", + "helm", + "popwin", + "yasnippet" + ] + }, + "focus-autosave-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vifon/focus-autosave-mode.el.git", + "sha256": "cba9ac81a4c923dba9d17914665789d6e4310ca156b8691242dc4d19b285bdcc", + "rev": "592e2c0642ee86b2000b728ea346de084447dda8" + }, + "recipe": { + "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.442", + "deps": [ + "emacs" + ] + }, + "bert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/bert-el.git", + "sha256": "4e17f0aa6193b05a22c32a75d94b4ffd811d82842e46a91f810f7a3d015b3f1a", + "rev": "a3eec6980a725aa4abd2019e4c00246450260490" + }, + "recipe": { + "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.414", + "deps": [] + }, + "tern-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/tern-django.git", + "sha256": "9beb4691af7e824d45de5ccd50f43e9decd3a27287e81d42d181991c9872004c", + "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1327", + "deps": [ + "emacs", + "f", + "tern" + ] + }, + "shell-history": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-history.el", + "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r" + }, + "recipe": { + "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100504.350", + "deps": [] + }, + "pager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/pager.git", + "sha256": "a1202cdca6c8c4ba9748d8afe853a9f9751d18f957e09fea3b2af57cfe8a05b7", + "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d" + }, + "recipe": { + "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100330.1331", + "deps": [] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1816", + "deps": [ + "cl-lib", + "emacs", + "ido-completing-read+", + "s" + ] + }, + "merlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-lambda-church/merlin.git", + "sha256": "8ae43c2e925c86286953cf60d3ef6560cec72d21ae64628535db140f68beedb3", + "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" + }, + "recipe": { + "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.525", + "deps": [] + }, + "org-multiple-keymap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-multiple-keymap.el.git", + "sha256": "cc6422cd2e7d14a5797edf35e35f42bdedcd024dad83668e8de20d054006e976", + "rev": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8" + }, + "recipe": { + "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.2006", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "bbdb-handy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-handy.git", + "sha256": "81e1e452762a24095b2ba14d94deab576b52410d07c432d4778a889dd8a9f7c3", + "rev": "67936204488b539fac9b4a7bfbf11546f3b13de2" + }, + "recipe": { + "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1952", + "deps": [ + "bbdb" + ] + }, + "preproc-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/preproc-font-lock.git", + "sha256": "ed06ad6d9fd8c7014539058732cd9e0f1b5122c3a94a2f37c3d684af706a2e7b", + "rev": "565fda9f5fdeb0598986174a07e9fb09f7604397" + }, + "recipe": { + "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1418", + "deps": [] + }, + "vagrant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ottbot/vagrant.el.git", + "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" + }, + "recipe": { + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141125.2159", + "deps": [] + }, + "tramp-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randymorris/tramp-term.el.git", + "sha256": "37aa886d912b5163af049d7480c02cd287088150daeab74c3f1227a21234fd31", + "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf" + }, + "recipe": { + "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1545", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grammati/windsize.git", + "sha256": "4184e5352c74edf14664a5255b40230c91d44c92360d7bac8d852da84c713242", + "rev": "beb6376fdf52afa6f220c89032448460faf76e7f" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.740", + "deps": [] + }, + "unbound": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/unbound.el", + "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" + }, + "recipe": { + "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140307.328", + "deps": [] + }, + "uuidgen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kanru/uuidgen-el.git", + "sha256": "7c1da219c0fe7fb318bf562b4ae3a2616eea9c49515a25a774302dc1ee366ea5", + "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22" + }, + "recipe": { + "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140918.1801", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/anti-zenburn-theme.git", + "sha256": "d5fe8723188344c68f86953d1333e0d0c9ef8486ba14c95294b66548e6ff0fb3", + "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1846", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150317.1445", + "deps": [] + }, + "impatient-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netguy204/imp.el.git", + "sha256": "b1171f36a5a2350d1e13c1e2fd41bd22c7ab75e8c0a906c01c9a54f2c35be06e", + "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0" + }, + "recipe": { + "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.447", + "deps": [ + "cl-lib", + "htmlize", + "simple-httpd" + ] + }, + "ibuffer-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-projectile.git", + "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" + }, + "recipe": { + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1037", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic.git", + "sha256": "728e6eac3089a694b29061bd31d7b74b07094d651306341f391f73c1eed98a8e", + "rev": "e27c3f3b2a44777157da02b8ab6f87391ce25913" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.239", + "deps": [ + "dash", + "emacs", + "f", + "m-buffer", + "s" + ] + }, + "hgignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omajid/hgignore-mode.git", + "sha256": "601f2d0dc3da7847c82bff7980c472681e41b8441f2fb1a00b891e84154a151a", + "rev": "054c370c6df1b789f0d9907b30b54ef2287aafbe" + }, + "recipe": { + "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.1300", + "deps": [] + }, + "ubuntu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/ubuntu-theme.git", + "sha256": "2c0fb1f7928a5e3042e9d250cfde70292c2cee2ebce47cc1e787c90dd80d0ded", + "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69" + }, + "recipe": { + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1006", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rvirding/lfe.git", + "sha256": "939e5fc7a773120a9dd4789d7d757336b42c8b1a8d0c3d3d31fd6ebb65b5b74c", + "rev": "b0921aacf954e68689c181ec1c4651b02dc51855" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1835", + "deps": [] + }, + "color-theme": { + "fetch": { + "tag": "fetchbzr", + "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk", + "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz", + "rev": "57" + }, + "recipe": { + "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080305.234", + "deps": [] + }, + "mo-vi-ment-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AjayMT/mo-vi-ment.git", + "sha256": "d66eb7686aabd7ac827201852a6e28a1af9b5d584dd43e23e9a895f113651a4c", + "rev": "f45b014261f8fab19254920bd1d92f3a83263411" + }, + "recipe": { + "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.133", + "deps": [] + }, + "ascii": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ascii.el", + "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" + }, + "recipe": { + "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "flycheck-d-unittest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-d-unittest.git", + "sha256": "4d91af5279adfbb8523ce995ebd5a61e40de1670e7e592876b99f1be3a55e1e4", + "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311" + }, + "recipe": { + "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.109", + "deps": [ + "dash", + "flycheck" + ] + }, + "crontab-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/crontab-mode.git", + "sha256": "2db95b55c0a3168d4566d5a083c2ebd20bf28947514908e246015304d1842de5", + "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e" + }, + "recipe": { + "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090510.1555", + "deps": [] + }, + "term+key-intercept": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-ki-el.git", + "sha256": "be10ceb201cfd3c44e1601c52cc2fa5d45278d13d47993fabd84015f89909e11", + "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" + }, + "recipe": { + "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.150", + "deps": [ + "key-intercept", + "term+" + ] + }, + "nyan-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/nyan-prompt.git", + "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" + }, + "recipe": { + "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.8", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keymap-utils.git", + "sha256": "87917c9ab29e61a95d5651385e74310a3cc25ea6df0d83b8b4c9f3451f226ca2", + "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.526", + "deps": [ + "cl-lib" + ] + }, + "aria2": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/ukaszg/aria2.git", + "sha256": "2713755e56b03e28a5a6e10c85865c1ace0247e71caeb8b89ec65d5618addafc", + "rev": "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0" + }, + "recipe": { + "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141107.1717", + "deps": [ + "emacs" + ] + }, + "spray": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ian-kelling/spray.git", + "sha256": "4975f769e9ad020fb21cbea52f4fd077391eb5ba9d9945bc37a07d6039e37e3b", + "rev": "11623f45955a18115459a2c18dc95bc967980a53" + }, + "recipe": { + "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150626.145", + "deps": [] + }, + "xcscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dkogan/xcscope.el.git", + "sha256": "aa08ae44578b6a8f4f1d0db8e52efebec03ffc476d4486b39e8c63a764f4c6f1", + "rev": "d845a033058ccb83e32dd9648885e8f608bb6258" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1637", + "deps": [] + }, + "helm-mu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-mu.git", + "sha256": "53c2ed40653c1fa2c281cab124dfcad5706ffcf6715171e98d80c405581ca274", + "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5" + }, + "recipe": { + "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.1144", + "deps": [ + "helm" + ] + }, + "org-cliplink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/org-cliplink.git", + "sha256": "b37e9b8e493f38e6f149d0b393296f0ebfe8d79a6810575b6e24d936aa29d438", + "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2" + }, + "recipe": { + "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.51", + "deps": [] + }, + "flymake-cppcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-cppcheck.git", + "sha256": "c758dd31e6499f225d0720b89c574fb3eb346d9fef4908eadbc40e9d36634bbd", + "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03" + }, + "recipe": { + "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.757", + "deps": [ + "flymake-easy" + ] + }, + "weechat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-kenny/weechat.el.git", + "sha256": "6721df4ab04dee9f40f1be832073abab2845e4cf05f37186897a85030c227cb4", + "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.647", + "deps": [ + "cl-lib", + "emacs", + "s", + "tracking" + ] + }, + "psci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-psci.git", + "sha256": "560f502edc8b23091b0055482a2fbf3333fb0c3f5cbb62cbcef1f15dde0a4322", + "rev": "64dc931b4fe2a7507b8ac81423b12f7dcda2067a" + }, + "recipe": { + "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.1401", + "deps": [ + "dash", + "deferred", + "f", + "purescript-mode", + "s" + ] + }, + "chicken-scheme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dleslie/chicken-scheme.el.git", + "sha256": "a572e151b335fd1f81beb4cc5923ecf4dc7b19e4a314f2b2822aee94f2a6c148", + "rev": "19b0b08b5592063e852cae094b394c7d1f923639" + }, + "recipe": { + "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1339", + "deps": [] + }, + "ample-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/ample-theme.git", + "sha256": "e67f5858dda1a9095eaee82380c7ebb233aa061a369929334895f19b1e772d15", + "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382" + }, + "recipe": { + "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.1301", + "deps": [] + }, + "cmake-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/cmake-font-lock.git", + "sha256": "4e9397d97ce32abc5b01a05e0a7f76dafe501a4522cde098a9ec1952ea78130c", + "rev": "982b753e0228bb5189e3bf2283afad9197d93c37" + }, + "recipe": { + "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1527", + "deps": [ + "cmake-mode" + ] + }, + "go-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/go-scratch.el.git", + "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" + }, + "recipe": { + "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150809.2340", + "deps": [ + "emacs", + "go-mode" + ] + }, + "finder+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/finder+.el", + "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn" + }, + "recipe": { + "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1604", + "deps": [] + }, + "vala-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gopar/vala-snippets.git", + "sha256": "d822678ce6e77cec72c0734e972417cfde8b26d61e19370237d3914ad1574c47", + "rev": "671439501060449bd100b9fffd524a86064fbfbb" + }, + "recipe": { + "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.2252", + "deps": [ + "yasnippet" + ] + }, + "plenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karupanerura/plenv.el.git", + "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.116", + "deps": [] + }, + "random-splash-image": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kakakaya/random-splash-image.git", + "sha256": "e44bcae6d89d4061b0432d713b41f19fe8b2e6d4e4cfd8c754f496f5397b2778", + "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22" + }, + "recipe": { + "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2030", + "deps": [] + }, + "typescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/typescript.el.git", + "sha256": "ac44cee87338ca5164ec694ede19f2b8a34bd37c1796d4965592698000cac19b", + "rev": "49241bcc1f60b3787ccd9448a559f792156907a9" + }, + "recipe": { + "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.2028", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-plus.git", + "sha256": "9da139c6b30eee2733e0f732b95efc3cb75f4561f4f3a165e943586678e7a92c", + "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1123", + "deps": [ + "dash", + "git-commit" + ] + }, + "wrap-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/wrap-region.git", + "sha256": "032967c69689a8bece8d73ded30004e49a02e5efeea86ded792b5adb0b5a6262", + "rev": "0eff3165db36464d28ed303ab25b715307cbdee0" + }, + "recipe": { + "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.120", + "deps": [ + "dash" + ] + }, + "flymake-gjshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-gjshint-el.git", + "sha256": "1e4e0a5f031148e05e305d2cbd6429d06d4022fe5649a141229b46d45f58ec34", + "rev": "dc957c14cb060819585de8aedb330e24efa4b784" + }, + "recipe": { + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130327.732", + "deps": [] + }, + "smotitah": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/smotitah.git", + "sha256": "583703125b87fef3b0d94dbc871b082e08a7b7bd0c7fde4fe0fc63bd4df4ff68", + "rev": "f9ab562128a5460549d016913533778e8c94bcf3" + }, + "recipe": { + "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.430", + "deps": [] + }, + "org-dotemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/org-dotemacs.git", + "sha256": "c76ba5052f5042a773496001a7f20a86bfcc603adf15b982e297586442b3f997", + "rev": "99a066508fedf8c80a3bfef08e015e612499d417" + }, + "recipe": { + "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1222", + "deps": [ + "cl-lib", + "org" + ] + }, + "rnc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TreeRex/rnc-mode.git", + "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" + }, + "recipe": { + "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121227.1702", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/pangu-spacing.git", + "sha256": "698db552a307f17d85401e2f7e33ec2120217cf462e147654c74fc6eeb2fa4e6", + "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.224", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/protobuf.git", + "sha256": "761e69a84eab02c6d7aa506fb781f9d245fca3da7309fc7dc8cdfaaece9d85fa", + "rev": "dc633398af5c87e1fe1ffcedaebd697c4775c918" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150521.2211", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/metaweblog.el.git", + "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141130.805", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/imenus.el.git", + "sha256": "b016d0cb770331681fb33ac922df5dc1c22af8f8c79c9d39c3647e15137c8c82", + "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150107.1139", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/systemd-mode.git", + "sha256": "7224f5e9e09e02e914d35585a01b6022993271d3e06444fc5d978cf8a3e61d38", + "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.2332", + "deps": [ + "emacs" + ] + }, + "sourcegraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sourcegraph/emacs-sourcegraph-mode.git", + "sha256": "19e197b244340431f2ab91fab55faa5554d66b90cfd2ab67bb5523e0a13c3ba2", + "rev": "554c55734c23588fce66a8fa966945509b03d395" + }, + "recipe": { + "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.2127", + "deps": [ + "emacs" + ] + }, + "wordnut": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/wordnut.git", + "sha256": "33b1e34b3c01c50e0ae91c7576a13aedd833c55cc4ab2474a197b109afcdfd1d", + "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169" + }, + "recipe": { + "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.1657", + "deps": [ + "emacs" + ] + }, + "list-processes+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-processes+.el", + "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a" + }, + "recipe": { + "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1335", + "deps": [] + }, + "nav": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/emacs-nav/", + "sha256": "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p", + "rev": "d7f54ce8536e" + }, + "recipe": { + "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120507.207", + "deps": [] + }, + "seclusion-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dleslie/seclusion-mode.git", + "sha256": "6988d7332164c8f9f49ad59e14d16a58442d922e7c417272fd2e571e25879295", + "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0" + }, + "recipe": { + "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121118.1753", + "deps": [] + }, + "auto-highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gennad/auto-highlight-symbol.git", + "sha256": "ace89797051218920a964942b7b997d79d6d6dca5a4e6c29b4df5b8c4357d149", + "rev": "26573de912d760e04321b350897aea70958cee8b" + }, + "recipe": { + "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130313.443", + "deps": [] + }, + "hippie-exp-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el", + "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl" + }, + "recipe": { + "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.345", + "deps": [] + }, + "flycheck-clangcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kumar8600/flycheck-clangcheck.git", + "sha256": "c2a03f82c01fec22b9dc5380eda40a41b9333540f6f73ee5232854e4b8f0d619", + "rev": "24a9424c484420073a24443a829fd5779752362b" + }, + "recipe": { + "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.210", + "deps": [ + "cl-lib", + "flycheck", + "seq" + ] + }, + "lisp-extra-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/lisp-extra-font-lock.git", + "sha256": "4dda2a21fe0400d2b9f81d14cff73abe41e6620e958476f25ab112bf9c845ee4", + "rev": "ff34c8519653824cf4a40979538b334cd2653892" + }, + "recipe": { + "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150129.1516", + "deps": [] + }, + "helm-rb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/helm-rb.git", + "sha256": "b34ca30bc5c1eb917ca3a85a03343fee4eff60316b847fec2d410ef46e7e71de", + "rev": "4949d646420a9849af234dacdd8eb34a77c662fd" + }, + "recipe": { + "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.1039", + "deps": [ + "helm", + "helm-ag-r" + ] + }, + "splitter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130705.250", + "deps": [] + }, + "w3m": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/w3m.git", + "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121224.1947", + "deps": [] + }, + "recentf-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el", + "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l" + }, + "recipe": { + "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1550", + "deps": [] + }, + "pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/statmobile/pydoc.git", + "sha256": "9185e12f5bbb45bdf0884d19c3b01f8b74b546424df4225cbacfe062ebd48907", + "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8" + }, + "recipe": { + "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.2045", + "deps": [] + }, + "ov": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/ov.el.git", + "sha256": "a506897ae3286981c6df49e83b557c0cb939bbf5e07d42a3f46bcd5648bfb4c7", + "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.28", + "deps": [ + "emacs" + ] + }, + "applescript-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk", + "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml", + "rev": "584" + }, + "recipe": { + "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120205.507", + "deps": [] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-vc.git", + "sha256": "3153d7a4cd775bae0c1b5142565e15c05dd619dbaee159ae026818c7bf3caae5", + "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1520", + "deps": [ + "cl-lib" + ] + }, + "kanji-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wsgac/kanji-mode.git", + "sha256": "d7bd8f4107393894ca143c8c982b526f530c896ba7241565e25c585358a684b8", + "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962" + }, + "recipe": { + "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.225", + "deps": [] + }, + "dired-dups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/dired-dups.git", + "sha256": "d1026902e20accb18f4619d7210bdd0862f7067f022e53b0e8f10d22f9bf95d1", + "rev": "694ad128c822c59348ced16c4a0c1356d43da47a" + }, + "recipe": { + "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130527.1625", + "deps": [] + }, + "edebug-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ScottyB/edebug-x.git", + "sha256": "62e1b2c0b8f65fe121aec0d84723e93e3c34abfaf2baac347aa98919a28bf1fd", + "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46" + }, + "recipe": { + "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130616.125", + "deps": [] + }, + "servant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/servant.el.git", + "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140216.619", + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ] + }, + "moz-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RenWenshan/emacs-moz-controller.git", + "sha256": "085ef98174a4ee9abd48873780e9abf202a5d19379b5f03895b09b46c7b05a3b", + "rev": "46f665c03574fa922de767fc29795e0db4a7c5c6" + }, + "recipe": { + "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2006", + "deps": [ + "moz" + ] + }, + "bitlbee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/elisp.git", + "sha256": "7a3dc9264c8346cd84b7f157de42bfdb9412c582e766651681042a08f22cddb2", + "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e" + }, + "recipe": { + "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.1218", + "deps": [] + }, + "dired-efap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/dired-efap.git", + "sha256": "13e4368ca0b2760077581248eb54cc8a7c2d6baa0d4d09956cdb6648152fa69c", + "rev": "624757b2e54d9a13e2183118d6c113e37684b90c" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140122.1056", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/form-feed.git", + "sha256": "74e90a4b7555d23d2861285dd8f61c600673bbf26f664ecce2ee1c055742b27a", + "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.756", + "deps": [] + }, + "auto-complete-nxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-nxml.git", + "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" + }, + "recipe": { + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140220.2258", + "deps": [ + "auto-complete" + ] + }, + "time-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/time-ext.el", + "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv" + }, + "recipe": { + "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1551", + "deps": [] + }, + "ws-butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/ws-butler.git", + "sha256": "a2840fb726437dce805021c1ee593ad730fa36d125d9d03611511408b65d5ef4", + "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.959", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/nsis-mode.git", + "sha256": "b7874cb823c778769ea84671f213fc741eb182f904f97d9c2bedd64df9aa00f1", + "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.746", + "deps": [] + }, + "cucumber-goto-step": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gstamp/cucumber-goto-step.git", + "sha256": "7d966792621cbe5a9ce1adfb96edfb07a43fbd51b585b89b8dc06a31a2a297a0", + "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa" + }, + "recipe": { + "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.2319", + "deps": [ + "pcre2el" + ] + }, + "strie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hackscience/strie.el.git", + "sha256": "bc2efad0c9dce6d86e97dd144b757b478f3c9d33a1bea0c9785b945b4e6efaf5", + "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7" + }, + "recipe": { + "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.812", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/punctuality-logger.git", + "sha256": "d8f8e1bc61f21b3217ac92c532925a626997d49053521a77e400f8a7847e73ae", + "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.1431", + "deps": [] + }, + "obsidian-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/obsidian-theme.git", + "sha256": "0172da03a8c0a09daf35b8d12a9bd8a5ba432e2b03a40725baaa739e780c6203", + "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92" + }, + "recipe": { + "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.1143", + "deps": [] + }, + "firecode-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-firecode-theme.git", + "sha256": "d541500e0a432ac40d6b98a7da690b094d1ce0cda40dba7a430e04accc8e146d", + "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626" + }, + "recipe": { + "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "less-css-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/less-css-mode.git", + "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" + }, + "recipe": { + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150511.519", + "deps": [] + }, + "snapshot-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrBliss/snapshot-timemachine.git", + "sha256": "f508c041c55c8146866a0640827d06e86e8e1e6e57c33823a31946910caacb9e", + "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773" + }, + "recipe": { + "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1300", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "python-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/python-x.el.git", + "sha256": "62e77dada58c7b8e4e06ff54441411c3d07e8403fcea09b47eb66a22e3f81a2a", + "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.909", + "deps": [ + "cl-lib", + "folding", + "python" + ] + }, + "el-spec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/el-spec.git", + "sha256": "efe2408dd6030ff858729ba1e3d7ba219da4c1097cd7a2fb6b653256a6c10d68", + "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" + }, + "recipe": { + "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121018.204", + "deps": [] + }, + "slime-annot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arielnetworks/cl-annot.git", + "sha256": "5c63ce9db677dd8c03c8b2987cf5d39bcb03892792846677f4cb14285d8fa33d", + "rev": "c99e69c15d935eabc671b483349a406e0da9518d" + }, + "recipe": { + "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.2108", + "deps": [ + "slime" + ] + }, + "ruby-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/ruby-test-mode.git", + "sha256": "ace5b3115fb0bffb51cf28b48c480debecbf7ee5f94f0e881d0b434e80cdd019", + "rev": "b7a652b5d0492a3c712090787faa5f206c2af5fb" + }, + "recipe": { + "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.218", + "deps": [ + "ruby-mode" + ] + }, + "font-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/font-utils.git", + "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.1251", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "digistar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/digistar-mode.git", + "sha256": "ba1d51dba40a6776175d491e7047d6566bcb1c204d6000b6456e72a3fc755866", + "rev": "fcc0447b9ad97ac76f86de7485e0947440966d3f" + }, + "recipe": { + "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.1922", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2228", + "deps": [] + }, + "phi-autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-autopair.git", + "sha256": "a5df86ea9306eba430df27bf90cf516e768c99548646e8db04e8e3dc9b35e091", + "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08" + }, + "recipe": { + "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.423", + "deps": [ + "paredit" + ] + }, + "dired-sort": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort.el", + "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z" + }, + "recipe": { + "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090208.2238", + "deps": [] + }, + "navi2ch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naota/navi2ch.git", + "sha256": "1ad8b269ca7d917e450ef2e8ca6c634ea39cad8351ce5a74162c06b3282e30d5", + "rev": "faebfd15184de9df6903eae436dafb52c38ee86e" + }, + "recipe": { + "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.2116", + "deps": [] + }, + "dired-filetype-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/dired-filetype-face.git", + "sha256": "4ea5150d4251d26df3b0a4a4de4b2e1558bf22f1c5a8b28d4e6799299ffe2dea", + "rev": "a54efd4c127067c90ea1181e1c40beb8aa80abbb" + }, + "recipe": { + "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2210", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/pandoc-mode.git", + "sha256": "37340478289bfa5fd9693332c82edc8871f20968a62c661a4ef72f2b1b2d4f00", + "rev": "23444375a60f44b3439994e969d8aa7acf220f8c" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.513", + "deps": [ + "dash", + "hydra" + ] + }, + "highlight-parentheses": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-parentheses.el.git", + "sha256": "7280d58782e7e73df9ae5410f46d6bab37672ecd66d7aa0edd883f295c833e22", + "rev": "a821a314942f409cd69660d816cd9a0aebd1ae8f" + }, + "recipe": { + "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.116", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/elx.git", + "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.905", + "deps": [ + "emacs" + ] + }, + "bibslurp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/bibslurp.git", + "sha256": "032ae8f0535712055dd9182bb4e790631a08501d4924c6df0b1cb319dd60e391", + "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189" + }, + "recipe": { + "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1746", + "deps": [ + "dash", + "s" + ] + }, + "ensime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ensime/ensime-emacs.git", + "sha256": "fbcea8e51a0ea08a2a1e782ec5628e586e12aaa02c3da2b20522ebfb1012ba0a", + "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca" + }, + "recipe": { + "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1416", + "deps": [ + "company", + "dash", + "popup", + "s", + "sbt-mode", + "scala-mode2", + "yasnippet" + ] + }, + "hyai": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/hyai.git", + "sha256": "26943fa452e9ca7337aa72eaf63b6fcd1534a5979efd69c64cbd23f2dba056ac", + "rev": "9e0a7848cacbf2c89da135e12ae3209470c512dc" + }, + "recipe": { + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.935", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hackernews": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clarete/hackernews.el.git", + "sha256": "08edfb412805a397097cfe3165713b1e26ebae23ff151a226cdfbe3e4e1d61e5", + "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd" + }, + "recipe": { + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.1017", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/powerline.git", + "sha256": "9a9b7ea855082e87ecb0bc0023c9e56fd332d60c44abd2cd207f8e9bfe36d66e", + "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1649", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/helm-sage.git", + "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2234", + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ] + }, + "skewer-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/skewer-less.git", + "sha256": "0a2050aee6eced6083bf553deb41edc5367e8fa79ebe8ea096635a557e3fe598", + "rev": "5a48dfa627c91f5f94150fab04cd66e890e3929f" + }, + "recipe": { + "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.822", + "deps": [ + "skewer-mode" + ] + }, + "eimp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eimp.el", + "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir" + }, + "recipe": { + "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140630.947", + "deps": [] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", + "sha256": "72c6a8eac6fbeffafce76724527896f22e55f4615cc952040a7a80fb481694b8", + "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120328.314", + "deps": [ + "flymake" + ] + }, + "dired-single": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-single.el", + "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx" + }, + "recipe": { + "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "oneonone": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/oneonone.el", + "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" + }, + "recipe": { + "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.1428", + "deps": [ + "hexrgb" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-emamux.git", + "sha256": "40416e8fdb31184f24f85b02747f4831f9445ab26fe42b0a6daeea6c1fdf9fa2", + "rev": "1bb88275e472e131c4c14590b48e2016861724a5" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.2302", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "itail": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/itail.git", + "sha256": "290b1162e74b6e327c275ccb89991ca731de638e30c51af2f6104934ab41e9ab", + "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1" + }, + "recipe": { + "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1035", + "deps": [] + }, + "rings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/konr/rings.git", + "sha256": "77ba4a7b1501a208724053b30e4df75bca8ae8080d091b5d5daa78560961ba46", + "rev": "1655dbf88ad877f54d67fab49f292945f70708eb" + }, + "recipe": { + "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140102.1736", + "deps": [] + }, + "kill-or-bury-alive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", + "sha256": "05460a9185d6bcf4d8aaad374316a1830bbab278ecb241ecb50df6e8e071c5f0", + "rev": "04fa76e5baa2fbdfac77c38007a8dacbf0a3f9bc" + }, + "recipe": { + "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.100", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hiwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshida-mediba/hiwin-mode.git", + "sha256": "137bdf828646a1aa08f3b1cbaf03a5a35d2b1d5b75a6f843ebb733fbf4a4eb9c", + "rev": "6ee8ed051405653bd9b7332d7e9fbb591d954051" + }, + "recipe": { + "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.327", + "deps": [] + }, + "ggtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/ggtags.git", + "sha256": "ba40a7b6c89688c5ea7b9b6ad17e95893d0153addfd7f3c5c99419dece8b8259", + "rev": "d2a88922591c2c0dc047e2aad9dc86364507c4da" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2345", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "move-text": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/move-text.el", + "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2" + }, + "recipe": { + "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140307.1044", + "deps": [] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake2.git", + "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140320.208", + "deps": [ + "auto-complete", + "cake2" + ] + }, + "elog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/elog.git", + "sha256": "fa3c6ce3c473d363caec46267e23ebebdfe059858a8970a06e3170329e87dba7", + "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98" + }, + "recipe": { + "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1937", + "deps": [ + "eieio" + ] + }, + "cfengine-code-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cfengine/core.git", + "sha256": "d373c60867db4125313b7809ab3be522420f214e2d95ec0080f7946f1ce005bc", + "rev": "f235637ccfa756d91f042f5254f44631a8840389" + }, + "recipe": { + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.611", + "deps": [] + }, + "rpm-spec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bjorlykke/rpm-spec-mode.git", + "sha256": "5b6f7dc05c98a51e110523227fc16ee14693f8947bffe6a61dc391a91d362b07", + "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1" + }, + "recipe": { + "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150411.1055", + "deps": [] + }, + "jscs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/papaeye/emacs-jscs.git", + "sha256": "650f62973382801094ad42f10c3d250b183f0909e040ca06eda9b8824d2b4806", + "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf" + }, + "recipe": { + "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1249", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "fm-bookmarks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/fm-bookmarks.el.git", + "sha256": "239ff1786f814ea24cdef8de8ecdd9348b3da6eaa2bd016b82ed521b1c740425", + "rev": "e1440334a4fe161bd8872996b6862d079d8eb24e" + }, + "recipe": { + "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.803", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "corral": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nivekuil/corral.git", + "sha256": "dcfb6994ba64224c8e64629519f002c22499966dd03d28313d556e38d3eb32e1", + "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1809", + "deps": [] + }, + "look-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/look-mode.el", + "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp" + }, + "recipe": { + "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1226", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-cacoo.git", + "sha256": "45f2ad464ea9f76e1c66eababee9aa856e7d083ea2f03d9868181aa616b897ef", + "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120319.1859", + "deps": [ + "concurrent" + ] + }, + "widget-mvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-widget-mvc.git", + "sha256": "4eba3ef04d97bc132e3d3fbd8b25897b36f6aa6d8c2149207ca5968fea301b3b", + "rev": "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63" + }, + "recipe": { + "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.2206", + "deps": [] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sprintly/sprintly-mode.git", + "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121006.34", + "deps": [ + "furl" + ] + }, + "org-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/groksteve/org-alert.git", + "sha256": "7b4328d690058cd3552f02415ea4f2aeb29e183dc3e981079969fbfa448efb7b", + "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf" + }, + "recipe": { + "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.537", + "deps": [ + "alert", + "dash", + "s" + ] + }, + "dtrace-script-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/dtrace-script-mode.git", + "sha256": "8ea6f445fa1829deea125ad078cced03b5d087aa84f42cdd6a71b42ef2e88eae", + "rev": "801af1ef16075d31a19830ebb8404bbf3a322f10" + }, + "recipe": { + "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150214.23", + "deps": [] + }, + "multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-multi.git", + "sha256": "bd4bebeb7c3243fad37f4fe2b7b7621495c9ce75a4e16d390f0f02fcaa61b038", + "rev": "0987ab71692717ed457cb3984de184db9185806d" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131013.1044", + "deps": [ + "emacs" + ] + }, + "eclipse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/eclipse-theme.git", + "sha256": "bc54027937aa0a82e28624aeb76097ba878a1ffe07b394b78201923b5133aaef", + "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427" + }, + "recipe": { + "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.801", + "deps": [] + }, + "json-reformat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/json-reformat.git", + "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1100", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-whitespace.git", + "sha256": "1995620e374e660bf7cb5651c344d539cb3477eaa9541bab2240de591d205798", + "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "kakapo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/listx/kakapo-mode.git", + "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" + }, + "recipe": { + "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.2352", + "deps": [ + "cl-lib" + ] + }, + "pretty-lambdada": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el", + "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin" + }, + "recipe": { + "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1841", + "deps": [] + }, + "pretty-sha-path": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/pretty-sha-path.el.git", + "sha256": "e2b2775316e34d67a382059f51269a1475b916f32752efb3eb7164e32e9decb8", + "rev": "a2b43dd9de423a38d67cda2e3bd9412f7d363257" + }, + "recipe": { + "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.1226", + "deps": [] + }, + "omni-tags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", + "sha256": "5fbfc42962288a8fe35c8489355c3043a27c751c4d91b3f4ea66bcd22856fdf6", + "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.1253", + "deps": [ + "cl-lib", + "pcre2el" + ] + }, + "hcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-hcl-mode.git", + "sha256": "87f3f5c568e2694eae1c6e8e83adfdfe5bff63cbedfab5004ebc7560d9765b94", + "rev": "5a5e490509452a1882bea43952e248682577ed2d" + }, + "recipe": { + "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2249", + "deps": [ + "cl-lib" + ] + }, + "polymode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/polymode.git", + "sha256": "e1a9c583f74940b92b5b4deb8f07245696372305a76a54deaf16adff79d39c94", + "rev": "b9dc94728e168e0d9365ac6a94c81bdf93df66f3" + }, + "recipe": { + "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1014", + "deps": [ + "emacs" + ] + }, + "restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashky/restclient.el.git", + "sha256": "7d4fc3e9d3b5348c419c2ad49a1ce0204a6a8a819b28bec238b4f524c1a94422", + "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad" + }, + "recipe": { + "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.1712", + "deps": [] + }, + "lentic-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic-server.git", + "sha256": "775dab63ede9cb4b4b5f523192329324222dad2836eb7f746b3d8740249b91b2", + "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff" + }, + "recipe": { + "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.826", + "deps": [ + "lentic", + "web-server" + ] + }, + "tfs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tfs.el", + "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v" + }, + "recipe": { + "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120508.1320", + "deps": [] + }, + "emms-soundcloud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/emms-soundcloud.git", + "sha256": "8dfecf457196c610a0db8166d2411a38e3e65568d0ba35a10d4a55e9ca5aa55b", + "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b" + }, + "recipe": { + "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131221.545", + "deps": [ + "emms", + "json" + ] + }, + "abl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/afroisalreadyinu/abl-mode.git", + "sha256": "0ed55827c3ba2b6bc54f82f78349f99b0c5204e1acb5d13eb5b77143b0f93920", + "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb" + }, + "recipe": { + "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.335", + "deps": [] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/page-break-lines.git", + "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150226.1017", + "deps": [] + }, + "kpm-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/KMahoney/kpm-list.git", + "sha256": "1d944ff50c5220c93357efbb4b4287dbb773008e15055ca280d77aca688f30d5", + "rev": "397912496d42e57c261ff6d33edc8fc029479b8b" + }, + "recipe": { + "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.348", + "deps": [] + }, + "edbi-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-sqlite.git", + "sha256": "c27f6757ca20befa2ce00029e62390055751df1e27e4be9ab730620687dbe6d5", + "rev": "929009365529b56daec172b87d7632240b15be1f" + }, + "recipe": { + "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "edbi", + "emacs" + ] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/rope-read-mode.git", + "sha256": "1a3b483b87bb8b857c1d988796cb661702b663a0941f7a7071c66c6a119ab9d6", + "rev": "8837e18405f96aab34821e890141ecf6b749bb73" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1705", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/desktop-plus.git", + "sha256": "50cc77e0a38624833fb6364d3191a038a7f0fd08262c0e9b6f6d52912e211aec", + "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1440", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "smart-indent-rigidly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/smart-indent-rigidly.git", + "sha256": "5143da5cdbb61e0b6c9f3ed7b0fe1f6e6d69de8c7f8a4dd97da9a962c4ebb060", + "rev": "323d1fe4d0b81e598249aad01bc44adb180ece0e" + }, + "recipe": { + "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.1815", + "deps": [] + }, + "colemak-evil": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/patbl/colemak-evil.git", + "sha256": "c211d3486b8c0e4e1cb959b58597916c1c6a4fca1a9e1b57af955379516b39ee", + "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228" + }, + "recipe": { + "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1812", + "deps": [ + "evil" + ] + }, + "elnode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/elnode.git", + "branchName": "melpa", + "sha256": "1c22485d6b9aca32157e5025199de5bea27d515f27a7d9484468a8f976916c5c", + "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9" + }, + "recipe": { + "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140203.1706", + "deps": [ + "creole", + "dash", + "db", + "fakir", + "kv", + "noflet", + "s", + "web" + ] + }, + "bash-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/szermatt/emacs-bash-completion.git", + "sha256": "2464bf180b5a39e552bbd5f72d676246d5731660ca527123cb86259f7d2efa55", + "rev": "1659c7ca38e2cf591525a3d0b9d97461de33916d" + }, + "recipe": { + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.928", + "deps": [] + }, + "php-refactor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/keelerm84/php-refactor-mode.el.git", + "sha256": "fd01f8fbef37092496e5cbe035236182cc44fbae265c152547c5ee1b49ce40bb", + "rev": "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61" + }, + "recipe": { + "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140920.1611", + "deps": [] + }, + "perlbrew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kentaro/perlbrew.el.git", + "sha256": "46e0f44b1063c4eb403566bedb6551c9e6e896befa3fdbbab1f4b9dff165e071", + "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3" + }, + "recipe": { + "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130127.524", + "deps": [] + }, + "download-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/download-region.git", + "sha256": "d94ebef9f11146dddf22903d0e8092b7981ac6a10760ca9adabedc1573f9873d", + "rev": "51fc808e10803f695ea3d24c22e1af27e080903d" + }, + "recipe": { + "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.232", + "deps": [ + "cl-lib" + ] + }, + "swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/emacs-swoop.git", + "sha256": "2929778655ddf5c1992f3bd2035c40a4ea76394760afef1713d0fdd3a3b31aac", + "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf" + }, + "recipe": { + "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1610", + "deps": [ + "async", + "emacs", + "ht", + "pcre2el" + ] + }, + "angular-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/angularjs-mode.git", + "sha256": "9e20566b3a6aca00f1379974bdf180febee88db3af996bb549ab68a1b2bfa63a", + "rev": "8720cde86af0f1859ccc8580571e8d0ad1c52cff" + }, + "recipe": { + "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1527", + "deps": [] + }, + "vertigo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/vertigo.el.git", + "sha256": "542c531de9f0bce41baa6aa28d33fcf661354fb2b8a5c75fe979178cd723086d", + "rev": "fecc566e9039408303f9b1c979624d546152b7df" + }, + "recipe": { + "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2213", + "deps": [ + "dash" + ] + }, + "flycheck-ats2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/drvink/flycheck-ats2.git", + "sha256": "d0866dac7619eb56a7efa8b0f43b1ff89a4784d9a71f850355b5e38ccd466f3d", + "rev": "431e46d5bbd20941c26270c7ba6872c86451348b" + }, + "recipe": { + "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.807", + "deps": [ + "emacs", + "flycheck" + ] + }, + "supergenpass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ober/sgpass.git", + "sha256": "618c7169151e612671e343c506a90883d83102ad313fce6153830835bfd50254", + "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a" + }, + "recipe": { + "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130329.48", + "deps": [] + }, + "iodine-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/srdja/iodine-theme.git", + "sha256": "6356a29d707b82390bee429dd60a1dea518189e3f47a18fecc041ee690eaee93", + "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999" + }, + "recipe": { + "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1139", + "deps": [ + "emacs" + ] + }, + "mkdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajtulloch/mkdown.el.git", + "sha256": "b372e045dbe74cf1e528c658d8effceb70ba5384204aefad210407eb988808b4", + "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e" + }, + "recipe": { + "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140517.918", + "deps": [ + "markdown-mode" + ] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-ctxmenu.git", + "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.1542", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "python-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-python-environment.git", + "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "rev": "401006584e32864a10c69d29f14414828909362e" + }, + "recipe": { + "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150310.353", + "deps": [ + "deferred" + ] + }, + "flymake-phpcs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-phpcs.git", + "sha256": "f6424371d6403360abcd1cd4d6224659a71a6b796fc80ba7632a04f67d003f56", + "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50" + }, + "recipe": { + "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140713.131", + "deps": [ + "flymake-easy" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/gotham-theme.git", + "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.358", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/blorbx/evil-quickscope.git", + "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.1448", + "deps": [ + "evil" + ] + }, + "hl-line+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-line+.el", + "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889" + }, + "recipe": { + "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1622", + "deps": [] + }, + "lenlen-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/lenlen-theme.git", + "sha256": "c5fc644261965ffb3a01417c9efca59eff193ce814e9a972e47a7c8523266829", + "rev": "05202458fa0a5242e5c6e4451e375f6c16920272" + }, + "recipe": { + "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.211", + "deps": [ + "color-theme-solarized" + ] + }, + "orgtbl-aggregate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgaggregate.git", + "sha256": "fe5b7b3b16c331190ccd443f34b52d21cbffd642b0f4d6ae8fea5e57b519b1e8", + "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59" + }, + "recipe": { + "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1018", + "deps": [] + }, + "cssfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/KeenS/cssfmt.el.git", + "sha256": "3e41911495416dcd9e685b248cee6de098b172f787ab560c50f3a3756a24ce43", + "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0" + }, + "recipe": { + "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.2328", + "deps": [] + }, + "color-theme-buffer-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vic/color-theme-buffer-local.git", + "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" + }, + "recipe": { + "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.1828", + "deps": [ + "color-theme" + ] + }, + "xbm-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/xbm-life.git", + "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", + "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.220", + "deps": [] + }, + "grails-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", + "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" + }, + "recipe": { + "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "flymake-lua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sroccaserra/emacs.git", + "sha256": "9bf5e7478c2afd17d1242d32fc5fe09a00f37930698b05ca8556f870b99fe7bb", + "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76" + }, + "recipe": { + "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.430", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/elpa-mirror.git", + "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.653", + "deps": [] + }, + "e2wm-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-bookmark.el.git", + "sha256": "00be8e800d331110c58dcc2c72925e54c9e0e0a3b2722ddbc67d09e208693b88", + "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb" + }, + "recipe": { + "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.2321", + "deps": [ + "e2wm" + ] + }, + "p4": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gareth-rees/p4.el.git", + "sha256": "ed284ec82619c7b1fac4a5c0731135faa9f337666415b580f368f975002cc46d", + "rev": "eff047caa75dbe4965defca9d1212454cdb755d5" + }, + "recipe": { + "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150721.1437", + "deps": [] + }, + "review-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kmuto/review-el.git", + "sha256": "90697f329b34824ed405c467cadc63c0054655ea1f7e8af268a9ea3391f1fa53", + "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a" + }, + "recipe": { + "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.812", + "deps": [] + }, + "peacock-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-peacock-theme.git", + "sha256": "032a7b7afae146884a30e2d39d2d98d8b9cdb8dd49b8025f74ee721977cd9bb2", + "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7" + }, + "recipe": { + "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "edit-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs_chrome.git", + "sha256": "59059059edcd5a484df559b1556ca6a4b86ba1a7cb7501dadca6d1bb02876267", + "rev": "0a50fbb524fe256560f481701c000309c627b9ca" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1558", + "deps": [] + }, + "imakado": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/emacs-imakado.git", + "sha256": "01697d294cbc5bbb2189cc1ce4484dc180e970ef80456798f95baafd05821bab", + "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f" + }, + "recipe": { + "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.423", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/dynamic-ruler.git", + "sha256": "05125630107314e243bb2aae034e5b8127b6664123b4c085cdf7e9381d9952cb", + "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1609", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-fontawesome.git", + "sha256": "cfcc536d23a01a8359ca4f96cb92d5b1dd19c5248babdbab343b9142f54c3ae2", + "rev": "66650efea4a044afe0e5f482ccac465082cd5e62" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.830", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "langdoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/langdoc.git", + "sha256": "ced1f335382d6fd13be2943a10dfede0c6ac041a6f24a73ddada47a2fb896c6b", + "rev": "2c7223bacb116992d700ecb19a60df5c09c63424" + }, + "recipe": { + "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.45", + "deps": [ + "cl-lib" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/o-blog.git", + "sha256": "bc56e26405fb8312fbb115fec4850231c5251743b3d37cbfeeaff25c8946dd6c", + "rev": "e466c59478feddc8126c43c1b98550474af484c0" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1739", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/love-minor-mode.git", + "sha256": "d41bb10f0e9c7b5af36083af562c4d00ee1ffa9cb1412797b9655138fe25399d", + "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130429.1659", + "deps": [ + "lua-mode" + ] + }, + "erc-hl-nicks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/erc-hl-nicks.git", + "sha256": "79a50c10f4d9f6440018926ef0dc3d63cd64a7c387bd10ff05efeb8b8b725040", + "rev": "e536ea57f842f85ecda5a28ceed24cd506b7be2c" + }, + "recipe": { + "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.722", + "deps": [] + }, + "quickref": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/quickref.el.git", + "sha256": "7ef58cadcc908a0ee43a80337c4f1688f1b100febe7b7ffb36cd45def0c5f8c4", + "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25" + }, + "recipe": { + "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130113.1700", + "deps": [ + "dash", + "s" + ] + }, + "dash-functional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", + "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.613", + "deps": [ + "dash", + "emacs" + ] + }, + "pdf-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/pdf-tools.git", + "sha256": "6e82b64ff57c1066751dd0dc16bf47e1b0e73ac6853493c5ba9da94771753a2b", + "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f" + }, + "recipe": { + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1658", + "deps": [ + "emacs", + "let-alist", + "tablist" + ] + }, + "beacon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/beacon.git", + "sha256": "9af76de0d71a2ae032eab254d91a2b175d9eb8cabe69bb70c16c32c468ab9fa9", + "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2" + }, + "recipe": { + "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1203", + "deps": [ + "seq" + ] + }, + "image+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-imagex.git", + "sha256": "1746922e553afb50eb0b8ff3cd4b1e323b2c96af5632ea2b98eaa944a90bed9e", + "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc" + }, + "recipe": { + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1116", + "deps": [ + "cl-lib" + ] + }, + "dockerfile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spotify/dockerfile-mode.git", + "sha256": "b46a6d3e1b57a5f05268823da2a53b05ecd337b86bd7f7e09affd3af37142b71", + "rev": "40be396417535c6721c1b13ca9f99c46192f1d73" + }, + "recipe": { + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1057", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/telepathy.el.git", + "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.658", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-haskell.git", + "sha256": "c50bcfe4233247fcf45e805e5c25eee233de4eb3066f4ec22fe155b3c39406a3", + "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1347", + "deps": [ + "dash", + "emacs", + "flycheck", + "haskell-mode", + "let-alist", + "seq" + ] + }, + "handoff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/handoff.el.git", + "sha256": "391c2258c0768e67ec75c2b1804b31959965ba1562e5ffe36316369458461672", + "rev": "75dc7a7e352f38679f65d0ca80ad158798e168bd" + }, + "recipe": { + "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.100", + "deps": [] + }, + "evil-iedit-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-iedit-state.git", + "sha256": "0f68dee1632ea8c5a2ae20c6afd26cec0272b421890bb5c997247f91d25b9326", + "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8" + }, + "recipe": { + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141217.1934", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-enbox.git", + "sha256": "c46645b5d78c6374273a33a44188feeb9cf7f85b26cf422bb5568539052fe811", + "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ] + }, + "arduino-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bookest/arduino-mode.git", + "sha256": "1062865641d61a07243a96bc1cf1a9eef32aee2c079220ef8be48a4c059939c7", + "rev": "bb89ac81e9b206a6da5653fd108a315ad3e8a8d7" + }, + "recipe": { + "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.135", + "deps": [] + }, + "flycheck-pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-pos-tip.git", + "sha256": "80dfa60f2af94937d2401db5f5714d1b9f3ed535a93ac2b6b0db345bbb349ee2", + "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527" + }, + "recipe": { + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.258", + "deps": [ + "dash", + "flycheck", + "pos-tip" + ] + }, + "subatomic256-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/subatomic256.git", + "sha256": "085f4ac10b86f23d1ebc7b45de0e33b75ba7284f8402c13985b708867d8df5f0", + "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f" + }, + "recipe": { + "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.2110", + "deps": [] + }, + "evil-paredit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-paredit.git", + "sha256": "179d7d5ad76179d2287e43d59b47dd543e8232237448918478845e7535f1082c", + "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f" + }, + "recipe": { + "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1548", + "deps": [ + "evil", + "paredit" + ] + }, + "ac-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/ac-dcd.git", + "sha256": "8bd27e3f90bfafdcc6a6f4fcef3d88a3cbff0f747c8a2000ffb9cd9865f31a62", + "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336" + }, + "recipe": { + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.924", + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ] + }, + "es-windows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-windows.git", + "sha256": "bce3c91e760a15b53e1469bb8af63febace3c2fb398d8c60ec1f93db2603b3ba", + "rev": "239e30408cb1adb4bc8bd63e2df34711fa910b4f" + }, + "recipe": { + "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.304", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "find-by-pinyin-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", + "sha256": "9d6006ffdc025fb0328e2bcb8f301ed3ec8d7fef38dedf48ff724f841f505214", + "rev": "d049cc7f507a6f801c497a3d401b260300874f58" + }, + "recipe": { + "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.416", + "deps": [] + }, + "metascript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/metascript/metascript-mode.git", + "sha256": "bc4d1fd0aef5b898d39bd1525c15968a1ae406f8367b8647d463220af235ce10", + "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9" + }, + "recipe": { + "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.1957", + "deps": [ + "emacs" + ] + }, + "helm-helm-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/helm-helm-commands.git", + "sha256": "f6320082f041dd825318bc93181cd1466494a37b00f27f7d255264454a777a16", + "rev": "3a05aa19c976501343ad9ae630a36810921a85f6" + }, + "recipe": { + "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130902.1248", + "deps": [ + "helm" + ] + }, + "smart-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" + }, + "recipe": { + "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.837", + "deps": [ + "emacs", + "rich-minority" + ] + }, + "apu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apu.el", + "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4" + }, + "recipe": { + "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.2151", + "deps": [] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donkirkby/live-py-plugin.git", + "sha256": "cb68a077a30baa9734d5528c6579f8c76f434de47538575c893c0d170ea86f3a", + "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1107", + "deps": [ + "emacs" + ] + }, + "virtualenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aculich/virtualenv.el.git", + "sha256": "18d149689022146d338e82726718413e91137ec2456d2f866ce80863b687a765", + "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3" + }, + "recipe": { + "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140220.1701", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pitkali/pos-tip.git", + "sha256": "43b8b715e052c32b20416388350d444294f247cb44c65c992dce4898cda11099", + "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150318.1013", + "deps": [] + }, + "empos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimalik/empos.git", + "sha256": "1668583b29cf0a22a5c7f1faff92df501bfba709de4fe8b6fb4dbcb36d67a02e", + "rev": "7b99ad30e56937adb7e6349777e5a2045597d564" + }, + "recipe": { + "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1416", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "rev": "78deece7f314f9652b50117605e93be9f8c860f4" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.233", + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ] + }, + "smart-shift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hbin/smart-shift.git", + "sha256": "68e21f2db070c5d6fb26127fa7dc6013f1fa44372edd1149976fae509d73f02b", + "rev": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae" + }, + "recipe": { + "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150203.125", + "deps": [] + }, + "jabber": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/emacs-jabber/git", + "sha256": "1a0f7c2154f863dbefc732a2057d0f7416cb4cd5764bdfa01cbf9e221a3abcb3", + "rev": "d5bfa1c62e6474a997e73a836524fdd322c0af44" + }, + "recipe": { + "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1804", + "deps": [ + "fsm" + ] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/terranpro/magit-gerrit.git", + "sha256": "bbbbdcd87474e8bd407490f4da1fc7bdce7d3e003b489699eb75595dfe811962", + "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1818", + "deps": [ + "magit" + ] + }, + "bubbleberry-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-bubbleberry-theme.git", + "sha256": "48b4657882137c892aa427f03529e5aef9e79dc489929c0118936c1a7f460aaa", + "rev": "22e9adf4586414024e4592972022ec297321b320" + }, + "recipe": { + "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141017.444", + "deps": [ + "emacs" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lolownia/org-pomodoro.git", + "sha256": "f777853f661559b761f0df05bbc452593e42bff9e900c29215f110e50b16bce0", + "rev": "749ec04434cae33cdb5c33f1afff0801fb1515d0" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.607", + "deps": [ + "alert", + "cl-lib" + ] + }, + "buster-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/buster-snippets.el.git", + "sha256": "a1b627fc446d628fd3a4b95553f3b678ef0523f41d448368e4ccce4a9aed0b67", + "rev": "bb8769dae132659858e74d52f3f4e8790399423a" + }, + "recipe": { + "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.410", + "deps": [ + "yasnippet" + ] + }, + "monokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", + "sha256": "23ece4c7746694079eec5a343c2855ba0566630845653c02b5d4ee8470157527", + "rev": "451a46930b9c5420d526505abe8f157a7292644e" + }, + "recipe": { + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.507", + "deps": [] + }, + "cloud-to-butt-erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/cloud-to-butt-erc.git", + "sha256": "ee4e548c3571b308edd910dfc60b4222138c75f59c3091a49f5c9771cdb27b1e", + "rev": "6710c03d1bc91736435cbfe845924940cae34e5c" + }, + "recipe": { + "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130627.1808", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/kurecolor.git", + "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.2322", + "deps": [ + "emacs", + "s" + ] + }, + "dropbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pavpanchekha/dropbox.el.git", + "sha256": "212dbe278e903d1ca488ba1d91e63a201f171fd82c51bedeef46e7ed1a3a6422", + "rev": "fb71a2787030f911b569426596c081a89241056e" + }, + "recipe": { + "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.1737", + "deps": [ + "json", + "oauth" + ] + }, + "helm-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/helm-rails.git", + "sha256": "e9d72b8f718aa13a4d8927b8ba16520eefe9154cfcb3e31145d698d9ad6b5764", + "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0" + }, + "recipe": { + "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130424.1019", + "deps": [ + "helm", + "inflections" + ] + }, + "flymake-haml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haml.git", + "sha256": "ddfb04b489e80baee8503a064037fe66582daecf7cc59dad4e75434056347764", + "rev": "3117d94ecad908710502e8def42dbae5748e9c1d" + }, + "recipe": { + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130324.551", + "deps": [ + "flymake-easy" + ] + }, + "highlight-indentation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", + "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" + }, + "recipe": { + "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.408", + "deps": [] + }, + "runtests": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sunesimonsen/emacs-runtests.git", + "sha256": "ad88c3bb7c09bebf0b336cbac2afd70cda347a36a755f38b931992cfb3965943", + "rev": "ed90249f24cc48290018df48b9b9b7172440be3e" + }, + "recipe": { + "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.331", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sanel/monroe.git", + "sha256": "b03a675d71de68b44441b888222d93a8169e5cf5ff65e62e167333ddedf42ffc", + "rev": "7f42a0139a8030407da736ddb0f67132634b70c0" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141111.307", + "deps": [] + }, + "helm-ctest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danlamanna/helm-ctest.git", + "sha256": "3e83ca4371bec877a13ac2f23ba05da267b20039689e39f3e0d69819a932a9a1", + "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d" + }, + "recipe": { + "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.608", + "deps": [ + "dash", + "helm-core", + "s" + ] + }, + "with-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/with-namespace.el.git", + "sha256": "437bd6a08124b12a33c22ac6586c1ca6bd31c873b5aa7c7b076b9d2c8743efb0", + "rev": "8ac52da3a09cf46087720e30cf730d00f140cde6" + }, + "recipe": { + "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.1322", + "deps": [ + "dash", + "loop" + ] + }, + "flymake-google-cpplint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-google-cpplint.git", + "sha256": "feb4a5d21a0bce78929d847359d1671f1e5f67bb74129529c64b545a0981f12f", + "rev": "905d32e84a27f18a78bec455ca930ab1ff9ae31e" + }, + "recipe": { + "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140205.725", + "deps": [ + "flymake-easy" + ] + }, + "names": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/names.git", + "sha256": "925745496c19a41a86451a5267446a086585173029f902ccbf86cd9bdebe1a31", + "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.604", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "worf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/worf.git", + "sha256": "59ba8b5c26c4392ff671b7c1d32673da76db075a8751e05820f276fd608d3bf6", + "rev": "61a6fc392034c2a588c44fef0a514032cf660e68" + }, + "recipe": { + "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2040", + "deps": [ + "ace-link", + "helm", + "hydra" + ] + }, + "ztree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/ztree.git", + "sha256": "d6149700fb69170e61f610cff32b57f29e70e9cd195047d4b883ec54877ce8e0", + "rev": "4a935eece004fc5e2e70e6606e564da73fdd90f5" + }, + "recipe": { + "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1213", + "deps": [] + }, + "log4j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/log4j-mode.git", + "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" + }, + "recipe": { + "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101016.1022", + "deps": [] + }, + "discover-clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/discover-clj-refactor.el.git", + "sha256": "c4bd46d2f22f37ea27e5233d88260737d5f786090e0a2cf6af1fdd521c2a4f50", + "rev": "3fbd5c1162739e606d7cf5d4f5d7426547d99647" + }, + "recipe": { + "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.959", + "deps": [ + "clj-refactor", + "discover" + ] + }, + "faceup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/faceup.git", + "sha256": "4a727309149603c5e7d44407e254acca397ecc8fbca1ded249dbbaab9a97556a", + "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79" + }, + "recipe": { + "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.1548", + "deps": [] + }, + "repl-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/repl-toggle.git", + "sha256": "f1afa0c6f8f575dccd6c6829014bc52b542289ee9478a3c0bb94540b72659ff0", + "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c" + }, + "recipe": { + "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140501.731", + "deps": [ + "fullframe" + ] + }, + "gnus-x-gm-raw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/gnus-x-gm-raw.git", + "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" + }, + "recipe": { + "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140610.231", + "deps": [ + "log4e", + "yaxception" + ] + }, + "noxml-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paddymcall/noXML-fold.git", + "sha256": "be81f3de17c7676fa19f13bb11aff8de8f893b6b74c9fad6b3700232d826acd7", + "rev": "d10ac9d0282b5efefc23a583c884e3a92be49966" + }, + "recipe": { + "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1418", + "deps": [] + }, + "dropdown-list": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el", + "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a" + }, + "recipe": { + "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120329.1136", + "deps": [] + }, + "look-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/look-dired.git", + "sha256": "92b15024ebe127d55bbcea7b5afebbc0a5069ac0df5b3b161e5c3472995c3771", + "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2" + }, + "recipe": { + "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1956", + "deps": [ + "look-mode" + ] + }, + "salt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/beardedprojamz/salt-mode.git", + "sha256": "5d933495346eeb087807d6333b2b51fec5283a17cdbdfa7d8bf7abeb5615fcf1", + "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4" + }, + "recipe": { + "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.1313", + "deps": [ + "mmm-jinja2", + "mmm-mode", + "yaml-mode" + ] + }, + "wand": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cmpitg/wand.git", + "sha256": "31c30b26270f4c61cd3d5cf7fd9a6c3a9da312ee9f40f01cdf606ac1b4d6f825", + "rev": "da6284ab75c3afa1275420faa9934037052e2967" + }, + "recipe": { + "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1845", + "deps": [ + "dash" + ] + }, + "docker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/docker.el.git", + "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.413", + "deps": [ + "dash", + "emacs", + "magit-popup", + "s" + ] + }, + "fuzzy-format": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el", + "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7" + }, + "recipe": { + "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "rpn-calc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/rpn-calc.git", + "sha256": "2807488ab372afef5e15092750a4e8cee09fe67a731ee3857e57db06e1e2b844", + "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594" + }, + "recipe": { + "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.734", + "deps": [ + "popup" + ] + }, + "auto-package-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/auto-package-update.el.git", + "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" + }, + "recipe": { + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.111", + "deps": [ + "dash", + "emacs" + ] + }, + "map-progress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-progress.git", + "sha256": "e13f2d39788c85c3663b1e829f48ff1393b80595421974e94a05e6cc0f5ca65d", + "rev": "3167eb218510953fb97e7d50948a625eaa3f0005" + }, + "recipe": { + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.1632", + "deps": [] + }, + "eno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/enoson/eno.el.git", + "sha256": "462f59552505a6ba4e92db160fc711b263a0d556a67500a96dd917e57474f897", + "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6" + }, + "recipe": { + "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.726", + "deps": [ + "dash", + "edit-at-point" + ] + }, + "helm-idris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-idris.git", + "sha256": "603b3640410de1485d85bc60b3998a48aff8559b99f3cc01ab536a8a00cd585b", + "rev": "a2f45d6817974f318b55ad9b7fd19d5df132d47e" + }, + "recipe": { + "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141202.1157", + "deps": [ + "helm", + "idris-mode" + ] + }, + "omni-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", + "sha256": "57662f117ebccd55060deec8323f1b2b57d9ab82c3ff22f6f90d9136ccfbac5a", + "rev": "e5a8ee7d63eb1e745b37ba4e3e71c5ea025e2342" + }, + "recipe": { + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1238", + "deps": [ + "dash", + "emacs", + "ht", + "s" + ] + }, + "zombie-trellys-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", + "sha256": "32166180198f2e9055e44ee1b9119329266dcf02819c9c573e4fdf59de35547e", + "rev": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2" + }, + "recipe": { + "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150304.848", + "deps": [ + "cl-lib", + "emacs", + "haskell-mode" + ] + }, + "ob-mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-mongo.git", + "sha256": "1ca5426d8bfe5c5a2774c0dcef89f914103486efb6b43c5acd48aebf2948cb0e", + "rev": "7eb5524d9c106945b371f9fbb9f1176f6e6f9b13" + }, + "recipe": { + "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.932", + "deps": [ + "org" + ] + }, + "karma": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/karma.el.git", + "sha256": "0099c9f61844c2bd023e7d59355bb15434766387cface7a8b112a11cd712e35a", + "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4" + }, + "recipe": { + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.2358", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "jg-quicknav": { + "fetch": { + "tag": "fetchgit", + "url": "https://github.com/jeffgran/jg-quicknav", + "sha256": "a7aa00b03d474549a25faec9ae0394f9d1065c05049268dea507409f84c801a1", + "rev": "67293fdbbb0c6afe2528ec6c03dc54eaa59a2c98" + }, + "recipe": { + "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.2028", + "deps": [ + "cl-lib", + "s" + ] + }, + "imenu-anywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/imenu-anywhere.git", + "sha256": "d16c1617e86af7514b1b59cd2eb36d84e668cfc16fbdf25f4f6a0a37d62e24d6", + "rev": "b486c1e80c667504b243a84351cc8751710248e9" + }, + "recipe": { + "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1327", + "deps": [ + "cl-lib" + ] + }, + "js3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomblake/js3-mode.git", + "sha256": "9f4ab387bcaec873b657d9ee4ae79b2288d8a6d859994bc50ade172911f4687a", + "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e" + }, + "recipe": { + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1149", + "deps": [] + }, + "scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/scratch-el.git", + "sha256": "665d0f7f9a642974b73046bc4fedf279bc70967e54657288206424a48b5b824e", + "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5" + }, + "recipe": { + "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120830.1228", + "deps": [] + }, + "tangotango-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juba/color-theme-tangotango.git", + "sha256": "0d3d886a5978d1fadec76fc3e18d7bc872daab25cedcd5dcaf9390e59ef06203", + "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005" + }, + "recipe": { + "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.304", + "deps": [] + }, + "imgur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/imgur.el.git", + "sha256": "8a6cb0a15924fdec70ad27d768e582835de48639905349b6eeb25685c99a3e9f", + "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb" + }, + "recipe": { + "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120307.425", + "deps": [ + "anything" + ] + }, + "auto-auto-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/auto-auto-indent.git", + "sha256": "b60a7b4ed0abc26610ea4f3c8602933924e295eaba54ef5fb3a234047d60c20b", + "rev": "0139378577f936d34b20276af6f022fb457af490" + }, + "recipe": { + "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131106.1303", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "aproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vietor/aproject.git", + "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150605.406", + "deps": [] + }, + "helm-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.448", + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ahk-mode.git", + "sha256": "bd1a98dc5da3be7ed1075fc70e8e13f8994e9be970535856afbf1ba635d04a88", + "rev": "e08a1b467d42b9d5e719c39407908152011b4573" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1737", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "requirejs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/requirejs-emacs.git", + "sha256": "83cd75fc1826900e3a5fc5e6aedfb9e1495f2f200c68d60bcbbefb28c768d36f", + "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.119", + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s", + "yasnippet" + ] + }, + "json-rpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-json-rpc.git", + "sha256": "445167eb6645cf86afe49be836bc59d2f564f1c903b5336479bef2422252794d", + "rev": "a83189b126d8d3d7a856008a5b6ad267b2fcc126" + }, + "recipe": { + "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1601", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gnus-alias": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/gnus-alias.git", + "sha256": "e46aeca201e0217743a8f307b6b40084163c904df1fad07a77736cafae4547c4", + "rev": "9447d3ccb4c0e75d0468899cccff7aa249657bac" + }, + "recipe": { + "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.1942", + "deps": [] + }, + "pastehub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/pastehub.git", + "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" + }, + "recipe": { + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140615.120", + "deps": [] + }, + "nim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nim-lang/nim-mode.git", + "sha256": "b604f34fecd885a638dca97e7d2c2ea3f995c995b3e10cdce2e57209e48835a1", + "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56" + }, + "recipe": { + "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.225", + "deps": [ + "emacs", + "epc" + ] + }, + "elfeed-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyhonig/elfeed-org.git", + "sha256": "b2485ccb7afde0778449ebcf4ca58df7761ccd52fe9d18115a6da0eae1d2e832", + "rev": "e5206bc983d04c68310181da83147908682de295" + }, + "recipe": { + "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.531", + "deps": [ + "dash", + "elfeed", + "org", + "s" + ] + }, + "watch-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mjsteger/watch-buffer.git", + "sha256": "221f7dd8dab0571b8bfcea551f09fb35215736f4b8c7e2e6011aa9da6db30445", + "rev": "761fd7252e6d7bf5148283c2a7ee935f087d9427" + }, + "recipe": { + "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120331.1544", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-langtool.git", + "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.613", + "deps": [ + "cl-lib" + ] + }, + "toml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dryman/toml-mode.el.git", + "sha256": "e77eec7f3ff5562483f874c37a50f475f4664766207f529a316ceb6e89ff23df", + "rev": "afd98423773c2b9578fc5b2b46a43b5f5ecf7e6b" + }, + "recipe": { + "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.320", + "deps": [] + }, + "ac-skk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ac-skk.el.git", + "sha256": "95cba9f0f0955e4e3f5f241e09da2fda627f9b43f46aee0beb2975f29d047fdb", + "rev": "d25a265930430d080329789fb253d786c01dfa24" + }, + "recipe": { + "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1919", + "deps": [ + "auto-complete", + "cl-lib", + "ddskk", + "tinysegmenter" + ] + }, + "gnus-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el", + "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4" + }, + "recipe": { + "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130901.935", + "deps": [] + }, + "rbt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/rbt.el.git", + "sha256": "f156109e6dccfddc630eb6515f1ad901aa63c5f3c1c12c02828a84f3207e4246", + "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797" + }, + "recipe": { + "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2255", + "deps": [ + "popup" + ] + }, + "uzumaki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/geyslan/uzumaki.git", + "sha256": "7dc44b70cba824db0d2e37869d0cc5dca541420103a2cdffa2ce71844c45a13b", + "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1906", + "deps": [ + "cl-lib" + ] + }, + "eredis": { + "fetch": { + "tag": "fetchsvn", + "url": "http://eredis.googlecode.com/svn/trunk/", + "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49", + "rev": "28" + }, + "recipe": { + "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120808.2207", + "deps": [] + }, + "creole-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/creole-mode.git", + "sha256": "1068bfca7c74693cbff7ae60bc3749bb73f3e31a6c892aa10a6d27d40be75749", + "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4" + }, + "recipe": { + "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130721.1950", + "deps": [] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theBlackDragon/fvwm-mode.git", + "sha256": "458c06cb163075419de02d62f2d09649a848a2f577be635f70554ce23705cc84", + "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.2236", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/factlog.git", + "sha256": "f53b69b33f9e9818256b4d0aff902ccbd95ad5e09e5e1e072897641a6c94f8e4", + "rev": "6503d77ea882c995b051d22e72db336fb28770fc" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130209.1940", + "deps": [ + "deferred" + ] + }, + "erc-terminal-notifier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/erc-terminal-notifier.el.git", + "sha256": "e018a041fec73b136ac4799c9a64143c9421be443a741ab0fbc00838355ed831", + "rev": "a3dacb935845e4a20031212bbd82b2170f68d2a8" + }, + "recipe": { + "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.424", + "deps": [] + }, + "calmer-forest-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/caldwell/calmer-forest-theme.git", + "sha256": "30b58ec531de2fc59b97313364cf5cc209da1b454e7b9935b5988087c727de58", + "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0" + }, + "recipe": { + "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130926.10", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150130.1004", + "deps": [ + "kaesar" + ] + }, + "purty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hackscience/purty-mode.git", + "sha256": "61b352c16c9b4206ec9f5eddcf2f447aea9a716685108d9549e13361ceeea262", + "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a" + }, + "recipe": { + "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1759", + "deps": [] + }, + "idea-darkula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/idea-darkula-theme.git", + "sha256": "01e33e7f05f961862bb185332db703ee8a7f59454f17ecdfbc394ecfb8e1ac44", + "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d" + }, + "recipe": { + "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1310", + "deps": [ + "emacs" + ] + }, + "boon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jyp/boon.git", + "sha256": "c734aad225dc9ce1a68010e2f1584a3b31c21cc69cdeb3c65a96390130b7de86", + "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1533", + "deps": [ + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121016.357", + "deps": [] + }, + "loccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/loccur.git", + "sha256": "207441b3076098eac55a0bfbb6b8d1a76b43de100a0213ee9a3bd840218c2389", + "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067" + }, + "recipe": { + "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.1237", + "deps": [] + }, + "interval-tree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/interval-tree.git", + "sha256": "63ddb334b6ae105428fa337d134801d55084c47bd2a9f8a39a30b10c7bb2163b", + "rev": "301302f480617091cf3ab6989caac385d52543dc" + }, + "recipe": { + "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130325.907", + "deps": [ + "dash" + ] + }, + "todochiku": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/todochiku.el", + "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" + }, + "recipe": { + "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150112.1454", + "deps": [] + }, + "wide-column": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/phillord-emacs-packages/", + "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl", + "rev": "e14e67d6a5b7" + }, + "recipe": { + "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120814.312", + "deps": [] + }, + "color-theme-sanityinc-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", + "sha256": "f6f29bbaef71f0c1ca13ef8e6b1d074da7f61f058bfd04c0b0133e03de3d81b9", + "rev": "14beb86aeb5b17451980f192bad72d7edb17321c" + }, + "recipe": { + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1620", + "deps": [] + }, + "ido-yes-or-no": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", + "sha256": "f43265b7f5db4fb84078fbca0d18979e5fbfc65903fea93daef298f10748ef0d", + "rev": "a9de5731b64f888be38073773c3d72b19c61ed4f" + }, + "recipe": { + "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140625.2306", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/mode-line-debug.git", + "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.712", + "deps": [] + }, + "helm-mode-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-mode-manager.git", + "sha256": "902bafc45553c4d39c9451716639f56d359c929c306290aa21da6c6b37597dd1", + "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc" + }, + "recipe": { + "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.338", + "deps": [ + "helm" + ] + }, + "python-docstring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/glyph/python-docstring-mode.git", + "sha256": "3bfb79130f6c629199e960f49ac065c9cf405ef6b767e99a3e9c7971420a40a8", + "rev": "263879fb339b18ee55d9463697d6f0a73171ee78" + }, + "recipe": { + "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.1504", + "deps": [] + }, + "helm-aws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-aws.git", + "sha256": "4e1d9eeb86b2d507d4a50e65683353911baa6974dae1ec970bcc3d0352bedeae", + "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.333", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "ido-springboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/springboard.git", + "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" + }, + "recipe": { + "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1211", + "deps": [] + }, + "autotetris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/autotetris-mode.git", + "sha256": "ac31fa944979ff599d7ad3ac57dd0eec643b4b11febd36a871f25523c0d2f292", + "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa" + }, + "recipe": { + "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141114.1046", + "deps": [ + "cl-lib" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/pcache.git", + "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.839", + "deps": [ + "eieio" + ] + }, + "fuzzy-match": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el", + "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq" + }, + "recipe": { + "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1609", + "deps": [] + }, + "lolcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bodil/lolcode-mode.git", + "sha256": "6b12ce2d888832d751a412af71b578ac9bfc4ce29ef7b6b30a9fda5ab97fce5f", + "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317" + }, + "recipe": { + "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111002.347", + "deps": [] + }, + "go-playground": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grafov/go-playground.git", + "sha256": "0f97d77506bf7653d64e13dd653163b94dae6f433233b8d490b33004ccec422b", + "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58" + }, + "recipe": { + "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1610", + "deps": [ + "emacs", + "go-mode", + "gotest" + ] + }, + "cache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/cache.git", + "sha256": "7e5199dc732711d3bdf0f41d96fafbbcab812fc51bbe4f8bacf3ed4dd06ce6c2", + "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580" + }, + "recipe": { + "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111019.1800", + "deps": [] + }, + "flymake-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robert-zaremba/flymake-go.git", + "sha256": "629685d2914fc63cc9de345723c31eb441ec778402f3b4c8cad44c445b9ee2df", + "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9" + }, + "recipe": { + "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.233", + "deps": [] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-reverse-theme.git", + "sha256": "ae3c2830db398454b5778a56c4c19ae6bbf14388e20a55d999cb235d25e45e00", + "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1945", + "deps": [] + }, + "menu-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el", + "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7" + }, + "recipe": { + "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1120", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/perspective-el.git", + "sha256": "ad6e6f38a86c70744c602c3898913619a834df8a987805e71b2a80b706f555aa", + "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1654", + "deps": [ + "cl-lib" + ] + }, + "loop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/loop.el.git", + "sha256": "97d32ab49d2cee1411147d70752b988b30bdafd0de12a498bc76d1a2cfa5c91d", + "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e" + }, + "recipe": { + "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130309.1005", + "deps": [] + }, + "offlineimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/offlineimap.el.git", + "sha256": "58fb8303368357f0cd352162b804b039ee04a3ba12a4be87f1f43c3a917c59ae", + "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.658", + "deps": [] + }, + "pmdm": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/pmdm.el", + "sha256": "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff", + "rev": "f50a54774156" + }, + "recipe": { + "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1236", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-lib.git", + "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141111.1230", + "deps": [ + "cl-lib" + ] + }, + "php-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/php-eldoc.git", + "sha256": "115c410563b7b864eb77f3855ea37510d5e46717da1de6bc68c485e4b6afa642", + "rev": "df05064146b884d9081e10657e32dc480f070cfe" + }, + "recipe": { + "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140202.1341", + "deps": [] + }, + "sqlplus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", + "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" + }, + "recipe": { + "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.939", + "deps": [] + }, + "how-many-lines-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/how-many-lines-in-project.git", + "sha256": "92ab293bdce9958e98d24efe0fb47a1a11ccb5c796cdbc41b16737e1655bcf6f", + "rev": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b" + }, + "recipe": { + "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140806.2342", + "deps": [] + }, + "helm-fuzzier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EphramPerdition/helm-fuzzier.git", + "sha256": "b7039f550161690ebc2821c6b2c37dd2bffa9773c74c9f38a9b957890401daca", + "rev": "7e8573de1a639c031056f20c677d13760f2cece0" + }, + "recipe": { + "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.838", + "deps": [ + "emacs", + "helm" + ] + }, + "pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/pt.el.git", + "sha256": "f3ef5f61987a1d6a4d578d43c5d42e60ed5e56f51ab41f77558de17de14c5a2e", + "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151024.1051", + "deps": [] + }, + "idle-require": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/idle-require.el.git", + "sha256": "09708cff241a71c5553664a3619cf0662185fd40859ee85a804706c4bc3ed390", + "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1" + }, + "recipe": { + "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090715.1703", + "deps": [] + }, + "save-visited-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/save-visited-files.git", + "sha256": "15f22a1895c8f56b515e87be7f0ccea427b7f96f8b9da8e3700921766da05b02", + "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa" + }, + "recipe": { + "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.1243", + "deps": [] + }, + "colonoscopy-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-colonoscopy-theme.git", + "sha256": "26028c9f5c592ee6e35b60b04ee3d65f003bd80baba676de87ee3ee70e687acc", + "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936" + }, + "recipe": { + "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "go-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/go-complete.git", + "sha256": "0ac2b1fe18c351fe427ddf818e394e1ba5c7734f5de3dc13529f219519111e5e", + "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e" + }, + "recipe": { + "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.428", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "ruby-guard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ruby-guard.git", + "sha256": "41d6e7dfa6e882c5c08096ee53515baeb1f1f1479f400144bcb8f722c45f8d0c", + "rev": "c0bc5c58ad32e1786001aa5cd84f490096a00a4b" + }, + "recipe": { + "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141218.2114", + "deps": [] + }, + "dkdo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dkdo.git", + "sha256": "a9907d79c0513774251e2de24421649117fd5d9fc26a61c15aeb8f97b86d7bd9", + "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da" + }, + "recipe": { + "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.519", + "deps": [ + "dkmisc", + "emacs" + ] + }, + "occidental-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/olcai/occidental-theme.git", + "sha256": "a87628ca895d0457704d965181118c419b4fcaa71321f016441c6726008fd45e", + "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816" + }, + "recipe": { + "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130312.1458", + "deps": [] + }, + "helm-flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-flycheck.git", + "sha256": "c03934f14e21de5e5326ef337d8fcec93570b374ee7d682080180d24ed00a74c", + "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925" + }, + "recipe": { + "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140915.952", + "deps": [ + "dash", + "flycheck", + "helm" + ] + }, + "mb-depth+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el", + "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q" + }, + "recipe": { + "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1822", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/fold-dwim-org.git", + "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.751", + "deps": [ + "fold-dwim" + ] + }, + "minesweeper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/zck/minesweeper.el", + "sha256": "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av", + "rev": "d29af12fc611" + }, + "recipe": { + "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.22", + "deps": [] + }, + "fstar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/FStarLang/fstar-mode.el.git", + "sha256": "16620a7f453ea7e843616a5a80d7f943aaf585893806e9a63434dd0c82a15cf5", + "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81" + }, + "recipe": { + "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.953", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "ac-mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/igjit/ac-mozc.git", + "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "rev": "4c6c8be4701010d9362184437c0f783e0335c631" + }, + "recipe": { + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150227.1019", + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ] + }, + "helm-dirset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/helm-dirset.git", + "sha256": "cb93e1bdcc5a786b91bad6859be204190d5ec94414a630d5c4aa9c127d917ba0", + "rev": "eb30810cd26e1ee73d84a863e6b2667700e9aead" + }, + "recipe": { + "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1812", + "deps": [ + "cl-lib", + "f", + "helm", + "s" + ] + }, + "logalimacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/logaling/logalimacs.git", + "sha256": "91f685dfc639ab93c05f75911a598933cb47357d5a1bf1c862d846f58884c6a6", + "rev": "8286e39502250fc6c3c6656a7f46a8eee8e9a713" + }, + "recipe": { + "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131021.1329", + "deps": [ + "popup", + "popwin", + "stem" + ] + }, + "outlined-elisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/outlined-elisp-mode.git", + "sha256": "9bf3caf8d3429dc3b1f2ee8b249f11553dc8dc5ce0d8c61487339b3549763035", + "rev": "c16cb02b540448919ad148f2be6a41523ee5489c" + }, + "recipe": { + "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131108.527", + "deps": [] + }, + "achievements": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/emacs-achievements", + "sha256": "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3", + "rev": "5b4b7b6816aa" + }, + "recipe": { + "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.1326", + "deps": [ + "keyfreq" + ] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "cl-lib", + "company", + "nixos-options" + ] + }, + "mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/mongo-el.git", + "sha256": "1df88bc68af523a683359d22ff2a7133f0abc6f337c8e9425ab00822a163157d", + "rev": "595529ddd70ecb9fab8b11daad2c3929941099d6" + }, + "recipe": { + "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.719", + "deps": [] + }, + "face-remap+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/face-remap+.el", + "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi" + }, + "recipe": { + "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1558", + "deps": [] + }, + "flymake-json": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-json.git", + "sha256": "5d0d8db198c77e2c6bb755888191a41ed44d14275e67af2e583c99d5c9c49319", + "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130424.157", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/sass-mode.git", + "sha256": "c52c84b6a2a94b30bcb7e871b5cb00311bed3e24f3b1da7144b83eb4f117cb19", + "rev": "3da9040680880743fddb55a965ecd150d1039df6" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2212", + "deps": [ + "cl-lib", + "haml-mode" + ] + }, + "string-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/string-edit.el.git", + "sha256": "5784fcd8af0859c64011866154d428a2d8ff835286928937e1ce522ab738ddc7", + "rev": "c380e20ca169bd4e7117a99edd5711e673168cbe" + }, + "recipe": { + "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1130", + "deps": [ + "dash" + ] + }, + "flycheck-elm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bsermons/flycheck-elm.git", + "sha256": "67fe08696db12587d868c9383f69a52a8982ee3b9f2c80e12834a326dea8b421", + "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8" + }, + "recipe": { + "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.924", + "deps": [ + "emacs", + "flycheck" + ] + }, + "showkey": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showkey.el", + "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r" + }, + "recipe": { + "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.1048", + "deps": [] + }, + "proc-net": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-proc-net.git", + "sha256": "2be372ba689f7cfa25b05cc09959b20c3362198e4e2c1711600d71d3002c9e5a", + "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73" + }, + "recipe": { + "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130321.1912", + "deps": [] + }, + "phi-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-grep.git", + "sha256": "ddf32d0b7c2aa9782063a9bcd2f07aab69e4dd6a7ffe89de9a25ca492eec90e5", + "rev": "9f1eb3548311816920864a171de303245a001301" + }, + "recipe": { + "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150212.924", + "deps": [ + "cl-lib" + ] + }, + "xah-replace-pairs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-replace-pairs.git", + "sha256": "143ba713c9f1fff9d7174116c87cb12241b0c5a47a88fa8daaba1a7e4892baa2", + "rev": "b80430cd285ba09e2b35d518be0c25ba7db2d0a3" + }, + "recipe": { + "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.533", + "deps": [] + }, + "sequences": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/sequences.el.git", + "sha256": "94eb6ed1077451a6d0df8c81e22d5def0f22f9e64c1ff3a233baea89c48de6da", + "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26" + }, + "recipe": { + "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130908.1322", + "deps": [ + "emacs" + ] + }, + "chronos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dxknight/chronos.git", + "sha256": "04537567c5046366c663bcb99869c6131162311d7af0ff1c405582bef3f80dd7", + "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09" + }, + "recipe": { + "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1029", + "deps": [] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haskell-multi.git", + "sha256": "94deeca8956cc2eb5e7029eb8b244475eaa86082444bd18f9eeb941167388bba", + "rev": "6183620ffee429b33c886fffd6106b876245ea47" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.622", + "deps": [ + "flymake-easy" + ] + }, + "simple-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wachikun/simple-screen.git", + "sha256": "515c1774f176afc8eedbadda26d9fbc914601ac89d06fa0188005870fde3c97d", + "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae" + }, + "recipe": { + "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.958", + "deps": [] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-timemachine.git", + "sha256": "ef579a874c0ed6c01bd13f41a89239e25527a8e0146985451657f570f0a61e15", + "rev": "141122e52a80f28b958a8bad128c480567ce3942" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.29", + "deps": [] + }, + "evil-search-highlight-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/evil-search-highlight-persist.git", + "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", + "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + }, + "recipe": { + "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1642", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/edn.el.git", + "sha256": "4dbf8b2f57167afdcb7d234b29b6359873014098b9835e6b36f76ecae3f7b9fc", + "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.346", + "deps": [ + "cl-lib", + "dash", + "emacs", + "peg", + "s" + ] + }, + "register-channel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/YangZhao11/register-channel.git", + "sha256": "a9c9bce2743d6afe06b2e6a40c61b438ef8b040d529dad69b1f3f86d0bfeefce", + "rev": "f62f9a62ebd2537d4a8c8f2e358562c67d2aefc1" + }, + "recipe": { + "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.2259", + "deps": [] + }, + "isearch-prop": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el", + "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09" + }, + "recipe": { + "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1305", + "deps": [] + }, + "virtualenvwrapper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/porterjamesj/virtualenvwrapper.el.git", + "sha256": "9756d78a2b7b2da44c617833773c1de2b8694ef2062ee084e7ca03ba85b3d6f7", + "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2" + }, + "recipe": { + "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.821", + "deps": [ + "dash", + "s" + ] + }, + "emagician-fix-spell-memory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonnay/emagicians-starter-kit.git", + "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" + }, + "recipe": { + "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1634", + "deps": [] + }, + "google-contacts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/google-contacts.el.git", + "sha256": "b25e676b27c2e6f8f1458f6a25f4105b11794dc9d8ecc8786cfddf7aa66c78a8", + "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432" + }, + "recipe": { + "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140530.433", + "deps": [ + "oauth2" + ] + }, + "org-table-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-table-comment.el.git", + "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" + }, + "recipe": { + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120209.1251", + "deps": [] + }, + "govet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/meshelton/govet.git", + "sha256": "ab73f08661b4acd28f8d9fbcc2ec7cae9973bd335506e8cfb044e3e3eb20eebb", + "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70" + }, + "recipe": { + "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1359", + "deps": [] + }, + "c-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/c-eldoc.git", + "sha256": "ea6c3bcfea345cdbb037a32e3ba386bd92e034337d136071553690628c2b9556", + "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85" + }, + "recipe": { + "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.332", + "deps": [] + }, + "toc-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snosov1/toc-org.git", + "sha256": "e070adc368f1d0ed6f889baeac54cbfd1d56b70671ced46d9b0b78d97d21fb3f", + "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf" + }, + "recipe": { + "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.905", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/hl-sexp.git", + "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101130.643", + "deps": [] + }, + "find-temp-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/find-temp-file.git", + "sha256": "00d2718456a0496fd845103fae2233e97636b52fd96798f559241d79c337a55b", + "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba" + }, + "recipe": { + "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.801", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/avy-migemo.git", + "sha256": "525ba03bb7ce7faf3f2930d831ff2f0f95a9e8bd12a7a68dd014831f82d0fa30", + "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.808", + "deps": [ + "avy", + "emacs", + "migemo" + ] + }, + "crosshairs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/crosshairs.el", + "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b" + }, + "recipe": { + "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1539", + "deps": [ + "col-highlight", + "hl-line+", + "vline" + ] + }, + "osx-browse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/osx-browse.git", + "sha256": "800ba903f6a440c92fc857f5d5ac5ac1a1b3475030b0ac5077127802993bf50a", + "rev": "44ded7cc3a7ee426c1c3257fae534c121f7e752e" + }, + "recipe": { + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "browse-url-dwim", + "string-utils" + ] + }, + "sql-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bsvingen/sql-indent.git", + "sha256": "5e520cd1964765ee18ffb56ea5266d2b562819c6ac07507e26d8a1d2b162cb9e", + "rev": "f85bc91535b64b5d538e5aec2ce4c5e2312ec862" + }, + "recipe": { + "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.1916", + "deps": [] + }, + "helm-orgcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-orgcard.git", + "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" + }, + "recipe": { + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1024", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nishimaki10/emacs-phpcbf.git", + "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.728", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/dispass.el.git", + "sha256": "81ee51451d3b39f30f08d332b5ed725ed3ea6e8f8d5a1e0cd83b439b0392af1c", + "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140202.931", + "deps": [ + "dash" + ] + }, + "ac-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-inf-ruby.git", + "sha256": "40c5c8e611944ef31f46ac7b327f36ff39962be58d2602062eb5d6903198b875", + "rev": "3a1e741b40b8dba0e9c235dad4b9907411d9dcd3" + }, + "recipe": { + "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131115.550", + "deps": [ + "auto-complete", + "inf-ruby" + ] + }, + "cider-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", + "sha256": "33cef1dee2c1a679ff88a49b99ffadcd75d4679fac0ff67d0bc73ef467de9651", + "rev": "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc" + }, + "recipe": { + "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.2215", + "deps": [ + "emacs", + "eval-sexp-fu", + "highlight" + ] + }, + "wn-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luismbo/wn-mode.git", + "sha256": "5451e4cd0f946e12d209409779683459a51f9f05dbb6edb70acc3002aae48395", + "rev": "f05c3151523e529af5a0a3fa8c948b61fb369f6e" + }, + "recipe": { + "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.2352", + "deps": [ + "emacs" + ] + }, + "professional-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/emacs-professional-theme.git", + "sha256": "347d15c6b4d0e8932d49996f2e9a3068945018dd8434f22bf329dc19571857c8", + "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed" + }, + "recipe": { + "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.600", + "deps": [] + }, + "goto-last-change": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/goto-last-change.el.git", + "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" + }, + "recipe": { + "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150109.1223", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-css.git", + "sha256": "874738fbcbb2b0f26bf574b846a68f87032eeccc7032d995771a23559ab91fed", + "rev": "4649fc209836498d709bb627e8aa6e50189a06ec" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1304", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/flycheck-pyflakes.git", + "sha256": "8aeba55672e10a4e0b4a70496e184603ace88c1817f9789925b81d51b45e5499", + "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912" + }, + "recipe": { + "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140630.1721", + "deps": [ + "flycheck" + ] + }, + "vc-check-status": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/vc-check-status.git", + "sha256": "9918eb8a561f6f14c38f12bf6a74920ce6138f635c8fa39624defde968ad6eca", + "rev": "540db724cdd9f517f54fcd9f8c4be3bf274c9333" + }, + "recipe": { + "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.301", + "deps": [] + }, + "pbcopy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/pbcopy.el.git", + "sha256": "86970f548da98717a9a1c73bd9d35f8d36c8bb656e26d045ae52d77169031c8d", + "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272" + }, + "recipe": { + "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150224.2259", + "deps": [] + }, + "ob-lfe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-lfe.git", + "sha256": "16d26be5099649fe12fe5fc02df4fd03d758f8829ed558c9f4c46d4d1cc367d6", + "rev": "d50a5d76e389501504e060a7005f20b96c895594" + }, + "recipe": { + "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150701.855", + "deps": [ + "org" + ] + }, + "auto-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/auto-yasnippet.git", + "sha256": "117fec8ed9c14f553cb767e221b132011745478dcb712d7f1b82065821adfc35", + "rev": "deb00c74cfc98c32e1e71baf44ee8d2c3df7164e" + }, + "recipe": { + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.610", + "deps": [ + "yasnippet" + ] + }, + "company-try-hard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/company-try-hard.git", + "sha256": "a8a71f25c760d4cc93f62660218c8c36a9a371fa7ee9a254982392bf38fb9f44", + "rev": "0401e8afa6bd4d3e9d2cf18e58955b83aef93005" + }, + "recipe": { + "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1706", + "deps": [ + "company", + "dash", + "emacs" + ] + }, + "clippy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/clippy.el.git", + "sha256": "4cc2e4844cf15eb4279824a690c47a3c492a188570823f7997179e1bff8b5557", + "rev": "23ba8772056a103267611b3757722730740d9f00" + }, + "recipe": { + "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140417.614", + "deps": [ + "pos-tip" + ] + }, + "company-coq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpitclaudel/company-coq.git", + "sha256": "bc01164d09c438cc38cc5d3171506847bca2ff01ff3e158394a37c231d31c996", + "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f" + }, + "recipe": { + "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.2131", + "deps": [ + "cl-lib", + "company", + "company-math", + "dash", + "yasnippet" + ] + }, + "emacsql-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "haskell-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-snippets.git", + "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" + }, + "recipe": { + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150612.1439", + "deps": [ + "yasnippet" + ] + }, + "ycm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neuromage/ycm.el.git", + "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" + }, + "recipe": { + "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.1336", + "deps": [] + }, + "ldap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/ldap-mode.git", + "sha256": "c34dc837e595b5ba84840a1958364ce14fa46e75aad54de63ad9eb344d16bb0e", + "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0" + }, + "recipe": { + "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1215", + "deps": [] + }, + "golint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/golang/lint.git", + "sha256": "0391e33c7143fded33e9f919566fddb1776526294201785da0a76510db848f9a", + "rev": "32a87160691b3c96046c0c678fe57c5bef761456" + }, + "recipe": { + "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.1930", + "deps": [] + }, + "typed-clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/typedclojure/typed-clojure-mode.git", + "sha256": "4184ccfcd4972ed5db00ba47db42e811dbd719ca6d4f6382813aaf4a43ce473e", + "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364" + }, + "recipe": { + "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.1322", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "load-theme-buffer-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vic/color-theme-buffer-local.git", + "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" + }, + "recipe": { + "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120702.1536", + "deps": [] + }, + "xah-math-input": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-math-input.git", + "sha256": "68f1ddfd27479bce44bca27055555580cbbd383cb07c8510d133296f70670d85", + "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d" + }, + "recipe": { + "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.1900", + "deps": [] + }, + "vim-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-vim-region.git", + "sha256": "2ff2a5cf2604f8438749dbc757064b4b09203ff6f0c3d356818801106c84e28d", + "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf" + }, + "recipe": { + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140329.1124", + "deps": [ + "expand-region" + ] + }, + "hideshowvis": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el", + "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6" + }, + "recipe": { + "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "tumble": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/febuiles/tumble.git", + "sha256": "8c16ee4d36971e2d8ceb83c3d3863e183b081b8406f2c772240c183bc1c498ce", + "rev": "8d04216752ad94c343ffa507016b893f8252602f" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1349", + "deps": [ + "http-post-simple" + ] + }, + "evil-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/evil-tabs.git", + "sha256": "79ce6c756c75665de49269a407bf22c6e1cc76fc5310788932da4890ab5978b0", + "rev": "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6" + }, + "recipe": { + "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150127.1546", + "deps": [ + "elscreen", + "evil" + ] + }, + "solidity-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ethereum/emacs-solidity.git", + "sha256": "9cb0f6a1bb4b26c949fe08b6cb094d4f7182150ce7c5d2cf6cf0044813f34f97", + "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41" + }, + "recipe": { + "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1111", + "deps": [] + }, + "ac-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/ac-math.git", + "sha256": "a62d775b29574891a744eff314de6b8bc3497c5f25ad8b65b54fa29db86aac5c", + "rev": "c012a8f620a48cb18db7d78995035d65eae28f11" + }, + "recipe": { + "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1527", + "deps": [ + "auto-complete", + "math-symbol-lists" + ] + }, + "flex-autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/flex-autopair.git", + "sha256": "14efca11472950338f9433d3583f903e9d8dfa8e8eb835049f6ce40afd81eaa0", + "rev": "4bb757f2556a4a51828e2fed8fb81e31e83052cb" + }, + "recipe": { + "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120809.718", + "deps": [] + }, + "company-ghci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juiko/company-ghci.git", + "sha256": "24008f241721ab96e1baa0b6ea1437127809eab715b05a0ef381cc2ce79e5684", + "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82" + }, + "recipe": { + "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1250", + "deps": [ + "company", + "haskell-mode" + ] + }, + "aurel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/aurel.git", + "sha256": "d894cd8e53471212d40e8d9da7b0d8b28886be98380ea49ff863b14cc1f06d9b", + "rev": "0f135e600de3ef60d0cd4d98f3fcaa12a9d1e4c9" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1515", + "deps": [] + }, + "ob-typescript": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lurdan/ob-typescript.git", + "sha256": "e1c272f28c4f6ebb61a873c87ef97cdce7d79ef8c5be08e4257f124e51ccc683", + "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a" + }, + "recipe": { + "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.730", + "deps": [ + "emacs", + "org" + ] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/anaconda-mode.git", + "sha256": "aea3ff085f8d7c28a45973f37a8b5256e975c13937a66d55cfe7542e174f495a", + "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.737", + "deps": [ + "dash", + "emacs", + "f", + "pythonic", + "s" + ] + }, + "js2-closure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/js2-closure.git", + "sha256": "4cffe59aad5f1494c93cef3e291978e7f23b4c16929b2e76c20119b64edf0504", + "rev": "8e81e90ee0b923b9d053c339e4b328ecc7693998" + }, + "recipe": { + "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.1750", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/drag-stuff.git", + "sha256": "858d06f9d795c71f04398caec289d9876ffc0096f295f3ff3ad9b730c50e7a0b", + "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.732", + "deps": [] + }, + "epic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/epic.git", + "sha256": "35466d110cc20f5c181764b685aa8e8e30e1fb9e598900772f7bea834488eea1", + "rev": "02f6472bb490a39d42ed49c0364972173202f6e1" + }, + "recipe": { + "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150503.237", + "deps": [ + "htmlize" + ] + }, + "dsvn": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", + "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", + "rev": "1719971" + }, + "recipe": { + "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130120.1457", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/clocker.el.git", + "sha256": "3b9df19d086c3d67193292e1a9aaed12652207e2ccefe12b9be50621c9696fab", + "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1043", + "deps": [ + "dash", + "projectile" + ] + }, + "ujelly-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marktran/color-theme-ujelly.git", + "sha256": "34dcb1c9c6fbf1e832b7a78a433808a804490f0a4fb888c5b50d076d77be3e33", + "rev": "ff4b9fb4a9469cd807ed712e05cf739a1a900218" + }, + "recipe": { + "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.2336", + "deps": [] + }, + "hl-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el", + "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh" + }, + "recipe": { + "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1624", + "deps": [] + }, + "quick-buffer-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/quick-buffer-switch.git", + "sha256": "969c0a175112b464d416d1b2af3ac836c1224fee72a997ca006f3d92ee0e9850", + "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b" + }, + "recipe": { + "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.1708", + "deps": [] + }, + "jump-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/jump-char.git", + "sha256": "f898b75b5feedeae063ff16150cf0175690f6dfde99df812f60e8ceca951f46e", + "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f" + }, + "recipe": { + "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1435", + "deps": [] + }, + "e2wm-svg-clock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-svg-clock.el.git", + "sha256": "cefc7c015e8079d819302ae1246bc40936152b7cf613b36577b80abf2fb52e40", + "rev": "d425925e3afffcbe2ff74edc80b714e4319d4c94" + }, + "recipe": { + "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.706", + "deps": [ + "e2wm", + "svg-clock" + ] + }, + "instapaper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jfm/emacs-instapaper", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8", + "rev": "8daa0058ede7" + }, + "recipe": { + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130104.821", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.519", + "deps": [] + }, + "findr": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/findr.el", + "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" + }, + "recipe": { + "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "helm-chrome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/helm-chrome.git", + "sha256": "9e455817ac4e58ac0abd02061e985f0ed70beb4f899b8dee91888a83ab2f8155", + "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff" + }, + "recipe": { + "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2327", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "chruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/plexus/chruby.el.git", + "sha256": "34c335e6d277a2bc50f0b900155b0507d0ef5399886f6270b43487234f5ba03f", + "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0" + }, + "recipe": { + "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.630", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/whitaker.git", + "sha256": "4b319f011e50d555e510fd4463f482be481c22271f2aec1124c53ebca967e5f8", + "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.622", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-mode.git", + "sha256": "62e710636351349ad3892477176e45365866bf92ebbf7b9f6f1010b595d86b30", + "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1541", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "twilight-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-bright-theme.el.git", + "sha256": "32fb2d83cefcbef6593ceffd6392927f8ee611f0752bcc53cd81c1fb1c45e6ca", + "rev": "322157cb2f3bf7920ecd209dafc31bc1c7959f49" + }, + "recipe": { + "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.343", + "deps": [] + }, + "macro-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/macro-math.el.git", + "sha256": "be7d6302be52cfb1d25d11d2e9f70c270aa568e51878dc79ef36fa3eca93c7c5", + "rev": "216e59371e9ee39c34117ba79b9acd78bb415750" + }, + "recipe": { + "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.1104", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/elscreen-mew.git", + "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140629.1016", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/helm-backup.git", + "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1247", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "cedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/cedit.git", + "sha256": "7bc8d8b8344c07155e031f4383ebb4f6c4438737e118c34020039372876c0fb9", + "rev": "0878d851b6307c162bfbddd2bb02789e5e27bc2c" + }, + "recipe": { + "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1014", + "deps": [] + }, + "dired-sort-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el", + "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi" + }, + "recipe": { + "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "rinari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.140", + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ] + }, + "irony-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/irony-eldoc.git", + "sha256": "6ad813d960762d54d0a6936232766f5db9776f7bb09dcc060da83e1740d21634", + "rev": "bd1fadbc7c806d84aeec098b19238e5328cbbb7b" + }, + "recipe": { + "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.19", + "deps": [ + "cl-lib", + "emacs", + "irony" + ] + }, + "bm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joodland/bm.git", + "sha256": "633cae4a027da2bc72c9554f8024f92d28b8f1585dc7a37a0098b5084eddcffa", + "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b" + }, + "recipe": { + "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1722", + "deps": [] + }, + "seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/seq.el.git", + "sha256": "05f8290607ef8fdebf45eeb76ecb554d4183d3212eea96e25fb3e5fd18d6f169", + "rev": "1349714b20daed2e62a21ebdd5244acc0ccbef0c" + }, + "recipe": { + "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1217", + "deps": [] + }, + "ox-textile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-textile.git", + "sha256": "5dac91e68b1efddd008f89d5e5c8e2ef4d860e709461d94514c79c1412489a5e", + "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d" + }, + "recipe": { + "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2225", + "deps": [ + "org" + ] + }, + "helm-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.117", + "deps": [ + "helm", + "prosjekt" + ] + }, + "ucs-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ucs-utils.git", + "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" + }, + "recipe": { + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.914", + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ] + }, + "ids-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ids-edit.git", + "sha256": "f9bab428a2d4a024f3e0e47501e5370cd375b47df8c3201aac9fa959d209f0cc", + "rev": "f40495ecd434c6b39d52cadfed25098f08ce78cb" + }, + "recipe": { + "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.635", + "deps": [ + "emacs" + ] + }, + "string-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/string-utils.git", + "sha256": "c3b15fab51598da0e811257ef20138f89edbcb6b2a6e5891073ea498c7dbb3b5", + "rev": "c2232d691617973ecf12a970c6008a161c21da14" + }, + "recipe": { + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "nose": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/durin42/nosemacs", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm", + "rev": "194d7789bf79" + }, + "recipe": { + "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.1148", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/egisatoshi/egison3.git", + "sha256": "dd1d9f33c93eeed03d9a13c6ff67b5aea6e5faaf33bf84687b40cdf8e87eb329", + "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2329", + "deps": [] + }, + "hy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hylang/hy-mode.git", + "sha256": "556062e6488f60f3cddb54fb9c5c9e8cecba0c5fec7e0f9dfa2b0d246f1de49b", + "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec" + }, + "recipe": { + "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.743", + "deps": [] + }, + "shader-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/midnightSuyama/shader-mode.git", + "sha256": "4426dfd26a6a04f57c3c2b0918fb66916fb95828ebb51ea4d9c8aa9db3250950", + "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f" + }, + "recipe": { + "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.904", + "deps": [ + "emacs" + ] + }, + "elscreen-separate-buffer-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wamei/elscreen-separate-buffer-list.git", + "sha256": "ce8cdbc0979790e8a0e90d01f3f71f179f2a50c301b1e57cfd9daa4fa8b564f0", + "rev": "1aa66cdbf2b1dc87689725aef004a29bb79dd0f9" + }, + "recipe": { + "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.145", + "deps": [ + "elscreen", + "emacs" + ] + }, + "helm-cider-history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kungi/helm-cider-history.git", + "sha256": "2654b8a50aebac103d577294a770d50b521c7bbfa4e7d49c38af462015fed434", + "rev": "c391fcb2e162a02001605a0b9449783575a831fd" + }, + "recipe": { + "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1620", + "deps": [ + "cider", + "helm" + ] + }, + "ido-occur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-occur.git", + "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.1643", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "cus-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el", + "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s" + }, + "recipe": { + "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.949", + "deps": [] + }, + "outshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outshine.git", + "sha256": "973d97d0b43fc25892727cadb683767b8c33c318c60a87cd1b15877e4e39a8df", + "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1002", + "deps": [ + "cl-lib", + "outorg" + ] + }, + "ack-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/ack-menu.git", + "sha256": "b090306e58a18c739707d46ebf4edd259ee53824e8cd896a3b0174d85a6fa788", + "rev": "f77be93a4697926ecf3195a355eb69580f695f4d" + }, + "recipe": { + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.1522", + "deps": [ + "mag-menu" + ] + }, + "golden-ratio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/golden-ratio.el.git", + "sha256": "c4f569c53c384e204056bd4dc0ca97bbac0b2314f73cda992416d0b8ed08666b", + "rev": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae" + }, + "recipe": { + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.620", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-mark-replace.git", + "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.218", + "deps": [ + "evil" + ] + }, + "dark-krystal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-dark-krystal-theme.git", + "sha256": "ddf5188b1ed6142c782df475815820b873241e68a24c8a3001495ff59857851f", + "rev": "bcb3c4ccf17db541e319d60e2eca38a5b22d5664" + }, + "recipe": { + "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "helm-hoogle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/haskell-config.git", + "sha256": "572d2c743a5b066ec3e266ebc93c759c2df295a6ce85dab8c2a4d81797ff5014", + "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d" + }, + "recipe": { + "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.421", + "deps": [ + "emacs", + "helm" + ] + }, + "kixtart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryrun/kixtart-mode.git", + "sha256": "6b931784b85f3e17936b58424d3715f536e25dadbb67606496151e8c1e63a3d1", + "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79" + }, + "recipe": { + "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.1104", + "deps": [ + "emacs" + ] + }, + "helm-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ag.git", + "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" + }, + "recipe": { + "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.218", + "deps": [ + "cl-lib", + "helm" + ] + }, + "direx-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/direx-grep.git", + "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "rev": "1109a512a80b2673a70b18b8568514049017faad" + }, + "recipe": { + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140515.1006", + "deps": [ + "direx" + ] + }, + "muttrc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el", + "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis" + }, + "recipe": { + "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090804.1752", + "deps": [] + }, + "cycle-resize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/cycle-resize.git", + "sha256": "237ac7c81f7df8f6f9aee5ed69aea93f35ab9beab985e3d5e4c7fe6413cac341", + "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c" + }, + "recipe": { + "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1423", + "deps": [] + }, + "cmds-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el", + "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5" + }, + "recipe": { + "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1534", + "deps": [] + }, + "centimacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/centimacro.git", + "sha256": "f0314ef095a1e1c634f340aa2fc41c298c3a1c82da6fdba508950e96b0ba197f", + "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742" + }, + "recipe": { + "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.827", + "deps": [] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kitware/CMake.git", + "sha256": "d6cb00eb948877d09d16c084c0463bda8b65de88d16298a3a2c46e7efae7c804", + "rev": "6a6d00aeeffadcb535b5a4cf4adaeda296f91b3a" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.926", + "deps": [] + }, + "eyedropper": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", + "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" + }, + "recipe": { + "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1545", + "deps": [ + "hexrgb" + ] + }, + "smart-forward": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/smart-forward.el.git", + "sha256": "0a76a5c2295a86af7b4c8b3a4bc77bbedca8758d60c61f874c1542f9713f84a6", + "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b" + }, + "recipe": { + "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140430.213", + "deps": [ + "expand-region" + ] + }, + "majapahit-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/franksn/majapahit-theme.git", + "sha256": "ab910e3f9ddaec984d05be53cf4f4a593e67d95fbe90705d9fa708ca41377c45", + "rev": "09a038826ef00b82684e569eaca07ceff7228219" + }, + "recipe": { + "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1243", + "deps": [] + }, + "interleave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/interleave.git", + "sha256": "11059f527efb7aca797796516cd1c14cc3acc87f5bf8e15a02474f1d95f35472", + "rev": "4b8ce53ee8ca075029ce88d203735256a875e516" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.835", + "deps": [] + }, + "workgroups2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashinin/workgroups2.git", + "sha256": "2bcf5853ea97d94154c1317085d741855960eca6cdf3852f8d8f429442773656", + "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a" + }, + "recipe": { + "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.1322", + "deps": [ + "anaphora", + "cl-lib", + "dash", + "f" + ] + }, + "eyebrowse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/eyebrowse.git", + "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" + }, + "recipe": { + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.816", + "deps": [ + "dash", + "emacs" + ] + }, + "ido-occasional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ido-occasional.git", + "sha256": "99e2134a58e14f40ef357434c68e9237c0d29414ba190ede266ab4ce93c0937e", + "rev": "d405f1795e1e0c63be411ee2825184738d29c33a" + }, + "recipe": { + "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150214.648", + "deps": [ + "emacs" + ] + }, + "extempore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/extemporelang/extempore-emacs-mode.git", + "sha256": "20215de3e1eaf3e3834b2411eb1164a0af5a486eb0152f6a62917600ac6524ec", + "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919" + }, + "recipe": { + "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.40", + "deps": [ + "emacs" + ] + }, + "oauth": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psanford/emacs-oauth.git", + "sha256": "920e98b72e57d7713a0aec4fca2e8d38e688f7d4d76564d18d80c7c1c2f40d15", + "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458" + }, + "recipe": { + "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130127.1951", + "deps": [] + }, + "delight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/delight.el", + "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" + }, + "recipe": { + "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.837", + "deps": [] + }, + "apropospriate-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/apropospriate-theme.git", + "sha256": "7d674a3fbe7a33e0aef29f2c9fbe12252cfd7a702eb8904515f194db17bd36dd", + "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6" + }, + "recipe": { + "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1059", + "deps": [] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/speech-tagger.git", + "sha256": "44c382b456b23dea6c9dbda97e9b0ca48f91bff789c5b6158a10b5d4ce865b33", + "rev": "10135e324630d25ae8c16f052cf4d97bda592164" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.2", + "deps": [ + "cl-lib" + ] + }, + "dokuwiki-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbkbkbkb1/emacs-dokuwiki-mode.git", + "sha256": "f929dfd835a5c005c1b7f742ddec218f3d5a8d4ed3286f794c55c32aeeb69680", + "rev": "e0cecc9551f490318e7a23ed9e0a3082c7196bc7" + }, + "recipe": { + "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140130.1136", + "deps": [] + }, + "wakatime-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wakatime/wakatime-mode.git", + "sha256": "363cc9b5737c48a6b2fe4b94ef54ce0b6834284f7c340e3006d197b7cadc8dad", + "rev": "883f969c1502994b55912c6ade7155220e3c2cea" + }, + "recipe": { + "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1830", + "deps": [] + }, + "evil-vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexmurray/evil-vimish-fold.git", + "sha256": "58c6a0315e57b059c1ae2f30cf82b1186e497236145afda45f6fccd2c7bf9154", + "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5" + }, + "recipe": { + "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.2326", + "deps": [ + "emacs", + "evil", + "vimish-fold" + ] + }, + "try": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Try.git", + "sha256": "ccc50f794e672eb1a96723fc78a7cbd42bf05e1e95703ed6794945792664df16", + "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35" + }, + "recipe": { + "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150608.411", + "deps": [ + "emacs" + ] + }, + "whole-line-or-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whole-line-or-region.git", + "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" + }, + "recipe": { + "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110901.330", + "deps": [] + }, + "flymake-elixir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/flymake-elixir.git", + "sha256": "088e8c33a45862b0147925a9677c2b4c4d59fb15db01acf45e5224338bd80bf9", + "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802" + }, + "recipe": { + "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130810.917", + "deps": [] + }, + "flatui-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/flatui-theme.el.git", + "sha256": "163fc66d83f917801fbfb7679b9613815e4dd48032be61b4eb8de6908ab3f848", + "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9" + }, + "recipe": { + "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.343", + "deps": [] + }, + "seti-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/caisah/seti-theme.git", + "sha256": "9617807672e6c8483be459f026a06c441422ef0a9f21d34483bcaf5ce9ea2fa2", + "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1" + }, + "recipe": { + "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.322", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/git-link.git", + "sha256": "aee955bf9d1d95a1c5fd6e1ed2e2ceabb5324659294b4adaecef572bd9ff43d1", + "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1225", + "deps": [] + }, + "evil-nerd-commenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", + "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" + }, + "recipe": { + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.625", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sauermann/emacs-aes.git", + "sha256": "4aad119c1eb346ee70401cef0aba0ffe98ee6db5985066557af30ce38f94dba1", + "rev": "61d0da553ad980e5b9079444aed8214a28b409d9" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1603", + "deps": [] + }, + "vcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ssm/vcl-mode.git", + "sha256": "e76590efe0e4d5a4054a71505d55851aa78d0eea5b650d5c25996696ccbd7de1", + "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893" + }, + "recipe": { + "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1323", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/orgit.git", + "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1614", + "deps": [ + "dash", + "emacs", + "magit", + "org" + ] + }, + "jump-to-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/jump-to-line.git", + "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" + }, + "recipe": { + "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130122.1053", + "deps": [] + }, + "browse-at-remote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/browse-at-remote.git", + "sha256": "98cc9ce77720195e07e46f5ecc0668c5728f28ad6ed470baf1e1cfd4a1666ce0", + "rev": "54853e0047cd8b20143f839a2f06e86ad31aaccc" + }, + "recipe": { + "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1952", + "deps": [ + "cl-lib", + "f", + "s" + ] + }, + "pkg-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/pkg-info.el.git", + "sha256": "a6d32a57e310aa3ab9adbf5bc6fb0be052c3accc2625b33180467554820e1a3e", + "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.643", + "deps": [ + "epl" + ] + }, + "dollaro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/dollaro.git", + "sha256": "b2bd1e5db291d4bec8108b797649338deea3cfe68f8aaf068ba8b557bdd5d8f7", + "rev": "500127f0172ac7a1eec627e026b59136580a74ac" + }, + "recipe": { + "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.702", + "deps": [ + "s" + ] + }, + "rustfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fbergroth/emacs-rustfmt.git", + "sha256": "a9d6dc2ddcff1cc72938c79b60e806228d32bd8a6850481deb4ce2eb22095944", + "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320" + }, + "recipe": { + "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1311", + "deps": [ + "emacs" + ] + }, + "helm-css-scss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-css-scss.git", + "sha256": "f05aa3614eeb1c1e5aacd40c477c230bff77e8f5fdb9d94a6867757da1ba4305", + "rev": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016" + }, + "recipe": { + "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.1925", + "deps": [ + "emacs", + "helm" + ] + }, + "flycheck-protobuf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/flycheck-protobuf.git", + "sha256": "1fe0fda77559bcea3d4572c3e3d299ba2bc6eca9e8105fe5b71af1c9d8a90fed", + "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da" + }, + "recipe": { + "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.512", + "deps": [ + "protobuf-mode" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-space.git", + "sha256": "be67ad6727d40618d7d065c74ea5613d159b662540de5035466f538425bc96f4", + "rev": "a9c07284d308425deee134c9d88a2d538dd229e6" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.628", + "deps": [ + "evil" + ] + }, + "ipretty": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/ipretty.git", + "sha256": "f430a6686892d57825c2a294871f61757d4d553e040ea94ed8c8fc7b586a7e6a", + "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38" + }, + "recipe": { + "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.20", + "deps": [] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/wcheck-mode.git", + "sha256": "bb800e20b75c79f4226caf92570c5d4c5e616ccacc11e0546734b4bbcc72f095", + "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1205", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/overseer.el.git", + "sha256": "52710482081e8a7a202626dd1a6e4bb72d15de484690e565b18bede3ec4086ac", + "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1202", + "deps": [ + "dash", + "emacs", + "pkg-info" + ] + }, + "pp-c-l": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el", + "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd" + }, + "recipe": { + "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1839", + "deps": [] + }, + "win-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/win-switch.git", + "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.2111", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lein-sync.git", + "sha256": "d9448f7fa709ae1a1428a493cbf7f74cfe0b15e2857b7afd1ea53a38b69cee86", + "rev": "bab53a2361526d63a24cda176d07a1247bf5b399" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140807.1054", + "deps": [ + "cider" + ] + }, + "smtpmail-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/smtpmail-multi.git", + "sha256": "0f5b5b95fc93ca121d88937f70ddd8bb1477d0f8e073f81fa15a8a7365b41766", + "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db" + }, + "recipe": { + "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130921.2242", + "deps": [] + }, + "gitty": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/gitty.git", + "sha256": "00142aa99ec2d24381429241ae7fd2f00bbf92574b9d40da81dc7d2a84d51579", + "rev": "c7c3d622d59531d023b9184d2479316c28045ca2" + }, + "recipe": { + "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.148", + "deps": [] + }, + "dmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-dmenu.git", + "sha256": "227eeeb36d2601b1a3b7311494aa7bb2ab7354088ad1799c8fecc83d9a100400", + "rev": "8026fbb51140fd8afd0ffa859c7bdfc6e27b8575" + }, + "recipe": { + "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.932", + "deps": [ + "cl-lib" + ] + }, + "stem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/stem.git", + "sha256": "d3ae23dc5ea9feba8eda5d0a7b5d091610ffd01914712f511a03f17fdef6ef29", + "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac" + }, + "recipe": { + "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131102.609", + "deps": [] + }, + "erefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", + "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.1943", + "deps": [ + "cl-lib" + ] + }, + "mwe-log-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/mwe-log-commands.git", + "sha256": "832b60f89e9034600a9cf90a867d75e972c23b4d1ac55cb02f26bf43b05fb461", + "rev": "8253f2a311f35b03f72a035744f0cbdd776ea17e" + }, + "recipe": { + "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100703.741", + "deps": [] + }, + "livescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yhisamatsu/livescript-mode.git", + "sha256": "e1521fd17de14375ec52e285d004440f9669b4128d572f26bf3a788dea5e22f5", + "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804" + }, + "recipe": { + "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140612.2321", + "deps": [] + }, + "identica-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", + "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" + }, + "recipe": { + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130204.1653", + "deps": [] + }, + "org-ehtml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/org-ehtml.git", + "sha256": "ea2859eddeb89895b9252b4caba86b891426f6de2f9f09dacec0b3bb0f6827b5", + "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0" + }, + "recipe": { + "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.1858", + "deps": [ + "emacs", + "web-server" + ] + }, + "mentor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skangas/mentor.git", + "sha256": "67d0b598dc2f5e3b322ef2d77a664f62313d646fe04689d5d974d7c0e84df08e", + "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140904.1910", + "deps": [ + "xml-rpc" + ] + }, + "etags-table": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-table.el", + "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf" + }, + "recipe": { + "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.657", + "deps": [] + }, + "dtrt-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jscheid/dtrt-indent.git", + "sha256": "874f4fdc708f2d7c668ddb070592c873b77e9176882870fa616ac3c09a44499d", + "rev": "7f212888fbacc262080ab2740eda673b376c6b7b" + }, + "recipe": { + "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.414", + "deps": [] + }, + "bracketed-paste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/bracketed-paste.el.git", + "sha256": "1ab1391a3494bccded0d48adfd243ac8ff217effe919f23dc9337740ce1f8600", + "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff" + }, + "recipe": { + "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140222.2001", + "deps": [ + "emacs" + ] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-alchemist.git", + "sha256": "f50e8a0995757a766ac85edbd03c97161177391018f21e88d4e5de8f317eeeeb", + "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.156", + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ] + }, + "jvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martintrojer/jvm-mode.el.git", + "sha256": "3cda59672aba3f06674139d5870fcd2c90f9447ffa8f46d8b588c64b6563214d", + "rev": "3355dbaf5b0185aadfbad24160399abb32c5bea0" + }, + "recipe": { + "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.208", + "deps": [ + "dash", + "emacs" + ] + }, + "replace-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/replace-symbol-el.git", + "sha256": "ba83dea6b1519770ce1379a0972f983a2b8bc4d49dc4dac310bc7d8e7fdacd19", + "rev": "6af93ad5a23790c90595c92bf2dcb69cd6d5f820" + }, + "recipe": { + "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1857", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-which-key.git", + "sha256": "a3d2a8668d5629c0fce5c4b5e75b3fef0fce1cd95489568867b6f500532c9a62", + "rev": "14a11c6d69fea066a56cec0ce2702580ef86a9f1" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1429", + "deps": [ + "emacs" + ] + }, + "myanmar-input-methods": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yelinkyaw/emacs-myanmar-input-methods.git", + "sha256": "d91ba0ffae8a519b2461482e7a0c9ad9246dfbce4e95809317ea34f172ca1496", + "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7" + }, + "recipe": { + "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.707", + "deps": [] + }, + "spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130610.249", + "deps": [] + }, + "esxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tali713/esxml.git", + "sha256": "633773cc02d68b35e63b5e8075c860944222a88c5e801c31634e6a26079e2e57", + "rev": "ca09423c3172820ba97dcc68204911d06f55f851" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1328", + "deps": [ + "kv" + ] + }, + "iss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rasmus-toftdahl-olesen/iss-mode.git", + "sha256": "11ffbfe33a1174816061493f24f5fb08341091019f90237f5f9a513ac46ab5e4", + "rev": "3b517aff31529bab33f8d7b562bd17aff0107fd1" + }, + "recipe": { + "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141001.1413", + "deps": [] + }, + "dpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregnewman/dpaste.el.git", + "sha256": "fac7f92fe1bc5641247717584dca381bfcd69106078f4f49f75c2b6e72df4487", + "rev": "d073030e6b7feae84f0e2118e5fc454833848629" + }, + "recipe": { + "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.800", + "deps": [] + }, + "python-cell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisch/python-cell.el.git", + "sha256": "c7d886aef5743507dda99cbbffd11a5e39a55871afb3ce792fb7ff2a9ab4b4e5", + "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6" + }, + "recipe": { + "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.1816", + "deps": [] + }, + "japanese-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/japanese-holidays.git", + "sha256": "fb263cfc6d7d414a3f2a79ef929a0f45419114204e02ea0eb703e36e2f4f95d7", + "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336" + }, + "recipe": { + "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.1937", + "deps": [ + "cl-lib" + ] + }, + "pyimpsort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/pyimpsort.el.git", + "sha256": "088777e80a2f2a3b349dfc5a53dea7826af22a5fe52882f379bde6d03b511b1e", + "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e" + }, + "recipe": { + "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1317", + "deps": [ + "emacs" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/fwb-cmds.git", + "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.1800", + "deps": [] + }, + "thread-dump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nd/thread-dump.el.git", + "sha256": "3769c8db04dacd20250f8209cb7bc7fc32b6f81a4565e6a102c18b9df8ce4c66", + "rev": "1cee07775ac8c13bb52217be6c383562c617542b" + }, + "recipe": { + "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130323.1225", + "deps": [] + }, + "highlight-stages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/highlight-stages.git", + "sha256": "cf0d65a63dca1236e83630bc0ac4ed07cff0cc813d2a89bf7b895536710bd93e", + "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06" + }, + "recipe": { + "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.2257", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/notmuch-labeler.git", + "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.1119", + "deps": [ + "notmuch" + ] + }, + "arjen-grey-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/credmp/arjen-grey-theme.git", + "sha256": "0219d5dee87c02d4c3aa6eacbe41c7500c04cdde85a0761f7226c62df61cdec4", + "rev": "d67a1da021269cb1aeb25ff1aa56249d67371266" + }, + "recipe": { + "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.845", + "deps": [] + }, + "phi-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search.git", + "sha256": "c274136b2d4f52600c9cba34b96ab26d1c8038609fab446190755538e9c07e82", + "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69" + }, + "recipe": { + "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.312", + "deps": [] + }, + "helm-c-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", + "sha256": "ede5088a064804f8a17e00f552b1f604a74377a2a7d862605ddd58403867580b", + "rev": "660e18131a91e08a6a797ae6c17e2067416b93d1" + }, + "recipe": { + "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1705", + "deps": [ + "cl-lib", + "helm-core", + "yasnippet" + ] + }, + "codic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-codic.git", + "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" + }, + "recipe": { + "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.627", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "perl-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/perl-completion.git", + "sha256": "457e9efd79b0572de3f022ebe8f4266e039a80bbb783bf3c9bf497d63bbbfe3b", + "rev": "f2ec91b88a8b7d97d40d6c90a89eaf8e595c2b89" + }, + "recipe": { + "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090528.136", + "deps": [] + }, + "ahungry-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ahungry/color-theme-ahungry.git", + "sha256": "efab0f5bea88e902531cd60a51f35af9738ba200901bea4620072419ff289336", + "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541" + }, + "recipe": { + "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2138", + "deps": [ + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/spaceline.git", + "sha256": "5da81cbeb31e20e7b6b253c4e7283f8c372470850c913135e9a61c5721583c58", + "rev": "f08cecdf58f2bb60715114db155b2062695016d8" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.754", + "deps": [ + "cl-lib", + "dash", + "emacs", + "powerline", + "s" + ] + }, + "auto-complete-clang-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Golevka/emacs-clang-complete-async.git", + "sha256": "f65fc7a8e9b8ace0a1cc5badb9166d65e3ac7366572a10a743187df50c4ef4ea", + "rev": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4" + }, + "recipe": { + "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130526.1014", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gscholar-bibtex.git", + "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1225", + "deps": [] + }, + "elscreen-multi-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wamei/elscreen-multi-term.git", + "sha256": "a1642a0916bfb347cb6838d229f2d38779312f8aa0cb3ba77fe0fdfe56b6d1b2", + "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea" + }, + "recipe": { + "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.2133", + "deps": [ + "elscreen", + "emacs", + "multi-term" + ] + }, + "hive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/hive-el.git", + "sha256": "7da53b652b44baf5c1f3d8f51b6c18714dce3da69088c1f9d747b94793ccf424", + "rev": "11b5172e081ad8079fc78758bef6f306f82ae32b" + }, + "recipe": { + "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131217.912", + "deps": [ + "sql" + ] + }, + "anyins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/anyins.git", + "sha256": "6dc915ed4bad45619ff769db368b7afe5f050559ab94103f34e90c666e597284", + "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.441", + "deps": [] + }, + "d-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", + "sha256": "922dd6bbd35a57917a44a281d6e2e9b0b518e02c0b6baec1f293512aa7cd6b4b", + "rev": "5501b77a1e212e27dd78e8c0e86424064b439cbb" + }, + "recipe": { + "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/emacs-google-this.git", + "sha256": "0f195d4be81c55f733b907225cc5ea233ab63124c1935f875f0b13106d52641f", + "rev": "5274167553071fadaebe9c2d3b061470a684ae22" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.440", + "deps": [ + "emacs" + ] + }, + "goto-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/goto-chg.el", + "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij" + }, + "recipe": { + "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.859", + "deps": [] + }, + "iterator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/iterator.git", + "sha256": "d7f91503c7e8326f7eaab1457baf350041ed4671c296e35b315d80430e7eea21", + "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190" + }, + "recipe": { + "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150321.2325", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/segv/jss.git", + "sha256": "7efe1018838a890736211cbee301e1ef7fd157987078afc7ac7dbb91700d13b4", + "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc" + }, + "recipe": { + "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.923", + "deps": [ + "emacs", + "js2-mode", + "websocket" + ] + }, + "dired-fdclone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/dired-fdclone.el.git", + "sha256": "482d03f29cd197cbc39fcc23cf5859524cd657614176136c2966fbfcd794d8d2", + "rev": "e9bf4f16248cb5d187a323b7887d236a4a203c59" + }, + "recipe": { + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.332", + "deps": [] + }, + "package-safe-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/package-safe-delete.git", + "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" + }, + "recipe": { + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.1007", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/emacsc.git", + "sha256": "475b2879d5622980b1aee0f1e3b7099683a008aed48186eb191c1e201f0219e7", + "rev": "02325c640232ee184314eb58d0051f365f7f085c" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.457", + "deps": [] + }, + "react-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnmastro/react-snippets.el.git", + "sha256": "47714fc4ab7f9e7fb25df793ee8185593159df7daca3f6723fedfb33148e4002", + "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f" + }, + "recipe": { + "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1740", + "deps": [ + "yasnippet" + ] + }, + "dirtree-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.304", + "deps": [ + "dirtree", + "prosjekt" + ] + }, + "indicators": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/indicators.el.git", + "sha256": "3b3234f1673a31fc2d68e36f23447cecc363e6401cb046d94850cafd3f325cff", + "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4" + }, + "recipe": { + "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130217.1605", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/fuzzy-el.git", + "sha256": "3bda40b1e3394a5503bada130415c37b8cdf8a24da89fa5e398713130443f767", + "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2237", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hlissner/evil-snipe.git", + "sha256": "d89c9e89e1b77995461267ffccf9210b4491ddf7d5107befd072b07bec45d347", + "rev": "71f0f7df2300be390227e3f78619630c32bddbe9" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.1602", + "deps": [ + "evil" + ] + }, + "jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.905", + "deps": [ + "auto-complete", + "emacs", + "jedi-core" + ] + }, + "god-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/god-mode.git", + "sha256": "95e9db820509f0db8218e83758b1e1ab6ef508357bc32aee278cae901ba2fc35", + "rev": "6cf0807b6555eb6fcf8387a4e3b667071ef38964" + }, + "recipe": { + "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1125", + "deps": [] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", + "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.130", + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "emacs", + "f", + "s", + "shut-up" + ] + }, + "firebelly-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/startling/firebelly.git", + "sha256": "dd18169683a043210686adba32b08e5f013e143ce410f76d3b635a0abc6a5209", + "rev": "5fd621102c676196319579b168da1476e8552d00" + }, + "recipe": { + "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.355", + "deps": [ + "cl-lib" + ] + }, + "wc-goal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/wc-goal-mode.git", + "sha256": "8c2f47fe65cd83a69563365253b44098d7dd92d87de8a42c70d2bbce3624f25c", + "rev": "bf21ab9c5a449bcc20dd207a4915dcec218d2699" + }, + "recipe": { + "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140829.859", + "deps": [] + }, + "toml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/emacs-toml.git", + "sha256": "c0365a4c780e5534b612feea0b2509b07dbcf0c937e40a77b40665cc78d0cc4c", + "rev": "9633a6872928e737a2335aae1065768b23d8c3b3" + }, + "recipe": { + "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130903.755", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110806.158", + "deps": [] + }, + "find-things-fast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eglaysher/find-things-fast.git", + "sha256": "63bd72bb924951dbf219602a096d0de844513eaf753fcede7cb96e9a2cc91520", + "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03" + }, + "recipe": { + "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1726", + "deps": [] + }, + "github-issues": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inkel/github-issues.el.git", + "sha256": "885f0a9daa6bf051ad10978a8224ccee507a6b07bdddf0eaecd99aac6b0d871b", + "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1" + }, + "recipe": { + "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120425.1735", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/window-numbering.el.git", + "sha256": "5621d032ff17f622be1f924a80bd72b88134dbbfeb9032f11ff2b314b60be5c7", + "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150228.1447", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/company-math.git", + "sha256": "31056c3b2cb66d57636124d8451a09c92fc084e49afc885199ecd01b0a4aaf5f", + "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1837", + "deps": [ + "company", + "math-symbol-lists" + ] + }, + "window-number": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window-number.el", + "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6" + }, + "recipe": { + "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140123.2102", + "deps": [] + }, + "creole": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/elwikicreole.git", + "sha256": "744ab3f2825ddbd921c577fd889471bb1e15bc23dbe966b4a3fb92adf72a06fe", + "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53" + }, + "recipe": { + "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140924.1000", + "deps": [ + "kv", + "noflet" + ] + }, + "minibuffer-complete-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-complete-cycle.git", + "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" + }, + "recipe": { + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130813.1145", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imgix/imgix-emacs.git", + "sha256": "946ff48d3242604a2db010afe7dd0484ef49f269b3f70d402d19c6d676b857b7", + "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1532", + "deps": [ + "cl-lib", + "dash", + "ht", + "json", + "s" + ] + }, + "anything-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/anything-project.git", + "sha256": "f7023c00604968accb5c655f392a1b58662572e3560e1de07d13638403884799", + "rev": "9f6f04bc1911474e97e99faf52e204cf159add83" + }, + "recipe": { + "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.427", + "deps": [ + "anything", + "imakado" + ] + }, + "powerline-evil": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raugturi/powerline-evil.git", + "sha256": "849e55c8921bbc0527bd044f36fa3eb2a632a021e71d7a7433b89b7547876db0", + "rev": "98b3a102b6dba6632aa0755a7257300c9b164309" + }, + "recipe": { + "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.910", + "deps": [ + "evil", + "powerline" + ] + }, + "bog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/bog.git", + "sha256": "419e95df5e4d96bfc7add15c7c10aab2f2692f88594b19cbeefa3dee0a77e379", + "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45" + }, + "recipe": { + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1730", + "deps": [ + "cl-lib" + ] + }, + "pydoc-info": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jonwaltman/pydoc-info", + "sha256": "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh", + "rev": "151d877c8fb8" + }, + "recipe": { + "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110301.234", + "deps": [] + }, + "evil-indent-textobject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-indent-textobject.git", + "sha256": "bfb60d9f510fa0fbc7e6efce2d3fdec28f8d17a3cdb5564d813b26c2ac8ef059", + "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7" + }, + "recipe": { + "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130831.1719", + "deps": [ + "evil" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/fixmee.git", + "sha256": "2d5794d02e16cb334f190daabcc466d62fdebff9b2722a65ffd2ee56605946ba", + "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.755", + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ] + }, + "haxe-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpsecher/haxe-mode", + "sha256": "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw", + "rev": "850f29d9f70e" + }, + "recipe": { + "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.342", + "deps": [] + }, + "atom-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/whitlockjc/atom-dark-theme-emacs.git", + "sha256": "c490160fc5ed13e6ec92030bbcc430b06830508caae03d4db684eedad0fed749", + "rev": "b6963e486d27eae7cd472736c106c7079c2a3d3c" + }, + "recipe": { + "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.135", + "deps": [] + }, + "ox-tiddly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org8-wikiexporters.git", + "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.440", + "deps": [ + "cl-lib", + "org" + ] + }, + "thesaurus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thesaurus.el", + "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq" + }, + "recipe": { + "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121125.1337", + "deps": [] + }, + "semi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/semi.git", + "sha256": "e37ff0b96d681304a8e253da6b80faf56f54b5ab1349b801c35717b5c4943ce8", + "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65" + }, + "recipe": { + "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.619", + "deps": [ + "flim" + ] + }, + "boron-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-boron-theme.git", + "sha256": "0baa3c31856713a4602cbcc2cad0aa5cffaec5a923cac68b285a6853622edabf", + "rev": "ea5873139424d6ca013b915876daf0399432015b" + }, + "recipe": { + "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150117.1152", + "deps": [ + "emacs" + ] + }, + "relax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/relax.el.git", + "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.1634", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", + "sha256": "9944a0ac72273338f13b9366571f1ed9d44d26966a3b6a71b2c5e85c9451b7d2", + "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.149", + "deps": [] + }, + "jenkins-watch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataylor284/jenkins-watch.git", + "sha256": "c6e0b9f51d82611daf3213cc06ca3ebd88ae4e039a6d58633ba2ac23d1865e49", + "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577" + }, + "recipe": { + "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121004.1826", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/git.el.git", + "sha256": "ce3770100e0fbcc11da6f9a1ec63091ff9c9dd78bbe490707ceb9889a227d1b8", + "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.441", + "deps": [ + "dash", + "f", + "s" + ] + }, + "operate-on-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/operate-on-number.el.git", + "sha256": "c94969e74b1a015fd277c86bbe803b912052fb2b6dd754e28c5f806335628347", + "rev": "ceb3be565a29326c1098244fac0c50606723a56e" + }, + "recipe": { + "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.123", + "deps": [] + }, + "easy-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpitclaudel/easy-escape.git", + "sha256": "6701d633daa0db07450adcac3ea89b90ce7cfec320ed6d91f00f48587b947088", + "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776" + }, + "recipe": { + "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.2133", + "deps": [] + }, + "thumb-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el", + "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i" + }, + "recipe": { + "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1226", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "browse-url-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/browse-url-dwim.git", + "sha256": "b0470ced3378a3653528a5972bd1e9c463fa402ee842ba708e55c9b45f624f06", + "rev": "3d611dbb167c286109ac53995ad68286d87aafb9" + }, + "recipe": { + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140731.1422", + "deps": [ + "string-utils" + ] + }, + "bats-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/bats-mode.git", + "sha256": "4e163eae2d989af754797e05878b6eaa416a9794768d30bdc568edaeb9c5c9bb", + "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638" + }, + "recipe": { + "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.901", + "deps": [] + }, + "requirejs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ricardmo/requirejs-mode.git", + "sha256": "9b45b72a582b5b1404a1774e67da1f5d3ca5fc0b950b5d675180ed8a70519b0b", + "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92" + }, + "recipe": { + "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130215.1504", + "deps": [] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smihica/emmet.git", + "sha256": "992bc872ca2348f479b37c0045f8124270e2df3c54e9b0fe73ea856334210f35", + "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.938", + "deps": [] + }, + "trident-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnmastro/trident-mode.el.git", + "sha256": "58bce0e75c0ebd7825b50c55c454059842502012568d51d90cd7fa085a8f7bcc", + "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9" + }, + "recipe": { + "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130726.1407", + "deps": [ + "dash", + "emacs", + "skewer-mode", + "slime" + ] + }, + "gnu-apl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lokedhs/gnu-apl-mode.git", + "sha256": "19ff62260107a43de03223138a6df922ada50608c28c67ab8c358808e00b8872", + "rev": "c34a231250622519a606ac5013c67b7307efa645" + }, + "recipe": { + "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2335", + "deps": [ + "emacs" + ] + }, + "edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-edbi.git", + "sha256": "7a645752aeeffde178aab432d99312e39e00f2ccd1384d5b8b88b0cc4a0bbef4", + "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140920.235", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/markdown-toc.git", + "sha256": "705ad7e1d67d3f35ed290da3de720f51e40ed5c556aaaad642fb7b202044ecd5", + "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1114", + "deps": [ + "dash", + "markdown-mode", + "s" + ] + }, + "sly-named-readtables": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-named-readtables.git", + "sha256": "5790d3861e42e76d900c1cd69799f54676e547e84c2c8fce6c857dde04cc7bca", + "rev": "df4ed79064cf85275804e201899b677bef4ab3f5" + }, + "recipe": { + "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.1016", + "deps": [ + "sly" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ac-html.git", + "sha256": "dca39461ecadc2406281152b88cf9f79fb48c86527c989e2ec2dd79aef375aba", + "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.231", + "deps": [ + "auto-complete", + "dash", + "f", + "s" + ] + }, + "rails-log-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/rails-log-mode.git", + "sha256": "e5a3e165e02aad20bc5d4d9dbadba33399fbe81ecf39dc2465379acf5004ed43", + "rev": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446" + }, + "recipe": { + "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.2325", + "deps": [] + }, + "swiper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", + "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + }, + "recipe": { + "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.241", + "deps": [ + "emacs" + ] + }, + "simple-call-tree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/simple-call-tree.git", + "sha256": "52d67825f4bd91ab47dee92e1c5ea677e811306da84a2643c68b06a902637425", + "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e" + }, + "recipe": { + "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1625", + "deps": [] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", + "sha256": "59a14ba30e067d74376fc1392edf36c176932e56814778f3390759187b52f76e", + "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.706", + "deps": [] + }, + "elm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcollard/elm-mode.git", + "sha256": "28396168e91a980f9ccb68d5cbf9877743164c7a80ec487cf87bd530f02d468e", + "rev": "e0318ebb288be638f4a98cfd56a516b20ed5e723" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1250", + "deps": [ + "emacs", + "f", + "let-alist", + "s" + ] + }, + "axiom-environment": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pdo/axiom-environment", + "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli", + "rev": "d7ea57a27527" + }, + "recipe": { + "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1509", + "deps": [ + "emacs" + ] + }, + "speed-type": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/speed-type.git", + "sha256": "33391e361943034df19b88097fc8ccc6180f7e2c999ea026aa9c348918a80f26", + "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758" + }, + "recipe": { + "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.2234", + "deps": [ + "cl-lib" + ] + }, + "el-pocket": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pterygota/el-pocket.git", + "sha256": "677352f6f5522257154a6d70135620de6d50730067c84da0c981c5c05884d3c7", + "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310" + }, + "recipe": { + "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1728", + "deps": [ + "emacs", + "web" + ] + }, + "helm-descbinds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-descbinds.git", + "sha256": "f7ee2610b7d887961267184f1532445d94ecb7abe9e2442660d0d6b5e299c7a2", + "rev": "90f4597dad00230a06e5ce40e34c843a705bebd7" + }, + "recipe": { + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1247", + "deps": [ + "helm" + ] + }, + "popup-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/popup-switcher.git", + "sha256": "e5103de3e70c9ccb9b57a689a3b70dcc46fa292d9cacdf0f2d5e0ac07f038ebd", + "rev": "a858f680898ef9631c21eebbe5cb527622179305" + }, + "recipe": { + "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.908", + "deps": [ + "cl-lib", + "popup" + ] + }, + "edit-color-stamp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/edit-color-stamp.git", + "sha256": "598ced40af165593e0b01bc643ba8e79458716fd5788b0f0c14b54421c29696e", + "rev": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3" + }, + "recipe": { + "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130529.1233", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "flycheck-typescript-tslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Simplify/flycheck-typescript-tslint.git", + "sha256": "15b0bf370cd8481fd2bd21986dbb946c0171c05e848de15aa1f2da501143e045", + "rev": "79d33ba8fbc23df604c239cfc32c21e07339faa1" + }, + "recipe": { + "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1647", + "deps": [ + "emacs", + "flycheck" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/wispjs-mode.git", + "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.1632", + "deps": [ + "clojure-mode" + ] + }, + "org-wunderlist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-wunderlist.el.git", + "sha256": "1510b08b43c7aaae7eb12d3ee9a43c2b1e42b579881aae9378a16aa41f1bdd78", + "rev": "b89633fcfd74e83dd8a5d81619244a666a45715c" + }, + "recipe": { + "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.2113", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred", + "s" + ] + }, + "discover-js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/discover-js2-refactor.git", + "sha256": "7667d1181f050d17df9d43690cf09b0f644375fc5013bf9976918eaf15b1cbee", + "rev": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba" + }, + "recipe": { + "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.952", + "deps": [ + "discover", + "js2-refactor" + ] + }, + "glsl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimhourihan/glsl-mode.git", + "sha256": "12d922967a42dd00efc6a1fda5651b57c1d067aa1f01caf2afc0b6f51d6bd42c", + "rev": "6bd83d429307d682fef0efd46c78b3e055e2caf1" + }, + "recipe": { + "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.1033", + "deps": [] + }, + "py-import-check": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psibi/emacs-py-import-check.git", + "sha256": "5b03a1176c5b51d55d35faae8c3a88da03c351e9aed3f4104b963f62d8822690", + "rev": "9787f87745a4234cd9bed711860b707902bc8ae4" + }, + "recipe": { + "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130802.611", + "deps": [] + }, + "neotree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaypei/emacs-neotree.git", + "sha256": "c966a868628038f4e2e6282b58ddf5ce46d427cf3a0690e26dd580096a24effd", + "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.807", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-topgit.git", + "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.1231", + "deps": [ + "emacs", + "magit" + ] + }, + "gildas-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smaret/gildas-mode.git", + "sha256": "bc43c28ef1e20659e24864a7c43d04ab8950756e26e22785881f90f4c2bd48d9", + "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a" + }, + "recipe": { + "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.1701", + "deps": [ + "emacs", + "polymode" + ] + }, + "express": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/express.git", + "sha256": "88c2f02f936f65ac74535fff4061d562b7a7fcd6266b8261fd1636a2e076bd73", + "rev": "93dae7377eace4a5413ba99aecb6f26f90798725" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "string-utils" + ] + }, + "easy-lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/easy-lentic.git", + "sha256": "967d6249e404345f51a6e85ff38a9d983430c045fe397637f4b341ffec7f2f9a", + "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe" + }, + "recipe": { + "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2116", + "deps": [ + "cl-lib", + "lentic" + ] + }, + "ox-twiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org8-wikiexporters.git", + "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.440", + "deps": [ + "cl-lib", + "org" + ] + }, + "company-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/company-web.git", + "sha256": "ed9aa143219acacfec9042d989c57f261c2a83067a58567904663dd161bb3a7c", + "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365" + }, + "recipe": { + "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1546", + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ] + }, + "yandex-weather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abstractionlayer/yandex-weather.el.git", + "sha256": "c38d52d17218bc65aaa47d9c0e49b0ecb894ead99ffa7e81ed49af14226ed59f", + "rev": "41cb91bd1e5aa0e4a317a99e88742631f487ab37" + }, + "recipe": { + "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.614", + "deps": [] + }, + "howdoi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/emacs-howdoi.git", + "sha256": "688b978da5d3c52a7da3b919131bdb072bf999d8e97f03397251e15e114b5207", + "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f" + }, + "recipe": { + "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150203.1843", + "deps": [] + }, + "helm-recoll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-recoll.git", + "sha256": "e647f286c979d6fa56f6defb89d683c7c7017a764b2a34e66b350859643ec87c", + "rev": "e3e010d084697137d0b3cb802b19ab34c488094b" + }, + "recipe": { + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.658", + "deps": [ + "helm" + ] + }, + "anything-milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/anything-milkode.git", + "sha256": "671b2b07271a95e1554015bce542f698fe6fafe02528c04f0ddd0dca387e86cb", + "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9" + }, + "recipe": { + "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140518.943", + "deps": [ + "anything", + "milkode" + ] + }, + "sr-speedbar": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el", + "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i" + }, + "recipe": { + "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1151", + "deps": [] + }, + "emr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/emacs-refactor.git", + "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140817.1804", + "deps": [ + "cl-lib", + "dash", + "emacs", + "list-utils", + "paredit", + "popup", + "projectile", + "redshank", + "s" + ] + }, + "emacs-eclim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/emacs-eclim.git", + "sha256": "657e809f6b155567373a87eb78cb91716b89162974a782a47e9a5a9e8cd90a61", + "rev": "79d6e3a70e99d2e47fdaaba7a030300f6a010b99" + }, + "recipe": { + "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.420", + "deps": [ + "dash", + "json", + "popup", + "s" + ] + }, + "pillar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pillar-markup/pillar-mode.git", + "sha256": "6eab37afc90f9912f5c1e16f1d25efd8625e54037421cc7e3df5bfbdc3e7aaf0", + "rev": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909" + }, + "recipe": { + "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141112.1211", + "deps": [ + "makey" + ] + }, + "esqlite-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", + "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.250", + "deps": [ + "esqlite", + "helm" + ] + }, + "docean": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/docean.el.git", + "sha256": "9a50bd4c7ae346f165ac63c9739c27d142484b65734c8b082aa8f7cb852e5f17", + "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1" + }, + "recipe": { + "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1318", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "noflet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-noflet.git", + "sha256": "ee7a31fa81c8c65cc470c9a1755ec4c1ae6481cc3645e6be24c2a2e8aa7de03c", + "rev": "7ae84dc3257637af7334101456dafe1759c6b68a" + }, + "recipe": { + "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.854", + "deps": [] + }, + "typo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/typoel.git", + "sha256": "73cf8b09a6fced7f76c79c7c3bf39fb88391de67c916bd9a14fd75dc84a53938", + "rev": "a6b9e0400706aeda99fe29012ff017bef300f580" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.843", + "deps": [] + }, + "org-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanre/org-jekyll.git", + "sha256": "f57f74c9cfb9205f3c0dc9b160d37e95bad0748499d3022bd8e12069816160dd", + "rev": "66300a1a6676ab168663178e7a7c954541a39992" + }, + "recipe": { + "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.439", + "deps": [ + "org" + ] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/foreman-mode.git", + "sha256": "9d067c88048997a6a871067253f0a752452f4ad99a4cbefd0529775020b29803", + "rev": "9496018b0c202442248d4983ec5345501ea18a84" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.356", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "timesheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmarble/timesheet.el.git", + "sha256": "e84007a97898e46267ffc384c5aa22c6399d688b1b65c4e7bb9416a9aee35ec2", + "rev": "6aba2bac0be92b38c245135cebe5bf1f0d8406ab" + }, + "recipe": { + "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.804", + "deps": [ + "auctex", + "org", + "s" + ] + }, + "crab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/puffnfresh/crab-emacs.git", + "sha256": "d42e872fc5807beb38eb022a0a057928caeb7cb926b27319390a75f848776778", + "rev": "6d66844856c1864157cef3dea9332c319b05d7d5" + }, + "recipe": { + "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.2337", + "deps": [ + "json", + "websocket" + ] + }, + "slideview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-slideview.git", + "sha256": "a830e4990b729151df2ad1cbdf7e423cf4c9b694bba4d43225164802a1bd9b2d", + "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c" + }, + "recipe": { + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.1740", + "deps": [ + "cl-lib" + ] + }, + "latest-clojure-libraries": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdamClements/latest-clojure-libraries.git", + "sha256": "933c43913f70022028cb0037faf6d0eded961a8d14666c0e5f1d343de66b0bb3", + "rev": "6db8709a746194800a3ffea3f906e3c9f5d4ca22" + }, + "recipe": { + "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.817", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/direx-el.git", + "sha256": "d962d9a09a8fe55d53d55f37b8d81bf58efef2952aa28ad1dd748f474d1d3a56", + "rev": "9497231cf50767987494718db073731b05a4f970" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1806", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/yaxception.git", + "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.852", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-mode.git", + "sha256": "d8f5a57a1210813dc6c03030f0f69c36407b0464468720eca76bf31c47068c78", + "rev": "0fe7688a7e5a765a0cc4de74f3fe336a383fe1e1" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1550", + "deps": [ + "cl-lib" + ] + }, + "icicles": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icicles.el", + "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" + }, + "recipe": { + "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1751", + "deps": [] + }, + "linum-relative": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/linum-relative.git", + "sha256": "32cbf3c1037228249443feddff6465350f7888e317ac4b94e1ecaffa96a47b28", + "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1956", + "deps": [] + }, + "fingers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/fingers.el.git", + "sha256": "2f7bd242aae7a75bf7ee2075ae24c7dec87526341ff8915f24e78afd7d674fee", + "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914" + }, + "recipe": { + "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150809.1916", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-jslint.git", + "sha256": "71a81a3421b67f7e80af7bb10e321120aae28f059dfa58f59e10dad51aca60cc", + "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130613.402", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-nim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ALSchwalm/flycheck-nim.git", + "sha256": "2fc71cbc6e6f9660ab2ff2a2f21696a3d90a516a8df2917643a0c24068201a1a", + "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c" + }, + "recipe": { + "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.1847", + "deps": [ + "dash", + "flycheck" + ] + }, + "org-bullets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/org-bullets.git", + "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140918.1337", + "deps": [] + }, + "org-beautify-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonnay/emagicians-starter-kit.git", + "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" + }, + "recipe": { + "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.1156", + "deps": [] + }, + "bitly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/bitly-el.git", + "sha256": "abe6a67879075939fe10c63b57d30e15ff596075a9f2a8da1d192fb658827425", + "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664" + }, + "recipe": { + "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1048", + "deps": [] + }, + "scala-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scala/scala-tool-support.git", + "sha256": "04b38efd9f5cb0899df7bc2e24c2dc15db015240076e9f7d3cbb273fabb94015", + "rev": "0a217bc446b970116c67c933a747d5f57b853d34" + }, + "recipe": { + "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.1451", + "deps": [] + }, + "wimpy-del": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el", + "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z" + }, + "recipe": { + "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1909", + "deps": [] + }, + "help+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help+.el", + "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" + }, + "recipe": { + "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1143", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/org-projectile.git", + "sha256": "78a66404464246dc2d2163245f08eaeb657e098ba62fc562f918a6bec820d7b8", + "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.2356", + "deps": [ + "dash", + "projectile" + ] + }, + "doremi-mac": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el", + "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx" + }, + "recipe": { + "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1553", + "deps": [] + }, + "magit-rockstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/magit-rockstar.git", + "sha256": "d2246288dd71e9e1bf5f8cd131d025981658301ec6d66da7d4cfa3006fea2e5d", + "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4" + }, + "recipe": { + "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.928", + "deps": [ + "dash", + "magit" + ] + }, + "list-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/list-environment.el.git", + "sha256": "d6ce67343753c11650fd3ecaf99f2206fcf380e08f3d23e600fe8831ee7ea1c8", + "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b" + }, + "recipe": { + "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.2218", + "deps": [] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/flyspell-popup.git", + "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.1003", + "deps": [ + "popup" + ] + }, + "nameframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.2319", + "deps": [] + }, + "pyvenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/pyvenv.git", + "sha256": "c4b1285322289b33bc661a797251e52e1b252208fabb3d7d75e821cc4029cc6a", + "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1719", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bad-ptr/persp-mode.el.git", + "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.207", + "deps": [] + }, + "replace-from-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", + "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" + }, + "recipe": { + "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150406.1930", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "380414f580ea0f96f31195609826e74c91a1d2a8d488039e2d33f0df657302c6", + "rev": "cbba6bbf959fdb739f8500c5adb2194b3d61f4d9" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.543", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "what-the-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielbarbarito/what-the-commit.el.git", + "sha256": "e6bc110ddbb238972e387a259cc02d240a46ca5ba2e479abdf18e3bb55138613", + "rev": "868c80a1b8614bcbd2225cd0290142c72f2a7956" + }, + "recipe": { + "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.816", + "deps": [] + }, + "xterm-keybinder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/xterm-keybinder-el.git", + "sha256": "afc218e00fd75909a93465d04059c7a1c81479b8b762c95311f76148dfab91cb", + "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7" + }, + "recipe": { + "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.101", + "deps": [ + "cl-lib", + "emacs", + "let-alist" + ] + }, + "mic-paren": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mic-paren.el", + "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5" + }, + "recipe": { + "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140714.219", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", + "rev": "b99615090efa622cba280fff0615dc7f269877fd" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.217", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "ssh-agency": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/ssh-agency.git", + "sha256": "e8dcb13ee83ef6f90d4c6ca9b5a02981c48573f7ff95ace26d87f8ca0d092c45", + "rev": "528122b182e9e8ade2361720ea05a5594f926c18" + }, + "recipe": { + "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1754", + "deps": [ + "dash", + "emacs" + ] + }, + "bf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/bf-mode.git", + "sha256": "d6a421ab57af13717637e358ed5d70b7a62d7fbb0f49922b93d6138019a86209", + "rev": "7cc4d09aed64d9db6be95646f5f5067de68f8895" + }, + "recipe": { + "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130403.942", + "deps": [] + }, + "wonderland": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", + "sha256": "9329fb320b8086b5ed13bc4e093bcbed151c20b743dd38f96384f0a220624c41", + "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130912.2019", + "deps": [ + "dash", + "dash-functional", + "emacs", + "multi" + ] + }, + "plsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-plsense.git", + "sha256": "e75dfda39ae5d77d6143388c28f6846757af0998a17fa694ce1b2b6d4a3953f8", + "rev": "d50f9dccc98f42bdb42f1d1c8142246e03879218" + }, + "recipe": { + "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.845", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "synonyms": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/synonyms.el", + "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20" + }, + "recipe": { + "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.38", + "deps": [] + }, + "clipmon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bburns/clipmon.git", + "sha256": "943bf9b94c296094f3de752f86888ff9232167bc9152885caadd395068c30487", + "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43" + }, + "recipe": { + "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150306.1423", + "deps": [] + }, + "datomic-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/datomic-snippets.git", + "sha256": "c055a99cc2c4949609e5f80df144828c6a70bf7e77c9abc4eec3f4e49faac767", + "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8" + }, + "recipe": { + "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.1515", + "deps": [ + "dash", + "s", + "yasnippet" + ] + }, + "save-load-path": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/save-load-path.el", + "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z" + }, + "recipe": { + "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.1352", + "deps": [] + }, + "fic-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fic-mode.el", + "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s" + }, + "recipe": { + "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140421.1122", + "deps": [] + }, + "dionysos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/dionysos.git", + "sha256": "cf3191b71b5d90416cf8681411ac729633b8f7517e4e04f1bb340c8bb6c8d69d", + "rev": "98907a38e98ff1b02171a1ad8df246a291e04750" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.303", + "deps": [ + "alert", + "cl-lib", + "dash", + "libmpdee", + "pkg-info", + "s" + ] + }, + "company-qml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/company-qml.git", + "sha256": "631a1e769a0c6db0ec2d767905b68a4dba69e37d142d9dfc7b274aeb31ef6c1f", + "rev": "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df" + }, + "recipe": { + "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1035", + "deps": [ + "company", + "qml-mode" + ] + }, + "graphene": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene.git", + "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" + }, + "recipe": { + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.140", + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-ubiquitous", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ] + }, + "flycheck-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-package.git", + "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" + }, + "recipe": { + "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.1338", + "deps": [ + "cl-lib", + "emacs", + "flycheck" + ] + }, + "btc-ticker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/niedbalski/emacs-btc-ticker.git", + "sha256": "5ff4da37e7fbd63fc02f36b91799f9556c17b5ef126f701cfab24f5cf8035208", + "rev": "845235b545f070d0812cd1654cbaa4997565824f" + }, + "recipe": { + "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.859", + "deps": [ + "json", + "request" + ] + }, + "org-mac-iCal": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", + "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + }, + "recipe": { + "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.719", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/annotate.el.git", + "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1133", + "deps": [] + }, + "elfeed-goodies": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/algernon/elfeed-goodies.git", + "sha256": "c928ff995deb397ad816aa8d789be0d52d1c6091ded2b63e2e3481f91223c26f", + "rev": "319d88242c78d6073d25f8bb68336603c35904d0" + }, + "recipe": { + "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.801", + "deps": [ + "ace-jump-mode", + "cl-lib", + "elfeed", + "noflet", + "popwin", + "powerline" + ] + }, + "ox-mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomalexander/orgmode-mediawiki.git", + "sha256": "44db117b9d44901c4c778714213019a0ad9d7604de1559a92015aeb2c9727f24", + "rev": "973ebfc673dfb4beeea3d3ce648c917b58dcf879" + }, + "recipe": { + "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.1102", + "deps": [ + "cl-lib", + "s" + ] + }, + "indy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/indy.git", + "sha256": "36505f800f207f9938b44f15508762e345ef01d7e83bb6f5fc5944428854604f", + "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501" + }, + "recipe": { + "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150610.1206", + "deps": [] + }, + "company-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-inf-ruby.git", + "sha256": "35f825e5042a2250a5a9302551c47c2c83773393433c8374fe3827bd7726db3a", + "rev": "fe3e4863bc971fbb81edad447efad5795ead1b17" + }, + "recipe": { + "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.1554", + "deps": [ + "company", + "emacs", + "inf-ruby" + ] + }, + "envdir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/envdir-mode.git", + "sha256": "977b066c32e4f3631ae7fa571711e27a58dc1c0ac92fea92fc66f7b8bf59367d", + "rev": "efbfc45de320d33cd5c52edfa73a399a8b4dc34b" + }, + "recipe": { + "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.955", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "flycheck-ghcmod": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scturtle/flycheck-ghcmod.git", + "sha256": "0d16d421807cbc2b389d73875a53c3d94a19123b547370e3048ca3a3615ac07d", + "rev": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc" + }, + "recipe": { + "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.32", + "deps": [ + "dash", + "flycheck" + ] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/zerodark-theme.git", + "sha256": "f8b05c33fd34b61b0cbcfa88c2607611515afdb5f2a62f4e66a5943418e769f3", + "rev": "98135542bad1fc894c718bc37e611f79434b693a" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.534", + "deps": [] + }, + "py-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bogdanp/py-test.el.git", + "sha256": "eebe48e81368ca6b9f563da6f2e0a47e087de4161b6a5d3208bfe7f10f2069e8", + "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf" + }, + "recipe": { + "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.22", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "py-gnitset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quodlibetor/py-gnitset.git", + "sha256": "48d9038ce9f6f634b5f1d2dceaf07dbfdf380f6c625ed7ae0f9889b401b0b615", + "rev": "471eb99b83eb9f6915d8ca241e9770ddd6244a78" + }, + "recipe": { + "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140224.2210", + "deps": [] + }, + "org-cua-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mlf176f2/org-cua-dwim.el.git", + "sha256": "157a4f785e59188bd17e97bca57637981b63be916d713201b6f082b370dd2e5b", + "rev": "a55d6c7009fc0b22f1110c07de629acc955c85e4" + }, + "recipe": { + "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120202.2334", + "deps": [] + }, + "docbook-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-docbook-snippets.git", + "sha256": "3833570d87ba3147f92a975d5791188aaab0c4598631ca2dcc3a8bd03e1f75d9", + "rev": "b06297fdec039a541aaa6312cb328a11062cfab4" + }, + "recipe": { + "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1125", + "deps": [ + "yasnippet" + ] + }, + "quick-preview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/quick-preview.el.git", + "sha256": "fafa790a570802e364f6c2a950012746567d3d08baa586de5247d47f32303e60", + "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35" + }, + "recipe": { + "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.2339", + "deps": [] + }, + "scad-preview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scad-preview.git", + "sha256": "6cd12f46aaeffef484b62626fbefcb6c451269a73635c92b1248be55c95ba5d7", + "rev": "a444532126bdec3dec9cacf55bc183780decf040" + }, + "recipe": { + "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.824", + "deps": [ + "scad-mode" + ] + }, + "flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "rev": "807d69455585d89804ecef233a9462db7d0524d8" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hardhat.git", + "sha256": "4e072ba44c9922e326cff667399a2ba713ddc729d989689aa49622c3c4d84dbd", + "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140827.2056", + "deps": [ + "ignoramus" + ] + }, + "pinyin-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/pinyin-search.el.git", + "sha256": "2111c7b1e1d8cab01273e15540b2edfeda5214eae0ec8165b70c71e99efad124", + "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b" + }, + "recipe": { + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1955", + "deps": [] + }, + "mouse+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse+.el", + "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" + }, + "recipe": { + "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1052", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/sexp-move.git", + "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.1230", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/mc-extras.el.git", + "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.434", + "deps": [ + "multiple-cursors" + ] + }, + "desktop-registry": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/desktop-registry.git", + "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d", + "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd" + }, + "recipe": { + "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140119.1543", + "deps": [] + }, + "seoul256-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ChrisDavison/seoul256.el.git", + "sha256": "cc53d35307f50bb07f8b05d5346e86b9c46ab65a96b55d6b5146215971687597", + "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf" + }, + "recipe": { + "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1735", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jjasghar/test-kitchen-el.git", + "sha256": "b95a5b0156083fe7ae4c6c6fa20185a0ffdda24cc47e02d83069f687f508b388", + "rev": "3f3647bf437563493331821638f5f5829ae7dd26" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.627", + "deps": [] + }, + "llvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "http://llvm.org/git/llvm", + "sha256": "89edd9b31a3e2ad5ce10a69d36b5b74846e62f193a76331a216c3af4e427e3b2", + "rev": "a4527729ac58c83b4411b7bf1adab07cd7c3b050" + }, + "recipe": { + "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.844", + "deps": [] + }, + "dired-rainbow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.743", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "thrift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apache/thrift.git", + "sha256": "9bc1b3055986de1f3abc17753e5f3bae1f095a6b29f19de905a1f382ce062288", + "rev": "e68ccc23bebde961767e47e6751dcf764b8503f2" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140312.1548", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/better-defaults.git", + "sha256": "6a6f29ba4c980ef1d49165aab86084c2eb123210990451b0e5c2083c08bf7c48", + "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.423", + "deps": [] + }, + "wwtime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ndw/wwtime.git", + "sha256": "197517336742b66c64eb9a57544f8149dab527a9de7d08cba0e7564ce348412d", + "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd" + }, + "recipe": { + "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1010", + "deps": [] + }, + "color-theme-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sellout/emacs-color-theme-solarized.git", + "sha256": "ed0307e52c24c3b433792854a5d9f99fded3af0353d044ed604f3804950e2960", + "rev": "412713a0fcedd520d208a7b783fea03d710bcc61" + }, + "recipe": { + "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1934", + "deps": [ + "color-theme" + ] + }, + "cinspect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inlinestyle/cinspect-mode.git", + "sha256": "1fc71c6a3ecd258988246947b8d08a85e559623c7bb052e81fd8c1dddd4eb0a0", + "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab" + }, + "recipe": { + "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.2133", + "deps": [ + "cl-lib", + "deferred", + "emacs", + "python-environment" + ] + }, + "nu-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pyluyten/emacs-nu.git", + "sha256": "f1bb924a4d9d11bd1b80d86c20053ebadd88eaf37e52bd2da38016a283fc390b", + "rev": "e2b509a9b631e98f6feabdc783c01a6b57d05fc2" + }, + "recipe": { + "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1515", + "deps": [ + "helm", + "undo-tree" + ] + }, + "plsense-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/plsense-direx.git", + "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" + }, + "recipe": { + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.1508", + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ] + }, + "cygwin-mount": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el", + "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw" + }, + "recipe": { + "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131111.1546", + "deps": [] + }, + "aggressive-fill-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/aggressive-fill-paragraph-mode.git", + "sha256": "0de15f4d0f54a6eacdda38660c3e8915a358b157dc52ddbbe5f5eab9480861f5", + "rev": "9af6a31b7c47306fb524bcc8582e0a3738701f25" + }, + "recipe": { + "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.141", + "deps": [ + "dash" + ] + }, + "eshell-git-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-git-prompt.git", + "sha256": "2c01ccf4ec9c355a288254d5fa26245df1a8de3cd9f34537354289b4aaba24ad", + "rev": "1751dd26dab245fd9567ed5eb09ba0b312699eac" + }, + "recipe": { + "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.47", + "deps": [ + "cl-lib", + "dash", + "emacs", + "s" + ] + }, + "stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://repo.or.cz/stgit.git", + "sha256": "c5d424f34ca33d2c19e3888a9dc249d0398203e5199bf2b4bdd9e604390b500b", + "rev": "e4e04764009f749665636c4d11e0cafd9c4971e1" + }, + "recipe": { + "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140213.548", + "deps": [] + }, + "poporg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/QBobWatson/poporg.git", + "sha256": "2020a9a1e20f963303e11e795d95baef9648d459d803d8615641155027de65b9", + "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07" + }, + "recipe": { + "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.2047", + "deps": [] + }, + "cdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.743", + "deps": [] + }, + "kite-mini": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tungd/kite-mini.el.git", + "sha256": "0d754c1e47c72da9fb1784b6c748405e562af8a4308f53bcc408e1cf220c0ed4", + "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20" + }, + "recipe": { + "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.1329", + "deps": [ + "dash", + "websocket" + ] + }, + "ac-html-bootstrap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-bootstrap.git", + "sha256": "47e6824a102b840e82838fc04624abc18ce06b551df23c5a15875b410817d246", + "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" + }, + "recipe": { + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.241", + "deps": [ + "web-completion-data" + ] + }, + "zlc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/emacs-zlc.git", + "sha256": "1de1c90dd509460b3f5f9cf2cb4612055c900036f3d91ff48afe20d7f00a65bd", + "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4" + }, + "recipe": { + "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.2057", + "deps": [] + }, + "julia-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JuliaLang/julia.git", + "sha256": "17603f2155b805b149c85aa4fd575be73d0920b5b757a1a4b6f95c47c4492fd4", + "rev": "bbbd9d2089479c703fa9a000d093896533dd1236" + }, + "recipe": { + "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150912.1000", + "deps": [] + }, + "term+mux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-mux-el.git", + "sha256": "fe9149cb025d7101cab81ce1da32e5b0bf3c64f95aae3e80ada8554f762c5020", + "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" + }, + "recipe": { + "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.149", + "deps": [ + "tab-group", + "term+" + ] + }, + "chinese-remote-input": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-remote-input.git", + "sha256": "9b4103a9a04bbe15d8f99adbf0d3dae67b0be44b71e0cf14201ca762261f611a", + "rev": "d05d0bd116421e6fd19f52e9e576431ee5de0858" + }, + "recipe": { + "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2303", + "deps": [] + }, + "flycheck-status-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/flycheck-status-emoji.git", + "sha256": "4cd4fa46b29aee507cc17b103658405451b603195e6b36de2ad7af45b6fa2fda", + "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67" + }, + "recipe": { + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1314", + "deps": [ + "emacs", + "flycheck", + "let-alist" + ] + }, + "gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "rev": "78deece7f314f9652b50117605e93be9f8c860f4" + }, + "recipe": { + "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.238", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "ivariants": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/emacs-ivariants.git", + "sha256": "51279d7ba4f629acf36ec65d73f950b56723fe60d4848be6e5449c5fd9bfd88a", + "rev": "f9deff2e6fba5647f69771546fb2283136d0fb0d" + }, + "recipe": { + "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140720.2327", + "deps": [ + "emacs", + "ivs-edit" + ] + }, + "highlight-tail": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el", + "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg" + }, + "recipe": { + "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.2041", + "deps": [] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/common-lisp-snippets.git", + "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.547", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tequilasunset/apples-mode.git", + "sha256": "5b27e5269fba70f2f686d387eb7e06ae725bc0c11d3bb84c601c1c553fdaf08f", + "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110120.2218", + "deps": [] + }, + "reveal-in-osx-finder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", + "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" + }, + "recipe": { + "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150802.1157", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arthurnn/minitest-emacs.git", + "sha256": "72f2ff4570cf56c36471c83bc371ed095096e29c4b3929b6e99d6dca83c33069", + "rev": "56bb89ee5e96983ca53021587aba6703b38e5c97" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1331", + "deps": [ + "dash" + ] + }, + "evil-god-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gridaphobe/evil-god-state.git", + "sha256": "50cc662ddc6dab98b06d6ed5b47ea1b4278f7632a958e2f20bd6b8de2d2662b3", + "rev": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40" + }, + "recipe": { + "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.2055", + "deps": [ + "evil", + "god-mode" + ] + }, + "org-mac-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", + "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + }, + "recipe": { + "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.616", + "deps": [] + }, + "occur-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/occur-x.git", + "sha256": "ca51136a35fe9a2013cd0f819c589bf695d194b773bf68e66533748ad4e02cb2", + "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b" + }, + "recipe": { + "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130610.843", + "deps": [] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-matchit.git", + "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.535", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/trevoke/sqlup-mode.el.git", + "sha256": "dadea8b37baaaa84d8f8df71f42b94efda5077442075a73dd2f84fe178f318cb", + "rev": "9cb9662673b7bed891582cfc1080d91a254048f7" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.830", + "deps": [] + }, + "ox-impress-js": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kinjo/org-impress-js.el.git", + "sha256": "824c1e9f2dd05364346170242a97449a4e75675f69aa2513044b78a10042cc7c", + "rev": "91c6d2af6af308ade352a03355c4fb551b238c6b" + }, + "recipe": { + "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.1216", + "deps": [ + "org" + ] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/favadi/flycheck-gometalinter.git", + "sha256": "a03d0e23b43b80f5cdfae95e1ad91de0eb3b2279dbad604e5c69bcacf25e72c3", + "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1128", + "deps": [ + "emacs", + "flycheck" + ] + }, + "hipster-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xzerocode/hipster-theme.git", + "sha256": "8332d6db387093e7e0324974d5e702b6214587d3b4c711317ac4102f3abfac9d", + "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f" + }, + "recipe": { + "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.2205", + "deps": [] + }, + "ir-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/ir-black-theme.el.git", + "sha256": "22061c96562d46800a7be368fcd91eb58a9a99c826e48f1e543b49ae21efc9b3", + "rev": "36e930d107604b5763c80294a6f92aaa02e6c272" + }, + "recipe": { + "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130303.155", + "deps": [] + }, + "password-store": { + "fetch": { + "tag": "fetchgit", + "url": "http://git.zx2c4.com/password-store", + "sha256": "9c3ee0155b9d6b96acacaab8e799b23e92550ef136ffa2c07880029af3061733", + "rev": "bffca1ee21a38f1e808fa83e5df2fcf0f808cb9f" + }, + "recipe": { + "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1649", + "deps": [ + "f", + "s" + ] + }, + "subr+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/subr+.el", + "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk" + }, + "recipe": { + "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1855", + "deps": [] + }, + "memento": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ehartc/memento.git", + "sha256": "18d426d0f1fede3b1d1bd5cba3666386729e17513ca2e54131eb9a784757585e", + "rev": "35733b79101f694346792a57df686cbffe64bd79" + }, + "recipe": { + "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.539", + "deps": [] + }, + "django-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrzejsliwa/django-theme.el.git", + "sha256": "76b21c549174a22a1a407dcbfc93625de92b1169a013f3ad7f56e6340eb61d21", + "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0" + }, + "recipe": { + "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131022.402", + "deps": [] + }, + "vimrc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mcandre/vimrc-mode.git", + "sha256": "e06249edfe8e47a8621ab6f7a39dc5a127c7f937d904ab105668b35fa0d00e00", + "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28" + }, + "recipe": { + "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.1113", + "deps": [] + }, + "highlight-unique-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hitode909/emacs-highlight-unique-symbol.git", + "sha256": "5dc24c0a561956fece5d8adf262d15185104685966d37ba58d089b7f09150c42", + "rev": "4141bf86a94e30d94d9af9c29d40b16886226e1c" + }, + "recipe": { + "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130612.42", + "deps": [ + "deferred" + ] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/extend-dnd.git", + "sha256": "cc3d9ed7b44fd772e63e5f5b123a53704958a8953571bf61e03d2dc456b71ce9", + "rev": "80c966c93b82c9bb5c6225a432557c39144fc602" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1250", + "deps": [] + }, + "bts-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-bts-github.git", + "sha256": "e9b5b44e3a25b83ec7d52ffb88068d73974dee2a2026e5ac4c937c19821cd9e9", + "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc" + }, + "recipe": { + "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.227", + "deps": [ + "bts", + "gh" + ] + }, + "ac-haskell-process": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-haskell-process.git", + "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" + }, + "recipe": { + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.902", + "deps": [ + "auto-complete", + "haskell-mode" + ] + }, + "erc-view-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Niluge-KiWi/erc-view-log.git", + "sha256": "5ed4b8918ee45433d71aab6a747a365b05e29e3470145f64223f4327a016f12f", + "rev": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266" + }, + "recipe": { + "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.1439", + "deps": [] + }, + "jst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/jst-mode.git", + "sha256": "2272037c73c79a5c056424c81f5d2ba66c2c7a71c30bae95d370ba0ef70566ca", + "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c" + }, + "recipe": { + "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.638", + "deps": [ + "dash", + "emacs", + "f", + "pcache", + "s" + ] + }, + "flx-ido": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "rev": "807d69455585d89804ecef233a9462db7d0524d8" + }, + "recipe": { + "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib", + "flx" + ] + }, + "helm-open-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-open-github.git", + "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + }, + "recipe": { + "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.131", + "deps": [ + "cl-lib", + "gh", + "helm-core" + ] + }, + "xresources-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CQQL/xresources-theme.git", + "sha256": "e2328c36ea9cf46c499b7d4093262ee6cdc9d8c61029ce2150846bfd9213e68d", + "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f" + }, + "recipe": { + "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1117", + "deps": [] + }, + "enclose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/enclose.git", + "sha256": "e2905d2664b590c6ab87bf2514bba08d1a9a3b28919e6779a23d9ba40cd0dd7a", + "rev": "2747653e84af39017f503064bc66ed1812a77259" + }, + "recipe": { + "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121008.1114", + "deps": [] + }, + "magic-latex-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/magic-latex-buffer.git", + "sha256": "e3abaf6be2ac571ffe9786cb49dd0809454af5a8c59b7f698e53c78b26db5880", + "rev": "9039acc76000d3c11444fc8782343344247f6fb3" + }, + "recipe": { + "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.202", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "nvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/nvm.el.git", + "sha256": "5590f78dd36c98131fde18b0276759072b227b04b82d95445d318c4c133145f0", + "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8" + }, + "recipe": { + "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.255", + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ] + }, + "organic-green-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/organic-green-theme.git", + "sha256": "4fafa62849c445d9131c7eb85664ff3b1e570633b495f7d38349eff145dd2061", + "rev": "c4d68c3329147aedd066a88b6d5e5266bcd59dcc" + }, + "recipe": { + "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.720", + "deps": [] + }, + "ruby-factory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/ruby-factory-mode.git", + "sha256": "cdb36ac2d8ae2dcf5e9841c817c3582ada413161656870f1a0185979673890f7", + "rev": "134a91c854c06d0d06038005769ce20b2a8177bd" + }, + "recipe": { + "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1023", + "deps": [ + "inflections" + ] + }, + "kv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-kv.git", + "sha256": "b5c83b8605f3f2d27534ed9b49a02185382d9131513965b923c0ef67b4f81464", + "rev": "721148475bce38a70e0b678ba8aa923652e8900e" + }, + "recipe": { + "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140108.934", + "deps": [] + }, + "org-mobile-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/org-mobile-sync.git", + "sha256": "b0d91cefe3436b1e691e26fd80318b063d59c2f724f2bd3a0687ff584fc14234", + "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0" + }, + "recipe": { + "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131118.1316", + "deps": [ + "emacs", + "org" + ] + }, + "websocket": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ahyatt/emacs-websocket.git", + "sha256": "57d91fd04b1523cf7468094d68720c21883f7e86a48a343432884ec59479d8f0", + "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044" + }, + "recipe": { + "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1248", + "deps": [] + }, + "editorconfig-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "cl-lib", + "editorconfig-fnmatch" + ] + }, + "gnomenm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-nm.git", + "sha256": "62c9c2a717e23f5455e73c35ef27e2e14c8eff0dc14a9966aea463ec52dd76eb", + "rev": "9065cda44ffc9e06239b8189a0154d31314c3b4d" + }, + "recipe": { + "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.1418", + "deps": [ + "dash", + "kv", + "s" + ] + }, + "imenu-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/imenu-list.git", + "sha256": "3390b22fee598f5350ff8fa7d5f0dd28b5e42ff1149a09049521260bb6859942", + "rev": "0c725825ad13fca6b1eea2d28c42ffb172fa6de9" + }, + "recipe": { + "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.446", + "deps": [ + "cl-lib" + ] + }, + "minor-mode-hack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el", + "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0" + }, + "recipe": { + "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1420", + "deps": [] + }, + "flymake-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-less.git", + "sha256": "445295365a279e027a5701572db511c40f70218bd17d07937ccce15bc338785d", + "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.138", + "deps": [ + "flymake-easy", + "less-css-mode" + ] + }, + "go-rename": { + "fetch": { + "tag": "fetchgit", + "url": "https://go.googlesource.com/tools", + "sha256": "8db229f334a755903a5cd68980b5345c6899c8201bd15e956436998ea2c4a3ce", + "rev": "1cdaff4a02c554c9fb39dda0b56241c5f0949d91" + }, + "recipe": { + "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.838", + "deps": [ + "go-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/LefterisJP/malinka.git", + "sha256": "73102ae0ffc0e8f9b5150e9081e6686b55cf54a72e13ea6df8ee2be84f1b02fb", + "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.216", + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ] + }, + "aggressive-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/aggressive-indent-mode.git", + "sha256": "79e28034ef883b02be23f969bd538e6d276f0d52eac51b96927156ad6f96982a", + "rev": "e613e7eb5179ae0caf4b96501923276bccd30d83" + }, + "recipe": { + "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1448", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/helm-pt.git", + "sha256": "bebcf54af1626b77190c91255d03a8df04366eff74317df2f2bec9b0fef28c07", + "rev": "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a" + }, + "recipe": { + "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2130", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbauer/subemacs.git", + "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1054", + "deps": [] + }, + "magit-find-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bradleywright/magit-find-file.el.git", + "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + }, + "recipe": { + "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.330", + "deps": [ + "dash", + "magit" + ] + }, + "awk-it": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/awk-it.el", + "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw" + }, + "recipe": { + "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130917.1348", + "deps": [] + }, + "c0-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/catern/c0-mode.git", + "sha256": "5d7617a5b173e3b0412b96e167c12c2d6febcdf56e317c93956dcec948066982", + "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60" + }, + "recipe": { + "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1252", + "deps": [] + }, + "dizzee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidmiller/dizzee.git", + "sha256": "6dd8abcb431cbe60f23146b41e5855dbf2503c17f040d28bbc303ac9872c6d4d", + "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6" + }, + "recipe": { + "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111009.816", + "deps": [] + }, + "mvn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/mvn-el.git", + "sha256": "a6190c980b4dd7eb891313704974921fbbf6d3255b0b09e8b4723d9a880276bf", + "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f" + }, + "recipe": { + "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.129", + "deps": [] + }, + "figlet": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/figlet", + "sha256": "0xnr709vmwbryyfxngxs80gjfxv009ik6wcs4jd74ph5lm6gqh4f", + "rev": "255e7570a3e2" + }, + "recipe": { + "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1037", + "deps": [] + }, + "caroline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xjackk/caroline-theme.git", + "sha256": "4b2e23722cafe6c19290647c3ab86afcbe29f96eec546c5544fb858bd3623292", + "rev": "742bf4ac4521ff9905294812919051cec768b1a0" + }, + "recipe": { + "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1804", + "deps": [ + "emacs" + ] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/ace-isearch.git", + "sha256": "d92fce7a5ce841964a3b107940ec5e88cbfd60325f20c62e5063bb79667f230a", + "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150808.756", + "deps": [ + "ace-jump-mode", + "avy", + "emacs", + "helm-swoop" + ] + }, + "flycheck-perl6": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hinrik/flycheck-perl6.git", + "sha256": "34474e12ded34a4159b85c21ad0bef7a8a39b392088b60562df3d5b2aa817a7c", + "rev": "6a9a929ffb58595bbe9fe3d7c2e78617c8e9bb5a" + }, + "recipe": { + "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.2032", + "deps": [ + "emacs", + "flycheck" + ] + }, + "sparkline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/woudshoo/sparkline.git", + "sha256": "77b304f838db6560b33bae6efe52dc14d79e0ca38ee33f85a5b577ee991f0dbb", + "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2" + }, + "recipe": { + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.719", + "deps": [ + "cl-lib" + ] + }, + "slime-volleyball": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fitzsim/slime-volleyball.git", + "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" + }, + "recipe": { + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2341", + "deps": [] + }, + "free-keys": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/free-keys.git", + "sha256": "e0228557750dd20dc1cb205dda77209e6b2fe0f3cf2a9912132ba6fa8ee3358b", + "rev": "368820cb361161f10a2ae7a839ab758146fd222c" + }, + "recipe": { + "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.522", + "deps": [ + "cl-lib" + ] + }, + "emms-player-simple-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", + "sha256": "2e7fefdeec0b541f7ce21b89de804e6cf86abbbe4c1dfd6343d192eecff65d2a", + "rev": "92be36ef158df3db3a2f9e2d0186a609fc2d3702" + }, + "recipe": { + "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.801", + "deps": [ + "cl-lib", + "emacs", + "emms" + ] + }, + "ta": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/ta.el.git", + "sha256": "d59f817553db651829fe53fe8ef4e0f580ea79c0256416ccc03ba6d96b1c9414", + "rev": "0d946b15a88239982ec66eaa8a55ad53d85e7c3f" + }, + "recipe": { + "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1224", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "mote-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inkel/mote-mode.git", + "sha256": "27d69cfa3fc6078f536b9348237cba14571fbbccc2644275e15f7c0f37dee9c3", + "rev": "18dfc3af0cee7d6d522616f07134364c1c3e54ba" + }, + "recipe": { + "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121014.2319", + "deps": [ + "ruby-mode" + ] + }, + "xml-rpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/xml-rpc-el.git", + "sha256": "8a95d4709f5656fe924cbfccd16e078ab9d108e796cf977969e37141c373724e", + "rev": "a190759da8765d3b22ceb6774cefc610fda404d8" + }, + "recipe": { + "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.2027", + "deps": [] + }, + "cmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bgamari/cmm-mode.git", + "sha256": "33e68149ef8c82af6b19fc9416f0e9c17ce3e90158bc9d0143f7b9fd220ad7ff", + "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee" + }, + "recipe": { + "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150225.146", + "deps": [] + }, + "enlive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/enlive.git", + "sha256": "50a2c620272ccd94fff08f8dc5b0d89885ed16a05c384ba55761616b80ffa76d", + "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.749", + "deps": [] + }, + "wiki-summary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jozefg/wiki-summary.el.git", + "sha256": "310c90837536a3cf464221c92f94ec55367f2b33fc96efb30a9a855503fb6c09", + "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0" + }, + "recipe": { + "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.1622", + "deps": [ + "emacs" + ] + }, + "nexus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/emacs-nexus.git", + "sha256": "47f81c3d5aba872024bbf46a40fc7ae95ed0d25d843a82e1fa4b9998c836ddf6", + "rev": "c46f499951b90839aa8683779fe43d8f01672a60" + }, + "recipe": { + "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140114.705", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/rake.git", + "sha256": "b92c442fd114b40d6155cb428ba8561c176ce0a64fe6b9554b01d57adf66f817", + "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.358", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "slim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slim-template/emacs-slim.git", + "sha256": "216ef4f08cad6ef20baad193abb97d045694c6233e91908b43b6e2e4ad60fe6d", + "rev": "869c84821cf3e556b380c5c35d8ad62287c4df58" + }, + "recipe": { + "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.1150", + "deps": [] + }, + "ox-html5slide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-html5slide.git", + "sha256": "b5272081d491e381b596e0b8b8ced204a00260951d9e2dc096c068c5dce003a6", + "rev": "4703dfbd9d79161509def673d2c1e118d722a58f" + }, + "recipe": { + "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.6", + "deps": [ + "org" + ] + }, + "waher-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-waher-theme.git", + "sha256": "8c76c6d11a43783c3264edf0040768281204579e1b318110849eadc5508fa970", + "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a" + }, + "recipe": { + "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.630", + "deps": [ + "emacs" + ] + }, + "zotxt": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/egh/zotxt-emacs.git", + "sha256": "f47b0203b523bb56da6cec85af00db38f33d783c0e996c60e164eba7a37ebd04", + "rev": "3809f0932660c09910639eaecb3d0a8e784420b3" + }, + "recipe": { + "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1159", + "deps": [ + "request-deferred" + ] + }, + "mu4e-maildirs-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", + "sha256": "c365b9e066e9f10f1d252c560619aaf74833e698ed322c61ac6cf933ec243cf9", + "rev": "17eacf2d0b3a57ebf26a6aaa9eeb51d579457d25" + }, + "recipe": { + "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1126", + "deps": [ + "dash" + ] + }, + "gvpr-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rodw/gvpr-lib.git", + "sha256": "7500d583d2881cb3c2fafef2991b069e9ee71f23f36c8d8e313051012e7b04d2", + "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0" + }, + "recipe": { + "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.1118", + "deps": [] + }, + "header2": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/header2.el", + "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" + }, + "recipe": { + "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1610", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wyuenho/move-dup.git", + "sha256": "47f52e9264cdc64f139bbd0dc57bdffbf54887dc2ca019a5e7375cafa134c27e", + "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140925.1008", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/stash.el.git", + "sha256": "a978095d85317bd5dcc19f32a37677a6fd7fa22a5077f17ac5cba56d9ef2af5f", + "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.827", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/autopair.git", + "sha256": "cc2e494c276b7bba057190b81d81c175137346352e593796d6564fb71dc587ff", + "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140825.627", + "deps": [ + "cl-lib" + ] + }, + "chinese-word-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", + "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" + }, + "recipe": { + "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150618.2038", + "deps": [ + "cl-lib" + ] + }, + "key-seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vlevit/key-seq.el.git", + "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" + }, + "recipe": { + "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.256", + "deps": [ + "key-chord" + ] + }, + "ox-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ox-pandoc.git", + "sha256": "194ecb815e045df3a81d39ad5875d0bfce87f2d8535be1bff85771a29d9d1031", + "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b" + }, + "recipe": { + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150706.2009", + "deps": [ + "dash", + "emacs", + "ht", + "org" + ] + }, + "helm-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-ghc.git", + "sha256": "4ee8874e41fa67ff4a7c847c3485196129e4878006715aa6f41e8bddb9f20cd5", + "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35" + }, + "recipe": { + "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.859", + "deps": [ + "cl-lib", + "emacs", + "ghc", + "helm" + ] + }, + "projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1239", + "deps": [ + "dash", + "pkg-info" + ] + }, + "fabric": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/fabric.el.git", + "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "rev": "004934318f63d8cf955022f87b2c33eb97ada280" + }, + "recipe": { + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.522", + "deps": [] + }, + "sage-shell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/sage-shell-mode.git", + "sha256": "d7cecfe82569543852f3c65eef30d8d0bbab1154c3616aa6c8ba1279777ecdc9", + "rev": "7daed23524a74fee8ce0a87b72bddff8bc0ac725" + }, + "recipe": { + "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.809", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck.git", + "sha256": "77845737d168f4ccaf65fb153cd8f512893052b28fb12ee1e455faeedd3b5997", + "rev": "757c32644a38b95cd3ee7faa25a1ac3675c4850e" + }, + "recipe": { + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.611", + "deps": [ + "dash", + "emacs", + "let-alist", + "pkg-info", + "seq" + ] + }, + "cuda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chachi/cuda-mode.git", + "sha256": "56bc5dc66334339e1d840887f4b4ce8612d1ededad2c89d3ab5daaa8e1e98f26", + "rev": "9ae9eacfdba3559b5456342d0d03296290df8ff5" + }, + "recipe": { + "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2121", + "deps": [] + }, + "ob-cypher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-cypher.git", + "sha256": "36316bbe0613f3817621646b5f7e5cda84594f7953f42d0d2f2f36ecb0ff6cf5", + "rev": "b3511df05f175c1947996802e9e199432ea9ced8" + }, + "recipe": { + "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150224.2037", + "deps": [ + "cypher-mode", + "dash", + "dash-functional", + "s" + ] + }, + "company-ycm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neuromage/ycm.el.git", + "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" + }, + "recipe": { + "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140904.1317", + "deps": [ + "ycm" + ] + }, + "dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired+.el", + "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + }, + "recipe": { + "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1121", + "deps": [] + }, + "bfbuilder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/bfbuilder.git", + "sha256": "27b49a8f58aeb87a6dc8debad53831704459e14bb5105e91d51db86583ee2ef9", + "rev": "49560bdef131fa5672dab660e0c62376dbdcd906" + }, + "recipe": { + "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1150", + "deps": [ + "cl-lib" + ] + }, + "debug-print": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenoss/debug-print.git", + "sha256": "b77b791ef71d831eac43fa49218295da2f72c2b7a12121caf5956a416eb629d9", + "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5" + }, + "recipe": { + "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140125.1819", + "deps": [ + "emacs" + ] + }, + "gorepl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manute/gorepl-mode.git", + "sha256": "0b3cbf483ce9c9426da0dde4d4e458211e073203f46a3808e5ea3ddd3b3a6ba9", + "rev": "17e025951f5964a0542a4b353ddddbc734c01eed" + }, + "recipe": { + "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.622", + "deps": [ + "emacs" + ] + }, + "mocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/mocker.el.git", + "sha256": "5a57867381d4716ca8b2f61e038fcc43bda32810c1265b5561175e9595fdcf36", + "rev": "b56f0f2839d4a395979816b40089a77050518eb6" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2054", + "deps": [ + "eieio", + "el-x" + ] + }, + "ido-hacks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scottjad/ido-hacks.git", + "sha256": "7d3603070b80d386113da55a96384304987fd07b50bf1053db324c24c257e406", + "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc" + }, + "recipe": { + "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.1409", + "deps": [] + }, + "subatomic-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cryon/subatomic.git", + "sha256": "1fe0959b6a4bffe88bb567e6bd6b20c918d55f18f417e3bd04a02698bde44eda", + "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2" + }, + "recipe": { + "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150704.1009", + "deps": [] + }, + "jar-manifest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omajid/jar-manifest-mode.git", + "sha256": "b80af9bcf58b4d1f5717f0910bdbea199f3fe77f058b444c800e7a543c90cd5b", + "rev": "200dcf6ec5116b506ae24a83511837adf0acedef" + }, + "recipe": { + "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.1733", + "deps": [] + }, + "psc-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/epost/psc-ide-emacs.git", + "sha256": "1fb75010c4538c8092511262a8e8856229db7a826e8e8046a29a403074feb9f1", + "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae" + }, + "recipe": { + "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.817", + "deps": [ + "cl-lib", + "company", + "dash" + ] + }, + "quelpa-use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quelpa/quelpa-use-package.git", + "sha256": "a6ceca3db578afa7da3852d3a1bb441369ae65792a602f43e33caa26b8df9603", + "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b" + }, + "recipe": { + "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.528", + "deps": [ + "emacs", + "quelpa", + "use-package" + ] + }, + "hide-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-region.el", + "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval" + }, + "recipe": { + "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140201.514", + "deps": [] + }, + "dna-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhgorrell/dna-mode-el.git", + "sha256": "7664eb5682a8100b519daf4784b4b16187de200d7f061c1e0b6c3e7efa91487c", + "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a" + }, + "recipe": { + "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130821.1305", + "deps": [] + }, + "pungi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/pungi.git", + "sha256": "41c0d044dd2160a142d590934c92f31100d64fb6fa7019ac404741677c493cee", + "rev": "a2d4d439ea371be0b064a12248288903b8a521a0" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150222.646", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "mpages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slevin/mpages.git", + "sha256": "d42b0d23c3661b43e0a48180e28ed0c1f9f27b7a6010cb5826d3fb1244ebd1ee", + "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f" + }, + "recipe": { + "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.904", + "deps": [] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/colorsarenice-theme.git", + "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.1536", + "deps": [ + "emacs" + ] + }, + "isearch-symbol-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/isearch-symbol-at-point.git", + "sha256": "69bf83ab2b9a75452268f6496696889d80f23a1b40bc0e59065d0c060a4ae427", + "rev": "51a1029bec1ec414885f9edb7e5947603dffdab2" + }, + "recipe": { + "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130728.1721", + "deps": [] + }, + "flycheck-mypy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-mypy.git", + "sha256": "1331403a59f4decaf7ecb18fdc85edcf69473ecea231dc34c30a3d68a1e1b6ed", + "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f" + }, + "recipe": { + "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.333", + "deps": [ + "flycheck" + ] + }, + "backup-walker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/backup-walker.git", + "sha256": "1b194e000693a5fc2818b11874c07e91865b9043793f0ac401a5a94953478d7c", + "rev": "934a4128c122972ac32bb9952addf279a60a94da" + }, + "recipe": { + "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.1016", + "deps": [] + }, + "workgroups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlh/workgroups.el.git", + "sha256": "56d8f51f631645f8e953b3be7e37ff55d750dd8802f5e5c755483a8549f96260", + "rev": "9572b3492ee09054dc329f64ed846c962b395e39" + }, + "recipe": { + "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110726.1141", + "deps": [] + }, + "browse-kill-ring+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el", + "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca" + }, + "recipe": { + "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1532", + "deps": [ + "browse-kill-ring" + ] + }, + "ace-jump-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-buffer.git", + "sha256": "3e84481b62f94ce2869a2a47adcd597cbea08d8a92bdbd3806f1d704b3938985", + "rev": "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c" + }, + "recipe": { + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.34", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "find-dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/find-dired+.el", + "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2" + }, + "recipe": { + "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.2355", + "deps": [] + }, + "codebug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shano/emacs-codebug.git", + "sha256": "f79e54c476ef9400cd8be2e9d63c8fb0e8d4c9bdfed4ba7ed40b8d4158386687", + "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52" + }, + "recipe": { + "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1637", + "deps": [] + }, + "bts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-bts.git", + "sha256": "efaf89571dabf2ab36f32462dcfcabfb4577f5a0d327a2a78dc3c791d2d465bc", + "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9" + }, + "recipe": { + "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.733", + "deps": [ + "dash", + "log4e", + "pos-tip", + "s", + "widget-mvc", + "yaxception" + ] + }, + "fyure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/fyure.git", + "sha256": "76c53cc1a100b9b8a774a7f6c3a3f30808eef3313d9bedb9f4f5b1c9ca16d8e6", + "rev": "b6977f1eb148e8b63259f7233b55bb050e44d9b8" + }, + "recipe": { + "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130216.714", + "deps": [] + }, + "wedge-ws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aes/wedge-ws.git", + "sha256": "c69975093876af8c2ae3cad3283183a898ec2ab9d046cfb3d9f85321bac2aee9", + "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2" + }, + "recipe": { + "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140714.1649", + "deps": [] + }, + "ctl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/emacs-grads.git", + "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.406", + "deps": [] + }, + "ac-octave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/ac-octave.git", + "sha256": "f8d4d4df0a7c4a2a752a1fb19d2031f531a6e297ae6652f0e9430804de176f99", + "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150111.1908", + "deps": [ + "auto-complete" + ] + }, + "color-moccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/color-moccur.el.git", + "sha256": "1decf8c11ad22649d75580512c346d4073b8cd7d9947513d52a559f231182edc", + "rev": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7" + }, + "recipe": { + "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.1835", + "deps": [] + }, + "simple-mpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorenvo/simple-mpc.git", + "sha256": "0522e28df1140d9d5fa492572ea5270d3ff489536f2c3eb44e877d0ff37cd4f8", + "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1" + }, + "recipe": { + "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150802.406", + "deps": [] + }, + "ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ansi.git", + "sha256": "890f93330ed499250775fa2dbdc5003e78b900d4ea5b6513ae54ae1c39e42fe0", + "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.326", + "deps": [ + "dash", + "s" + ] + }, + "evil-magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/evil-magit.git", + "sha256": "a74a24f11136c9eb0ccf46acd7743bf4c749bf709bb9bcac326603a26b244c3e", + "rev": "de0de28f1e0d1a0de5ba2482588c359d30f20bee" + }, + "recipe": { + "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2118", + "deps": [ + "evil", + "magit" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-describe-bindings.git", + "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1438", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "birds-of-paradise-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", + "sha256": "b1f3d31f65e50ebaae63d1ef6397b080209e2e03f6484e2611b805342dfe01c0", + "rev": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f" + }, + "recipe": { + "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.1629", + "deps": [] + }, + "term+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-el.git", + "sha256": "7292ff7eeacc343778205cfd7e426ebcd8167bb143398113b7ada89dabea452b", + "rev": "090807985673755720c5533b2fc684f88a3554ad" + }, + "recipe": { + "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130612.852", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/elixir-lang/emacs-elixir.git", + "sha256": "3f28e9e72c97f12129ddaa0ebd6301abc74767c8af9cce9aee19b3db1c259a84", + "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.612", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "jbeans-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/synic/jbeans-emacs.git", + "sha256": "665cf0042ecd23468008fa5762eb1f2b973f601eedffb22fdfb8795608f46362", + "rev": "9bf942ca383c559d2c94da67a94d8c3e680eb96c" + }, + "recipe": { + "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.926", + "deps": [ + "emacs" + ] + }, + "fakespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-fakespace.git", + "sha256": "da0d29dcc08b6705f25b6638a3538ad8ad96d17ef58ca0c338c5d3981304d585", + "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a" + }, + "recipe": { + "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120817.1906", + "deps": [] + }, + "auto-complete-chunk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/auto-complete-chunk.git", + "sha256": "91a6e619ed0b57297171d7003f91b33b70e62493c8c444e7856f10426fbf0bfe", + "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe" + }, + "recipe": { + "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.346", + "deps": [ + "auto-complete" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/hookify.git", + "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141216.1609", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/gntp.el.git", + "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.2150", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/github-browse-file.git", + "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1825", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/diminish.git", + "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", + "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + }, + "recipe": { + "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1212", + "deps": [] + }, + "easy-kill-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/easy-kill-extras.el.git", + "sha256": "08504928461648c965fd8893adc8b6f938667c748a9b6d0ff18d33502d4ed6a1", + "rev": "aff957b4fd699331d21648780b2f0f6ffc3cb70b" + }, + "recipe": { + "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2117", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/projekt.git", + "sha256": "bc325975f73b587097670288ee7b492e2f469a106f69817e97f8944004a47b43", + "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.348", + "deps": [ + "emacs" + ] + }, + "ob-ipython": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/ob-ipython.git", + "sha256": "1a7efd33ef8a6ee6f79af4a18b83ee95a167e073844658693a9cc47cf213b764", + "rev": "15011a8e1694d09a74094c5361a588bf586458f6" + }, + "recipe": { + "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.507", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "naked": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/naked.el", + "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi" + }, + "recipe": { + "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1832", + "deps": [] + }, + "flex-isearch": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/flex-isearch", + "sha256": "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is", + "rev": "bb9c3502057d" + }, + "recipe": { + "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.1703", + "deps": [] + }, + "ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ranger.el.git", + "sha256": "f1ac1d266754855b608732b8f45af8a916bcf4938dc295d49a264b3aed0e867b", + "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.36", + "deps": [ + "emacs" + ] + }, + "jq-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/jq-mode.git", + "sha256": "f7016ae21fb8965e8269e65fd06eb7274b80a2277bb8c493ba43300ce8779804", + "rev": "305ead8f087b1b817291d5f0365e5226199ec58c" + }, + "recipe": { + "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.651", + "deps": [ + "emacs" + ] + }, + "jedi-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi-direx.git", + "sha256": "57b18e630cce9b19d09bbda1096bac6b392bf61b8fdbe3f7cd4f95cfed2ef1dd", + "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117" + }, + "recipe": { + "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.436", + "deps": [ + "direx", + "jedi" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/yascroll-el.git", + "sha256": "e59b1cc7968ce1e7950542936b02359fc8e898153f0fef22623978a7e1498a23", + "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.805", + "deps": [ + "cl-lib" + ] + }, + "general-close": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-berlin/general-close.git", + "sha256": "c4354bac232091576c3759147f5ed3c7e3e86d957e80839ce8769a062ecde6db", + "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f" + }, + "recipe": { + "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.213", + "deps": [] + }, + "date-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/date-at-point.el.git", + "sha256": "115bc42208de7d0f747bb0639051d56f5f149c79d8e086d727e73ef3144051db", + "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b" + }, + "recipe": { + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.618", + "deps": [] + }, + "boogie-friends": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boogie-org/boogie-friends.git", + "sha256": "518abffd5f4721af0f22e0f85058591a57357763a74a7003e8c3f1621445b188", + "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96" + }, + "recipe": { + "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1549", + "deps": [ + "cl-lib", + "company", + "dash", + "flycheck", + "yasnippet" + ] + }, + "flycheck-ledger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-ledger.git", + "sha256": "3b8fabb65c3ffecc21a401c935a6b46c19ed36db5fe8f763c4de0e6be8c28f95", + "rev": "78392ba2c0c177c47bb795a1a191c29846837f57" + }, + "recipe": { + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1346", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/killer.git", + "sha256": "1d8ce6eb72cd91309365324edcf631c3c45b54694461c06fb25a0e3961812b17", + "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120808.622", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/flycheck-tip.git", + "sha256": "0a47344a7c2a751307adeaf55363b884d0da1c93861ad885e546ccbc95330427", + "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.356", + "deps": [ + "emacs", + "flycheck", + "popup" + ] + }, + "ibuffer-rcirc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/ibuffer-rcirc.git", + "sha256": "c8a0a22a1243f973460f1641f685bbabc6cde0f652c3c73dc6850df96a38aa86", + "rev": "8a4409b1c679d65c819dee4085faf929840e79f8" + }, + "recipe": { + "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.1518", + "deps": [ + "cl-lib" + ] + }, + "tablist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/tablist.git", + "sha256": "8e0be5e3ec0828f2b78f8aa64e6bffde4dff39d26b653b205842eb877f353348", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.18", + "deps": [ + "emacs" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/victorhge/iedit.git", + "sha256": "3f1c515cf74a96cc3683aef5b841b846ed378eda957a9887dd55a7e5b931b86a", + "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.2222", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-alert.git", + "sha256": "48ac0392a98827400ae7238cf3d983a51a933915179fcf5a87695b3158fcaa00", + "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141121.1405", + "deps": [ + "alert", + "term-cmd" + ] + }, + "org-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/org-vcard.git", + "sha256": "bee5e91a9b759b0cd070ecc7bb506556e152072bc744a24fe4213cc7cd6d5dd4", + "rev": "928827c1de3c90045df3ea4fb07db4af9d3b0a22" + }, + "recipe": { + "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.22", + "deps": [] + }, + "eide": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git", + "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271", + "rev": "524494fd2b23217c6807b30b43bb95b5724f809e" + }, + "recipe": { + "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1406", + "deps": [] + }, + "simple+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/simple+.el", + "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" + }, + "recipe": { + "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150616.1522", + "deps": [ + "strings" + ] + }, + "mbo70s-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mbo70s-theme.git", + "sha256": "bf9cac357637994a5571a28b57c4c4d82545ef6d16801d5a7cfc93459b2b28ef", + "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2" + }, + "recipe": { + "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141122.842", + "deps": [ + "emacs" + ] + }, + "weather-metno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/weather-metno-el.git", + "sha256": "2adc62107ddf5904cc834c04a1fdd00743f3f470e83ef2e71558362b1e5799d6", + "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.2007", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gitconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/gitconfig.el.git", + "sha256": "e898334574359b9a8d899f6b5ec4557fb871f221ba9e6203833b27d5f51e98a0", + "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741" + }, + "recipe": { + "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.435", + "deps": [] + }, + "auth-password-store": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/auth-password-store.git", + "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" + }, + "recipe": { + "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1547", + "deps": [ + "cl-lib", + "emacs", + "password-store", + "seq" + ] + }, + "org-context": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/org-context.git", + "sha256": "545940c9afdf0cccc8d99fd55518c326b8486f374e5f1837600cca7899cb2eed", + "rev": "47d1f0c9b9fb7547dbeed5b3315102a2d3c3e16f" + }, + "recipe": { + "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.1506", + "deps": [] + }, + "eyuml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/eyuml.git", + "sha256": "b6557c7b2dbdff6cfba93f3850754e4a7e55c3c5cd077092a77af430beff0184", + "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532" + }, + "recipe": { + "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141028.1727", + "deps": [ + "request", + "s" + ] + }, + "cpputils-cmake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cpputils-cmake.git", + "sha256": "23357bdb09873ddab28422f822c2e23c4c78fd7887e02777ddd435486e056197", + "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4" + }, + "recipe": { + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.603", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-anzu.git", + "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.605", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tj-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/katspaugh/tj-mode.git", + "sha256": "896b4c6c4500ba9caf79a468109f4bba03accd49b96ada33d22d9222fe29a30e", + "rev": "492b271c3736616c84a99c5b43897848bc350c96" + }, + "recipe": { + "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1051", + "deps": [ + "emacs", + "js2-mode", + "tern" + ] + }, + "speechd-el": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.freebsoft.org/git/speechd-el", + "sha256": "2c1bff3e5a182b8150c6ba6c3be7e70ab2b733cac0a758521c0b941dff215c32", + "rev": "3d729817296b2ed8ad414a6aa044a8aa762259eb" + }, + "recipe": { + "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141025.1112", + "deps": [] + }, + "web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-web.git", + "sha256": "c5132c8b28a28d6a1809c11510481cb3cfd90b87d92dc33b2c0f064e6f53ac0f", + "rev": "483188dac4bc6b409b985c9dae45f3324a425efd" + }, + "recipe": { + "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1401", + "deps": [ + "dash", + "s" + ] + }, + "python-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/python-django.el.git", + "sha256": "d0a8f70f0599f6414a176cf0a0620667affd39c6a5fa851f2465c51057b193e1", + "rev": "fc54ad74f0309670359b939f64d0f1fff68aeac4" + }, + "recipe": { + "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.2304", + "deps": [] + }, + "helm-google": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/helm-google.git", + "sha256": "6246633b3f929063c8f7552da721bf60b0ddaed78c2af92a1ce73781c4ae8556", + "rev": "21443456eefab39a2bfef00f1387c015e7dfac51" + }, + "recipe": { + "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141228.540", + "deps": [ + "google", + "helm" + ] + }, + "format-sql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/format-sql.el.git", + "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" + }, + "recipe": { + "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.833", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/writegood-mode.git", + "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150325.1315", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/simpleclip.git", + "sha256": "0e1724351d66f424aedad16f60e04bf58c7df472ae5463b2fe03615258c96279", + "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1210", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/pallet.git", + "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.202", + "deps": [ + "cask", + "dash", + "f", + "s" + ] + }, + "org-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arbox/org-sync.git", + "sha256": "05e493fd5f3ee4efe9fb584fdf71b39ebc04d61c4bf7b11fb80ac142931303b3", + "rev": "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722" + }, + "recipe": { + "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.954", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaron-em/rcirc-styles.el.git", + "sha256": "8beb3500e35ce58d62c9856672d56710fe9b8fd5641d7ca2c31f783adb2267a1", + "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.2031", + "deps": [ + "cl-lib" + ] + }, + "jasminejs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stoltene2/jasminejs-mode.git", + "sha256": "e29b56085b3d1dbd6ac500333f3e128468222b45d48cc3e4856b1cd2411fd328", + "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a" + }, + "recipe": { + "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150526.1905", + "deps": [] + }, + "key-chord": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/key-chord.el", + "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg" + }, + "recipe": { + "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.304", + "deps": [] + }, + "twilight-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/developernotes/twilight-theme.git", + "sha256": "daf14286114bdb311ee5d423965403e28268857fadcee40ecc8ff30c6068fb34", + "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b" + }, + "recipe": { + "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120412.803", + "deps": [] + }, + "apel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/apel.git", + "branchName": "apel-wl", + "sha256": "3531d891f7af7ee3e26bcea3ddda1f941e59fbe643c02e170b1a67b488b3bd69", + "rev": "8402e59eadb580f59969114557b331b4d9364f95" + }, + "recipe": { + "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.1842", + "deps": [] + }, + "cn-outline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/cn-outline.git", + "sha256": "99959dd3be36375031fc49b7aa0b2163c4dd1086d10970c43678c77b43996598", + "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981" + }, + "recipe": { + "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100321.1114", + "deps": [] + }, + "yatemplate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mineo/yatemplate.git", + "sha256": "0c708b036320bbb6707c29219f09dc229f71af047ef79e8d36d8493e0518b6bf", + "rev": "499e7f2ea245686c09915523657fa95905f70561" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.107", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajc/nginx-mode.git", + "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.1611", + "deps": [] + }, + "anything-git-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mechairoi/anything-git-grep.git", + "sha256": "fbcefa3ca15d3ed4a2f781d0cab1036b885cb1ca5814e9cc532a7cc9cedcde19", + "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c" + }, + "recipe": { + "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130608.2140", + "deps": [ + "anything" + ] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/emoji-fontset.el.git", + "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.2247", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ergoemacs/ergoemacs-mode.git", + "sha256": "32a88fc9f5da06f181b048ef0caf0deb334cbfbaa2f76bf667bded681402a078", + "rev": "ca73f109122db03563b792158034cf333d97a5a9" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.1038", + "deps": [ + "emacs", + "undo-tree" + ] + }, + "cyphejor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/cyphejor.git", + "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" + }, + "recipe": { + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.627", + "deps": [ + "emacs" + ] + }, + "motion-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/motion-mode.git", + "sha256": "fb5a955bafd44e89f58fa3fb186b7c3e1a0e796abaf23dea857405c2fed47fc5", + "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55" + }, + "recipe": { + "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140919.2056", + "deps": [ + "flymake-cursor", + "flymake-easy" + ] + }, + "guide-key-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/guide-key-tip.git", + "sha256": "d2772007877e1985f1d2440cb0389fb7ca5ce464270c8dcc74a5e3d5b427d7e8", + "rev": "d1773156b62566e1245f39936abd151844bd471c" + }, + "recipe": { + "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140406.2020", + "deps": [ + "guide-key", + "pos-tip" + ] + }, + "apache-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apache-mode.el", + "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik" + }, + "recipe": { + "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.914", + "deps": [] + }, + "ac-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-racer.git", + "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.341", + "deps": [ + "auto-complete", + "cl-lib", + "racer" + ] + }, + "iregister": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/iregister.el.git", + "sha256": "65a1fb8e59301217d37e1981c0aada3152af0b18899c4b5fb7a38336160806b2", + "rev": "6a48c66187289de5f300492be11c83e98410c018" + }, + "recipe": { + "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.1607", + "deps": [] + }, + "nemerle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rsdn/nemerle.git", + "sha256": "013689d40795030567acec8010576b1ca3a7c3c064d1149142cf152967db646c", + "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" + }, + "recipe": { + "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.946", + "deps": [] + }, + "tango-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmalsburg/tango-plus-theme.git", + "sha256": "4e6e1feb1e7018ba011bf3b9a801978e992485f341657e4274e2a6e5bd0fd6bd", + "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf" + }, + "recipe": { + "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140425.1711", + "deps": [] + }, + "debpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/debpaste.el.git", + "sha256": "cc2775b327347e1fee64ff7211c747a3dc042dd8e03032eb6441e6d7d3a07946", + "rev": "c296c063e5a75da1ebeea84ee35c6988651de416" + }, + "recipe": { + "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140618.58", + "deps": [ + "xml-rpc" + ] + }, + "kerl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/correl/kerl.el.git", + "sha256": "697a536809445368c0af71aab808544326258a54db145283c5e46496edd17fce", + "rev": "1732ee26213f021bf040919c45ad276aafcaae14" + }, + "recipe": { + "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.1505", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1230", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-terraform-mode.git", + "sha256": "78a9871673a5852644bceccc58e025812aab890211da389a744ed09a1771f79f", + "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.945", + "deps": [ + "cl-lib", + "hcl-mode" + ] + }, + "octopress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaronbieber/octopress.el.git", + "sha256": "1e28c0ea69621d6d70093add1b20fe59dadafa5f2f87210359d857d7978a89b9", + "rev": "2e068887b17b72a69e29349d477333d067867eec" + }, + "recipe": { + "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.514", + "deps": [] + }, + "helm-dired-recent-dirs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akisute3/helm-dired-recent-dirs.git", + "sha256": "20848dec32498e5530f1b3ac993b7dce2d78dd1215235953dccda3e772735193", + "rev": "3bcd125b44f5a707588ae3868777d91192351523" + }, + "recipe": { + "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.814", + "deps": [ + "helm" + ] + }, + "gap-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/gap-mode", + "sha256": "1jdaysi5rbl0m2lmz41xldxbh3z5b89cnxka7r2ndldcqiq5j9q7", + "rev": "38e9eb6cbd0f" + }, + "recipe": { + "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140913.1458", + "deps": [] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elpa-audit.git", + "sha256": "3c02d197e84b70c5f5924db65d935d08eccc161476b6b49c6fb5f18e64e2b4b6", + "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.831", + "deps": [] + }, + "sublimity": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/sublimity.git", + "sha256": "ec1a17d32b64c14ce46dc20ea4cd8f056da6604eac10834b2970d6002554e875", + "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338" + }, + "recipe": { + "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1417", + "deps": [] + }, + "helm-w3m": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-w3m.git", + "sha256": "3fc602c483e64148f2e64130b28b350d05796004fe6e2370536e7eb222ae8734", + "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a" + }, + "recipe": { + "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.1024", + "deps": [ + "cl-lib", + "emacs", + "helm", + "w3m" + ] + }, + "ietf-docs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/choppsv1/ietf-docs.git", + "sha256": "47b7fd4501a9853ff1a7cf9ca1a84f21568eccc01900783d2b54aecb95df24f7", + "rev": "ede30d6d26044069e1731fd20c0ab2324552c0b4" + }, + "recipe": { + "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.457", + "deps": [] + }, + "ruby-block": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ruby-block.el", + "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq" + }, + "recipe": { + "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131210.2131", + "deps": [] + }, + "inline-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", + "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" + }, + "recipe": { + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130409.707", + "deps": [] + }, + "fsharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", + "sha256": "309fbe02556433c469d88b4204b369d97c774e275fdc62e20f068f63ca69d788", + "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4" + }, + "recipe": { + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.936", + "deps": [ + "auto-complete", + "dash", + "popup", + "pos-tip", + "s" + ] + }, + "mmm-mako": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pjenvey/mmm-mako", + "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr", + "rev": "5c9ff92137b5" + }, + "recipe": { + "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121020.151", + "deps": [ + "mmm-mode" + ] + }, + "auto-complete-pcmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-pcmp.git", + "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" + }, + "recipe": { + "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.51", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "regex-tool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/regex-tool.git", + "sha256": "7424939a09f4338ac4eb9a90cb868022d0ec0012bcbfde17627b3268821421f3", + "rev": "62b292d93f29e4c4767b0800d53c656b9f626892" + }, + "recipe": { + "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131104.1634", + "deps": [] + }, + "macrostep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/macrostep.git", + "sha256": "29828872878cc8812c5f84f890be881cc49a7aee1cd73d41ee3e071f90f45aca", + "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38" + }, + "recipe": { + "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.345", + "deps": [ + "cl-lib" + ] + }, + "keydef": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/keydef.git", + "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090428.1431", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-coffee.git", + "sha256": "afb781c703f30ebbe1216bd222ecc3b78c0e4c696d8aab5967756680d50bd3e3", + "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140809.524", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-svn.git", + "sha256": "daba06765907b213c286c2563ae840e8b3c057331d7406a6b4c2aa2e8e8ef43f", + "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.257", + "deps": [ + "emacs", + "magit" + ] + }, + "scion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nominolo/scion.git", + "sha256": "b9366874463b0236c000ce442318ddccdbf586484869a244c7b894b3f23cc52e", + "rev": "99b4589175665687181a932cd836850205625f71" + }, + "recipe": { + "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130315.755", + "deps": [] + }, + "hl-defined": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-defined.el", + "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y" + }, + "recipe": { + "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1620", + "deps": [] + }, + "company-arduino": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/company-arduino.git", + "sha256": "dd6de2ec33694733b30ddd5297fed6fe3c770239e190edbcc4ab5ac72b59fd18", + "rev": "fd31103ab73acd6c77e4361db86e472619903f80" + }, + "recipe": { + "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.326", + "deps": [ + "arduino-mode", + "cl-lib", + "company", + "company-c-headers", + "company-irony", + "emacs", + "irony" + ] + }, + "diffview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgalgs/diffview-mode.git", + "sha256": "ae33123df7ab7fe60aa9690fde399e63fc5078eb76adbedb5bf360d20f423c36", + "rev": "031b70913e755c5e55222680f80185032a7d1728" + }, + "recipe": { + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.11", + "deps": [] + }, + "tree-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tree-mode.el", + "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx" + }, + "recipe": { + "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.731", + "deps": [] + }, + "scf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/scf-mode.git", + "sha256": "6885487ca009259dfa43dcd822e70bc383d0ba0802d481ced7756ac1ae55f054", + "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2" + }, + "recipe": { + "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2048", + "deps": [] + }, + "go-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/go-projectile.git", + "sha256": "9df1f0685b613de731c56b949683097f5ceee9ee1bc7f643eb6ec8cce020e55e", + "rev": "afbc4705ecab448f972a883ccc9ddf33dc0fcb11" + }, + "recipe": { + "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1229", + "deps": [ + "go-eldoc", + "go-mode", + "go-rename", + "projectile" + ] + }, + "align-cljlet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gstamp/align-cljlet.git", + "sha256": "572b4fb3fc9aa49984bf08aff72fdb47da6e04cd74fd8cdb7c078520250e7187", + "rev": "eb8d18058838167a13e3272ac9fd597d7c183b35" + }, + "recipe": { + "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.154", + "deps": [ + "clojure-mode" + ] + }, + "framesize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-framesize.git", + "sha256": "b3915afb41d4f8af203c152433d272f0dc7e8e1290c9b03d53ed702b0def0986", + "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da" + }, + "recipe": { + "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131017.1632", + "deps": [ + "key-chord" + ] + }, + "helm-cscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/helm-cscope.el.git", + "sha256": "1d245016c28d75f0265727aa3f359c989ede8919bb787f57d4171fc76047115a", + "rev": "ddc3f750a92044d6712585e29d3dbaface2e34db" + }, + "recipe": { + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150609.849", + "deps": [ + "cl-lib", + "emacs", + "helm", + "xcscope" + ] + }, + "cil-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ForNeVeR/cil-mode.git", + "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "rev": "fcd2e407aeefab9ae465b072eea33dc115506fff" + }, + "recipe": { + "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.450", + "deps": [] + }, + "dylan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dylan-lang/dylan-mode.git", + "sha256": "90178b5c4796e8e9aa17840b6903119143f080e3eaa064c84d332b500746ddaf", + "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e" + }, + "recipe": { + "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.37", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/babel.git", + "sha256": "d8846bf882a27727e7c8a46976cf17c0b4e5e44e6bb7932745495e03de882f01", + "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131231.925", + "deps": [] + }, + "hide-lines": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-lines.el", + "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2" + }, + "recipe": { + "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.1240", + "deps": [] + }, + "todotxt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rpdillon/todotxt.el.git", + "sha256": "54bd83090c4888458e8dba884db2e32b2a0e2bc8c8d85b59bdaba627afaa4457", + "rev": "fc83f954aea75065aa9788ee07027c94e76a9364" + }, + "recipe": { + "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.2129", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-firefox.git", + "sha256": "c40b2b06571e657a0b81f215102dc0f35ed0aeaede97ea894350867687096c5f", + "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1318", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "nanowrimo": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/nanowrimo.el", + "sha256": "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w", + "rev": "25e2ca20ed34" + }, + "recipe": { + "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2028", + "deps": [] + }, + "engine-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hrs/engine-mode.git", + "sha256": "93b4c36aa192ad911c3ac04aeed2597817e71d9a4ca1e39de834d5e45bf827cc", + "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017" + }, + "recipe": { + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1235", + "deps": [] + }, + "company-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randomphrase/company-c-headers.git", + "sha256": "5a661af7448f5e67a2571a746e3025b8b997711856cda7502d649a32e74c55e9", + "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352" + }, + "recipe": { + "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1101", + "deps": [ + "company", + "emacs" + ] + }, + "textmate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/textmate.el.git", + "sha256": "5f4b8084d501ce9dfbd7bb356d56465c00fb857532fdc4f36b713f8f73476ec3", + "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110816.1646", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/squiggly-clojure.git", + "sha256": "dfb00ae36fb4091db04d4a6e90ebc5b89d9910d51c3cdfad6c72e7af71059e08", + "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.831", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "sotclojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-clojure.git", + "sha256": "ecb1f94ac96bbef1f0189da55108d830cad7367ca6b9ae44137c0fa7e9bea2b2", + "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354" + }, + "recipe": { + "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1856", + "deps": [ + "cider", + "clojure-mode", + "emacs", + "sotlisp" + ] + }, + "modeline-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-char.el", + "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi" + }, + "recipe": { + "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.2153", + "deps": [] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/el-autoyas.el.git", + "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120918.817", + "deps": [] + }, + "px": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaptel/preview-latex.git", + "sha256": "c352bf8aa5bc257b88a36057d0ae07e87b8b85eba74f0c8804eaecfb7a8de481", + "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37" + }, + "recipe": { + "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141006.748", + "deps": [] + }, + "osx-pseudo-daemon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/osx-pseudo-daemon.git", + "sha256": "e0e01db9b041c9f4e4cc8d26537684a1bf39810a10757082a47888a4137669cc", + "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841" + }, + "recipe": { + "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131026.1930", + "deps": [] + }, + "system-specific-settings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", + "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" + }, + "recipe": { + "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140818.957", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1059", + "deps": [ + "haskell-emacs" + ] + }, + "leerzeichen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/leerzeichen.el.git", + "sha256": "7637866b4efd0378e88ffe931ec87d92ea59dabf92298f57319e87d72ba7397b", + "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626" + }, + "recipe": { + "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.28", + "deps": [] + }, + "rcirc-groups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/rcirc-groups.git", + "sha256": "6498eafb8560e57a860437828158040a1f19890aefaca3bf6002f90846c7092c", + "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2" + }, + "recipe": { + "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1113", + "deps": [] + }, + "windata": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/windata.el", + "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" + }, + "recipe": { + "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080412.955", + "deps": [] + }, + "clues-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-clues-theme.git", + "sha256": "591dbf7fcb044674b12e64e24bac823a7a72bb0ea150a119a5e95126cc1ad43a", + "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda" + }, + "recipe": { + "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140922.2256", + "deps": [ + "emacs" + ] + }, + "ert-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-async.el.git", + "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.859", + "deps": [] + }, + "http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/http.el.git", + "sha256": "6c21f9ddd09225eb4ffdc2e1f5eb3d44e0b76b435e9af8daa3f3f4989174d4b3", + "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988" + }, + "recipe": { + "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.959", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "textmate-to-yas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/textmate-to-yas.el.git", + "sha256": "09fde68627dab32b179dee96309479add568a6a3e3b6a3ab9fde4209ae83b0c5", + "rev": "74cbf0877ab6391f920d2d7a588e363423d61227" + }, + "recipe": { + "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.746", + "deps": [] + }, + "password-vault": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/password-vault.git", + "sha256": "13cb87a3852e4a4d2aea6466e7460008ba1de9e15d5e0d0c10f1e9eee8bf0425", + "rev": "e47d99bb092e150472f1989ab3ac5a4752863515" + }, + "recipe": { + "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2141", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "mustache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/mustache.el.git", + "sha256": "b3f952149d862839c727d60bb3ffad2e9844d7caec7151c453cd9195e55d3665", + "rev": "b0ea352813592424164520a49e86c04600242752" + }, + "recipe": { + "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1607", + "deps": [ + "dash", + "ht", + "s" + ] + }, + "dracula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenorocha/dracula-theme.git", + "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" + }, + "recipe": { + "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1045", + "deps": [ + "emacs" + ] + }, + "sibilant-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jbr/sibilant-mode.git", + "sha256": "50d7c2c154ef3853e9296c3e44657ec1f29d87f701465b8b404c7e4bb9bbea98", + "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab" + }, + "recipe": { + "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1545", + "deps": [] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hisea/elixir-yasnippets.git", + "sha256": "0d1a4941cca786503235aa01a50d2fee1797833a648cdb6e6f3c8528ce20b8e9", + "rev": "980ca7626c14ef0573bec0035ec7942796062783" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.739", + "deps": [ + "yasnippet" + ] + }, + "misc-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el", + "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq" + }, + "recipe": { + "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1427", + "deps": [] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-mode.git", + "sha256": "8040a65a84757b8f862263d351935cef84e15c35ae3ded8c66788361ac8ed951", + "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1427", + "deps": [ + "php-mode" + ] + }, + "livid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pandeiro/livid-mode.git", + "sha256": "d7f43c2e637a9d57f412e8cedbc2518c3d596ca7977664974a352934ef6f149d", + "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26" + }, + "recipe": { + "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131116.744", + "deps": [ + "s", + "skewer-mode" + ] + }, + "company-flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/company-flx.git", + "sha256": "dd6d9acc81050a79010ed70f42e5849214b4670a77c61aa058d72e0b79194b1f", + "rev": "da73fc0d306fdb7335a801353b9798d1e1cfc1c1" + }, + "recipe": { + "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1301", + "deps": [ + "company", + "emacs", + "flx" + ] + }, + "org-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robtillotson/org-pandoc.git", + "sha256": "3e09172f6aaf2e8651bad2c8c2dfeffa20227619bede404eaebdc095389c5584", + "rev": "84b5df1f5516704540e19e048e18f437dc090a7d" + }, + "recipe": { + "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130729.2050", + "deps": [] + }, + "company-jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-company-jedi.git", + "sha256": "919b6adf148800782f89d8e14e22aad116323b9a0bc39d81258a5ed799fcfb2a", + "rev": "5aaf08f6ed32b1d749c6f1aeb424227256fd7f51" + }, + "recipe": { + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.1641", + "deps": [ + "cl-lib", + "company", + "emacs", + "jedi-core" + ] + }, + "hoa-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.lrde.epita.fr/spot/emacs-modes.git", + "sha256": "bf4056192044808554a5dfd537512ec939cbcf628a9becd61736d6409f7e7ce8", + "rev": "3c608e15b655d2375c5f81323ac561c7848dc029" + }, + "recipe": { + "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1050", + "deps": [] + }, + "termbright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/termbright-theme-el.git", + "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "rev": "bec6ab14336c0611e85f45486276004f16d20607" + }, + "recipe": { + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2135", + "deps": [ + "emacs" + ] + }, + "jape-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tanzoniteblack/jape-mode.git", + "sha256": "4d1ce0799ac7e614a261de0adeed0603d7079c42eb9f104b77ad7ce613075abf", + "rev": "85b9182850707b5d107391f6caee5bd401507a7d" + }, + "recipe": { + "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140903.1006", + "deps": [] + }, + "list-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/list-utils.git", + "sha256": "45192672fbfd9b6c54a81e18e3187e2c2866cd1914ad64cbf36ba2b747024439", + "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ack.git", + "sha256": "0548d12d2f09d331ee7cc788f7fde023ec5e04cd1e5edad94d19ae4f4c759192", + "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141030.726", + "deps": [ + "cl-lib", + "helm" + ] + }, + "fasd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/emacs-fasd.git", + "sha256": "e5a3c3a919967d0f0ab9033473f142ace97196242a39c33d54479bd0f2b05854", + "rev": "8726a367048054add81ecea7543de00688056735" + }, + "recipe": { + "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.116", + "deps": [ + "grizzl" + ] + }, + "packed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/packed.git", + "sha256": "ab8d3c5083ea7ad023df60592a79773b08c253c361e3e5d21cae97171ad3831c", + "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.638", + "deps": [ + "dash", + "emacs" + ] + }, + "guide-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kai2nenobu/guide-key.git", + "sha256": "6084978f3067e86f41bc1cce6fbb134be3e1a6a5ed0fd868762e100e0019c6ad", + "rev": "9236d287a7272e307fb941237390a96037c8c0a2" + }, + "recipe": { + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.35", + "deps": [ + "dash", + "popwin", + "s" + ] + }, + "jabber-otr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/legoscia/emacs-jabber-otr.git", + "sha256": "e89d6593fc5b75ea6c641cd4738ed00c9fe8048c3d8c76a611aecb8fbcc290f7", + "rev": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0" + }, + "recipe": { + "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.644", + "deps": [ + "emacs", + "jabber" + ] + }, + "pip-requirements": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/pip-requirements.el.git", + "sha256": "94def724a3c7064c2d85515c25bde09e0373439fa782aba0d9632af9a1f0d51e", + "rev": "f8d3ecaee9090cee267476d4551c905c412d6017" + }, + "recipe": { + "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.1558", + "deps": [ + "dash" + ] + }, + "flx-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/flx-isearch.git", + "sha256": "a06592cd6abb9c030d2d16da1db73d5fde7103567702ac44c0e2accb04bd24f4", + "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318" + }, + "recipe": { + "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2259", + "deps": [ + "cl-lib", + "emacs", + "flx" + ] + }, + "runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thamer/runner.git", + "sha256": "095fcab6fd5e78ef847e7a93c3c3d1d2033326642fa0ed4bc0222a1178c9bf9d", + "rev": "f5983931899282cf8b10ad197d61860a61cf070d" + }, + "recipe": { + "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.416", + "deps": [] + }, + "cliphist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cliphist.git", + "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.729", + "deps": [ + "popup" + ] + }, + "chinese-fonts-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-fonts-setup.git", + "sha256": "b37f7a04811777f19d048a571a69794a6fef25e204cef73c9d1833561669022e", + "rev": "bac9c65f7a78b0c70a6cce9658395d3bc24b02fa" + }, + "recipe": { + "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.259", + "deps": [ + "cl-lib" + ] + }, + "mark-multiple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/mark-multiple.el.git", + "sha256": "6ea686792a8b34e7638bce6e376a2f9c67578550944a30db4107cb07f075adbe", + "rev": "f6a53c7c5283d640ae718f4548b0fda78877a375" + }, + "recipe": { + "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121118.954", + "deps": [] + }, + "zossima": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/zossima.git", + "sha256": "6944685180d61180f934c1f5977883250be7fa3c7da1d8cf02dbfd910feffc39", + "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375" + }, + "recipe": { + "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121123.1835", + "deps": [ + "inf-ruby" + ] + }, + "haskell-emacs-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.916", + "deps": [ + "haskell-emacs" + ] + }, + "flycheck-rust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-rust.git", + "sha256": "842eeccd86b9ea7efa4c8f80b5da244a5e6ef47828622191a7d2a907354a3c2e", + "rev": "4da768e82579d63c648a6db2a7b60659df87302b" + }, + "recipe": { + "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150609.1448", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ido-sort-mtime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pkkm/ido-sort-mtime.git", + "sha256": "6d8be4014ecb87a2f96fe7e940ec8a56f114f721211b8e1e888418e4bcc86c70", + "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e" + }, + "recipe": { + "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.730", + "deps": [] + }, + "synosaurus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rootzlevel/synosaurus.git", + "sha256": "5a989222da909804b137ffd3e0d014d68c09692e7b292faf2b2953a6b8cde9ff", + "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1249", + "deps": [ + "cl-lib" + ] + }, + "php-boris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/php-boris.git", + "sha256": "1430f0fef09c288cf6cd9da99bcd0658b6caeb0eb34fc482bee52c0c6af37181", + "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb" + }, + "recipe": { + "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130527.321", + "deps": [] + }, + "flycheck-color-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-color-mode-line.git", + "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" + }, + "recipe": { + "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131125.2338", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "yaml-tomato": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RadekMolenda/yaml-tomato.git", + "sha256": "4e00121f5fb706fb25f6762affdc59a166e69e227ba57770f6041117fc26f0b4", + "rev": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14" + }, + "recipe": { + "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.153", + "deps": [ + "s" + ] + }, + "ph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/ph.git", + "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130312.1337", + "deps": [ + "emacs" + ] + }, + "auto-complete-auctex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/monsanto/auto-complete-auctex.git", + "sha256": "223f32ed236d8495abc937ef14915fcec837ad9593304560c0c15f4a0b4631f3", + "rev": "855633f668bcc4b9408396742a7cb84e0c4a2f77" + }, + "recipe": { + "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140223.1158", + "deps": [ + "auto-complete", + "yasnippet" + ] + }, + "py-smart-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/py-smart-operator.git", + "sha256": "0f24aae1ad61a5fa845f81460bc2d19f0545651a6ab032aba9644c41b73a0c97", + "rev": "be4e32572d4128143f46e1874eaa6f3da94fdffe" + }, + "recipe": { + "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.2110", + "deps": [ + "s" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/es-mode.git", + "sha256": "33491a6f2f6a38c304f0c265e4e3d8bf5b794beba1ac9beb87a40abc459982b1", + "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2233", + "deps": [ + "dash" + ] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-ruby.git", + "sha256": "c97059feedb295806e47b30bec7527c1bbda4f7dafb276ac2bfd5c7ce1fcebb0", + "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1259", + "deps": [ + "flymake-easy" + ] + }, + "projector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/projector.el.git", + "sha256": "83f29b16d8e64810af54b5a9347ccb04e5744223fddba2338336251bb95f1f79", + "rev": "fd9553a27d665889646b881b64a8f1577b47882b" + }, + "recipe": { + "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1441", + "deps": [ + "alert", + "cl-lib", + "projectile" + ] + }, + "font-lock-studio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/font-lock-studio.git", + "sha256": "1388d6eaf6d895414c9e95e4b59a06260b57bf20125c14a524a29edf5e16c312", + "rev": "35d510e4b16939621d7200bf67021f773cdb4ae5" + }, + "recipe": { + "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141201.1858", + "deps": [ + "emacs" + ] + }, + "commander": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/commander.el.git", + "sha256": "fe3ba67fab270b2df01713f841072f3e91f6bb779b94be8656f8f1b423b6b1fd", + "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140120.1252", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "olivetti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/olivetti.git", + "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" + }, + "recipe": { + "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.2129", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gmpl-mode.git", + "sha256": "6443d44f30b5a918ebeb76e43b698ae9669d2960318c3bdcb3cf0acd7991a621", + "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1349", + "deps": [ + "emacs" + ] + }, + "helm-ag-r": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/helm-ag-r.git", + "sha256": "8267620953548bf32fa9637019ffb7bf2595d6d0089abd47e9abdfe6006b232c", + "rev": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8" + }, + "recipe": { + "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.931", + "deps": [ + "helm" + ] + }, + "back-button": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/back-button.git", + "sha256": "58e1221a3f6ad4c07f86324716aa07e21f152a9d3c6a46a6c4cfc916f4c7369c", + "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1504", + "deps": [ + "list-utils", + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ] + }, + "evil-indent-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/evil-indent-plus.git", + "sha256": "46639181a2d738d70eccb8e99a1645732b72951d98bc1f20ac5b72a69b0fd9bc", + "rev": "0c7501e6efed661242c3a20e0a6c79a6455c2c40" + }, + "recipe": { + "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1306", + "deps": [ + "cl-lib", + "evil" + ] + }, + "flymake-puppet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benprew/flymake-puppet.git", + "sha256": "b5b051da20ebc85022236b274af16372cf6a52d4f8a04341a1478a173b967ee4", + "rev": "fc4cd25aeac37ed5722bc586d5350fd06ee3067c" + }, + "recipe": { + "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141006.2055", + "deps": [ + "flymake-easy" + ] + }, + "nclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/nclip.el.git", + "sha256": "3a4e5e36116bf889b1f477b6887ae190d5bd543f147765494cf7243ccf960f9d", + "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67" + }, + "recipe": { + "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130617.1515", + "deps": [] + }, + "tango-2-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/2024464.git", + "sha256": "7342a670559cd296dba4b676607641a05d6203255951b17473ccdda4e35713d3", + "rev": "64e44c98e41ebbe3b827d54280e3b9615787daaa" + }, + "recipe": { + "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120312.1525", + "deps": [] + }, + "ox-twbs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marsmining/ox-twbs.git", + "sha256": "79a728c56477fcac5aeb19c3bb6e1c51b6f79660b2a7b60d3bb3ce79640fba5e", + "rev": "20b97120eed058a03312157c6646c4569c0168ac" + }, + "recipe": { + "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1248", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/mediawiki-el.git", + "sha256": "13da948080fde997ddf15b0f8372d514cc542f168fcf4a1e71e4b84835673f76", + "rev": "47875f753599e309f1c3da5beb4805487ab75636" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150711.1934", + "deps": [] + }, + "jknav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aculich/jknav.el.git", + "sha256": "3256a49defa4e45326cb8661fe7d38ff27ab8cffa4e1914a419cea29b3f0abc5", + "rev": "861245715c728503dad6573278fdd75c271dbf8b" + }, + "recipe": { + "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121006.1525", + "deps": [] + }, + "oldlace-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/oldlace-theme.git", + "sha256": "027df16abd88614e195aba6ada9735eb68f14e4ec6912bbd432584db75ee2e79", + "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6" + }, + "recipe": { + "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150705.800", + "deps": [ + "emacs" + ] + }, + "0blayout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/etu/0blayout-mode.git", + "sha256": "26ad62cd0038a2f12d6aee27ead70d041ceea772efb8c034bb9572adc4bf2ff6", + "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc" + }, + "recipe": { + "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.549", + "deps": [] + }, + "afternoon-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/emacs-afternoon-theme.git", + "sha256": "8bfaab7f653532842259e29e8bcd10e49665553668e96c84bb95dba2b169a5a5", + "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a" + }, + "recipe": { + "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140104.1259", + "deps": [ + "emacs" + ] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-pydoc.git", + "sha256": "fa1e182466b4e2fc880ac4f75f4afd7ade47f3da443810199b10c9e8c9a7fd4e", + "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.924", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "visual-regexp-steroids": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/visual-regexp-steroids.el.git", + "sha256": "150471be3a7d1586568a82fa68331ff653def23641e16ea3190cc8f2ad7e4f0e", + "rev": "2a50710dea5be872b31ea56f74b4cd57d6e61461" + }, + "recipe": { + "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150411.616", + "deps": [ + "visual-regexp" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/org-pdfview.git", + "sha256": "2086bb415a309d69de4784cbc3b69e4cffb846634ea7bf31af13e489ef8aac1f", + "rev": "8f66629e883e0d490584bbf4610cc91938694889" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1544", + "deps": [ + "org", + "pdf-tools" + ] + }, + "company-edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-edbi.git", + "sha256": "668dcf4440a6836c7150ffa6f39fb86155020e4a95e633c0652a79c057a60ac2", + "rev": "38758829b7fd9c1bb152b4d54b5317a20a96e411" + }, + "recipe": { + "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.414", + "deps": [ + "cl-lib", + "company", + "edbi", + "s" + ] + }, + "flyparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jiyoo/flyparens.git", + "sha256": "5a82bf6372c569887e08dcd829aefd8f5f1b86e2963b102d050eac0357c1045f", + "rev": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398" + }, + "recipe": { + "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140723.1346", + "deps": [] + }, + "aozora-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/aozora-view.git", + "sha256": "7474aff942ce2a27f41d8a546d33c93b8d1bfceb92ecd59c78f456d9d5f84814", + "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd" + }, + "recipe": { + "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.817", + "deps": [] + }, + "tinkerer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/tinkerer.el.git", + "sha256": "54af1856cfbbb1e056adcdc79a3501392fa3ade256b51a938ca26f2804dc115b", + "rev": "1125780d1fba0330435fcbe943716032ed543a57" + }, + "recipe": { + "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.49", + "deps": [ + "s" + ] + }, + "readability": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/emacs-readability.git", + "sha256": "0f01cca469c74c6b957c86244c422251275e2c1fad281f5dd9b033fe9647e14d", + "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce" + }, + "recipe": { + "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140715.1927", + "deps": [ + "emacs", + "oauth", + "ov" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/revolver.git", + "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140809.732", + "deps": [ + "grapnel", + "json" + ] + }, + "git-blame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsgates/git-emacs.git", + "sha256": "02d658e3799da5e2ee4b41f19742f31a949e7b10c993445b216e7a53ff81cfa3", + "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d" + }, + "recipe": { + "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110509.1126", + "deps": [] + }, + "io-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/superbobry/io-mode.git", + "sha256": "371f85a0e705c9b9b5ab360a1717ddc1e19157eef566e157a52056f857edb783", + "rev": "79f2de13d8a448892266da26642525747d048aa8" + }, + "recipe": { + "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.521", + "deps": [] + }, + "command-log-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/command-log-mode.git", + "sha256": "956ac8c1ed5004b0f55c2f7ee5a0f6232c7365073a129706ddb552eb979ede3a", + "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850" + }, + "recipe": { + "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.916", + "deps": [] + }, + "vline": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/vline.el", + "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" + }, + "recipe": { + "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120108.645", + "deps": [] + }, + "helm-wordnet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/helm-wordnet.git", + "sha256": "4d5ace400079ed22ff9a20fefb2111cba833c12c93201791a475556b47285249", + "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4" + }, + "recipe": { + "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1633", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "artbollocks-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sachac/artbollocks-mode.git", + "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" + }, + "recipe": { + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141212.1532", + "deps": [] + }, + "firefox-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/emacs-firefox-controller.git", + "sha256": "04f4b8b21bddcd044bd471eeab5efaddfbf80f71dbb035175bc9ac7c1e4ed35f", + "rev": "aeed30509fefc78463531b9e006a795d868d4e74" + }, + "recipe": { + "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1440", + "deps": [ + "cl-lib", + "moz", + "popwin" + ] + }, + "org-elisp-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/org-elisp-help.git", + "sha256": "408bb412ede61b95635f668d5f4974c3b3688ae9558020013f7cef1446e5486d", + "rev": "df319441e528a0cad42d29e71fc3547a61dde1c5" + }, + "recipe": { + "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130423.1745", + "deps": [ + "cl-lib", + "org" + ] + }, + "pinboard-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danieroux/pinboard-api-el.git", + "sha256": "81264dcde676e3a792d12d733d601b89bfaee4aa0970a4a0d6dc11dca31d655d", + "rev": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4" + }, + "recipe": { + "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140324.648", + "deps": [] + }, + "elpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/elpy.git", + "branchName": "release", + "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.601", + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "yasnippet" + ] + }, + "fcitx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/fcitx.el.git", + "sha256": "fffb9b725fe97058c7ccfc4500ddaed5b11c769c0d507d320543b16e665033e0", + "rev": "5c4ec4181226b9846bc227e20c61645280fc26c1" + }, + "recipe": { + "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.901", + "deps": [] + }, + "smart-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dryman/smart-window.el.git", + "sha256": "bac9037e58650846ff96c9cb300d8088bd045c012616ebb9ec5bc637795b46db", + "rev": "a87e0d2007de40033deee39496f791f4b047f138" + }, + "recipe": { + "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130214.1342", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/avy-zap.git", + "sha256": "ef9a9654ac6b640179c23414710516f56c5fd39a762404f82c05e8673485f468", + "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1348", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/inf-ruby.git", + "sha256": "90870b6e1656c52f20424eb12e2a5c19c7e8a5862dd1620a741832b448abe765", + "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1437", + "deps": [] + }, + "confluence": { + "fetch": { + "tag": "fetchsvn", + "url": "http://confluence-el.googlecode.com/svn/trunk/", + "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", + "rev": "170" + }, + "recipe": { + "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1923", + "deps": [ + "xml-rpc" + ] + }, + "tea-time": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krick/tea-time.git", + "sha256": "80480aa4120996a33c303236c1327ea34edd4d4bac832109a3281236f9e48c2c", + "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca" + }, + "recipe": { + "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120331.320", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [ + "connection", + "link" + ] + }, + "cargo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/cargo.el.git", + "sha256": "5b5121df1c639b32970b3f6e64936d0e97e7f8518948940fa186e74188e40dce", + "rev": "1b28b29d641a52d23861f241c54c098d6f070e76" + }, + "recipe": { + "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.1620", + "deps": [ + "emacs" + ] + }, + "helm-flymake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/helm-flymake.git", + "sha256": "701cb814a924eada9ce76dc50f91d3cfe2cbf92324493a46581a7542498b2ad2", + "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a" + }, + "recipe": { + "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130717.44", + "deps": [ + "helm" + ] + }, + "scratch-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyanagi/scratch-ext-el.git", + "sha256": "f7d9b54045bf4952bce0147c5527d28f53fe4e6258d67d54ac89e4438c5fe059", + "rev": "388c53cddd0466b451264894667ed64a6947ad67" + }, + "recipe": { + "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.2316", + "deps": [] + }, + "backup-each-save": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el", + "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7" + }, + "recipe": { + "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130704.932", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/cl-lib-highlight.git", + "sha256": "aac757d69220f7a8d29bd586c6ef6d0f58c00a82fd5f2b092b910b08b4b0af58", + "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140127.1512", + "deps": [ + "cl-lib" + ] + }, + "hlint-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpickering/hlint-refactor-mode.git", + "sha256": "6e730e1af472e1a9e27fc78740d7aff41deedb19659d200d59621545ba4c506c", + "rev": "695d39b3434a5e35fab70aa5251f824ffaa30d6b" + }, + "recipe": { + "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1441", + "deps": [] + }, + "ob-http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-http.git", + "sha256": "4d1cf942e6be6882c6de7268540fbdbe82f63c162e2e414fceb273ec9b787cde", + "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce" + }, + "recipe": { + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.430", + "deps": [ + "cl-lib", + "s" + ] + }, + "wiki-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" + }, + "recipe": { + "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.754", + "deps": [ + "button-lock", + "nav-flash" + ] + }, + "ac-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/ac-clang.git", + "sha256": "edece03ab5ccc0f59c42c8cb78b56f3078b0c9ef9dcc34aa2a2d2c1be87352d1", + "rev": "6b3365063ddfb88d5527618217bb56166349ad4e" + }, + "recipe": { + "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1208", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "pos-tip", + "yasnippet" + ] + }, + "ert-modeline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/ert-modeline.git", + "sha256": "53171cf3c91db7dab2d75f8ed10ca6ed79c489ad8ab6307a0a4ddbbe8d0bbefc", + "rev": "e7be2b81191afb437b70368a819770f8f750e4af" + }, + "recipe": { + "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.415", + "deps": [ + "dash", + "emacs", + "projectile", + "s" + ] + }, + "pc-bufsw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ibukanov/pc-bufsw.git", + "sha256": "35b4d02d22d3c490ce78188650b349fcdeb306a1bb21d44a4b364f85458245ca", + "rev": "a76120bca9821c355069f135b4e6978351b66bc2" + }, + "recipe": { + "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.213", + "deps": [] + }, + "stekene-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/stekene-theme.git", + "sha256": "439286c1ec6c106e19c69798df97fba41c8cfd218250e4162cb1676b325a3870", + "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98" + }, + "recipe": { + "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.1411", + "deps": [ + "emacs" + ] + }, + "git-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/git-annex-el.git", + "sha256": "4b45cd5217d04fe0a8d800d72bc250c75e3752169baff5c8ebfaec099343cf40", + "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b" + }, + "recipe": { + "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131119.1645", + "deps": [] + }, + "checkbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/checkbox.el.git", + "sha256": "27825e86446141eedde93bddc90d0d8f352fd40c96f08a82c180f63b13a871eb", + "rev": "335afa4404adf72973195a580458927004664d98" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1858", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "color-theme-modern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/replace-colorthemes.git", + "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" + }, + "recipe": { + "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.2106", + "deps": [ + "emacs" + ] + }, + "jtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/jtags/code", + "sha256": "4fce3cbd26e010869736aae584753dca0b2201d31efaa8e52ee04b885edd859a", + "rev": "89eca29499dd9516e6d70456dcd9f163777c786d" + }, + "recipe": { + "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111208.1222", + "deps": [] + }, + "opam": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/opam.el.git", + "sha256": "85c863174ad8d64d51810c2a0340ba128a5c91378b1744c2b5ba44c662ba19fb", + "rev": "4d589de5765728f56af7078fae328b6792de8600" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.720", + "deps": [ + "emacs" + ] + }, + "jira-markup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mnuessler/jira-markup-mode.git", + "sha256": "afba107b9fdf47c473182b705dfb90417dd920a4fa322bc11dcf1ef5a51b1812", + "rev": "4fc534c47df26a2f402bf835ebe2ed89474a4062" + }, + "recipe": { + "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.1609", + "deps": [] + }, + "number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/number.git", + "sha256": "16ecaf532726a889dec3a4ae5e79ee89bbe43ce846276f20bed267dcf240b510", + "rev": "f483365c330392b3e9362481b145acf3db040baf" + }, + "recipe": { + "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.1204", + "deps": [] + }, + "org-drill-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/org-drill-table.git", + "sha256": "56c12b8fcbb18bb4bd7ec0ff5b06b5d52d449e3bafc9cd83b15a8d3ef4605474", + "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c" + }, + "recipe": { + "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.337", + "deps": [ + "cl-lib", + "dash", + "emacs", + "org-plus-contrib", + "s" + ] + }, + "crappy-jsp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/crappy-jsp-mode.git", + "sha256": "6bf559a5ab2c810c82ffcce4b3473e0df790e6931e4d5a301130e945bba1e689", + "rev": "6c45ab92b452411cc0fab9bcee2f456276b4fc40" + }, + "recipe": { + "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.431", + "deps": [] + }, + "peep-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/peep-dired.git", + "sha256": "2de2a543a76434214242ef817a9f0a30fab2150178c0870cd06ae1c63d016653", + "rev": "6c18727fc58e2a19638f133810e35bd5d918a559" + }, + "recipe": { + "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150518.900", + "deps": [] + }, + "docker-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/docker-tramp.el.git", + "sha256": "a24b1149809b254b96dd12b127c162cb7cfa6b40b23ea085ade084e964560d0b", + "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e" + }, + "recipe": { + "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.2155", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.625", + "deps": [ + "dash", + "deferred", + "emacs", + "f", + "popup" + ] + }, + "springboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/springboard.git", + "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" + }, + "recipe": { + "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1211", + "deps": [ + "helm" + ] + }, + "zone-nyan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/zone-nyan.git", + "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" + }, + "recipe": { + "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1514", + "deps": [ + "esxml" + ] + }, + "cursor-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el", + "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7" + }, + "recipe": { + "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1539", + "deps": [] + }, + "haste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rlister/emacs-haste-client.git", + "sha256": "08c550a82e164424efa0ed39b216418711e1a75b3857e442703135a84a21b0be", + "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25" + }, + "recipe": { + "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141030.1534", + "deps": [ + "json" + ] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/emacs-emojify.git", + "sha256": "52a9f660c521aa2601c708b746bc2247d09393fa7c0dc753b65449cfe1f0c159", + "rev": "651173daddfafb6d9a84643d46c4eeb93874fe18" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.2054", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/sx.el.git", + "sha256": "22b7666fa9c29a0a7140030fc9e5670e0ef878edec91254eccfbc2d2eaf57d5f", + "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.2046", + "deps": [ + "cl-lib", + "emacs", + "json", + "let-alist", + "markdown-mode" + ] + }, + "mykie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/mykie-el.git", + "sha256": "b96f795c73b1d2ee3ad2599239a338e86bb91e53bc9aaa6514951b6ef9a87059", + "rev": "7676f0e883af1d1054e404e97691f3c13aba196f" + }, + "recipe": { + "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150808.1705", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/esup.git", + "sha256": "655878e4ba2e05c7d59fe9bb6a8bfc9d4dddcc6a5a28a1a006829a4936652211", + "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2111", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-rsi.git", + "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1719", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/letcheck.git", + "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.1112", + "deps": [] + }, + "zoom-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el", + "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y" + }, + "recipe": { + "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.1224", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "ido-exit-target": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ido-exit-target.git", + "sha256": "7d48ddbb9679a7c1cf6c5ab98d30a2007b6434029ef850b7f55635c50ec123e9", + "rev": "322520c665284ce6547eb9dcd3aa888a02a51489" + }, + "recipe": { + "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.937", + "deps": [ + "emacs" + ] + }, + "find-file-in-repository": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoffstaetter/find-file-in-repository.git", + "sha256": "d1f0d5686683e034aca416bf5b7ad320bccc423859815e27eb776133cce25713", + "rev": "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8" + }, + "recipe": { + "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.719", + "deps": [] + }, + "auto-install": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-install.el", + "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d" + }, + "recipe": { + "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.1902", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpenet/clojure-snippets.git", + "sha256": "82ca6e88a1945b866e010311dadbb628608bfbcf8f2aac199e680d2133fc11f1", + "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.344", + "deps": [ + "yasnippet" + ] + }, + "zonokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ZehCnaS34/zonokai-emacs.git", + "sha256": "e3d025e8aaeba351e37f2ca1b0c7b02b51c04508801890ed4de98de97a3148d5", + "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69" + }, + "recipe": { + "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.2202", + "deps": [] + }, + "helm-lobsters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/helm-lobste.rs.git", + "sha256": "160e558e98c65db83293115a43f87f57ce2809fd3acc5b084cc389dfbc354e07", + "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb" + }, + "recipe": { + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.946", + "deps": [ + "cl-lib", + "helm" + ] + }, + "moe-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/moe-theme.el.git", + "sha256": "31d9d62abf6aab75207ed875b3ccfd2b44ad3330dda54737caea53e5d79de310", + "rev": "56b0833e3549e1b2f008388549972971936b053f" + }, + "recipe": { + "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1709", + "deps": [] + }, + "sproto-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2q1n9/sproto-mode.git", + "sha256": "ab18ef262f0274f1b946b52d21f9495ff6d69d2d5ff4a19e863833d559c6f511", + "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7" + }, + "recipe": { + "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1205", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-commandlinefu.git", + "sha256": "32cd3f6f48226460a5d77ebbc3add0e9b22a1a51e307a3b1225b5162d6aeb93b", + "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.45", + "deps": [ + "emacs", + "helm", + "json", + "let-alist" + ] + }, + "ac-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-emoji.git", + "sha256": "3b31df8022f3b579cfe304b22d27b88ef46f05ee26590f4b1232c2ea325c9867", + "rev": "f4b3a5b3548dc36f69daeff742f53b5bda538bae" + }, + "recipe": { + "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.211", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "gh-md": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/gh-md.el.git", + "sha256": "114d1b331fb039fd629248239d3e71f3279c2d421f6e9aad14082d2fd148ef5b", + "rev": "693cb0dcadff70e813e1a9d303d227aff7898557" + }, + "recipe": { + "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1140", + "deps": [ + "emacs" + ] + }, + "badger-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ccann/badger-theme.git", + "sha256": "e113aeecc000ab243eeba530f634d6b5f41acae3cf7558d1d9988b784daf1a3d", + "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4" + }, + "recipe": { + "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140716.2132", + "deps": [] + }, + "ox-asciidoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-asciidoc.git", + "sha256": "1b2e41e490cc25afc64115414275e46a8afe0ad217cef050e0287a8c71d8bb6b", + "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1" + }, + "recipe": { + "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.1459", + "deps": [ + "org" + ] + }, + "ember-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/madnificent/ember-mode.git", + "sha256": "5f92a80f7a1befbd853ba52dbd80a9663c0fc37acb89dc3d22268593a1f16833", + "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e" + }, + "recipe": { + "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.421", + "deps": [ + "cl-lib" + ] + }, + "ido-load-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ido-load-library.git", + "sha256": "de0cb9bc7a82509b0f3a070a91b4585c9bf1eb34e05ac4e019bf6f0d7cb0ead1", + "rev": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7" + }, + "recipe": { + "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.1100", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "therapy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/therapy.git", + "sha256": "60bf5c7fb723d4301518a0ef70047b264f850d1965077d023170222b1da85101", + "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a" + }, + "recipe": { + "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1353", + "deps": [ + "emacs" + ] + }, + "isend-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/isend-mode.el.git", + "sha256": "7523ce3b202af1e8fb3a436936c09b61d48a260f3cdd35f2c69d99d9439a48cd", + "rev": "274163f5c42834ce0391fcc8800e169104ad518f" + }, + "recipe": { + "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.458", + "deps": [] + }, + "cd-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jamienicol/emacs-cd-compile.git", + "sha256": "8cb007eb0a52914991ad2820952ae62bed938bd81252169054ca241e6a6423a9", + "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f" + }, + "recipe": { + "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.1357", + "deps": [] + }, + "flycheck-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/flycheck-irony.git", + "sha256": "5038bd12912bb463145f94522adab568e386401ef79fe4c24711e1e4a02fa5ab", + "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4" + }, + "recipe": { + "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.1431", + "deps": [ + "emacs", + "flycheck", + "irony" + ] + }, + "tabula-rasa": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idomagal/tabula-rasa.git", + "sha256": "d67421006dcec972da9c4b83aa91ff0c341d8cad980620a29450517127ef4a56", + "rev": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5" + }, + "recipe": { + "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141215.2347", + "deps": [ + "emacs" + ] + }, + "auctex-lua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/auctex-lua.git", + "sha256": "5f3ffbdc324a0f27eda1ad77e3d4d3e83f2017ccfc67f63884b958aaec7eee51", + "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5" + }, + "recipe": { + "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1010", + "deps": [ + "auctex", + "lua-mode" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/elmacro.git", + "sha256": "3fba10e7b3a7edb6798398129619f22ed52c8e49f49e555fee56985d9e6730a0", + "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.1006", + "deps": [ + "dash", + "s" + ] + }, + "fit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fit-frame.el", + "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1" + }, + "recipe": { + "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1604", + "deps": [] + }, + "helm-make": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-make.git", + "sha256": "efac6d8b02e770237fa3b2932805ae106069ed794c104bf1d142b6c703d0e117", + "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1120", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.2140", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/beeminder.el.git", + "sha256": "952901cfc27fa5ebdbe024952cff5561ff9b31e6ece98eb09601dd543ea26bb2", + "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1634", + "deps": [ + "org" + ] + }, + "idris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idris-hackers/idris-mode.git", + "sha256": "5832968881992872d05b52f00e43e593afca613d6999f605bb8f49d7e6c4e71b", + "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.607", + "deps": [ + "cl-lib", + "emacs", + "prop-menu" + ] + }, + "bliss-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-bliss-theme.git", + "sha256": "b9d5cc780a8e19ccf3c71ab14999a3b65fda1ad8e19ed0d212a8e1dced88c036", + "rev": "2c6922cb24118722819bea79a981f066039d34a3" + }, + "recipe": { + "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/mozc.git", + "sha256": "937331c3adb3ebde9e93baf6724fb8013da649b28473a5575bb2db5ccbcef2a0", + "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" + }, + "recipe": { + "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.503", + "deps": [] + }, + "drill-instructor-AZIK-force": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/drill-instructor-AZIK-force.el.git", + "sha256": "4704f22d81ffb676d2a4371236a3a800a2363b36a7e8c5b22f7a48086705f853", + "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5" + }, + "recipe": { + "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.2314", + "deps": [ + "popup" + ] + }, + "exec-path-from-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/exec-path-from-shell.git", + "sha256": "66a414b026f24372dc0f9fa9f49d448512d6ccbfbe671a789c72175694aca9d4", + "rev": "673f1fc0606ca9a30eb62cb1ac2094d15ab9377e" + }, + "recipe": { + "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1333", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-symbol.el.git", + "sha256": "5ce0f39ab7e53eba8d64fd09d70eef4666d450a69e0a0bf3372f20c3790242f1", + "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.651", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", + "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.624", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "reveal-next": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", + "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" + }, + "recipe": { + "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1843", + "deps": [] + }, + "vbasense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-vbasense.git", + "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140221.1753", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "lively": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lively.el", + "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76" + }, + "recipe": { + "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120728.913", + "deps": [] + }, + "org-redmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/org-redmine.git", + "sha256": "05ce455f00351031f9719e331d21f19c3f67ab4073158b7830aa4bf8f6d8a422", + "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9" + }, + "recipe": { + "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.931", + "deps": [ + "anything" + ] + }, + "creds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-creds.git", + "sha256": "e452ea4163989317d9329a19c41ad64e6b2668098e1103eb92fdcd343957d8af", + "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1206", + "deps": [ + "dash", + "s" + ] + }, + "helm-project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-project-persist.git", + "sha256": "1bf6c5b5f3771fa295e2f1fa488d35dc6faea81f2f17d17101f949fd6760a448", + "rev": "357950fbac18090985a750e40d5d8b10ee9dcd53" + }, + "recipe": { + "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.943", + "deps": [ + "helm", + "project-persist" + ] + }, + "phabricator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajtulloch/phabricator.el.git", + "sha256": "965b712583083b9795cafd9872c11354c52cc7a684e5c15cdd136dd2462d38b6", + "rev": "b1450350cc3c45c732252bb13860156d824ead10" + }, + "recipe": { + "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.307", + "deps": [ + "dash", + "emacs", + "f", + "projectile", + "s" + ] + }, + "make-it-so": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/make-it-so.git", + "sha256": "e99805543f05dfaed127ec704caa447c04616e2655ed9f2b9911071a6fb24502", + "rev": "ed83b8b9787441cc6be4994d571529852a8cce4a" + }, + "recipe": { + "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150319.1407", + "deps": [ + "emacs", + "helm" + ] + }, + "eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", + "sha256": "82f966c5bec578bf9bf170ab733ff473fc9c78164ecefd12b6cd8fe7db54d8eb", + "rev": "6cffd33155d10c3e58b39cbb170f42e910fd8595" + }, + "recipe": { + "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.1551", + "deps": [ + "highlight" + ] + }, + "mustang-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/mustang-theme.git", + "sha256": "24b3b7eb16dc64e874aa5a333ab4e617e52b30fc0778728330fb6ac71a190da7", + "rev": "79c3381dd50601775402fe2fddd16fffa9218837" + }, + "recipe": { + "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141017.1823", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/httprepl.el.git", + "sha256": "968a514e736f8ea97a1e602f78ef2084abdf7a93c6df4a9591950894b6c7a6b0", + "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141101.1234", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "tern-auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" + }, + "recipe": { + "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.853", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "tern" + ] + }, + "ox-ioslide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-ioslide.git", + "sha256": "431a9ff36e738fb5f7306d8ea1a70b67b7c5c233d9bb006806bdacade7eafc74", + "rev": "79fb2c161ded934c3a4ddf623100103212a4d2d8" + }, + "recipe": { + "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.2352", + "deps": [ + "cl-lib", + "emacs", + "f", + "makey", + "org" + ] + }, + "hungry-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/hungry-delete.git", + "sha256": "d44bba87be3adab33401b31b0aa5a32554e053ae09c85b190dca042b6910c5ef", + "rev": "ed1694ca3bd1fe7d117b0176d417341915ad4f1f" + }, + "recipe": { + "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1514", + "deps": [] + }, + "n3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doriantaylor/n3-mode-for-emacs.git", + "sha256": "304d9b0db018e0a02cbac065443fde380d3ddb456a93c4b9fc788310525fe1d2", + "rev": "0145e7938c30183edb03a55a4f16390dabd191ec" + }, + "recipe": { + "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.1257", + "deps": [] + }, + "quasi-monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", + "sha256": "81f146dad25b69acfe6d01ab0a41a32e4c2cec7269d822f4147b489f9c457c27", + "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7" + }, + "recipe": { + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1525", + "deps": [] + }, + "rfringe": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/rfringe.el", + "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" + }, + "recipe": { + "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110405.1020", + "deps": [] + }, + "projectile-codesearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/codesearch.el.git", + "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" + }, + "recipe": { + "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150419.45", + "deps": [ + "codesearch", + "projectile" + ] + }, + "editorconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "editorconfig-core" + ] + }, + "bbyac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baohaojun/bbyac.git", + "sha256": "b4094c2ed0ddc7431ac1cd19aedd038c83bd7f03d87a784b227538e94c23b5b1", + "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659" + }, + "recipe": { + "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.501", + "deps": [ + "browse-kill-ring", + "cl-lib" + ] + }, + "evil-anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-evil-anzu.git", + "sha256": "7bb64bf480e4763e2c504b7cee2789a58353a28b0d936f9014fc0a7ed037ac35", + "rev": "a041db15bd6e2eb353b24f6f984f6c5ee618d460" + }, + "recipe": { + "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.1809", + "deps": [ + "anzu", + "evil" + ] + }, + "cloc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/cloc-emacs.git", + "sha256": "5b98c39be6d9cb778ac8f31d80ebb81a5a4c9c54a43004ddef67adec0160d4e5", + "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53" + }, + "recipe": { + "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.401", + "deps": [ + "cl-lib" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/hl-anything.git", + "sha256": "e5a9ee3cb1d45a4378e67695a8b60d196d243a7c9300411cb67cafde4b201bfc", + "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.731", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/restart-emacs.git", + "sha256": "565e0567e2dd390743441e29c90a4cc93e56a66c52210bd9af89b2ecb43d7609", + "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1035", + "deps": [] + }, + "lispxmp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", + "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" + }, + "recipe": { + "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "dummyparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snosov1/dummyparens.git", + "sha256": "f07750f1d3e7a87b02c00e786f88d7e79ab7c3078267df3da5bb1909beb5e23c", + "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89" + }, + "recipe": { + "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.524", + "deps": [] + }, + "clean-aindent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pmarinov/clean-aindent-mode.git", + "sha256": "e00e581ef09d5ca7056c9394e7bbab2bdd38e697f8fe19fc41eb871aff34d3c0", + "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f" + }, + "recipe": { + "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.2229", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/passthword.git", + "sha256": "784a88bd7bfe8653a08e1370cd69306b409052faa2a3e9ef43e9a8b483819379", + "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141201.323", + "deps": [ + "cl-lib" + ] + }, + "tab-jump-out": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/tab-jump-out.git", + "sha256": "d589f85e264f9aa70dfba028f450a7b673237d11f71fcaa997ecdba0d872fa40", + "rev": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51" + }, + "recipe": { + "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2030", + "deps": [ + "dash", + "emacs" + ] + }, + "smyx-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tacit7/smyx.git", + "sha256": "bd24cd4e4bc8170012fe6e5b9ce4ca7f2848b43b6fe599c38705f2109c6d5afc", + "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401" + }, + "recipe": { + "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.228", + "deps": [] + }, + "evil-cleverparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luxbock/evil-cleverparens.git", + "sha256": "a6a293c2e0dc06c9831a72970f2629e6eca71a247a9c705147e2862a025efedf", + "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107" + }, + "recipe": { + "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.2238", + "deps": [ + "dash", + "emacs", + "evil", + "paredit", + "smartparens" + ] + }, + "s": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/s.el.git", + "sha256": "d0208102b6938f071af8892b5830d5eec739eb2e6eae2688d04c47b0ebb0c8fe", + "rev": "372e94c1a28031686d75d6c52bfbe833a118a72a" + }, + "recipe": { + "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.606", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/sweetgreen.el.git", + "sha256": "99c88f0d206ce35ab5da19fa9108cffd49a6e5141e6b2753b67c29b8ed03794f", + "rev": "d61b7dfb2b588997efd9d11d3b248c874bceda52" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2106", + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ] + }, + "transpose-mark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/transpose-mark.git", + "sha256": "5dd4326870e169ae20e0fd734e50cfe28aab2ebf0668f8bf7db9ce6037288c0f", + "rev": "667327602004794de97214cf336ac61650ef75b7" + }, + "recipe": { + "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.216", + "deps": [] + }, + "javadoc-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/javadoc-lookup.git", + "sha256": "7b48944fdc982187daaf648054540901d502b454fca5c62f4638f7e0936c6b32", + "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f" + }, + "recipe": { + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1203", + "deps": [ + "cl-lib" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/immutant-server.el.git", + "sha256": "9048d80fe6fc2ac76a3c8fb1cc9f3e92adb6f269e1a1673bd7efc68d53ad6a65", + "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.1708", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/git-ps1-mode-el.git", + "sha256": "cefb41d9e6822b0ae55a31d19c9a33c383a97d67edbeeb18250d2d663b0a8994", + "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.2301", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/evil-textobj-anyblock.git", + "sha256": "1c7a29cc075d83167ef3edf55822cf67c55401ed67d3873c13e33d4aad169fec", + "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.1617", + "deps": [ + "cl-lib", + "evil" + ] + }, + "osx-plist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/osx-plist.git", + "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" + }, + "recipe": { + "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101130.648", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/n3mo/cyberpunk-theme.el.git", + "sha256": "bf5346e0b1c427e35fc35e72f1461d7d882fb4f19f16fd2ffa7c7890bb503ab9", + "rev": "8eada5a95d18ad3a5d77d18de9a304877f952948" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.2235", + "deps": [] + }, + "ido-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ido-migemo.el.git", + "sha256": "f9bb01ac8ab702d7222ae740d9fbc589c43c41c955b4486d044f84eacf717f8e", + "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77" + }, + "recipe": { + "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1744", + "deps": [ + "migemo" + ] + }, + "elwm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/elwm.git", + "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.507", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", + "sha256": "dda2dfbe91fa63cd36078ef02ec903dfc1206f7809a4146abd64c04a417f4902", + "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.2135", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/shackle.git", + "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.816", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/scpaste.git", + "sha256": "319a5b8ba780cbe8dd61ed14070e8141fa93238ab8e667332efa41984d08efc9", + "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1935", + "deps": [ + "htmlize" + ] + }, + "helm-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-themes.git", + "sha256": "dca8123a0044b5c8b1d4a448a6b854001fbd7d34836fc0043de27169e44f85a3", + "rev": "a6449a40c5a219b43a92c975917a07337f864b4f" + }, + "recipe": { + "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.121", + "deps": [ + "helm-core" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruceravel/gnuplot-mode.git", + "sha256": "b9633b84408a5c3d50c9123714f4b8108147d0af7d8836d5729a32dedfa5b5a4", + "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1537", + "deps": [] + }, + "brainfuck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/brainfuck-mode.git", + "sha256": "4d027c217051f8c46bc7a1549b6b266b735eda8c165149b4a337fb16ff93efdb", + "rev": "36e69552bb3b97a4f888d362c59845651bd0d492" + }, + "recipe": { + "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.242", + "deps": [ + "langdoc" + ] + }, + "auto-complete-rst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/auto-complete-rst.git", + "sha256": "68b91f7b40baa692522c7f4d29d0096829660a84c3d7cc66d2d63d26d0dafa80", + "rev": "4803ce41a96224e6fa54e6741a5b5f40ebed7351" + }, + "recipe": { + "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.344", + "deps": [ + "auto-complete" + ] + }, + "ess-smart-equals": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/ess-smart-equals.git", + "sha256": "c672236d29a2a2a4f6823862f82bb39fb7804c4f2b358f3b5dce250e202e23af", + "rev": "e0f5f18f01ed252fde50d051adf1fa6254a254c9" + }, + "recipe": { + "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1", + "deps": [ + "emacs", + "ess" + ] + }, + "gom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-gom-mode.git", + "sha256": "6bad1cebc66b599bbf4d2eb07280820da6f991ef0baac6a4c34dce511efdd2aa", + "rev": "972e33df1d38ff323bc97de87477305826013701" + }, + "recipe": { + "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131007.2153", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-etags.git", + "sha256": "d1fc417efe657d1ee4f78b3d8a2aa10e01016766c42005dc1a3334b4297ebd3e", + "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2121", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", + "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.1944", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-hlint.git", + "sha256": "5870a86cd25ea7c2312700d7ee731a39bc75bbae999496a2d9b150f5f6c4b104", + "rev": "fae0c16f938129fb933e4c4625287816e8e160f0" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130309.345", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.231", + "deps": [ + "dash", + "emacs", + "flycheck", + "ycmd" + ] + }, + "ansible-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/ansible-doc.el.git", + "sha256": "cdfd044552a6cdb91bd6c27f229c9b605ad8f0acbb673dbc1993976461d5d9df", + "rev": "d0ce210674b5bee9836e6773c4e823747a6f1946" + }, + "recipe": { + "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150524.1205", + "deps": [ + "emacs" + ] + }, + "ido-vertical-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/creichert/ido-vertical-mode.el.git", + "sha256": "6a017b0155077192e96f459b6d7ac234f9134b0f073cfe43a76c4cc0cdff7529", + "rev": "0beaf1eaa8509bece9419b663826665322b22b4c" + }, + "recipe": { + "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.2033", + "deps": [] + }, + "hemisu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrzejsliwa/hemisu-theme.git", + "sha256": "2799f06f193aadfbe5c1656e1a0a5ec30a1e8cbba8b6d303a8c2041e5fdc0d9d", + "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f" + }, + "recipe": { + "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.1344", + "deps": [] + }, + "naquadah-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/naquadah-theme.git", + "sha256": "02fbc2274fa388a04e11fb255af0a471d67bdb32f348d2b0c8a7b5e06730ae57", + "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac" + }, + "recipe": { + "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.341", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.2254", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "cdlatex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cdominik/cdlatex.git", + "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" + }, + "recipe": { + "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140707.626", + "deps": [] + }, + "yalinum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tm8st/emacs-yalinum.git", + "sha256": "e05a95dde79375acfce71d3ad689d6c682def579893481d24824b8f4a022ad89", + "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973" + }, + "recipe": { + "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130217.443", + "deps": [] + }, + "org-download": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/org-download.git", + "sha256": "61a7b3a24caef7e76f3d8b8bb14fbf9c92d8cd923862e64b9220725ca0ad3d81", + "rev": "501920e273b32f96dfbafcf769d330296a612847" + }, + "recipe": { + "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.916", + "deps": [ + "async" + ] + }, + "oberon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/oberon.git", + "sha256": "c659c89cc8b2116d1109f51ddf5e9f58f05db4fe801078523c4f86841f138698", + "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3" + }, + "recipe": { + "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120715.409", + "deps": [] + }, + "inkpot-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/siovan/emacs24-inkpot.git", + "sha256": "bb32504ecf392f0c424464f90df96041550c8cd6dadb2c517425ea818e1a7b18", + "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966" + }, + "recipe": { + "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120505.908", + "deps": [] + }, + "pixie-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnwalker/pixie-mode.git", + "sha256": "a704c62dbfc02babde9ca45980e91e7e002ab11436570f7230736cb4f486aa8b", + "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96" + }, + "recipe": { + "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.2324", + "deps": [ + "clojure-mode", + "inf-clojure" + ] + }, + "sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" + }, + "recipe": { + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.714", + "deps": [ + "dash", + "dash-functional", + "emacs" + ] + }, + "gandalf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/gandalf-theme-emacs.git", + "sha256": "3b157a72098054008153d71bd4c3c006e1bf6ffc1507925e15a3bc4563f0c36a", + "rev": "4e472fc851431458537d458d09c1f5895e338536" + }, + "recipe": { + "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130809.447", + "deps": [] + }, + "guru-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/guru-mode.git", + "sha256": "591ee650a45f760a8906bf3e9ee8e8a2969d639fa14ec9ba3ee360e2117a019a", + "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd" + }, + "recipe": { + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.28", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/msvc.git", + "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.351", + "deps": [ + "ac-clang", + "cedet", + "cl-lib", + "emacs" + ] + }, + "phi-search-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search-migemo.git", + "sha256": "704658d8fd9ea2dc370bad805411d95aa86b8ddc5e37da71f2bd7d1ba79510cd", + "rev": "57623e4b67ee766cbb299da00a212f3ebf7d6fb0" + }, + "recipe": { + "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.706", + "deps": [ + "migemo", + "phi-search" + ] + }, + "describe-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netromdk/describe-number.git", + "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "rev": "40618345a37831804b29589849a785ef5aa5ac24" + }, + "recipe": { + "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1955", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/smex.git", + "sha256": "4654e7c87e8fb95d227b53254fbad534be72ee65c90418e56dca1f3ed89d2b77", + "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1609", + "deps": [ + "emacs" + ] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/fancy-battery.el.git", + "sha256": "8895443fa449b64087aee747a5bd6ae74877ba2d62ca963c817a77b2e29de420", + "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.604", + "deps": [ + "emacs" + ] + }, + "erc-track-score": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/erc-track-score.el.git", + "sha256": "a2835be9868e92ca7fa9edcf4d3648c4ac398b09c2c2a3ae878a807f4e3b2058", + "rev": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3" + }, + "recipe": { + "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.715", + "deps": [] + }, + "wgrep-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.511", + "deps": [ + "wgrep" + ] + }, + "nameframe-perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.407", + "deps": [ + "nameframe", + "perspective" + ] + }, + "nrepl-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samaaron/nrepl-eval-sexp-fu.git", + "sha256": "6cd78dee4be926b45d2b29ad0c1a11a46178953c0bcc48c952b4562cba0a92db", + "rev": "3a24b7d4bca13e87c987a4ddd212da914ff59191" + }, + "recipe": { + "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.541", + "deps": [ + "highlight", + "smartparens", + "thingatpt" + ] + }, + "org-trello": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/org-trello/org-trello.git", + "sha256": "d72c3558d0f69429802002f34352aea065217d9aee0a0fec04afdba42034906f", + "rev": "ae291d19752d86d01bb21cec6fb410c1eb9145d7" + }, + "recipe": { + "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.936", + "deps": [ + "dash", + "dash-functional", + "deferred", + "emacs", + "request-deferred", + "s" + ] + }, + "codesearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/codesearch.el.git", + "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" + }, + "recipe": { + "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.754", + "deps": [ + "dash" + ] + }, + "know-your-http-well": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/for-GET/know-your-http-well.git", + "sha256": "8fcadb6272122913db6a834fdf012dc5545373032989c7a126412f6b58e9ccf1", + "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1331", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/homebrew-mode.git", + "sha256": "2a2bff3881e8e61e0b5ffb26fad0d44943353e413652a1b2db5fa17577991f37", + "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.851", + "deps": [ + "dash", + "emacs", + "inf-ruby" + ] + }, + "erc-social-graph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/erc-social-graph.git", + "sha256": "4a5ff1a6599d6b064639bc19f89e4dc5ed36fc35ebd3b4cfe4aa3c7218b96f4c", + "rev": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0" + }, + "recipe": { + "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.704", + "deps": [] + }, + "caml": { + "fetch": { + "tag": "fetchsvn", + "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/", + "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw", + "rev": "16548" + }, + "recipe": { + "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.1045", + "deps": [] + }, + "indent-guide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/indent-guide.git", + "sha256": "2739eaf3c2c863af9a62faf3d014b9bd2d02295009834ad8b6e6b0c95be2a4dc", + "rev": "0ef4813c538d5afba210681a8e81848b0927d421" + }, + "recipe": { + "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.917", + "deps": [] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "3073db99375de84c335c93d44d520c1a2ed471fb1a7c7f1febef014a6e2d16c1", + "rev": "a3e25d94424e2acd516d818e83d74c56e884b0a4" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1022", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-java-bytecode.git", + "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1112", + "deps": [] + }, + "projmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ericbmerritt/projmake-mode.git", + "sha256": "c4bc2f7c8a8de41c2b19242383e79955b7f88b3ee275f2e580c4d6d2f01060cd", + "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451" + }, + "recipe": { + "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1620", + "deps": [ + "dash", + "indicators" + ] + }, + "nm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjim/nevermore.git", + "sha256": "53591bdf6757c95c174fa6fe8d6a19b900fdded4cf6a70088bd1ff197d956bea", + "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e" + }, + "recipe": { + "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1310", + "deps": [ + "company", + "emacs", + "notmuch", + "peg" + ] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", + "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.241", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/irony-mode.git", + "sha256": "78dc00c2fb295482e8c691a8812a8a5043b7ca74857415d1fb570859992f5ab4", + "rev": "8a4b1019a36c08a2158a83af3ec29dcae63f699f" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1201", + "deps": [ + "cl-lib", + "json" + ] + }, + "elein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/elein.git", + "sha256": "fcbaf920371415f5c65fd60d12035c0554de42a05ea59c03e505febc538559c6", + "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605" + }, + "recipe": { + "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120120.516", + "deps": [] + }, + "ruby-interpolation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/ruby-interpolation.el.git", + "sha256": "05e3cbd3f06c0c1d9eb480613cdcee5bbe9322d40f6fad43aed37213bb2c4ee4", + "rev": "1978e337601222cedf00e117bf4b5cac15d1f203" + }, + "recipe": { + "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131112.1052", + "deps": [] + }, + "swiper-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper-helm.git", + "sha256": "4b28889617d39430b9a91134a149233dc39164b5453484701de9915380de29bb", + "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c" + }, + "recipe": { + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.530", + "deps": [ + "emacs", + "helm", + "swiper" + ] + }, + "cal-china-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xwl/cal-china-x.git", + "sha256": "9abf50b719fca3d93ca280ec58f6ee0c1851a888df303646814e7562d908290d", + "rev": "b6186a729899ae141c546dd3efde461160d8b172" + }, + "recipe": { + "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1547", + "deps": [ + "cl-lib" + ] + }, + "chinese-wbim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zilongshanren/chinese-wbim.git", + "sha256": "8f5f05647c2cb66d1f535954f5c0c08bf57c3991c7c9de30f60fe5999b79a133", + "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095" + }, + "recipe": { + "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.2250", + "deps": [] + }, + "n4js": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmtxt/n4js.el.git", + "sha256": "97a194366ffbdf39af380d3f9998461607d7dee90d9369471cbdffc02460a6dd", + "rev": "3991ed8975151d5e8d568e952362df810f7ffab7" + }, + "recipe": { + "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.2131", + "deps": [ + "cypher-mode", + "emacs" + ] + }, + "emoji-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikazuhiro/emoji-display.git", + "sha256": "49085a0601b8dfefd73e48692df6fb36269f993e5dd3bab7cfa848b234c1046a", + "rev": "bb4217f6400151a9cfa6d4524b8427f01feb5193" + }, + "recipe": { + "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.413", + "deps": [] + }, + "e2wm-sww": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-sww.git", + "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" + }, + "recipe": { + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140524.358", + "deps": [ + "e2wm" + ] + }, + "pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baudtack/pomodoro.el.git", + "sha256": "3fec04ad6e3f28afaeef31334483673cfca8b63b57fcb3f6db260cc4af0793b6", + "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c" + }, + "recipe": { + "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.1246", + "deps": [] + }, + "wisp-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/wisp", + "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd", + "rev": "34fc6f12d740" + }, + "recipe": { + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.1234", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/syntactic-sugar.git", + "sha256": "54019635be28de99a32aa8c5f3ea837c101f5b1226ac96eb7f1826568e0b473b", + "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "savekill": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/savekill.el", + "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" + }, + "recipe": { + "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140417.2134", + "deps": [] + }, + "ido-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/katspaugh/ido-at-point.git", + "sha256": "f7e6544b19bfb654c7bad5ffd3cc3c3a2ae227d3410dbc2f93b1d68be43e31ae", + "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee" + }, + "recipe": { + "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.257", + "deps": [ + "emacs" + ] + }, + "smartrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/smartrep.el.git", + "sha256": "26126f625e696cc7ad900f1b233cf82afc5cf906ff5456318c1d0fc451c45cea", + "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2130", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/prodigy.el.git", + "sha256": "e8f9aa96f7eb852872f687f70676cfdbba019ba37d80bc4bceaf751e311eed67", + "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.452", + "deps": [ + "dash", + "emacs", + "f", + "s" + ] + }, + "toggle-quotes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toctan/toggle-quotes.el.git", + "sha256": "6f9ea8c72f843aec3da6d656f724c4668ee201daf4269f602a7725fb1fae34f0", + "rev": "33abc221d6887f0518337851318065cd86c34b03" + }, + "recipe": { + "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140710.426", + "deps": [] + }, + "scss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/scss-mode.git", + "sha256": "0d099c4937f65aaed5632f4a1a025f99d909b13fedc86a9655ff3773bba70b20", + "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2" + }, + "recipe": { + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150107.1600", + "deps": [] + }, + "unipoint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/unipoint.git", + "sha256": "00ee1616c866d51f051d85382356e8712bdda1f1a7c402036122ffa0fdcf89f2", + "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a" + }, + "recipe": { + "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140113.1624", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", + "sha256": "33cf135dcbf36e8afd56ba30b51973a68314fa18f7b78e3c230e16b1d4e5160c", + "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.506", + "deps": [] + }, + "jdee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jdee-emacs/jdee.git", + "sha256": "00cbd306417e79c1421d36296dfe000bcfa40e7522ef67e5b4ba0a148d9d28f2", + "rev": "0fde60adf8ca805fec23e82d393bd39d0b45598d" + }, + "recipe": { + "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1437", + "deps": [ + "emacs" + ] + }, + "maude-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk", + "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy", + "rev": "63" + }, + "recipe": { + "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140212.502", + "deps": [] + }, + "display-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/emacs-display-theme.git", + "sha256": "4a7bf5dc48af1930a52b9ed036840b3bdf15eea599bdf998bbe216feee02a664", + "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15" + }, + "recipe": { + "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.956", + "deps": [ + "emacs" + ] + }, + "list-register": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-register.el", + "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l" + }, + "recipe": { + "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "scratch-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scratch-pop.git", + "sha256": "217712d2ed13e6aaad7aca5cb5e8386d18b146cfbeafdf990479201d767475fb", + "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549" + }, + "recipe": { + "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.339", + "deps": [ + "popwin" + ] + }, + "erc-image": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-image.el.git", + "sha256": "2e21234a666016b185ade6c53a24e9d9a19b51a3bcc40c2c9890f80e451f210f", + "rev": "270a60706e3e0669350bb7aaea465570ef5074cf" + }, + "recipe": { + "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.514", + "deps": [] + }, + "thingatpt+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", + "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" + }, + "recipe": { + "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.1911", + "deps": [] + }, + "mysql2sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-mysql2sqlite.git", + "sha256": "31407a4da86f248cbb1b74cd3adca57840391ce750e45e7aff1e0a816102a860", + "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f" + }, + "recipe": { + "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1539", + "deps": [] + }, + "hide-comnt": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el", + "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn" + }, + "recipe": { + "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1120", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/emms-player-mpv.git", + "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.102", + "deps": [ + "emms" + ] + }, + "decl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/preetpalS/decl.el.git", + "sha256": "017f4ac9a942df293dcea653b060de37ef4b06785a370f1e21e8dbf95fd355da", + "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75" + }, + "recipe": { + "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.2249", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "flatland-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-flatland-black-theme.git", + "sha256": "419f17824d1220fbe28c7c4f4c4d98b03376ba2da269fc78eb732e4eb0c96645", + "rev": "75fc4f1815feb23563a60477c02d70326b45c59e" + }, + "recipe": { + "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.30", + "deps": [ + "emacs" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brunchboy/kibit-helper.git", + "sha256": "d9122972365cb1f84ae0a78194f891e706e6948a8b3c17eca89b55b7a9585068", + "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1033", + "deps": [ + "emacs", + "s" + ] + }, + "recompile-on-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/recompile-on-save.el.git", + "sha256": "31d350b682b235ff5279a83b62b136df764bdac5e302bfe241494f67e9426272", + "rev": "92e11446869d878803d4f3dec5d2101380c12bb2" + }, + "recipe": { + "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.846", + "deps": [ + "cl-lib", + "dash" + ] + }, + "slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slime/slime.git", + "sha256": "c2a4ee139ede4a3fed4f2f66fe38cce4459efa9987cb5c4be03057c6ba4ff093", + "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1342", + "deps": [ + "cl-lib" + ] + }, + "audio-notes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/audio-notes-mode.git", + "sha256": "950dac86137c7460b4e4bcce5d9b3fe6089002bb3b1107e4a7bbfcc5e89ae960", + "rev": "2158b2e8d20df3184bbe273a7fd5aa693e98baa9" + }, + "recipe": { + "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140204.1354", + "deps": [] + }, + "define-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/define-word.git", + "sha256": "0df72fb7ff8224867a3ebf29b6e1393bdf40e4f411295bcffd0046817d10260a", + "rev": "64d98b7748686c51261fe6e8d42078c6284feb13" + }, + "recipe": { + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.1423", + "deps": [ + "emacs" + ] + }, + "ecukes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/ecukes.git", + "sha256": "1136d15d6b498e4541bf8bd806dece1ffa737b65d08ef0b462e8059eea112a7f", + "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.848", + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ] + }, + "shell-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/shell-switcher.git", + "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" + }, + "recipe": { + "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.815", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", + "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.313", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/haml-mode.git", + "sha256": "767f2692968ee2b2f20d20722d1ea342e825a67e240677fe85a564d4bfaa5f23", + "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2211", + "deps": [ + "ruby-mode" + ] + }, + "sentence-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/emacs-sentence-navigation.git", + "sha256": "66e2dbd8c2d31bff2ab60e6a3677684872a72ac55eb59b7899bb59a844d87146", + "rev": "8b6bf8af180c95f516bda9285da3fe940a2ab740" + }, + "recipe": { + "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.2346", + "deps": [ + "ample-regexps", + "emacs" + ] + }, + "helm-github-stars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-github-stars.git", + "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" + }, + "recipe": { + "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150625.1723", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/elmine.git", + "sha256": "1341bd6eb23ce3a8c535a5f6b9c0960e85aa00f7062033c1684b79c33ef1c390", + "rev": "60639f46a5f45653f490cdd30732beb2dca47ada" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.623", + "deps": [ + "s" + ] + }, + "ace-jump-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-zap.git", + "sha256": "043e5268dc95a3b53eee348e9cbb8b024d0b0a672ec12716a124e540325d197c", + "rev": "c60af83a857955b68c568c274a3c80cbe93f3150" + }, + "recipe": { + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1542", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "anchored-transpose": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el", + "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651" + }, + "recipe": { + "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080905.54", + "deps": [] + }, + "toxi-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/postspectacular/toxi-theme", + "sha256": "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk", + "rev": "fc4274055149" + }, + "recipe": { + "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130418.1439", + "deps": [ + "emacs" + ] + }, + "pyfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aheaume/pyfmt.el.git", + "sha256": "a7d44d913ff67bcc1c7fc347527beefad4146aec85ca89d5ba78c6195aab35df", + "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32" + }, + "recipe": { + "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150521.1556", + "deps": [] + }, + "ruby-dev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Mon-Ouie/ruby-dev.el.git", + "sha256": "a193aa397540765bb2847806ccdd1167e75d59a8b257a4a8445c6aee5afdc5b3", + "rev": "3a6f6e489697916dd554852492bd325879be2e44" + }, + "recipe": { + "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130811.351", + "deps": [] + }, + "flappymacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/taksatou/flappymacs.git", + "sha256": "a51e0deaa94e804f7b8fd8e84237068b68a59155d79950bfc620a80910351b1e", + "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd" + }, + "recipe": { + "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140715.1101", + "deps": [] + }, + "helm-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manuel-uberti/helm-company.git", + "sha256": "dd7f5d0872a74755fc65fa862bfa91fa719ffefb595b02c32993422ef6f26c39", + "rev": "4feea2d9df12a82ffc36ac63ec512f0cb95596ad" + }, + "recipe": { + "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.608", + "deps": [ + "company", + "helm" + ] + }, + "smeargle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-smeargle.git", + "sha256": "dd8c124aaeb67ee8b6e67c4cab08a428e94ebb5a46f17cf67a55bac7f46289e3", + "rev": "67466d5214a681430db8cb59a2a1bca771ff0024" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.42", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/table.el.git", + "sha256": "ac3e02b5a3d40a2316a3b58b39dc0eee7fc202cdbdd830d9dfdea7cb6bf05a19", + "rev": "d3718985d1103490c140690ead37d65b0e427c63" + }, + "recipe": { + "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140722.15", + "deps": [] + }, + "epc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-epc.git", + "sha256": "0e10ca8ad594123f926a961c7084c9afecc23ad79b32319712e934f8076f51b6", + "rev": "dbae585622fa7b556945cc7475f354976d26b065" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140610.34", + "deps": [ + "concurrent", + "ctable" + ] + }, + "suomalainen-kalenteri": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", + "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" + }, + "recipe": { + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.504", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/init-loader.git", + "sha256": "20fdbb2f17e8cad103436513f4d848436e6790a43ab6acd2cfc53e984304d69e", + "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141031.133", + "deps": [] + }, + "font-lock+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/font-lock+.el", + "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4" + }, + "recipe": { + "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1605", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/session.git", + "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120510.1900", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/bundler.el.git", + "sha256": "689a70113ac361be29aea093344cf19433826a6a0d8fe82f3207f7800b8c5f29", + "rev": "9be0c4601a4d1a35de22f818637ce029830272d3" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.912", + "deps": [ + "cl-lib", + "inf-ruby" + ] + }, + "undohist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/undohist-el.git", + "sha256": "9d274e64fba8b57510a1888c19269637d09b4e2f05a2557a58c74f4304570db0", + "rev": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0" + }, + "recipe": { + "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.742", + "deps": [ + "cl-lib" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brettlangdon/jsfmt.el.git", + "sha256": "0c523fd245c380531d767cb9d6e2f70dd50ad6f7695f64c1845ad14159e92f41", + "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.1725", + "deps": [] + }, + "rdp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/rdp.git", + "sha256": "0d7bf1cfb82bb188863c39f8556fd58a3eac59924e9948b29acc56f8e0328922", + "rev": "b620192afada04aec33b38cc130fef0765f41ca9" + }, + "recipe": { + "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120928.2054", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-mode.el.git", + "sha256": "191a3a4680d71de1d687d43d4a0b0311d4cb47163c6eae50f6f0c14242fd6cfc", + "rev": "5d53a13bd193653728e74102c81aa931b780c9a9" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.118", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/xtest.git", + "sha256": "be4328cc0beb6097793212bb41ebb68f65f991a1a8d1a9e7d1afffff8e46b626", + "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.1106", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/noccur.el.git", + "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.1620", + "deps": [] + }, + "speck": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/speck.el", + "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" + }, + "recipe": { + "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140901.1335", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/lispyscript-mode.git", + "sha256": "8987ff24f5bdf25def7ff14ea831279bc94dcc481e0614243d3ed4fac5e85538", + "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130828.919", + "deps": [] + }, + "pacmacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/codingteam/pacmacs.el.git", + "sha256": "4fc1f6ac82ff628dcf909f937095167433d9e927d9fc1db4d4e16ddd8c80b877", + "rev": "4ce9773129536b635474ac7466d4b7b9e0eb4458" + }, + "recipe": { + "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.410", + "deps": [ + "cl-lib", + "dash", + "dash-functional", + "emacs", + "f" + ] + }, + "bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/bbdb.git", + "sha256": "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26", + "rev": "8fce6df3ab09250d545a2ed373ae64e68d12ff4c" + }, + "recipe": { + "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1741", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/ac-anaconda.git", + "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150912.308", + "deps": [ + "anaconda-mode", + "auto-complete", + "dash" + ] + }, + "fliptext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fliptext.el", + "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw" + }, + "recipe": { + "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131113.2018", + "deps": [] + }, + "cljsbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kototama/cljsbuild-mode.git", + "sha256": "849c0edb0a6e1e13b46bfd83306be73a222dc69b268246efbb4cc2d2fa9fad10", + "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65" + }, + "recipe": { + "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.326", + "deps": [] + }, + "magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs", + "git-commit", + "magit-popup", + "with-editor" + ] + }, + "sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly.git", + "sha256": "e98699c11f8e22ed885fe2348a49bec0b87cc8c9849537947138eb2d1913775c", + "rev": "8533961ecd828e162dc26b065922264a3b7ba210" + }, + "recipe": { + "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1717", + "deps": [ + "emacs" + ] + }, + "delim-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomas11/delim-kill.git", + "sha256": "ce4b3ee90a8e35e3168e7256dd2b4e7be3e5020544c197bf1a47308b9a064219", + "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1" + }, + "recipe": { + "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100517.120", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-stgit.git", + "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1744", + "deps": [ + "emacs", + "magit" + ] + }, + "shelltest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rtrn/shelltest-mode.git", + "sha256": "d9e8c2a12033bb2635f527ccb819c4cfca834232fa571adf5026c505ffe142db", + "rev": "e2513832ce6b994631335be299736cabe291d0f7" + }, + "recipe": { + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.448", + "deps": [] + }, + "maker-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/maker-mode.git", + "sha256": "b0ae8995d993581ff3be331ed7abcc333fdf34f1ed4d3d41bc50f2ae7a3eee8c", + "rev": "335c43b08eff589040129dae1ea13c88793b069e" + }, + "recipe": { + "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.554", + "deps": [ + "dash", + "s" + ] + }, + "tagedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/tagedit.git", + "sha256": "9a332974306aeb0f5d31231bee316c098899a47a576de46c9a7d01b39cb8f9c8", + "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.424", + "deps": [ + "dash", + "s" + ] + }, + "lorem-ipsum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/emacs-lorem-ipsum.git", + "sha256": "545958594376b8adc9b814134c73a5f7503ea0582fe4f25eee64457937ff3da7", + "rev": "893a27505734a1497b79bc26e0736a78221b35d9" + }, + "recipe": { + "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140911.1608", + "deps": [] + }, + "db": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-db.git", + "sha256": "b3f82ca0fd211476470d1d91d03617c2fb02255ac16012b127a3a530f224db6b", + "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438" + }, + "recipe": { + "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140421.1611", + "deps": [ + "kv" + ] + }, + "tinysegmenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/tinysegmenter.el.git", + "sha256": "12b50fdd8a7a070b1e5132a2ab2e68c1ec66f42b72cd2aaaae0f1a91abb10cd9", + "rev": "872134704bd25c13a4c59552433da4c6881b5230" + }, + "recipe": { + "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.413", + "deps": [ + "cl-lib" + ] + }, + "flymake-jshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/flymake-jshint.el.git", + "sha256": "6a6cb6bbfa90056936c4f00ef593f427e140944be1204f9df0f9b4b3ae4b957b", + "rev": "79dd554c227883c487db38ac111306c8d5382c95" + }, + "recipe": { + "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140319.1700", + "deps": [ + "flymake-easy" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/navi.git", + "sha256": "f72f816f248fdb8f37c20b332016af3727080ee83cd45625b6870fe26916a83c", + "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.957", + "deps": [ + "outorg", + "outshine" + ] + }, + "smarty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/smarty-mode.git", + "sha256": "5d4690171b338286c8f079d90911faa6d59af9607577bca2466b6ae141b783ee", + "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568" + }, + "recipe": { + "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100703.658", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-sass.git", + "sha256": "7d3ed7cfd2887817ce371fc57efb0175e4bce05f03152f77df6424bf0240de4e", + "rev": "748f13caa399c27c41ba797da9e214b814f5a30f" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140308.525", + "deps": [ + "flymake-easy" + ] + }, + "shimbun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/w3m.git", + "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120718.2238", + "deps": [] + }, + "sackspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/sackspace.el.git", + "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130719.456", + "deps": [] + }, + "bind-chord": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/use-package-chords.git", + "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" + }, + "recipe": { + "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.1007", + "deps": [ + "bind-key", + "key-chord" + ] + }, + "org2blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/org2blog.git", + "sha256": "5dda51e79a81733df44dfb8d5f56404328ae6b619eba483e8f07e1eee85bc4b3", + "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1028", + "deps": [ + "metaweblog", + "org", + "xml-rpc" + ] + }, + "ample-regexps": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/ample-regexps.el.git", + "sha256": "b668190ee591c7bbf552edcb184d981bb9eb838b911d77d82d6f443acb8a8b49", + "rev": "884c712a82773d3af500e71d20bebe52340352c5" + }, + "recipe": { + "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.500", + "deps": [] + }, + "mhc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/mhc.git", + "sha256": "c8a0f274ed6cfd7398cef685ec59b5aa4a3522216d03c8a0aa2e0511e2b6736b", + "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d" + }, + "recipe": { + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.238", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-ghc.git", + "sha256": "0de87f418110d0dafddad28fdfb4eb95c1f97b2a6080dd483b496e6091906912", + "rev": "e7be2b13b3ca3e9de63e8a66d0444e4750cbf22c" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.639", + "deps": [ + "cl-lib", + "company", + "emacs", + "ghc" + ] + }, + "evil": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/lyro/evil", + "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3", + "rev": "73ad80e8fea1" + }, + "recipe": { + "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.1302", + "deps": [ + "goto-chg", + "undo-tree" + ] + }, + "flycheck-css-colorguard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Simplify/flycheck-css-colorguard.git", + "sha256": "beacbde63ff31170cc238a7d6c8b2a9209b6709ce04c3d332ca25ffa9379d3a6", + "rev": "8c2061c11d5465eec77ad471bef413eb14d122da" + }, + "recipe": { + "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.347", + "deps": [ + "emacs", + "flycheck" + ] + }, + "ruby-end": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-end.git", + "sha256": "68812f31857a9568c6c7a90e9f3654317675ae4d81e1ae228c963b4c86da778e", + "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97" + }, + "recipe": { + "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141215.623", + "deps": [] + }, + "openstack-cgit-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/openstack-cgit-browse-file.git", + "sha256": "e0e025db91c9560e5d9a39308ce965f33fc9607482a833edacdde04ba6bb0601", + "rev": "244219288b9aef41155044697bb114b7af83ab8f" + }, + "recipe": { + "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130819.427", + "deps": [] + }, + "addressbook-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/addressbook-bookmark.git", + "sha256": "2d116f542a4e1016c85fed955c3d5031227400554d53a2c05c3e23142246ef2f", + "rev": "784df4fa06f90214ddba127391ef4fcb6b699468" + }, + "recipe": { + "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.2308", + "deps": [ + "emacs" + ] + }, + "magnatune": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eikek/magnatune.el.git", + "sha256": "1e410e567deb5d46c13cf46bdb52f844dba1a24f9228bb152fbf2d52bf111fc3", + "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4" + }, + "recipe": { + "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1435", + "deps": [ + "dash", + "s" + ] + }, + "f": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/f.el.git", + "sha256": "fc9228dbe65b1f31b023ccf71eb8716b07536322d751c8307215f51cc1ee9b19", + "rev": "e0259ee060ff9a3f12204adcc8630869080acd68" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.323", + "deps": [ + "dash", + "s" + ] + }, + "fortpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rosenbrockc/fortpy-el.git", + "sha256": "6f0759e05ef3ef67a0f500208aca2783633d1e7113ecac9d1d38139acb3288dc", + "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b" + }, + "recipe": { + "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1532", + "deps": [ + "auto-complete", + "epc", + "pos-tip", + "python-environment" + ] + }, + "dired-ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "ac-cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/ac-cider.git", + "sha256": "858ace2f7d2919deaee62e666b8b69da0bcf720afd83c7b973acf6fd8f989fcc", + "rev": "eeb4b3ae1e91d03d765f6c39994792e4f05f6600" + }, + "recipe": { + "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.508", + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ] + }, + "project-root": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/piranha/project-root", + "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8", + "rev": "fcd9df2eadca" + }, + "recipe": { + "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110206.1430", + "deps": [] + }, + "heroku": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/heroku.el.git", + "sha256": "12eec40d8876008498f76053872b32f8c363b56dadbc7044f68f5f8c56bc8530", + "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a" + }, + "recipe": { + "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120629.1313", + "deps": [] + }, + "otter-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scvalex/script-fu.git", + "sha256": "da5aaa3d6acc7bfd9d58a9432f6a02155dce6c6897631739a54edfdab01cd128", + "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b" + }, + "recipe": { + "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121202.1103", + "deps": [] + }, + "zombie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/zombie.git", + "sha256": "8f9563efe5a1080efde2929962a8c6c2756bbc04a552cd7ade84afcf8ca7a3be", + "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345" + }, + "recipe": { + "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.1016", + "deps": [] + }, + "irfc": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/irfc.el", + "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" + }, + "recipe": { + "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "basic-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/basic-theme.el.git", + "sha256": "e8d897ca1f114425587715a8a374b8633ce6e441e61166e1b2bec3cb98e176dd", + "rev": "e3c32e1285749b4135d4d593f06566c631c26456" + }, + "recipe": { + "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.307", + "deps": [ + "emacs" + ] + }, + "swbuff-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el", + "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5" + }, + "recipe": { + "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.514", + "deps": [ + "swbuff" + ] + }, + "ibuffer-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/svend/ibuffer-tramp.git", + "sha256": "b84a5a9b59eba44b339f83a2af3d3ab9dd802aec07765bf4b847dc224e5ed9d5", + "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4" + }, + "recipe": { + "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1139", + "deps": [] + }, + "sound-wav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sound-wav.git", + "sha256": "871e0c0443ac09df8f4c860874719c5028426503264cd8ac0e8ccc35520b1dac", + "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.657", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/psession.git", + "sha256": "eb5c0636e3329a9a4089b7e4a9b09e23207471faf00e52ec13924c9e2d4f1cad", + "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", + "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1724", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "osx-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/osx-lib.git", + "sha256": "4132b0a5640c965208278bc3802acef95f126a1c4f1f857949620c444f175da6", + "rev": "22ce16c48f81a9fa791d797ceb8c025855a5b7b9" + }, + "recipe": { + "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2350", + "deps": [ + "emacs" + ] + }, + "wgrep-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1731", + "deps": [ + "wgrep" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/cljr-helm.git", + "sha256": "961681015da836a63eb9117c94b9965300b123b1d80d316da943066ef315bb79", + "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1507", + "deps": [ + "clj-refactor", + "helm" + ] + }, + "tt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davorg/tt-mode.git", + "sha256": "c50c4fa214d58140d6c4a7fc52c83f8efe9a858ad6fcab3273be4ec48d5c9d55", + "rev": "85ed3832e7eef391f7879d9990d59c7a3493c15e" + }, + "recipe": { + "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130804.610", + "deps": [] + }, + "ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ansible.git", + "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1953", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/japanlaw.el.git", + "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2341", + "deps": [] + }, + "smart-cursor-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/smart-cursor-color.git", + "sha256": "71fd6791e87857a7ac853b7375abffe0c59a9574f11b6a55e7b4f46ac1c3f7f9", + "rev": "b0b71f5e14d867aac7e5afdb53e8bd4b338c625b" + }, + "recipe": { + "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.1119", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/link-hint.el.git", + "sha256": "16770038227a4e6d9e04a088c46c700fa1ea866aa99fbb9e5fdc18bcb29b9a3a", + "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1845", + "deps": [ + "avy", + "emacs" + ] + }, + "ox-gfm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/ox-gfm.git", + "sha256": "36dabdc845cd829ba38d17251390b52bc021edb04d24b17b3815109b4558d33d", + "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8" + }, + "recipe": { + "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.226", + "deps": [] + }, + "ibuffer-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/ibuffer-git.git", + "sha256": "d4d0c2bed89c90cf46a631314c3a6f28df70309972f10ee9d6204fac7be92661", + "rev": "d326319c05ddb8280885b31f9094040c1b365876" + }, + "recipe": { + "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110508.231", + "deps": [] + }, + "golden-ratio-scroll-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/golden-ratio-scroll-screen.git", + "sha256": "fc1a7db020e0ca461678c553679c7b29159ca36e1f667dd1569c9d6b7e975c20", + "rev": "ce39ddedd764a94bce92c642931727562a0e8150" + }, + "recipe": { + "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.430", + "deps": [] + }, + "ewmctrl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/ewmctrl.git", + "sha256": "1b2fcb6d0ea29733f1e7263a9e391a99ae670765bf44cd68c617681fe76330bb", + "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28" + }, + "recipe": { + "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.338", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.618", + "deps": [ + "dash", + "emacs", + "with-editor" + ] + }, + "flycheck-dedukti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rafoo/flycheck-dedukti.git", + "sha256": "c67a68906929c8a4bfbaa6a63bc5cdf5874ccbbcb2dfc0ff0e04fc1c5b3988c3", + "rev": "717977c0ead0dc6e267ba2164781d92ee016b7b2" + }, + "recipe": { + "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.851", + "deps": [ + "dedukti-mode", + "flycheck" + ] + }, + "json-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshwnj/json-mode.git", + "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" + }, + "recipe": { + "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2200", + "deps": [ + "json-reformat", + "json-snatcher" + ] + }, + "tbx2org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/tbx2org.git", + "sha256": "a4f1cebbe3f2fdba0b7e3061c317e099bb862911d991f66ca0185ec63d06e8ca", + "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7" + }, + "recipe": { + "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140224.959", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "edbi-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-minor-mode.git", + "sha256": "1a99f7d988d006d5fcbc0c108ec0a55d6a39fbfac131e80bbdea4b73571eec5e", + "rev": "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937" + }, + "recipe": { + "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.703", + "deps": [ + "edbi" + ] + }, + "fountain-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/fountain-mode.git", + "sha256": "990506a09c8f48c76bf827ff62b1f87563e36e9c47480db2d1bcc34d527a351f", + "rev": "934243afbfa042643a973af1b6f26d7353517526" + }, + "recipe": { + "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2321", + "deps": [ + "emacs", + "s" + ] + }, + "erc-tweet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-tweet.el.git", + "sha256": "16f0287af6b5a54bd814415cf0316a0c52778b4c4244cd6ab4bdc096e4271885", + "rev": "91fed61e139fa788d66a7358f0d50acc896414b8" + }, + "recipe": { + "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.758", + "deps": [] + }, + "ace-jump-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/winterTTr/ace-jump-mode.git", + "sha256": "e6fbd567ce1ff08f097bc705c2023839376ce95f0b875731283905d0c2ea5b4a", + "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac" + }, + "recipe": { + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140616.315", + "deps": [] + }, + "tommyh-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wglass/tommyh-theme.git", + "sha256": "5eedc65cdf5cc30a2d38202401460ac714603838080d02849626dffa5f698b5f", + "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5" + }, + "recipe": { + "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1830", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-translate.git", + "sha256": "6cc83a0b5fb5177680727c7f935330a7c104f0d5322d33553c4593a8a237c69c", + "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.929", + "deps": [ + "google-translate", + "org" + ] + }, + "lush-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andre-richter/emacs-lush-theme.git", + "sha256": "5981e6b1865c2def98ed12300aba2efe9682b941e00cf6352135159b901e6757", + "rev": "3b80004f33cdce9f4db69e9ccf2041561e98985d" + }, + "recipe": { + "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141107.1006", + "deps": [ + "emacs" + ] + }, + "meacupla-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/jtecca/meacupla-theme.git", + "sha256": "fb8399ef9c3975b9c536e6b458d5cd151da9a1d355bfd0b2219d4f05d380d48c", + "rev": "f57542222a3a43af9aae665e05a84a61637ab22a" + }, + "recipe": { + "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1717", + "deps": [] + }, + "jumblr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/jumblr.git", + "sha256": "c7f8f8cd5b5400b756eb7de8be4150b44acd9e00245aa944180a325834f05277", + "rev": "705c7286e09a307b2b7f60072a12ed45325657c0" + }, + "recipe": { + "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140908.1552", + "deps": [ + "dash", + "s" + ] + }, + "ox-trac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JalapenoGremlin/ox-trac.git", + "sha256": "1a653957bfc3ef9cc12292b192e9fcf3980485a9b82df12e60d4049c984039f0", + "rev": "2f2f70eefb9679025ae5812e221f0c118da36012" + }, + "recipe": { + "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.1155", + "deps": [ + "org" + ] + }, + "plim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dongweiming/plim-mode.git", + "sha256": "e69be159b6391b3d0e5a43920a620e879d23f5ac54793b56ea881df1aa6a03f0", + "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d" + }, + "recipe": { + "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140812.1913", + "deps": [] + }, + "default-text-scale": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/default-text-scale.git", + "sha256": "a86ac67e81724f78c76e4b1f613a2db47bae6aaf9fc2d3512754cc630f0e5bfb", + "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2" + }, + "recipe": { + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150227.1156", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/structured-haskell-mode.git", + "sha256": "cc544d7dd55f0fc67b943705a8d69ce84cda5edca22a180b8866f47ba9ec4900", + "rev": "a305ca94059d31c60d549494756d5b4eabec20b0" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.133", + "deps": [] + }, + "strings": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/strings.el", + "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" + }, + "recipe": { + "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1752", + "deps": [] + }, + "ssh-tunnels": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/death/ssh-tunnels.git", + "sha256": "9007e048fdbe7e66fd6f2d8197952584eebc78930fceef2ed4d29327b7824581", + "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4" + }, + "recipe": { + "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.518", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tramp-hdfs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/tramp-hdfs.git", + "sha256": "d44ea26732c9c60d3003f30c47f0267cb9e729f82e76bf1e255420c4545c3170", + "rev": "4a3ccaf931ecffeae283cb1766425afbc0f81101" + }, + "recipe": { + "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.2236", + "deps": [] + }, + "handlebars-sgml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacott/handlebars-sgml-mode.git", + "sha256": "101bde20236d764466179e86041228010ba1eb59f2c10e68aca32f8db7520078", + "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4" + }, + "recipe": { + "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130623.1833", + "deps": [] + }, + "iy-go-to-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el", + "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi" + }, + "recipe": { + "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141029.1049", + "deps": [] + }, + "git-gutter-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", + "sha256": "3b09931a7279b23e5d4abec5e49b832f1fd2e05ddc87947e7405539d56f2b5ab", + "rev": "62accbd227b17073d623faa4cc472280fc45f53e" + }, + "recipe": { + "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.2339", + "deps": [ + "cl-lib", + "emacs", + "fringe-helper", + "git-gutter" + ] + }, + "flim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/flim.git", + "sha256": "17d2d1bb32e96611b137c51867f3053221dae521e89862b9bab18d45f81c21f1", + "rev": "60fa2c74a72358658603480addc75b1d23f6431a" + }, + "recipe": { + "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.150", + "deps": [ + "apel" + ] + }, + "molokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alloy-d/color-theme-molokai.git", + "sha256": "624b09625482f1050f3830d7fdbc1ec109b8dc4599a242fdf48edbdc6e2a0ac3", + "rev": "04a44f21184b6a26caae4f2c92db9019d883309c" + }, + "recipe": { + "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1045", + "deps": [] + }, + "emms": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.sv.gnu.org/emms.git", + "sha256": "6e653c3b44442e21ec6e4410d8b9c0e51b2f03ed1ae62c1bb1a2ffa6c8c144da", + "rev": "489df29303fc89d4f80bffae91ad53f937ccd59a" + }, + "recipe": { + "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1353", + "deps": [] + }, + "diffscuss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hut8labs/diffscuss.git", + "sha256": "0fa6f697661b1c6a3ef12715dc5bcbf4614e5dcbc66af55a4db30ba5f5c220bf", + "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7" + }, + "recipe": { + "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141014.1857", + "deps": [] + }, + "flyspell-lazy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/flyspell-lazy.git", + "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" + }, + "recipe": { + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.852", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psachin/insert-shebang.git", + "sha256": "8de74d3b85c868f7548e5273e8fd0a804f62c6714f54d8f8fda8079c04a86b5d", + "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141119.627", + "deps": [] + }, + "anything-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", + "sha256": "bec52c9067cacf96a5e81a680ae6d3a7994e49063056a5430a1534f640286e35", + "rev": "8ed688fd526751e044435bb77135f5315c8167e5" + }, + "recipe": { + "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140316.1837", + "deps": [ + "anything" + ] + }, + "py-autopep8": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-autopep8.el.git", + "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" + }, + "recipe": { + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150420.621", + "deps": [] + }, + "syntax-subword": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/syntax-subword", + "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h", + "rev": "a1e0accb754d" + }, + "recipe": { + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150415.1426", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TeMPOraL/nyan-mode.git", + "sha256": "9e302b81a1f383311576b68c92fcfcdb46b2098cb76ff866fa82a695e2b849c6", + "rev": "eb940664cbca6165644d97989f402c8c5bd0e384" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.35", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-repeatable-motion.git", + "sha256": "93fd887f3023694c58de430142cd27e89010f07acecc889ff7e6c525a1c2f400", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.1312", + "deps": [ + "emacs" + ] + }, + "libmpdee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andyetitmoves/libmpdee.git", + "sha256": "560570c1acb4d2938ad48af17e6e0405459fc256dd74a5154b5332647f645f41", + "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8" + }, + "recipe": { + "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150131.1557", + "deps": [] + }, + "abc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/abc-mode.git", + "sha256": "da45712c3900fbf2bae6207fbe60ac905608fffa212ab4e6829234ffc4e58fc0", + "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.1144", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/enotify.git", + "sha256": "9a00191fd5fcc695ee6ef277eef8dafbb6ae20d2f0e21aef840ce0b1969971c4", + "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.848", + "deps": [] + }, + "unidecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sindikat/unidecode.git", + "sha256": "fca560a403812cb7077bd8a203174392e4ddc26ff1f7ca770e1590f6d10c79cb", + "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c" + }, + "recipe": { + "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140317.2318", + "deps": [ + "cl-lib" + ] + }, + "org-outlook": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-outlook.el.git", + "sha256": "c8136b0207a6c4a74a99ebd83af9a8c674d03ae45fd8ac662e7e18f6ca28fbc4", + "rev": "b7978fedb0d50c1a3e499bf7e98b5cc526028cd4" + }, + "recipe": { + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.747", + "deps": [] + }, + "highlight2clipboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/highlight2clipboard.git", + "sha256": "a60abc5d16130a78efcc24a8e4de1e93af543061dba3f61d539859337cc6d61a", + "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15" + }, + "recipe": { + "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1340", + "deps": [ + "htmlize" + ] + }, + "orgtbl-ascii-plot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgtblasciiplot.git", + "sha256": "2bc851eb3edefe5deb3343db90bb48ff02a22c066d6a6a49346104a49ab08ba0", + "rev": "36576ab5eccb844af62a8774e1fc9b4894b63b84" + }, + "recipe": { + "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150125.1629", + "deps": [] + }, + "kill-ring-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/kill-ring-search.el.git", + "sha256": "56b6547f92c3516b6071d664e2cc2fb854998b269147b52589dd72f6f1bf4b75", + "rev": "23535b4a01a1cb1574604e36c49614e84e85c883" + }, + "recipe": { + "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140422.1055", + "deps": [] + }, + "soothe-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-soothe-theme.git", + "sha256": "1c7720d44f7eafed61149fc038893dad45b98fda967e6c7212f525dc370cf081", + "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b" + }, + "recipe": { + "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.941", + "deps": [ + "emacs" + ] + }, + "cider-spy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonpither/cider-spy.git", + "sha256": "9deee0ae8dcf561dc3d3308b2d053def4ddbd1815f89adb571242f163e11fa6c", + "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41" + }, + "recipe": { + "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.946", + "deps": [ + "cider", + "cl-lib", + "dash" + ] + }, + "plan9-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/plan9-theme.el.git", + "sha256": "cd776d9c8fa1f7bf0f1cde94eae61167273adb518e599ddeabee9dc335bfa3eb", + "rev": "0136d0bf1074cf64f305b4396edcf0f54a90436f" + }, + "recipe": { + "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.745", + "deps": [] + }, + "visual-ascii-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/visual-ascii-mode.git", + "sha256": "16d0d917bfb7b4b524c982fb271e8cc20594c78437ba5931ba49894487ab68b3", + "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947" + }, + "recipe": { + "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150129.446", + "deps": [] + }, + "helm-go-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-go-package.git", + "sha256": "2c722e82af5e73013800d8c7ab46f33363a2145e75661204384bca3403b501e4", + "rev": "1909156510a4e73697a86b8c040d38e4d352851a" + }, + "recipe": { + "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.804", + "deps": [ + "deferred", + "go-mode", + "helm" + ] + }, + "scala-outline-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ancane/scala-outline-popup.git", + "sha256": "a4be5cdf917369a1b037084c5b0719812298899e667c92a61b6d61f967cec695", + "rev": "47e92a1a7738738164d7657ee324bc382a383985" + }, + "recipe": { + "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1137", + "deps": [ + "dash", + "flx-ido", + "popup", + "scala-mode2" + ] + }, + "http-twiddle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hassy/http-twiddle.git", + "sha256": "c294a23e60fa805b620b2c387b9b8a0d61ec5850a7102a389d98700d5dc11101", + "rev": "bbf025b0f57068fe0fb3f1fbc2f6fd7bf0d65992" + }, + "recipe": { + "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.744", + "deps": [] + }, + "vagrant-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/vagrant-tramp.git", + "sha256": "fe39cc7502b30ba978710c8b2097382f7c6d1cac959305cf20604e1d561cb81c", + "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33" + }, + "recipe": { + "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.1723", + "deps": [ + "dash" + ] + }, + "typing-game": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-typing-game.git", + "sha256": "88a077585cb992f85dc39e412e99a24f963d97373f761b8764866a1ed98db744", + "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8" + }, + "recipe": { + "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.940", + "deps": [] + }, + "symon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/symon.git", + "sha256": "78caec6e78442cc413d1019b7c2e1f8c2f920e330dcade16906b01f7363260d5", + "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842" + }, + "recipe": { + "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.300", + "deps": [] + }, + "edbi-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-django.git", + "sha256": "58c12575d394b5cfa5e0bc4d559ac18625ea531a41f4706159253cd4b1b0916d", + "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102" + }, + "recipe": { + "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "edbi", + "emacs", + "f" + ] + }, + "smart-tabs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcsalomon/smarttabs.git", + "sha256": "cb4c5eb94abc6d2b7737c459f71e8d780669fe9df399185adbef29b44e86c5e8", + "rev": "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e" + }, + "recipe": { + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140331.1829", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/amd-mode.el.git", + "sha256": "317fd55a4e4ea25811e188b5a7584f6b41e9160d55278453a5a602c356cd5cab", + "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.318", + "deps": [ + "dash", + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s" + ] + }, + "lua-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/lua-mode.git", + "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" + }, + "recipe": { + "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.730", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-window.git", + "sha256": "8ae8f85b0a8e43d141226ee77d862e13aef6637d4e863cbf5023dbe825396014", + "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1037", + "deps": [ + "avy" + ] + }, + "origami": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/origami.el.git", + "sha256": "88781a830861e18a35b9ed7d804d98cc1e4b5796782039cfd928f78c34a0a35c", + "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1" + }, + "recipe": { + "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.650", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "ace-popup-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ace-popup-menu.git", + "sha256": "35dc81c6d33012dd595ab24c0c192c95b18536589a64105065b2bf40b1e1c50c", + "rev": "92cac2f656b5000d2f267ffaa92a275f40a2719d" + }, + "recipe": { + "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.727", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "zoom-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-zoom-window.git", + "sha256": "df810d2e922e7e00ba9858c25f28b93148f9c7ae891fa5ece914de8c284c12b0", + "rev": "45ae8d0f47af351d73daeb6cecc366ea7eb49a88" + }, + "recipe": { + "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.2305", + "deps": [] + }, + "shell-current-directory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/metaperl/shell-current-directory.git", + "sha256": "2c7ac90b90b4821c45a2a1fd26530cc7a5587ee403cb1e7ecc20b7d6589182f0", + "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a" + }, + "recipe": { + "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140101.1754", + "deps": [] + }, + "ghc-imported-from": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", + "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "rev": "fcff08628a19f5d26151564659218cc677779b79" + }, + "recipe": { + "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.1332", + "deps": [ + "emacs" + ] + }, + "elhome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/demyanrogozhin/elhome.git", + "sha256": "13e42ace869b8f48ed169931d7b733176b10cc3cb37b249148dec850fe7f3ce4", + "rev": "af112592fbc41a625d1d17828db78357df23c127" + }, + "recipe": { + "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131202.1308", + "deps": [ + "initsplit" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/company-emoji.git", + "sha256": "a2cd0076231cf80a7ee8b360355079bb639e531132212ae35161be5acfc1f523", + "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.20", + "deps": [ + "cl-lib", + "company" + ] + }, + "stickyfunc-enhance": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-stickyfunc-enhance.git", + "sha256": "0ff8489cbae9d6f61e08686d6e03fc3f5ff9be24ed76c2395d40485bb296bd99", + "rev": "13bdba51fcd83ccbc3267959d23afc94d458dcb0" + }, + "recipe": { + "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150429.1314", + "deps": [ + "emacs" + ] + }, + "pylint": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/logilab/pylint", + "sha256": "0rgik6478hbvnjdvhyfvp0kz4g80jig1cbvxaqp3amc4nhxqbcpb", + "rev": "467e659fd2eb" + }, + "recipe": { + "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150123.1800", + "deps": [] + }, + "org-password-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leafac/org-password-manager.git", + "sha256": "88dde057c1117f56f9dd07a5212d9a7ddc7b19406d24b59dbb649b92fd3a4b6c", + "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03" + }, + "recipe": { + "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.1715", + "deps": [ + "org", + "s" + ] + }, + "graphene-meta-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene-meta-theme.git", + "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" + }, + "recipe": { + "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.400", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-term.git", + "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.808", + "deps": [ + "e2wm", + "log4e", + "yaxception" + ] + }, + "files+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/files+.el", + "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + }, + "recipe": { + "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.2104", + "deps": [] + }, + "tracwiki-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/merickson/tracwiki-mode.git", + "sha256": "aecc7be6814b922522a26f6f4ac5c35b23b778fc9a65b909049038e769a045d4", + "rev": "6a620444d59b438f42383b48cd4c19c03105dba6" + }, + "recipe": { + "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1021", + "deps": [ + "xml-rpc" + ] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/x86-lookup.git", + "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.732", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "badwolf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bkruczyk/badwolf-emacs.git", + "sha256": "d4dd31f75fa18e39763fd8bd0c3682a6f6146cf69e9eeb95054e984db16f9381", + "rev": "0164a0fb69fa9f82589eb45acbd402a43300c88d" + }, + "recipe": { + "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1429", + "deps": [ + "emacs" + ] + }, + "cursor-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/cursor-test.el.git", + "sha256": "34916c1ad9f5836377893fd8ca77a9aff36e5c6f9ea89f78a0cc49b27f84b672", + "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b" + }, + "recipe": { + "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131207.1132", + "deps": [ + "emacs" + ] + }, + "sunshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaronbieber/sunshine.el.git", + "sha256": "945a75ef40851184916dbf3456d3d559b614855da3aae7c73ebc5fe539dc71f4", + "rev": "8783923f0aa4b835b90359443b941b10758c28d7" + }, + "recipe": { + "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.814", + "deps": [ + "cl-lib" + ] + }, + "smart-mark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/smart-mark.git", + "sha256": "0f3a45c6efc6ff7b824e4566d5208e2f8623b9f993b4c8dd2960cac6e3a91b6b", + "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0" + }, + "recipe": { + "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.2110", + "deps": [] + }, + "region-bindings-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/region-bindings-mode.git", + "sha256": "fe13e5656aca50c9c7966ea7dc0ce2857ae9a631938560783fd9366fd8886e0a", + "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc" + }, + "recipe": { + "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.1714", + "deps": [] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pezra/rspec-mode.git", + "sha256": "aa6b1ffd7579260d8bf40d08788cb5c93668e444b2cfe343399c710a82ffc50e", + "rev": "7b0a900d4b525abc683de5900efd484f4a44f063" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.515", + "deps": [ + "cl-lib", + "ruby-mode" + ] + }, + "mb-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/mb-url.git", + "sha256": "664b387cd5a270522e09e329a2c767c335f22cd27e7c93d0bb063a39e1b38400", + "rev": "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c" + }, + "recipe": { + "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1216", + "deps": [ + "cl-lib" + ] + }, + "shell-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/shell-toggle.el.git", + "sha256": "29bf2bb7c627ef67940397f86355a495bbf75047197e6c93927729a61a634a6b", + "rev": "0d01bd9a780fdb7fe6609c552523f4498649a3b9" + }, + "recipe": { + "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150226.811", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/birkenfeld/idomenu.git", + "sha256": "7344f4bb7b747877a21ac3ebaeccafa759fea0a69ccac205cc31eb47614cf0d6", + "rev": "4b0152d606360c70204fb4c27f68de79ca885386" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1520", + "deps": [] + }, + "unicode-troll-stopper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", + "sha256": "51197d3b0f4eb46b73bd41678a0fac1ed8a2b0e8eeba8a2559fe400aaa6cbcf6", + "rev": "14e3430c1fe6c351eda23f874bc4a2b0ee5c5de9" + }, + "recipe": { + "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.2031", + "deps": [] + }, + "ein-mumamo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/ein-mumamo.git", + "sha256": "b48745dd493598d76094bef497d764abbd9c6a8aea0fdfb6df722f2cb403371c", + "rev": "028fefec499598add1a87b92ed991891f38f0c7b" + }, + "recipe": { + "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150301.1828", + "deps": [ + "ein" + ] + }, + "omni-quotes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-quotes.el.git", + "sha256": "9887e844a4d67ae13f074407cbf2017635640f3ea700eafcf9e11a37767246ed", + "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf" + }, + "recipe": { + "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1257", + "deps": [ + "dash", + "omni-log" + ] + }, + "helm-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-dictionary.git", + "sha256": "c8f07faee3e507cba65395613eb650fa4391dabd61949c38807f9e4ed63cab16", + "rev": "2aeafba1556c76cc5ff949ca50f341fc2aa687b0" + }, + "recipe": { + "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1336", + "deps": [ + "helm" + ] + }, + "auto-complete-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianjcj/auto-complete-clang.git", + "sha256": "21d6a3404563cb1b0c3fc292d361367417af23e5c50949827f84cad50f71c68b", + "rev": "a195db1d0593b4fb97efe50885e12aa6764d998c" + }, + "recipe": { + "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140409.252", + "deps": [ + "auto-complete" + ] + }, + "ob-prolog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/ob-prolog.git", + "sha256": "36946686ea4f411b6f136c18a93d3eea551e32d0237f104589b1d21c745b4c93", + "rev": "548986d0e6f678789216a882f0a19daf1b89ab93" + }, + "recipe": { + "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.1137", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/goto-gem.git", + "sha256": "29bd83767742bef804819fbe8e4aedc4ee6aae3d9c711a5103d545ed706f5048", + "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.1345", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-cua.el.git", + "sha256": "7f7b4f9c5c52e4b89207cc3f5ae1b680825ba93ccc3efb44840e92fccd793304", + "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130906.634", + "deps": [] + }, + "clang-format": { + "fetch": { + "tag": "fetchsvn", + "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", + "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", + "rev": "255503" + }, + "recipe": { + "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.638", + "deps": [ + "cl-lib" + ] + }, + "autotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/elisp.git", + "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" + }, + "recipe": { + "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150130.425", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/yagist.el.git", + "sha256": "c46ab90d8e605cbd1f8fcf2e9a4d76fcc1ea125ee6a27bd119ec56e3cff81c6b", + "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.751", + "deps": [ + "cl-lib" + ] + }, + "magma-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ThibautVerron/magma-mode.git", + "sha256": "12cde4cead2c2e6d0f49727d9f19d4c51e620fd29c0d75a1defb8947506e8c2a", + "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760" + }, + "recipe": { + "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.340", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "maxframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmm5t/maxframe.el.git", + "sha256": "e1377985a896a32a12aac6635c675ebe8b9226c28948a86daf7608639ebe333d", + "rev": "174e3a0f3a716e904eba15e659096a99976ee39a" + }, + "recipe": { + "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140916.954", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/company-irony.git", + "sha256": "d46d28c5f55569223f0486b5c0fa8c5cdbf9f1fb78c273029952f0343b4f2a78", + "rev": "09f16eade551201548455285a2d977a0889761da" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150810.439", + "deps": [ + "cl-lib", + "company", + "emacs", + "irony" + ] + }, + "dactyl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luxbock/dactyl-mode.git", + "sha256": "b519c4dcf0fa9292bfac863c66c7457a9beb077efdae5d304e0cb2aa3c03e43a", + "rev": "cc55fe6b987271d9647492b8df4c812d884f661f" + }, + "recipe": { + "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.1225", + "deps": [] + }, + "easy-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/easy-kill.git", + "sha256": "075b6543fa291efc7b3fa77c507b9018546458a6c5fabcf5e85751a5f6a25744", + "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f" + }, + "recipe": { + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.29", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-imenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/dired-imenu.git", + "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" + }, + "recipe": { + "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.1010", + "deps": [] + }, + "soft-morning-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-morning-theme.git", + "sha256": "ae8b6d0cab0f784f56235ecd626a7accc3fe76cfd264f0b0b67f370bc316081b", + "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c" + }, + "recipe": { + "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1541", + "deps": [] + }, + "escreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/escreen.git", + "sha256": "ac3af5e4feec05dbad3c96f07ad002a06f39a987de1199efa5f92eb98140a745", + "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96" + }, + "recipe": { + "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1213", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NixOS/nix.git", + "sha256": "6ad776f3dfe3589aec1ac465facb9cc4e293f77ab9d029b57b052dad85882b4d", + "rev": "32ea8a98986b3f6629628ab2c0f395fef38bcbaa" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.515", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/angular-snippets.el.git", + "sha256": "36bbc6861cbc9d8c42bb95a116843324ccd6d48819797a9b93fdd721860ab541", + "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140514.23", + "deps": [ + "dash", + "s" + ] + }, + "helm-rubygems-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/f-kubotar/helm-rubygems-local.git", + "sha256": "6d00ab846ea88997eb3e3c9567fef35ee20467e045a33f5f513f65be5d589068", + "rev": "289cb33d41c703af9791d6da46b55f070013c2e3" + }, + "recipe": { + "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130711.2011", + "deps": [ + "helm" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacsagist.git", + "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140331.1330", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/yafolding.el.git", + "sha256": "e7d32e200506a93b41bec4570a1b628a8951a1354fbd0be52a6f96b54f15452c", + "rev": "0dc48073f429112b51a888e8e9285739435d3c7f" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141202.2256", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-cmd.git", + "sha256": "469b1b735724729abd7c94e20a56efbf599814e476f3bcb819dd4627c0196d88", + "rev": "fc2ae638409af99c4788563ef54847636f2e23e0" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141114.1514", + "deps": [] + }, + "shell-split-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/shell-split-string-el.git", + "sha256": "af10741767ef03d0732cec18e27b8f5c34e163f61a15ec00f8b71e4a628d5cff", + "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe" + }, + "recipe": { + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.2236", + "deps": [] + }, + "evil-visual-mark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-visual-mark-mode.git", + "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" + }, + "recipe": { + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1200", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/package.git", + "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150319.1655", + "deps": [] + }, + "helm-itunes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daschwa/helm-itunes.git", + "sha256": "7372324be25d95b35ca71a09254a62985a02a95c4953e4a04f19d0bfa1769a9b", + "rev": "966de755a5aadbe02311a6cef77bd4790e84c263" + }, + "recipe": { + "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.148", + "deps": [ + "helm" + ] + }, + "xterm-frobs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/xterm-frobs.git", + "sha256": "c3e9560263b20d9f7b5ce3845eaf473b8432dd7b7c16e6ff971b4bf9a870ba81", + "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320" + }, + "recipe": { + "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091211.1755", + "deps": [] + }, + "faces+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/faces+.el", + "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + }, + "recipe": { + "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1600", + "deps": [] + }, + "purple-haze-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-purple-haze-theme.git", + "sha256": "6cb2268ab36551a50855a91b0321dad57fcf08eda5de18ef7fd7da3573e1be96", + "rev": "3e245cbef7cd09e6b3ee124963e372a04e9a6485" + }, + "recipe": { + "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141014.2129", + "deps": [ + "emacs" + ] + }, + "dired-subtree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.1233", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "rvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rvm.el.git", + "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" + }, + "recipe": { + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.942", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/isgd.el.git", + "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.436", + "deps": [] + }, + "redis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/redis.el.git", + "sha256": "79dc71c1464ddc25188e749564185b0e08c1d9a73d920b47fb081440d15e5b4c", + "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c" + }, + "recipe": { + "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.1448", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "swift-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/swift-mode.git", + "sha256": "50348b785d1a2bb6093118c270cbcdbc4acc73af13fa317da63de53841518965", + "rev": "a5e1acf5826ccd489617f9255da0aab7e5e920ee" + }, + "recipe": { + "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.120", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doublep/logview.git", + "sha256": "c79269973ed43c2ad6071a505925ca5ea543901fbbbb9c0f0e550a7cc7052a30", + "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1649", + "deps": [ + "emacs" + ] + }, + "facemenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", + "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" + }, + "recipe": { + "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.2153", + "deps": [] + }, + "sicp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/webframp/sicp-info.git", + "sha256": "d8b911128ef2dd87c13a6803af875d9284c1508ac8c7a04d40fe5c4d7ed45a80", + "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4" + }, + "recipe": { + "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.957", + "deps": [] + }, + "dired-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fasheng/dired-toggle.git", + "sha256": "aa7687379baa0dfc1e6d609578b0e50f2309a2ed19626d27012b30680204a2fb", + "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5" + }, + "recipe": { + "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140907.1549", + "deps": [] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emallson/narrow-reindent.el.git", + "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.1406", + "deps": [ + "emacs" + ] + }, + "xah-elisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-elisp-mode.git", + "sha256": "2b34fd930462c33997f0dc8f794d1acaaf74c3de0de063134657c66962e38640", + "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3" + }, + "recipe": { + "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1612", + "deps": [] + }, + "epl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/epl.git", + "sha256": "5c82459f02af5caa0fd7ccf43ad34a6e7f770b60860ac2c94d0139ab70aecf24", + "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.633", + "deps": [ + "cl-lib" + ] + }, + "control-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stephendavidmarsh/control-mode.git", + "sha256": "1b14dfa5cd7cee3987ebac73df45785082eb7202e7089dad66acda3ea78e75b8", + "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc" + }, + "recipe": { + "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140218.807", + "deps": [] + }, + "paradox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/paradox.git", + "sha256": "bbaf29868a8c1d89eda4117eaa051daf9f1fe71ae5c9708b28dd09c22f3c6a0c", + "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1517", + "deps": [ + "cl-lib", + "emacs", + "hydra", + "json", + "let-alist", + "seq", + "spinner" + ] + }, + "ix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/ix.el.git", + "sha256": "91b0dd70643ea5c8b55be57191586935618c5eca7c75be361c3a1abd13a42a19", + "rev": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963" + }, + "recipe": { + "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131027.1129", + "deps": [ + "grapnel" + ] + }, + "dired-toggle-sudo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/dired-toggle-sudo.git", + "sha256": "d177e94e36a68263fbbeacec179e963d593c85949386a831877111d46e31ae85", + "rev": "02449dbda4e168f99fe5352c9628df5d39e11483" + }, + "recipe": { + "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.406", + "deps": [] + }, + "req-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/req-package.git", + "sha256": "d8dbafa72e53435d5775130600c9c5cfb828db0af60b66aa080f21b517ec3e04", + "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1042", + "deps": [ + "dash", + "ht", + "log4e", + "use-package" + ] + }, + "esh-buf-stack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/esh-buf-stack.git", + "sha256": "98d86975fea970134704b5025c89e96951e119018fa73e78c372939a284c13cd", + "rev": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176" + }, + "recipe": { + "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.418", + "deps": [] + }, + "tmmofl": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/phillord-emacs-packages/", + "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl", + "rev": "e14e67d6a5b7" + }, + "recipe": { + "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121025.601", + "deps": [] + }, + "cmake-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alamaison/emacs-cmake-project.git", + "sha256": "26f7fbcadc742239f1a08c0a1c1bb1e1dd7dbb373254ce2db41c20a63a8adf3b", + "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b" + }, + "recipe": { + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1559", + "deps": [] + }, + "matlab-mode": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "module": "matlab-emacs", + "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" + }, + "recipe": { + "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.1244", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/org-time-budgets.git", + "sha256": "ab3bce9909f05a88bde0c98cc267c9d74e8dad4586a836fcf77c6f50d29f4d11", + "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.201", + "deps": [ + "alert", + "cl-lib" + ] + }, + "fancy-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/fancy-narrow.git", + "sha256": "c518bbb9cb1f2e87cfc62ab6a4e28d3a93b96bd18d49473354ce4de806c0ddc4", + "rev": "5196dc6066d354883fa21090266b6cebccc9f6fd" + }, + "recipe": { + "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.533", + "deps": [] + }, + "rhtml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rhtml.git", + "sha256": "6022f2fafba7ea161df78a7e6b36d84ea8f984501c9e5af95ad94c033a0f3887", + "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33" + }, + "recipe": { + "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130422.811", + "deps": [] + }, + "insfactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/duelinmarkers/insfactor.el.git", + "branchName": "release", + "sha256": "3ea2c69120fcca67505df1137c4b5a70d02b1a16350a49b761f2a318011b5a84", + "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829" + }, + "recipe": { + "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1802", + "deps": [] + }, + "dirtree": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dirtree.el", + "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" + }, + "recipe": { + "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.232", + "deps": [ + "tree-mode", + "windata" + ] + }, + "osx-org-clock-menubar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/osx-org-clock-menubar.git", + "sha256": "c4abd89b4057513ac1c3dd66d85ade17a65b9f1a028cf846522b65e956d7366e", + "rev": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3" + }, + "recipe": { + "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150205.1511", + "deps": [] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/test-case-mode.git", + "sha256": "e3d323a58036496d56fefcde74000e30fbba80b236b6071f2148e1d4f941ca88", + "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130525.934", + "deps": [ + "fringe-helper" + ] + }, + "take-off": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tburette/take-off.git", + "sha256": "6e331769369f81faf5659bea15c1a2e7d1ccc82ad29dbc2ed8971580caa2fc8f", + "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215" + }, + "recipe": { + "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140531.417", + "deps": [ + "emacs", + "web-server" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/fiplr.git", + "sha256": "15ec6113e59c4c1ba22bd779c5b37f6f47432a21669730aa9c9a3890c96e1a6b", + "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140724.145", + "deps": [ + "cl-lib", + "grizzl" + ] + }, + "rainbow-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/rainbow-blocks.git", + "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" + }, + "recipe": { + "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.1233", + "deps": [] + }, + "ucs-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el", + "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4" + }, + "recipe": { + "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1745", + "deps": [] + }, + "password-generator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zargener/emacs-password-genarator.git", + "sha256": "1dc6ddeb2a24ab454906e6f358e547e63f508d1d1bde15bdba9c8490550084df", + "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282" + }, + "recipe": { + "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150222.1440", + "deps": [] + }, + "dot-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dot-mode.el", + "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk" + }, + "recipe": { + "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.855", + "deps": [] + }, + "ido-grid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larkery/ido-grid-mode.el.git", + "sha256": "43580916bdd11935e4c17470a2ec4b2cfc0be84a83135be755088e33bbfc3914", + "rev": "34a7412c30840c1131464781dddfb1602355766b" + }, + "recipe": { + "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.1135", + "deps": [ + "emacs" + ] + }, + "anything-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.204", + "deps": [ + "anything", + "prosjekt" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.714", + "deps": [ + "company", + "dash", + "dash-functional", + "emacs", + "sourcekit" + ] + }, + "kaesar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.505", + "deps": [ + "cl-lib", + "kaesar" + ] + }, + "e2wm-pkgex4pl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", + "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" + }, + "recipe": { + "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140525.547", + "deps": [ + "e2wm", + "plsense-direx" + ] + }, + "org-linkany": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-linkany.git", + "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" + }, + "recipe": { + "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.1308", + "deps": [ + "log4e", + "yaxception" + ] + }, + "scheme-complete": { + "fetch": { + "tag": "fetchhg", + "url": "http://code.google.com/p/scheme-complete/", + "sha256": "13pym1kwi8ah3h2l557pvbg4lgpp5lhldj3qxyg7gyvgkwr91a7g", + "rev": "e2ec67dfb1ff" + }, + "recipe": { + "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130220.603", + "deps": [] + }, + "zen-and-art-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/developernotes/zen-and-art-theme.git", + "sha256": "d4de7c40505d3b955c09ec7b77e3fbf112baf0a9cdbf0a24293391c235ecca36", + "rev": "a7226cbce0bca2501d69a620cb2aeabfc396c232" + }, + "recipe": { + "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120622.937", + "deps": [] + }, + "modtime-skip-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/modtime-skip-mode.git", + "sha256": "b49c63a72802504c67a535082204604d7bdbab8b1b52506246bd8ace59202866", + "rev": "c0e49523aa26b2263a8693691ac775988015f592" + }, + "recipe": { + "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.1601", + "deps": [] + }, + "autumn-light-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aalpern/emacs-color-theme-autumn-light.git", + "sha256": "c6a5d2132f58c614b429868547cb90e514477b7fdf938e975032aa4164ac4a7a", + "rev": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9" + }, + "recipe": { + "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.947", + "deps": [] + }, + "powershell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/powershell.el.git", + "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1621", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/underwater-theme.el.git", + "sha256": "6adf3eedc58ae859a866578f37074e4283691afd03671e4f399a0abecbbefdfa", + "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1802", + "deps": [] + }, + "column-marker": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/column-marker.el", + "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9" + }, + "recipe": { + "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121128.243", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "rotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daic-h/emacs-rotate.git", + "sha256": "99eda2ebe96d05a2714d4b213262fb1b31c31fc4bf40a4a2892ae4aa43bab4cc", + "rev": "04b64c6e20c465102ecafe0e099986b0808582bf" + }, + "recipe": { + "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140123.316", + "deps": [] + }, + "bbdb-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tohojo/bbdb-vcard.git", + "sha256": "fde87c10a589d999d9dc66a3e28e5a52941fc6c9cb8cbeacea1d3336e399cd2a", + "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c" + }, + "recipe": { + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.1550", + "deps": [ + "bbdb" + ] + }, + "package-build": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/melpa.git", + "sha256": "3a92f4c5e4608abb563033d1fb0dbc336592875a8a9c1d159be7c3271b527923", + "rev": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "recipe": { + "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1644", + "deps": [ + "cl-lib" + ] + }, + "lusty-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sjbach/lusty-emacs.git", + "sha256": "0a07a3a62e118cadf37d6dbc75e7302713cb2f34363d6240229530df80753de4", + "rev": "a6e78cafc193050a493d16d07eae107a2436c293" + }, + "recipe": { + "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1757", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-hayoo.git", + "sha256": "2bc02b76bb4ef37d5734d26829d48681b6ffa17ccd7e9a984d4c27f2b01314e0", + "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.151", + "deps": [ + "haskell-mode", + "helm", + "json" + ] + }, + "dpaste_de": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theju/dpaste_de.el.git", + "sha256": "6c23c7fe2d681ab0c58aae1cbc199667bc70355140a817e0e01a11bf39d03ace", + "rev": "f0c39e8864299f735642f7d9fa490689398ce39d" + }, + "recipe": { + "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.725", + "deps": [ + "web" + ] + }, + "evil-terminal-cursor-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/evil-terminal-cursor-changer.git", + "sha256": "2bf055f52d6af6cd13e445ba45ba0d152894d64804e7d8f316b7aecbc998544c", + "rev": "2735a11a2a0c8d327b730cefef2794834263c413" + }, + "recipe": { + "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2151", + "deps": [ + "evil" + ] + }, + "igrep": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/igrep.el", + "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" + }, + "recipe": { + "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "bdo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/bdo.git", + "sha256": "7cf67bea9079fea3b102872965375976e808c8bb2af0fd727673a972fb40851f", + "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010" + }, + "recipe": { + "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140126.301", + "deps": [] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", + "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140112.559", + "deps": [] + }, + "linum-off": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/linum-off.git", + "sha256": "e589b4f5e9a51c296eb6376e5800c22e256ef17d1b7f0ff3a65358654f251374", + "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca" + }, + "recipe": { + "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.2254", + "deps": [] + }, + "multi-project": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ellisvelo/multi-project", + "sha256": "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c", + "rev": "f7fd0ae6819e" + }, + "recipe": { + "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.944", + "deps": [] + }, + "diredful": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thamer/diredful.git", + "sha256": "178406bf35315ce545d5c084e719d1e2a4bdc25a9f6973565d6e20ea0ddea7e7", + "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b" + }, + "recipe": { + "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1500", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edwtjo/evil-org-mode.git", + "sha256": "a36027bdd6d607504606b03a85425f17c5db6e3623de84872b97adde873a395e", + "rev": "61319f85979e8768c930983595caa2483c0fb319" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.147", + "deps": [ + "evil", + "evil-leader", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/modalka.git", + "sha256": "bd4cb2466fc44710001ec63b450740a08f44b65005670f6d0d6a3344cb42b73d", + "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1111", + "deps": [ + "emacs" + ] + }, + "ac-sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/qoocku/ac-sly.git", + "sha256": "6d67693837c7df45073729de7054f8459482b78f5049c55386d66e3657565af6", + "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285" + }, + "recipe": { + "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.1522", + "deps": [ + "auto-complete", + "cl-lib", + "sly" + ] + }, + "subshell-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrewmains12/subshell-proc.git", + "sha256": "e4b57a3e60c3c228eccfc0b3ac7abdc6ef275f0fcd9b9d0c91cafd2c91a83f26", + "rev": "d18b20e03fc89ee08e8c6a968aba31a16b53287f" + }, + "recipe": { + "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130122.1522", + "deps": [] + }, + "highlight-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/highlight-thing.el.git", + "sha256": "99b7db9cef314e4276b0228fb71757e07dc0985b1bc7c85abb0cea3c5b019d05", + "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa" + }, + "recipe": { + "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.221", + "deps": [] + }, + "helm-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmalsburg/helm-bibtex.git", + "sha256": "91374e29f763a83ea8af82edc45a440a79797bd8abc1f3f021b2489e14246cdb", + "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0" + }, + "recipe": { + "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1758", + "deps": [ + "cl-lib", + "dash", + "f", + "helm", + "parsebib", + "s" + ] + }, + "ssh-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhgorrell/ssh-config-mode-el.git", + "sha256": "66b94bf558dac42c9f452826676a457a3614c47d6e8e467894ba178c23cedaec", + "rev": "3d194c772d428144acd84c85be560ca96fb323ba" + }, + "recipe": { + "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1046", + "deps": [] + }, + "imenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/imenu+.el", + "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" + }, + "recipe": { + "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1748", + "deps": [] + }, + "phi-search-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/phi-search-mc.el.git", + "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" + }, + "recipe": { + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.55", + "deps": [ + "multiple-cursors", + "phi-search" + ] + }, + "phi-search-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search-dired.git", + "sha256": "d609c5b2e8597bde7a32055c7fc9fd4bc120aa333ff7ee04c184330b0f4984ac", + "rev": "162a5e4507c72512affae22744bb606a906d4193" + }, + "recipe": { + "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.214", + "deps": [ + "phi-search" + ] + }, + "rcirc-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kensanata/rcirc-color.git", + "sha256": "27911c6fc04d5da732943e32dacbb71a0d9718833bbe2acf4cd7f1864884749c", + "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d" + }, + "recipe": { + "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.958", + "deps": [] + }, + "bury-successful-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/bury-successful-compilation.git", + "sha256": "925c14e42c19c58903b654662a08cad84dd06542ff1f59fe49d2fb15e5a5f1af", + "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621" + }, + "recipe": { + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.1928", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/html-to-markdown.git", + "sha256": "f1a1a85e77bda03a54ebaa20136d2943d6043fe7bb6c07d0b3c8d21d53fdc326", + "rev": "60c5498c801be186478cf7c05be05b4430c4a144" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.240", + "deps": [ + "cl-lib" + ] + }, + "emacsshot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/emacsshot.git", + "sha256": "2bf9d03dfe6e5d93d5f33c98eaf84b7f73d39fcdecd1b9de2cb0450384ecc44a", + "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b" + }, + "recipe": { + "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.1633", + "deps": [] + }, + "folding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaalto/project-emacs--folding-mode.git", + "sha256": "de1a7073e89b83fa7507a2702baff4c321078888900ec6d27d03bf20bf9f4dfc", + "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839" + }, + "recipe": { + "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140401.203", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-refactor.git", + "sha256": "eb4007d738fefbd52c1f5f80e55f2e7a4970ef008cce0ead03e6a7e36328b7d8", + "rev": "e0482b08425894431fa67109615d4f0c971471c8" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.2204", + "deps": [ + "emacs" + ] + }, + "dired-avfs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.932", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "dircmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/matthewlmcclure/dircmp-mode.git", + "sha256": "6d28ddbecb95a498e13347fe12f6235df6f860a2fa222bf93130371caefe8921", + "rev": "558ee0b601c2de9d247612085aafe2926f56a09f" + }, + "recipe": { + "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1156", + "deps": [] + }, + "kanban": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/kanban.el", + "sha256": "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w", + "rev": "54d855426372" + }, + "recipe": { + "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.1117", + "deps": [] + }, + "wacspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/wacspace.el.git", + "sha256": "de0f12cf4931c77b520f4ed8e8a1574906662975cfee4cacbd5eb3469d75e952", + "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140827.32", + "deps": [ + "cl-lib", + "dash" + ] + }, + "helm-pages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-pages.git", + "sha256": "747b16bd0267db2b368778ffc81c24f1013320902f811648779a33b1e740844a", + "rev": "60f52edb11e54f553251234f4d336c0947ca0a2b" + }, + "recipe": { + "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1400", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "php-auto-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-auto-yasnippets.git", + "sha256": "a07ec2ad1a349ae81816288f2dfe1929b884eb811d6dfedc6bdc669ed4ccc4d0", + "rev": "7da250a0d40f3ec44c7249997436ee8c5cae04ef" + }, + "recipe": { + "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.1611", + "deps": [ + "php-mode", + "yasnippet" + ] + }, + "summarye": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/summarye.el", + "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py" + }, + "recipe": { + "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.527", + "deps": [] + }, + "helm-ls-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-git.git", + "sha256": "85e33236e83fe8ec839e1f61d068e35567bfd0b499669c65f03a7e2701d6cb4e", + "rev": "8cddd84ee4361b9d21f800adbaeeacf72645ab62" + }, + "recipe": { + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.56", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/hl-todo.git", + "sha256": "6db370f442de1c8f5174ad5c120c5d1d6d48ed29d2613245e2f2ba352ddf8c53", + "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1420", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cython/cython.git", + "sha256": "aa480da59924dc12732c8dfdf18bec567450e3e8df32904fc305596f067c23ee", + "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140705.1429", + "deps": [] + }, + "google": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/google-el.git", + "sha256": "51685fee9007cd823ca652906aeb7c5927873026809d179c6b909e57ed6de11a", + "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4" + }, + "recipe": { + "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140330.1056", + "deps": [] + }, + "midje-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dnaumov/midje-mode.git", + "sha256": "efe687a8f178b9a85b9d7789fdee209c48c31d9262a2c1814121ae0941d62fb2", + "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b" + }, + "recipe": { + "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1950", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "toggle-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rags/toggle-test.git", + "sha256": "7ec974881a980d17e796c8cff49dfc127d5cf12dd000d8a25f0620d931d5ea69", + "rev": "e969321f274903d705995a7d0345a257576ec5ff" + }, + "recipe": { + "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140723.37", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider.git", + "sha256": "f45f10ecbaba25a2438c6ff00641e4308ace127234cd41e4da4ed75f3c3c826f", + "rev": "716237f66ee784433756bb571416fcda480fb932" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.839", + "deps": [ + "clojure-mode", + "emacs", + "pkg-info", + "queue", + "seq", + "spinner" + ] + }, + "sudo-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el", + "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2" + }, + "recipe": { + "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1551", + "deps": [] + }, + "levenshtein": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", + "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" + }, + "recipe": { + "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20051013.1256", + "deps": [] + }, + "ox-pukiwiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-pukiwiki.git", + "sha256": "6a5019c6ce3b6d2bb74d227c1bdb07f6efb3e0f0e4fe9562aa2a5951e7a4feec", + "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a" + }, + "recipe": { + "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.1116", + "deps": [ + "org" + ] + }, + "ac-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-slime.git", + "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2235", + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ] + }, + "fastnav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gleber/fastnav.el.git", + "sha256": "234a6c248fb9f44d9d99022ca7697d0ea1de91b89642f15cc5e3bfe1750ea5fb", + "rev": "1019ba2b61d1a070204099b23da347278a61bc89" + }, + "recipe": { + "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120211.857", + "deps": [] + }, + "etags-select": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-select.el", + "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb" + }, + "recipe": { + "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "myterminal-controls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/myterminal-controls.git", + "sha256": "0675c64b274cc140498b5fb800fd3a95b145725df4dc9f5777315b83c485d356", + "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826" + }, + "recipe": { + "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.547", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "traad-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" + }, + "recipe": { + "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140817.611", + "deps": [ + "auto-complete", + "traad" + ] + }, + "xah-find": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-find.git", + "sha256": "d8ac8b3bd54c6163b86b28a9e3cabc0b815e572596e842b0503dfe13df72d852", + "rev": "f67a86e3e9dfb1709e359283bc5630fc15a22e95" + }, + "recipe": { + "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2317", + "deps": [] + }, + "wandbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kosh04/emacs-wandbox.git", + "sha256": "ba97faf09d7091a7d5c315da01223453fdd9aef4f02abe7ba6e2074ccf1b7976", + "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0" + }, + "recipe": { + "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.1024", + "deps": [ + "emacs", + "json", + "tabulated-list" + ] + }, + "paredit-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/phil-emacs-packages.git", + "sha256": "c5244e721eb12bb17ad2680853bb102ef0675b291ab6b275b599eb83a49aec79", + "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782" + }, + "recipe": { + "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130923.1454", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init-viewer.git", + "sha256": "d4cc72a44b9fde5bc7f2a9abd60cf3b77349edc01e4e38da77e9c76ae9e14967", + "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303.228", + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init", + "emacs" + ] + }, + "gist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/gist.el.git", + "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "rev": "144280f5353bceb902d5278fa64078337e99fa4d" + }, + "recipe": { + "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1154", + "deps": [ + "emacs", + "gh" + ] + }, + "clojure-mode-extra-font-locking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + }, + "recipe": { + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.705", + "deps": [ + "clojure-mode" + ] + }, + "ggo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/ggo-mode.git", + "sha256": "172e069d377e934941f52d28877fb2284e75e6ac74b0fd2c78b738a2088e922f", + "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b" + }, + "recipe": { + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130524.643", + "deps": [] + }, + "auctex-latexmk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/auctex-latexmk.git", + "sha256": "5e42753cbb4be334590244d289ee77073e06d8cb942da154ab65c2a6a09fe4eb", + "rev": "12318b945c3a68a593d90ef2a4461707523d46c0" + }, + "recipe": { + "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1843", + "deps": [ + "auctex" + ] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", + "sha256": "b9ed4258522f5e04b4a59f4548d55b2b15dea8a06aa0aed6e1173bc7cbb008d4", + "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.717", + "deps": [ + "cider", + "helm" + ] + }, + "ioccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/ioccur.git", + "sha256": "2a2f60f6254253899cf0eac6bbcf4c890dbac182d68f0341b5343c9a82e3e5e7", + "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a" + }, + "recipe": { + "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130822.48", + "deps": [] + }, + "shell-here": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/shell-here.git", + "sha256": "d4794f6c76035e1bc955d683b99a7850208f883e434d057f01b7dc930ff8047c", + "rev": "251309141e18978d2b8014345acc6f5afcd4d509" + }, + "recipe": { + "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.1204", + "deps": [] + }, + "org-gnome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/org-gnome.el.git", + "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" + }, + "recipe": { + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.957", + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ] + }, + "buster-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/buster-mode.git", + "sha256": "52a29be50dce22b0ab9ae7af979308270ba22bb8f8aada1db9a4ba8f60cc6fb6", + "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" + }, + "recipe": { + "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140928.713", + "deps": [] + }, + "osx-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/osx-dictionary.el.git", + "sha256": "e11de28a2d272ad48c6aefc9f82427699c839ffd0039febe5c2ec97ca2483b3b", + "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55" + }, + "recipe": { + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.2352", + "deps": [ + "cl-lib" + ] + }, + "phoenix-dark-pink-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/j0ni/phoenix-dark-pink.git", + "sha256": "8f2148b45ccc437c5cee1560f8fd09aeb0dc1210b0e973029d9edfd208e15e10", + "rev": "314602b2e68c4054159ab3f0f6f6b658f232ada5" + }, + "recipe": { + "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150406.2202", + "deps": [] + }, + "zzz-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/zzz-to-char.git", + "sha256": "d5628735f6e63840f377c60dd5709be93ff08a12c6195ea85799acf5276aaffd", + "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a" + }, + "recipe": { + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.232", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "automargin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/automargin.git", + "sha256": "c2a47141718908e08135edd9190a99dc5ea8823848f1e37fece019e898f5d60a", + "rev": "4901d969ad69f5244e6300baab4ba04efed800c3" + }, + "recipe": { + "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131112.214", + "deps": [] + }, + "pass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/pass.git", + "sha256": "2bdc4cdef81888617af26dc73cfa1a131d2d550b38ebe29878f9327c80d012c6", + "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad" + }, + "recipe": { + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.603", + "deps": [ + "emacs", + "f", + "password-store" + ] + }, + "jaunte": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawaguchi/jaunte.el.git", + "sha256": "6e948daccc050d512881f951d6a37df012b435e4b66b05d7d88d539e105560af", + "rev": "b719c2d4d5d70640d70978b661863d10d6be06fc" + }, + "recipe": { + "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130413.419", + "deps": [] + }, + "monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxn/monochrome-theme.el.git", + "sha256": "ce5b5d2a79f2bd8cd6386faf0c73f9ccd57b47fbe7cd15ffe6f9fdabfabeb0eb", + "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6" + }, + "recipe": { + "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140326.550", + "deps": [] + }, + "ez-query-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ez-query-replace.el.git", + "sha256": "f1938f7565cde65fead56b0a3b568306361f2da63a97316bcf471b207a020a97", + "rev": "1c0cab96d65105b780e32fdd29d2c6933be72ef6" + }, + "recipe": { + "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.717", + "deps": [ + "dash" + ] + }, + "request": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140316.617", + "deps": [] + }, + "markdown-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/markdown-mode.git", + "sha256": "04bdb250853244ee7d47f098508b3fcc0635fee807c80a9f6db38202ca647a67", + "rev": "8826fe678d80ab0580883d407faaace3fa39fb4a" + }, + "recipe": { + "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1016", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naiquevin/sphinx-doc.el.git", + "sha256": "d48f3f8dfaf8b6048be35276b913d5ee7e079b0784ecced5888a3c8a5374e692", + "rev": "c6f3053b83eab029c13e680b8200c704880727b1" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150616.1350", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "evil-smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/evil-smartparens.git", + "sha256": "374996f077315860970eebf4dac6b392be7bcf4db5d099a2982de083ebf2a6dc", + "rev": "0e89b23924b2e0baa0d11841ea5126967a072fa8" + }, + "recipe": { + "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.324", + "deps": [ + "emacs", + "evil", + "smartparens" + ] + }, + "org-protocol-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vonavi/org-protocol-jekyll.git", + "sha256": "5e5f0f1b8f514fff887035742fb7f55412688cf9e1cd31cabfa6aae07431f7cb", + "rev": "f41902baaa62c8de3f81ad67a5f36d6aa5781578" + }, + "recipe": { + "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1038", + "deps": [ + "cl-lib" + ] + }, + "autodisass-llvm-bitcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", + "sha256": "3a1301b29c857b080187407b4e99e8dcf5eb2e70fe4869d177ec1639ba13ef1c", + "rev": "d2579e3a1427af2dc947c343e49eb3434078bf04" + }, + "recipe": { + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150410.2025", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sourcemap.git", + "sha256": "551a9489ade4a1f2ccda8aecc91f84532f16e37ea0ec9756d973a15b0d125370", + "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.900", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "json-snatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sterlingg/json-snatcher.git", + "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" + }, + "recipe": { + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150511.2247", + "deps": [ + "emacs" + ] + }, + "dired-details": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details.el", + "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza" + }, + "recipe": { + "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.658", + "deps": [] + }, + "gore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sergey-pashaev/gore-mode.git", + "sha256": "9f0db205ff0f9f254bf424e07e2897d49d1c58eeebe2f6a6c1682c7bb1120250", + "rev": "94d7f3e99104e06167967c98fdc201049c433c2d" + }, + "recipe": { + "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1327", + "deps": [ + "go-mode" + ] + }, + "org-link-travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-link-travis.git", + "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" + }, + "recipe": { + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140405.1827", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thoughtpolice/cryptol-mode.git", + "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140426.1204", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1210", + "deps": [ + "company", + "dash", + "deferred", + "s", + "ycmd" + ] + }, + "unicode-emoticons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/unicode-emoticons.git", + "sha256": "1066b355a253c180f0715106945e65a0b240e6d4352b0fbf4ad034c89093af04", + "rev": "fb18631f342b0243cf77cf59ed2067c47aae5233" + }, + "recipe": { + "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150204.508", + "deps": [] + }, + "literate-coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", + "sha256": "7f19490b6a8b82aa556dc72537d74bd864d3a621299f985fcbb2188ed6342784", + "rev": "c55d0bec31438f15e986c5ad031dff853cfd1178" + }, + "recipe": { + "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141216.1719", + "deps": [ + "coffee-mode" + ] + } +} \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix new file mode 100644 index 00000000000..e2afe27058a --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -0,0 +1,42 @@ +pkgs: with pkgs; + +let + + inherit (stdenv.lib) makeScope mapAttrs; + + json = builtins.readFile ./melpa-stable-packages.json; + manifest = builtins.fromJSON json; + + mkPackage = self: name: recipe: + let drv = + { melpaBuild, stdenv, fetchurl }: + let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" + or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit src; + deps = + let lookupDep = d: + self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + in map lookupDep recipe.deps; + meta = { + homepage = "http://melpa.org/#/${name}"; + license = stdenv.lib.licenses.free; + }; + }; + in self.callPackage drv {}; + + packages = self: + let + melpaPackages = mapAttrs (mkPackage self) manifest; + + melpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + in melpaPackages // { inherit melpaBuild melpaPackages; }; + +in makeScope pkgs.newScope packages From 8e655250bdde40150f0c8c059f6d8f5483805dec Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 15 Dec 2015 11:57:51 -0600 Subject: [PATCH 296/707] emacsPackagesNg: add all of MELPA --- .../editors/emacs-modes/elpa-packages.nix | 42 ++++++++++++------- .../editors/emacs-modes/melpa-packages.nix | 40 +++++++++++------- .../emacs-modes/melpa-stable-packages.nix | 40 +++++++++++------- pkgs/top-level/all-packages.nix | 12 ++++-- pkgs/top-level/emacs-packages.nix | 22 +++++++--- 5 files changed, 101 insertions(+), 55 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 3cf37c26280..6c48969a9ef 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -10,17 +10,20 @@ let mkPackage = self: name: recipe: let drv = { elpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { inherit fetchurl; }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in elpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://elpa.gnu.org/packages/${name}.html"; @@ -29,14 +32,23 @@ let }; in self.callPackage drv {}; - packages = self: - let - elpaPackages = mapAttrs (mkPackage self) manifest; +in - elpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in elpaPackages // { inherit elpaBuild elpaPackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + elpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + + builtin = null; + + markBroken = pkg: pkg.override { + elpaBuild = args: self.elpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in super // { inherit elpaBuild; elpaPackage = super; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index e2afe27058a..1bc4363cb11 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -9,18 +9,23 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { + inherit fetchurl fetchcvs fetchgit fetchhg; + }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in melpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://melpa.org/#/${name}"; @@ -29,14 +34,17 @@ let }; in self.callPackage drv {}; - packages = self: - let - melpaPackages = mapAttrs (mkPackage self) manifest; +in - melpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in melpaPackages // { inherit melpaBuild melpaPackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + markBroken = pkg: pkg.override { + melpaBuild = args: self.melpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in + super // { melpaPackages = super; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index b17bda56c28..869c5549bfa 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -9,18 +9,23 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { + inherit fetchurl fetchcvs fetchgit fetchhg; + }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in melpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://stable.melpa.org/#/${name}"; @@ -29,14 +34,17 @@ let }; in self.callPackage drv {}; - packages = self: - let - melpaStablePackages = mapAttrs (mkPackage self) manifest; +in - melpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in melpaStablePackages // { inherit melpaBuild melpaStablePackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + markBroken = pkg: pkg.override { + melpaBuild = args: self.melpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in + super // { melpaStablePackages = super; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1877617f016..012b7225831 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11627,7 +11627,8 @@ let emacsPackagesNgGen = emacs: callPackage ./emacs-packages.nix { overrides = (config.emacsPackageOverrides or (p: {})) pkgs; - inherit emacs elpaPackages; + inherit newScope; + inherit emacs elpaPackages melpaPackages melpaStablePackages; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11647,8 +11648,13 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); elpaPackages = - let imported = import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; - in recurseIntoAttrs (imported.override (super: self: { inherit emacs; })); + import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; + + melpaStablePackages = + import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; + + melpaPackages = + import ../applications/editors/emacs-modes/melpa-packages.nix pkgs; emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 2acb4cbbe0b..ebd6464de5a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -33,9 +33,9 @@ { overrides -, lib, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg +, lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, elpaPackages +, emacs, elpaPackages, melpaPackages, melpaStablePackages , trivialBuild , melpaBuild @@ -44,7 +44,14 @@ with lib.licenses; -let packagesFun = super: self: with self; { +let + + addMelpaPackages = scope: scope.override (super: melpaPackages); + addMelpaStablePackages = scope: scope.override (super: melpaStablePackages); + addElpaPackages = scope: scope.override (super: elpaPackages); + addOverrides = scope: scope.override packagesFun; + + packagesFun = super: self: with self; { inherit emacs melpaBuild trivialBuild; @@ -2019,6 +2026,11 @@ let packagesFun = super: self: with self; { }; }; -}; + }; -in elpaPackages.override packagesFun +in + addOverrides + (addElpaPackages + (addMelpaStablePackages + (addMelpaPackages + (lib.makeScope newScope (self: { inherit emacs; }))))) From f574f1c9c9ac2d20c3c1590d26f43fd9495d6644 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 15 Dec 2015 11:58:30 -0600 Subject: [PATCH 297/707] melpaPackages: fix cvsRoot attribute name --- pkgs/applications/editors/emacs-modes/melpa-packages.json | 4 ++-- .../editors/emacs-modes/melpa-stable-packages.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 2e8d323eaa3..5e409ac81a2 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -41937,7 +41937,7 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, @@ -43711,4 +43711,4 @@ "coffee-mode" ] } -} \ No newline at end of file +} diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index 503dc20c50d..ccf76ad40e1 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -7690,7 +7690,7 @@ "swbuff": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", + "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "module": "emhacks/swbuff.el", "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" }, @@ -21193,7 +21193,7 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, @@ -22223,4 +22223,4 @@ "coffee-mode" ] } -} \ No newline at end of file +} From 59f497bc4d835c3ed8e2a4bb8e8e2bae8ea1d900 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 06:45:27 -0600 Subject: [PATCH 298/707] melpa-packages: 2015-12-15 Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`. --- .../editors/emacs-modes/melpa-packages.json | 6127 +++++++++-------- 1 file changed, 3073 insertions(+), 3054 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 5e409ac81a2..8d87c35dfaf 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -8,7 +8,7 @@ }, "recipe": { "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1017", "deps": [] @@ -22,7 +22,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140118.244", "deps": [ @@ -39,7 +39,7 @@ }, "recipe": { "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1208", "deps": [ @@ -55,7 +55,7 @@ }, "recipe": { "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140915.1610", "deps": [] @@ -69,7 +69,7 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1440", "deps": [] @@ -79,11 +79,11 @@ "tag": "fetchsvn", "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11136" + "rev": "11138" }, "recipe": { "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.604", "deps": [] @@ -97,7 +97,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.43", "deps": [ @@ -113,7 +113,7 @@ }, "recipe": { "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.511", "deps": [ @@ -129,7 +129,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1619", "deps": [] @@ -143,7 +143,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.215", "deps": [ @@ -160,7 +160,7 @@ }, "recipe": { "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.1811", "deps": [] @@ -174,7 +174,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.249", "deps": [] @@ -188,7 +188,7 @@ }, "recipe": { "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.355", "deps": [] @@ -202,7 +202,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.144", "deps": [ @@ -221,7 +221,7 @@ }, "recipe": { "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.516", "deps": [ @@ -239,7 +239,7 @@ }, "recipe": { "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.1334", "deps": [] @@ -253,7 +253,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.2131", "deps": [ @@ -271,7 +271,7 @@ }, "recipe": { "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.350", "deps": [ @@ -283,13 +283,13 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", - "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w" }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150909.1038", + "version": "20151215.837", "deps": [] }, "cmake-ide": { @@ -301,7 +301,7 @@ }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.243", "deps": [ @@ -317,7 +317,7 @@ }, "recipe": { "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120223.1650", "deps": [] @@ -331,7 +331,7 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.814", "deps": [] @@ -345,7 +345,7 @@ }, "recipe": { "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.657", "deps": [ @@ -361,7 +361,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1640", "deps": [ @@ -377,7 +377,7 @@ }, "recipe": { "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.245", "deps": [ @@ -396,7 +396,7 @@ }, "recipe": { "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.901", "deps": [] @@ -410,7 +410,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.210", "deps": [ @@ -426,7 +426,7 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1906", "deps": [] @@ -440,7 +440,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140418.915", "deps": [ @@ -458,7 +458,7 @@ }, "recipe": { "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.149", "deps": [] @@ -472,7 +472,7 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.701", "deps": [] @@ -486,7 +486,7 @@ }, "recipe": { "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.941", "deps": [ @@ -502,7 +502,7 @@ }, "recipe": { "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1404", "deps": [] @@ -515,7 +515,7 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1750", "deps": [] @@ -529,7 +529,7 @@ }, "recipe": { "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1915", "deps": [ @@ -545,7 +545,7 @@ }, "recipe": { "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150209.1626", "deps": [] @@ -559,7 +559,7 @@ }, "recipe": { "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.2226", "deps": [ @@ -575,7 +575,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1159", "deps": [ @@ -592,7 +592,7 @@ }, "recipe": { "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131201.130", "deps": [] @@ -606,7 +606,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1009", "deps": [ @@ -624,7 +624,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141208.908", "deps": [ @@ -640,7 +640,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.533", "deps": [] @@ -654,7 +654,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.814", "deps": [ @@ -671,7 +671,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1302", "deps": [ @@ -687,7 +687,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1144", "deps": [] @@ -701,7 +701,7 @@ }, "recipe": { "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.351", "deps": [ @@ -718,7 +718,7 @@ }, "recipe": { "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140121.1143", "deps": [] @@ -732,7 +732,7 @@ }, "recipe": { "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.2245", "deps": [] @@ -746,7 +746,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.839", "deps": [ @@ -764,7 +764,7 @@ }, "recipe": { "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140730.1449", "deps": [] @@ -778,7 +778,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131103.413", "deps": [] @@ -792,7 +792,7 @@ }, "recipe": { "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.530", "deps": [ @@ -811,7 +811,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.1933", "deps": [ @@ -832,7 +832,7 @@ }, "recipe": { "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.2223", "deps": [ @@ -848,7 +848,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1329", "deps": [ @@ -866,7 +866,7 @@ }, "recipe": { "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131118.426", "deps": [] @@ -880,7 +880,7 @@ }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.234", "deps": [ @@ -897,7 +897,7 @@ }, "recipe": { "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140209.1235", "deps": [ @@ -914,7 +914,7 @@ }, "recipe": { "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140406.2019", "deps": [ @@ -930,7 +930,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.506", "deps": [ @@ -946,7 +946,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.830", "deps": [ @@ -962,7 +962,7 @@ }, "recipe": { "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2337", "deps": [ @@ -979,7 +979,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140702.1009", "deps": [] @@ -993,7 +993,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1143", "deps": [ @@ -1009,7 +1009,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130522.1603", "deps": [ @@ -1025,7 +1025,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.246", "deps": [] @@ -1039,7 +1039,7 @@ }, "recipe": { "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.910", "deps": [ @@ -1055,7 +1055,7 @@ }, "recipe": { "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150225.242", "deps": [ @@ -1071,7 +1071,7 @@ }, "recipe": { "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1111", "deps": [ @@ -1087,7 +1087,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.450", "deps": [ @@ -1104,7 +1104,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.412", "deps": [ @@ -1123,7 +1123,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2246", "deps": [ @@ -1139,7 +1139,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.802", "deps": [ @@ -1156,7 +1156,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.347", "deps": [ @@ -1174,7 +1174,7 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1751", "deps": [] @@ -1188,7 +1188,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131019.2358", "deps": [] @@ -1202,7 +1202,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.432", "deps": [ @@ -1218,7 +1218,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.224", "deps": [ @@ -1234,7 +1234,7 @@ }, "recipe": { "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140627.307", "deps": [] @@ -1248,7 +1248,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140829.738", "deps": [] @@ -1262,7 +1262,7 @@ }, "recipe": { "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130615.1633", "deps": [] @@ -1276,7 +1276,7 @@ }, "recipe": { "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1155", "deps": [ @@ -1292,7 +1292,7 @@ }, "recipe": { "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.505", "deps": [] @@ -1306,7 +1306,7 @@ }, "recipe": { "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1318", "deps": [ @@ -1326,7 +1326,7 @@ }, "recipe": { "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -1340,7 +1340,7 @@ }, "recipe": { "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120510.1430", "deps": [] @@ -1354,7 +1354,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.916", "deps": [ @@ -1370,7 +1370,7 @@ }, "recipe": { "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1350", "deps": [] @@ -1384,7 +1384,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140603.2331", "deps": [ @@ -1397,14 +1397,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "605c2083247f540a5c020eeedc9310af2d2e1b56bce5f567a4f7143e337f8d6a", - "rev": "a216bf09123b48d06f8633c2b99db54818c72257" + "sha256": "043fafb56d81cabbfaa39a2d0ae4427e1037fb2acbae84f8c8988dca71309051", + "rev": "4e85910b106e3094d2b27ac34f584df5bf4ab457" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.713", + "version": "20151215.1523", "deps": [ "list-utils", "load-relative", @@ -1421,7 +1421,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.707", "deps": [ @@ -1441,7 +1441,7 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140215.314", "deps": [] @@ -1455,7 +1455,7 @@ }, "recipe": { "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.610", "deps": [] @@ -1469,7 +1469,7 @@ }, "recipe": { "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.1840", "deps": [] @@ -1483,7 +1483,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2352", "deps": [ @@ -1500,7 +1500,7 @@ }, "recipe": { "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.341", "deps": [] @@ -1514,7 +1514,7 @@ }, "recipe": { "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.849", "deps": [] @@ -1528,7 +1528,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100510.2305", "deps": [] @@ -1542,7 +1542,7 @@ }, "recipe": { "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130828.1144", "deps": [] @@ -1556,7 +1556,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.919", "deps": [ @@ -1567,12 +1567,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.905", "deps": [ @@ -1591,7 +1591,7 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.1032", "deps": [] @@ -1604,7 +1604,7 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121026.950", "deps": [] @@ -1618,7 +1618,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.936", "deps": [] @@ -1632,7 +1632,7 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.1636", "deps": [] @@ -1646,7 +1646,7 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.929", "deps": [ @@ -1662,7 +1662,7 @@ }, "recipe": { "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130421.1434", "deps": [] @@ -1676,7 +1676,7 @@ }, "recipe": { "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1518", "deps": [] @@ -1690,7 +1690,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.1530", "deps": [ @@ -1708,7 +1708,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.802", "deps": [ @@ -1725,7 +1725,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.2357", "deps": [ @@ -1742,7 +1742,7 @@ }, "recipe": { "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141221.249", "deps": [] @@ -1755,7 +1755,7 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1616", "deps": [] @@ -1769,7 +1769,7 @@ }, "recipe": { "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140301.802", "deps": [] @@ -1783,7 +1783,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.212", "deps": [ @@ -1799,7 +1799,7 @@ }, "recipe": { "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140104.1607", "deps": [] @@ -1813,7 +1813,7 @@ }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1558", "deps": [ @@ -1832,7 +1832,7 @@ }, "recipe": { "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1112", "deps": [ @@ -1848,7 +1848,7 @@ }, "recipe": { "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1503", "deps": [] @@ -1862,7 +1862,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2136", "deps": [ @@ -1878,7 +1878,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1059", "deps": [] @@ -1892,7 +1892,7 @@ }, "recipe": { "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.843", "deps": [ @@ -1910,7 +1910,7 @@ }, "recipe": { "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.1240", "deps": [] @@ -1924,7 +1924,7 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.523", "deps": [ @@ -1941,7 +1941,7 @@ }, "recipe": { "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -1957,7 +1957,7 @@ }, "recipe": { "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090723.1019", "deps": [] @@ -1971,7 +1971,7 @@ }, "recipe": { "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140106.1939", "deps": [ @@ -1989,7 +1989,7 @@ }, "recipe": { "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.1707", "deps": [ @@ -2006,7 +2006,7 @@ }, "recipe": { "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -2021,7 +2021,7 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.659", "deps": [] @@ -2035,7 +2035,7 @@ }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.222", "deps": [ @@ -2053,7 +2053,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1315", "deps": [] @@ -2067,7 +2067,7 @@ }, "recipe": { "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.305", "deps": [ @@ -2084,7 +2084,7 @@ }, "recipe": { "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150426.749", "deps": [ @@ -2100,7 +2100,7 @@ }, "recipe": { "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.15", "deps": [ @@ -2122,7 +2122,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1448", "deps": [] @@ -2136,7 +2136,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.918", "deps": [] @@ -2150,7 +2150,7 @@ }, "recipe": { "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2353", "deps": [ @@ -2166,7 +2166,7 @@ }, "recipe": { "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.523", "deps": [ @@ -2182,7 +2182,7 @@ }, "recipe": { "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121224.2049", "deps": [] @@ -2196,7 +2196,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.205", "deps": [] @@ -2210,7 +2210,7 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140329.1629", "deps": [ @@ -2226,7 +2226,7 @@ }, "recipe": { "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.903", "deps": [ @@ -2245,7 +2245,7 @@ }, "recipe": { "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.2236", "deps": [] @@ -2258,7 +2258,7 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.633", "deps": [] @@ -2272,7 +2272,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150701.1015", "deps": [] @@ -2286,7 +2286,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.933", "deps": [ @@ -2304,7 +2304,7 @@ }, "recipe": { "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.1302", "deps": [ @@ -2321,7 +2321,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1425", "deps": [] @@ -2335,7 +2335,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.908", "deps": [ @@ -2353,7 +2353,7 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.941", "deps": [] @@ -2367,7 +2367,7 @@ }, "recipe": { "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.642", "deps": [ @@ -2384,7 +2384,7 @@ }, "recipe": { "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150309.129", "deps": [ @@ -2401,7 +2401,7 @@ }, "recipe": { "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140614.335", "deps": [ @@ -2417,7 +2417,7 @@ }, "recipe": { "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.1538", "deps": [] @@ -2431,7 +2431,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.959", "deps": [ @@ -2449,7 +2449,7 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -2463,7 +2463,7 @@ }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.327", "deps": [ @@ -2481,7 +2481,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150613.417", "deps": [] @@ -2495,7 +2495,7 @@ }, "recipe": { "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141021.1322", "deps": [] @@ -2509,7 +2509,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1848", "deps": [ @@ -2525,7 +2525,7 @@ }, "recipe": { "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.719", "deps": [ @@ -2536,12 +2536,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "73f2a33d0b01bf2a743d93f05a8a4bc1f5a2c1df6552db501f3a5904854b0805", - "rev": "e7a186a1035a0b204360698229f974282c5388e2" + "sha256": "9dea0d94106ee293336ce640d9fa9bbdd3e07202ee6fbb7b5f0ae424414007b6", + "rev": "6de02ea4700a700c1d5950309242ed4d44e357ae" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1843", "deps": [ @@ -2557,7 +2557,7 @@ }, "recipe": { "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.337", "deps": [] @@ -2571,7 +2571,7 @@ }, "recipe": { "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130414.221", "deps": [ @@ -2587,7 +2587,7 @@ }, "recipe": { "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.221", "deps": [] @@ -2601,7 +2601,7 @@ }, "recipe": { "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151024.37", "deps": [ @@ -2617,7 +2617,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.2359", "deps": [ @@ -2633,7 +2633,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140111.1601", "deps": [] @@ -2647,7 +2647,7 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.941", "deps": [ @@ -2662,7 +2662,7 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120509.605", "deps": [] @@ -2676,7 +2676,7 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.348", "deps": [ @@ -2692,7 +2692,7 @@ }, "recipe": { "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.31", "deps": [] @@ -2705,7 +2705,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.1554", "deps": [ @@ -2724,7 +2724,7 @@ }, "recipe": { "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.415", "deps": [ @@ -2741,7 +2741,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.1234", "deps": [ @@ -2758,7 +2758,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090621.832", "deps": [] @@ -2771,7 +2771,7 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1602", "deps": [] @@ -2785,7 +2785,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.41", "deps": [ @@ -2802,7 +2802,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.2106", "deps": [] @@ -2816,7 +2816,7 @@ }, "recipe": { "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.2152", "deps": [ @@ -2834,7 +2834,7 @@ }, "recipe": { "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1834", "deps": [ @@ -2851,7 +2851,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.301", "deps": [ @@ -2868,7 +2868,7 @@ }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1639", "deps": [ @@ -2885,7 +2885,7 @@ }, "recipe": { "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.120", "deps": [] @@ -2899,7 +2899,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141225.930", "deps": [ @@ -2915,7 +2915,7 @@ }, "recipe": { "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.1956", "deps": [ @@ -2931,7 +2931,7 @@ }, "recipe": { "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1222", "deps": [] @@ -2945,7 +2945,7 @@ }, "recipe": { "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.848", "deps": [] @@ -2959,7 +2959,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1959", "deps": [] @@ -2973,7 +2973,7 @@ }, "recipe": { "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1141", "deps": [ @@ -2990,7 +2990,7 @@ }, "recipe": { "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131001.2318", "deps": [] @@ -3004,7 +3004,7 @@ }, "recipe": { "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141004.1752", "deps": [ @@ -3020,7 +3020,7 @@ }, "recipe": { "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131215.719", "deps": [] @@ -3034,7 +3034,7 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.2051", "deps": [ @@ -3050,7 +3050,7 @@ }, "recipe": { "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.603", "deps": [ @@ -3067,7 +3067,7 @@ }, "recipe": { "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1015", "deps": [ @@ -3082,7 +3082,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1508", "deps": [ @@ -3098,7 +3098,7 @@ }, "recipe": { "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131023.1213", "deps": [] @@ -3112,7 +3112,7 @@ }, "recipe": { "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.1725", "deps": [] @@ -3126,7 +3126,7 @@ }, "recipe": { "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.1426", "deps": [] @@ -3140,7 +3140,7 @@ }, "recipe": { "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.1334", "deps": [ @@ -3156,7 +3156,7 @@ }, "recipe": { "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150125.441", "deps": [] @@ -3170,7 +3170,7 @@ }, "recipe": { "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.835", "deps": [ @@ -3187,7 +3187,7 @@ }, "recipe": { "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.628", "deps": [] @@ -3201,7 +3201,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.2319", "deps": [ @@ -3218,7 +3218,7 @@ }, "recipe": { "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.723", "deps": [] @@ -3232,7 +3232,7 @@ }, "recipe": { "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.2012", "deps": [ @@ -3248,7 +3248,7 @@ }, "recipe": { "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1522", "deps": [] @@ -3262,7 +3262,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.1004", "deps": [] @@ -3276,7 +3276,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.716", "deps": [ @@ -3293,7 +3293,7 @@ }, "recipe": { "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.758", "deps": [] @@ -3307,7 +3307,7 @@ }, "recipe": { "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.134", "deps": [ @@ -3325,7 +3325,7 @@ }, "recipe": { "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.2148", "deps": [] @@ -3338,7 +3338,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1047", "deps": [] @@ -3351,7 +3351,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -3365,7 +3365,7 @@ }, "recipe": { "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1646", "deps": [ @@ -3381,7 +3381,7 @@ }, "recipe": { "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.251", "deps": [ @@ -3396,7 +3396,7 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120608.1335", "deps": [] @@ -3410,7 +3410,7 @@ }, "recipe": { "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130509.1255", "deps": [] @@ -3424,7 +3424,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150617.831", "deps": [ @@ -3441,7 +3441,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140504.357", "deps": [ @@ -3457,7 +3457,7 @@ }, "recipe": { "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1815", "deps": [] @@ -3471,7 +3471,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.924", "deps": [ @@ -3489,7 +3489,7 @@ }, "recipe": { "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.839", "deps": [ @@ -3508,7 +3508,7 @@ }, "recipe": { "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.1621", "deps": [ @@ -3525,7 +3525,7 @@ }, "recipe": { "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130524.609", "deps": [] @@ -3539,7 +3539,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.800", "deps": [] @@ -3553,7 +3553,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.1039", "deps": [] @@ -3567,7 +3567,7 @@ }, "recipe": { "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.1304", "deps": [ @@ -3583,7 +3583,7 @@ }, "recipe": { "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.616", "deps": [ @@ -3601,7 +3601,7 @@ }, "recipe": { "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150207.717", "deps": [] @@ -3615,7 +3615,7 @@ }, "recipe": { "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.2146", "deps": [ @@ -3632,7 +3632,7 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.913", "deps": [] @@ -3641,12 +3641,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/sigma/gh.el.git", - "sha256": "c4e24c5352052cce996ddc3d24510a437633c1c63f1797548f743bc52f193e96", + "sha256": "c5bcbab980cd28e0c2b95ccb6602f91f988c52007abeaf29d9a656514c792d1f", "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1048", "deps": [ @@ -3664,7 +3664,7 @@ }, "recipe": { "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.825", "deps": [ @@ -3680,7 +3680,7 @@ }, "recipe": { "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.1132", "deps": [] @@ -3694,7 +3694,7 @@ }, "recipe": { "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.629", "deps": [ @@ -3710,7 +3710,7 @@ }, "recipe": { "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140409.1801", "deps": [] @@ -3719,14 +3719,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/abo-abo/lispy.git", - "sha256": "953f6425ca249ed258360f3775b2aec961ef539238f2b0f52169db7356cd8431", - "rev": "9479a0214656ea2cff5c59d52ab24ced4b09a765" + "sha256": "3f0acaad7dded52e12626afede7c7671f79b8a556a598de3e127b3773ae97055", + "rev": "ad1a6e075da26fa20fdd6840bb0d3d41889c42b2" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.437", + "version": "20151215.941", "deps": [ "ace-window", "emacs", @@ -3743,7 +3743,7 @@ }, "recipe": { "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141228.1605", "deps": [ @@ -3759,7 +3759,7 @@ }, "recipe": { "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.412", "deps": [] @@ -3768,12 +3768,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130526.1215", "deps": [ @@ -3790,7 +3790,7 @@ }, "recipe": { "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.925", "deps": [] @@ -3803,7 +3803,7 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1846", "deps": [] @@ -3817,7 +3817,7 @@ }, "recipe": { "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1706", "deps": [ @@ -3836,7 +3836,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150523.1315", "deps": [ @@ -3852,7 +3852,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.301", "deps": [ @@ -3868,7 +3868,7 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.433", "deps": [ @@ -3885,7 +3885,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.416", "deps": [ @@ -3906,7 +3906,7 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1136", "deps": [] @@ -3919,7 +3919,7 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1905", "deps": [] @@ -3933,7 +3933,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100419.1245", "deps": [] @@ -3947,7 +3947,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1243", "deps": [ @@ -3967,7 +3967,7 @@ }, "recipe": { "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.434", "deps": [ @@ -3983,7 +3983,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20051013.1256", "deps": [] @@ -3997,7 +3997,7 @@ }, "recipe": { "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140722.1621", "deps": [ @@ -4013,7 +4013,7 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1911", "deps": [] @@ -4027,7 +4027,7 @@ }, "recipe": { "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -4044,7 +4044,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.815", "deps": [] @@ -4058,7 +4058,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1114", "deps": [ @@ -4074,7 +4074,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1916", "deps": [ @@ -4093,7 +4093,7 @@ }, "recipe": { "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.124", "deps": [ @@ -4111,7 +4111,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130421.500", "deps": [ @@ -4128,7 +4128,7 @@ }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.2122", "deps": [] @@ -4142,7 +4142,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1114", "deps": [] @@ -4156,7 +4156,7 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150625.1333", "deps": [] @@ -4169,7 +4169,7 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.833", "deps": [] @@ -4183,7 +4183,7 @@ }, "recipe": { "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130719.1557", "deps": [ @@ -4199,7 +4199,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.541", "deps": [ @@ -4215,7 +4215,7 @@ }, "recipe": { "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.225", "deps": [ @@ -4231,7 +4231,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1347", "deps": [ @@ -4248,7 +4248,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.1708", "deps": [] @@ -4262,7 +4262,7 @@ }, "recipe": { "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.338", "deps": [ @@ -4278,7 +4278,7 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130908.1224", "deps": [] @@ -4292,7 +4292,7 @@ }, "recipe": { "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.1354", "deps": [ @@ -4308,7 +4308,7 @@ }, "recipe": { "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.711", "deps": [ @@ -4324,7 +4324,7 @@ }, "recipe": { "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1223", "deps": [] @@ -4337,7 +4337,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1902", "deps": [] @@ -4351,7 +4351,7 @@ }, "recipe": { "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141106.1551", "deps": [] @@ -4365,7 +4365,7 @@ }, "recipe": { "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.215", "deps": [] @@ -4378,7 +4378,7 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.916", "deps": [] @@ -4392,7 +4392,7 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150313.1405", "deps": [ @@ -4408,7 +4408,7 @@ }, "recipe": { "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.819", "deps": [ @@ -4423,7 +4423,7 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.551", "deps": [] @@ -4437,7 +4437,7 @@ }, "recipe": { "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.2209", "deps": [ @@ -4453,7 +4453,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130509.658", "deps": [ @@ -4471,7 +4471,7 @@ }, "recipe": { "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.456", "deps": [] @@ -4485,7 +4485,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.2205", "deps": [] @@ -4499,7 +4499,7 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140823.939", "deps": [ @@ -4515,7 +4515,7 @@ }, "recipe": { "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.315", "deps": [] @@ -4528,7 +4528,7 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140201.1745", "deps": [] @@ -4542,7 +4542,7 @@ }, "recipe": { "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140423.832", "deps": [] @@ -4556,7 +4556,7 @@ }, "recipe": { "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100210.952", "deps": [] @@ -4570,7 +4570,7 @@ }, "recipe": { "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120910.411", "deps": [] @@ -4579,12 +4579,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.505", "deps": [ @@ -4600,7 +4600,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.44", "deps": [ @@ -4616,7 +4616,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.613", "deps": [ @@ -4634,7 +4634,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150216.1542", "deps": [] @@ -4648,7 +4648,7 @@ }, "recipe": { "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150204.452", "deps": [ @@ -4665,7 +4665,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.642", "deps": [ @@ -4685,7 +4685,7 @@ }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.2128", "deps": [ @@ -4710,7 +4710,7 @@ }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.512", "deps": [ @@ -4726,7 +4726,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1359", "deps": [] @@ -4735,14 +4735,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/vspinu/math-symbol-lists.git", - "sha256": "ee58ce2fe0814f7c06bfc0742f6ad2993406f8009e276ca858ad41787b16bbc1", - "rev": "0d9147c6f7432d7b7a1b7c7bba28165202c96d23" + "sha256": "8ad794ba26a6d19e2ffc701130cc70d3c77805986684ca9e146076e22de84fe1", + "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b" }, "recipe": { "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150830.1833", + "version": "20151215.1243", "deps": [] }, "ox-rst": { @@ -4754,7 +4754,7 @@ }, "recipe": { "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.143", "deps": [ @@ -4771,7 +4771,7 @@ }, "recipe": { "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1651", "deps": [] @@ -4785,7 +4785,7 @@ }, "recipe": { "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.2123", "deps": [] @@ -4799,7 +4799,7 @@ }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.820", "deps": [ @@ -4811,14 +4811,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tumashu/chinese-pyim.git", - "sha256": "9e70d00f9bdda8168d26582cefeab893cf4eaeb70d3c403373f69baa7396e4b9", - "rev": "e85cf228243555c80fc12de7e43c544733fe8597" + "sha256": "cb65de45ddfff5a9a0e44dcc464f0c4b9c9d36c6d7915cc98e657b50466368c1", + "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6" }, "recipe": { "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151130.2103", + "version": "20151215.1812", "deps": [ "cl-lib", "pos-tip" @@ -4833,7 +4833,7 @@ }, "recipe": { "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140213.222", "deps": [] @@ -4847,7 +4847,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.629", "deps": [ @@ -4865,7 +4865,7 @@ }, "recipe": { "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1238", "deps": [ @@ -4881,7 +4881,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120920.1148", "deps": [] @@ -4895,7 +4895,7 @@ }, "recipe": { "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.2126", "deps": [] @@ -4909,7 +4909,7 @@ }, "recipe": { "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1034", "deps": [ @@ -4926,7 +4926,7 @@ }, "recipe": { "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.900", "deps": [ @@ -4945,7 +4945,7 @@ }, "recipe": { "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131013.1332", "deps": [ @@ -4962,7 +4962,7 @@ }, "recipe": { "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141008.728", "deps": [ @@ -4978,7 +4978,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1015", "deps": [ @@ -4994,7 +4994,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.1955", "deps": [ @@ -5010,7 +5010,7 @@ }, "recipe": { "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -5026,7 +5026,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1328", "deps": [] @@ -5040,7 +5040,7 @@ }, "recipe": { "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.936", "deps": [] @@ -5054,7 +5054,7 @@ }, "recipe": { "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.1152", "deps": [ @@ -5072,7 +5072,7 @@ }, "recipe": { "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1655", "deps": [ @@ -5089,7 +5089,7 @@ }, "recipe": { "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.444", "deps": [] @@ -5103,7 +5103,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.2203", "deps": [ @@ -5119,7 +5119,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1858", "deps": [ @@ -5135,7 +5135,7 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141110.217", "deps": [] @@ -5149,7 +5149,7 @@ }, "recipe": { "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.447", "deps": [ @@ -5165,7 +5165,7 @@ }, "recipe": { "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120829.752", "deps": [] @@ -5178,7 +5178,7 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140813.319", "deps": [] @@ -5192,7 +5192,7 @@ }, "recipe": { "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141119.243", "deps": [] @@ -5206,7 +5206,7 @@ }, "recipe": { "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141016.1856", "deps": [] @@ -5220,7 +5220,7 @@ }, "recipe": { "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130731.1642", "deps": [] @@ -5234,7 +5234,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.2149", "deps": [ @@ -5250,7 +5250,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1951", "deps": [ @@ -5266,7 +5266,7 @@ }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.126", "deps": [] @@ -5280,7 +5280,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140528.2026", "deps": [ @@ -5297,7 +5297,7 @@ }, "recipe": { "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140122.534", "deps": [] @@ -5311,7 +5311,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.154", "deps": [] @@ -5325,7 +5325,7 @@ }, "recipe": { "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1636", "deps": [ @@ -5342,7 +5342,7 @@ }, "recipe": { "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2325", "deps": [ @@ -5358,7 +5358,7 @@ }, "recipe": { "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141208.755", "deps": [ @@ -5375,7 +5375,7 @@ }, "recipe": { "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1600", "deps": [ @@ -5392,7 +5392,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150317.44", "deps": [ @@ -5411,7 +5411,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141010.1039", "deps": [] @@ -5425,7 +5425,7 @@ }, "recipe": { "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150111.623", "deps": [ @@ -5441,7 +5441,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.714", "deps": [] @@ -5455,7 +5455,7 @@ }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.1726", "deps": [ @@ -5472,7 +5472,7 @@ }, "recipe": { "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140105.1626", "deps": [] @@ -5481,12 +5481,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiyoka/sekka.git", - "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", - "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + "sha256": "f9f775bedebfd5f8d392e2a4773121058009284de98cfa813711568407955fa3", + "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.659", "deps": [ @@ -5504,7 +5504,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140320.224", "deps": [ @@ -5520,7 +5520,7 @@ }, "recipe": { "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.1604", "deps": [] @@ -5534,7 +5534,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140223.1132", "deps": [] @@ -5548,7 +5548,7 @@ }, "recipe": { "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1841", "deps": [ @@ -5565,7 +5565,7 @@ }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -5582,7 +5582,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.38", "deps": [ @@ -5599,7 +5599,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1443", "deps": [ @@ -5616,7 +5616,7 @@ }, "recipe": { "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.526", "deps": [] @@ -5630,7 +5630,7 @@ }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.826", "deps": [ @@ -5646,7 +5646,7 @@ }, "recipe": { "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1528", "deps": [ @@ -5656,6 +5656,20 @@ "helm" ] }, + "xquery-tool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paddymcall/xquery-tool.el.git", + "sha256": "879e87d74e1a34b3fb2e4d07c46a61c8dc39943e7729d1c7868bbbf717d5dd93", + "rev": "1ecc31dd7809a152ac43f262e8839d1405b012be" + }, + "recipe": { + "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "20151215.1055", + "deps": [] + }, "gruvbox-theme": { "fetch": { "tag": "fetchgit", @@ -5665,7 +5679,7 @@ }, "recipe": { "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1632", "deps": [] @@ -5679,7 +5693,7 @@ }, "recipe": { "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140728.36", "deps": [ @@ -5695,7 +5709,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -5714,7 +5728,7 @@ }, "recipe": { "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1044", "deps": [] @@ -5723,15 +5737,17 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "4cbf6541e1a895eae6b0c0c819f5fadc017d0e155d752cd2f4d05145ad0ae59a", - "rev": "a87ab367fe0015917a1940b5acd9a581b1631801" + "sha256": "c3ae58ee2491ebebcce31418c27c7811a757eb303c739b2ab72c87a407190ca6", + "rev": "dcdcd81c9e875328e5ded06be61a603cc97face9" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150817.35", - "deps": [] + "version": "20151215.1246", + "deps": [ + "emacs" + ] }, "point-stack": { "fetch": { @@ -5742,7 +5758,7 @@ }, "recipe": { "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140102.1423", "deps": [] @@ -5756,7 +5772,7 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.1129", "deps": [ @@ -5772,7 +5788,7 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.2043", "deps": [ @@ -5788,7 +5804,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1552", "deps": [ @@ -5804,7 +5820,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.419", "deps": [] @@ -5818,7 +5834,7 @@ }, "recipe": { "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.235", "deps": [] @@ -5832,7 +5848,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.440", "deps": [ @@ -5851,7 +5867,7 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20081011.1526", "deps": [] @@ -5864,7 +5880,7 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101129.2052", "deps": [] @@ -5873,12 +5889,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1316", "deps": [ @@ -5895,7 +5911,7 @@ }, "recipe": { "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2316", "deps": [ @@ -5912,7 +5928,7 @@ }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.1057", "deps": [ @@ -5929,7 +5945,7 @@ }, "recipe": { "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.641", "deps": [ @@ -5945,7 +5961,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.953", "deps": [] @@ -5959,7 +5975,7 @@ }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1000", "deps": [ @@ -5976,7 +5992,7 @@ }, "recipe": { "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.947", "deps": [] @@ -5990,7 +6006,7 @@ }, "recipe": { "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130528.2227", "deps": [ @@ -6005,7 +6021,7 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.2036", "deps": [] @@ -6019,7 +6035,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140127.1246", "deps": [ @@ -6032,14 +6048,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/mpg123.git", - "sha256": "3a9352550182e2b6c193b88de862878f6e149c089b4a52c28b117316875531b4", - "rev": "46b0fb53c2003c08c269371f68c2fb7aeb19ce82" + "sha256": "eb1d3da510cac9689c7ae5405f8868ae9d2b7cb7d498310a8b660d51790de324", + "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c" }, "recipe": { "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150110.2016", + "version": "20151214.1350", "deps": [] }, "paredit-everywhere": { @@ -6051,7 +6067,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.2344", "deps": [ @@ -6067,7 +6083,7 @@ }, "recipe": { "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.407", "deps": [] @@ -6081,7 +6097,7 @@ }, "recipe": { "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150131.352", "deps": [ @@ -6097,7 +6113,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.528", "deps": [ @@ -6114,7 +6130,7 @@ }, "recipe": { "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.1004", "deps": [] @@ -6128,7 +6144,7 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2227", "deps": [ @@ -6146,7 +6162,7 @@ }, "recipe": { "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -6165,7 +6181,7 @@ }, "recipe": { "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1137", "deps": [ @@ -6182,7 +6198,7 @@ }, "recipe": { "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131223.700", "deps": [ @@ -6198,7 +6214,7 @@ }, "recipe": { "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120223.1608", "deps": [] @@ -6212,7 +6228,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130409.1249", "deps": [ @@ -6228,7 +6244,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.206", "deps": [] @@ -6242,7 +6258,7 @@ }, "recipe": { "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140208.914", "deps": [] @@ -6256,7 +6272,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131219.2239", "deps": [] @@ -6270,7 +6286,7 @@ }, "recipe": { "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.1357", "deps": [] @@ -6284,7 +6300,7 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131127.206", "deps": [ @@ -6299,7 +6315,7 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.1121", "deps": [] @@ -6313,7 +6329,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.653", "deps": [ @@ -6331,7 +6347,7 @@ }, "recipe": { "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.833", "deps": [ @@ -6347,7 +6363,7 @@ }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1015", "deps": [] @@ -6361,7 +6377,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120829.710", "deps": [ @@ -6377,7 +6393,7 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141121.1230", "deps": [] @@ -6390,7 +6406,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1550", "deps": [ @@ -6405,7 +6421,7 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.1829", "deps": [] @@ -6419,7 +6435,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.118", "deps": [] @@ -6433,7 +6449,7 @@ }, "recipe": { "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130329.1748", "deps": [ @@ -6449,7 +6465,7 @@ }, "recipe": { "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1813", "deps": [ @@ -6465,7 +6481,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1148", "deps": [] @@ -6479,7 +6495,7 @@ }, "recipe": { "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.2226", "deps": [ @@ -6500,7 +6516,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.1035", "deps": [ @@ -6516,7 +6532,7 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140728.1736", "deps": [] @@ -6529,7 +6545,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.2302", "deps": [] @@ -6542,7 +6558,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.1320", "deps": [] @@ -6556,7 +6572,7 @@ }, "recipe": { "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.405", "deps": [] @@ -6570,7 +6586,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1120", "deps": [ @@ -6587,7 +6603,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.334", "deps": [ @@ -6603,7 +6619,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150523.1003", "deps": [] @@ -6617,11 +6633,28 @@ }, "recipe": { "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121208.558", "deps": [] }, + "clojars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshuamiller/clojars.el.git", + "sha256": "6673e1acac09915a900578e13ef9fefd06d96889251c0f6601709bda014b28e4", + "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f" + }, + "recipe": { + "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "20151215.1433", + "deps": [ + "cl-lib", + "request" + ] + }, "jump": { "fetch": { "tag": "fetchgit", @@ -6631,7 +6664,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.329", "deps": [ @@ -6648,7 +6681,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1116", "deps": [ @@ -6666,7 +6699,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140830.1721", "deps": [ @@ -6682,7 +6715,7 @@ }, "recipe": { "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121017.57", "deps": [] @@ -6696,7 +6729,7 @@ }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.400", "deps": [ @@ -6721,7 +6754,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.905", "deps": [] @@ -6735,7 +6768,7 @@ }, "recipe": { "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.407", "deps": [ @@ -6752,7 +6785,7 @@ }, "recipe": { "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.2315", "deps": [ @@ -6764,14 +6797,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", - "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + "sha256": "684159f82702dd310c050c6d8197b77b39acb7b43fa358a5f0a07a79a5b67230", + "rev": "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151211.2028", + "version": "20151214.1311", "deps": [ "cl-lib", "emacs", @@ -6787,7 +6820,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1012", "deps": [ @@ -6805,7 +6838,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140625.650", "deps": [] @@ -6819,7 +6852,7 @@ }, "recipe": { "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1651", "deps": [ @@ -6835,7 +6868,7 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.943", "deps": [] @@ -6849,7 +6882,7 @@ }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.815", "deps": [ @@ -6869,7 +6902,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.1046", "deps": [] @@ -6883,7 +6916,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140620.1609", "deps": [] @@ -6892,12 +6925,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/bufshow.git", - "sha256": "21b136aea7dda2c694e08d66fdfeb4466813551550edef4f25dd3cf699857d5f", + "sha256": "4615a76ead605c28cc318591774a883d966ec8a0585faf5e2112f9237e43ce30", "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130711.1239", "deps": [ @@ -6913,7 +6946,7 @@ }, "recipe": { "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.422", "deps": [ @@ -6928,7 +6961,7 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121115.443", "deps": [] @@ -6942,7 +6975,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.15", "deps": [ @@ -6960,7 +6993,7 @@ }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.828", "deps": [ @@ -6976,7 +7009,7 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110722.1051", "deps": [] @@ -6990,7 +7023,7 @@ }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1707", "deps": [ @@ -7007,7 +7040,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1029", "deps": [ @@ -7025,7 +7058,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140512.900", "deps": [] @@ -7039,7 +7072,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141220.238", "deps": [ @@ -7056,7 +7089,7 @@ }, "recipe": { "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141028.218", "deps": [] @@ -7070,7 +7103,7 @@ }, "recipe": { "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.455", "deps": [ @@ -7090,7 +7123,7 @@ }, "recipe": { "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1226", "deps": [ @@ -7107,7 +7140,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.441", "deps": [ @@ -7123,7 +7156,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.455", "deps": [] @@ -7137,7 +7170,7 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1015", "deps": [] @@ -7150,7 +7183,7 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.720", "deps": [] @@ -7164,7 +7197,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.101", "deps": [] @@ -7178,7 +7211,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130506.8", "deps": [ @@ -7196,7 +7229,7 @@ }, "recipe": { "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.847", "deps": [] @@ -7210,7 +7243,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.542", "deps": [] @@ -7224,7 +7257,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.1209", "deps": [] @@ -7238,7 +7271,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150416.1458", "deps": [] @@ -7252,7 +7285,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.1800", "deps": [] @@ -7266,7 +7299,7 @@ }, "recipe": { "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.118", "deps": [ @@ -7282,7 +7315,7 @@ }, "recipe": { "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.1114", "deps": [ @@ -7299,7 +7332,7 @@ }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.203", "deps": [ @@ -7316,7 +7349,7 @@ }, "recipe": { "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1716", "deps": [ @@ -7331,7 +7364,7 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091012.1230", "deps": [] @@ -7345,7 +7378,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150313.1012", "deps": [ @@ -7361,7 +7394,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.141", "deps": [] @@ -7375,7 +7408,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.728", "deps": [ @@ -7397,7 +7430,7 @@ }, "recipe": { "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.2052", "deps": [] @@ -7411,7 +7444,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1300", "deps": [ @@ -7428,7 +7461,7 @@ }, "recipe": { "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.432", "deps": [] @@ -7442,7 +7475,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1023", "deps": [] @@ -7456,7 +7489,7 @@ }, "recipe": { "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.2033", "deps": [] @@ -7470,7 +7503,7 @@ }, "recipe": { "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.1352", "deps": [ @@ -7486,7 +7519,7 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1513", "deps": [ @@ -7501,7 +7534,7 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141021.1338", "deps": [] @@ -7515,7 +7548,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.2039", "deps": [] @@ -7529,7 +7562,7 @@ }, "recipe": { "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140118.957", "deps": [ @@ -7545,7 +7578,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140818.255", "deps": [] @@ -7559,7 +7592,7 @@ }, "recipe": { "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.1802", "deps": [ @@ -7575,7 +7608,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1541", "deps": [] @@ -7589,7 +7622,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.2103", "deps": [] @@ -7603,7 +7636,7 @@ }, "recipe": { "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.1026", "deps": [] @@ -7617,7 +7650,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1658", "deps": [ @@ -7633,7 +7666,7 @@ }, "recipe": { "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130301.148", "deps": [] @@ -7647,7 +7680,7 @@ }, "recipe": { "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1700", "deps": [ @@ -7664,7 +7697,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.951", "deps": [] @@ -7678,7 +7711,7 @@ }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1224", "deps": [ @@ -7695,7 +7728,7 @@ }, "recipe": { "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.945", "deps": [ @@ -7711,7 +7744,7 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1420", "deps": [] @@ -7725,7 +7758,7 @@ }, "recipe": { "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140909.38", "deps": [ @@ -7740,7 +7773,7 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140807.1550", "deps": [] @@ -7754,7 +7787,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.1408", "deps": [ @@ -7771,7 +7804,7 @@ }, "recipe": { "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.438", "deps": [] @@ -7785,7 +7818,7 @@ }, "recipe": { "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.2119", "deps": [] @@ -7799,7 +7832,7 @@ }, "recipe": { "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.338", "deps": [ @@ -7815,7 +7848,7 @@ }, "recipe": { "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.1141", "deps": [] @@ -7829,7 +7862,7 @@ }, "recipe": { "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.406", "deps": [] @@ -7843,7 +7876,7 @@ }, "recipe": { "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.17", "deps": [] @@ -7857,7 +7890,7 @@ }, "recipe": { "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1407", "deps": [ @@ -7875,7 +7908,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1623", "deps": [ @@ -7893,7 +7926,7 @@ }, "recipe": { "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130321.2314", "deps": [] @@ -7907,7 +7940,7 @@ }, "recipe": { "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.2142", "deps": [ @@ -7924,7 +7957,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1732", "deps": [ @@ -7944,7 +7977,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150102.912", "deps": [] @@ -7958,7 +7991,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.534", "deps": [ @@ -7975,7 +8008,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1646", "deps": [ @@ -7991,7 +8024,7 @@ }, "recipe": { "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.612", "deps": [] @@ -8005,7 +8038,7 @@ }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.426", "deps": [] @@ -8019,7 +8052,7 @@ }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130829.1343", "deps": [ @@ -8030,14 +8063,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "f9cbf71b5a8ea7f18ef71f09ff3dafd1f001fb72bd1f268f3303ecc672227ad2", - "rev": "2331db1777a401a1385bfadb6d46eaf4d7fc555f" + "sha256": "2c858859615c1e26c2b00f639fef086cc41fb610fb9430a8a2ae8e5afcee4d58", + "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151117.317", + "version": "20151214.1227", "deps": [ "alert", "emacs", @@ -8053,7 +8086,7 @@ }, "recipe": { "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1441", "deps": [] @@ -8067,7 +8100,7 @@ }, "recipe": { "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150725.909", "deps": [] @@ -8081,7 +8114,7 @@ }, "recipe": { "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.1011", "deps": [ @@ -8097,7 +8130,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.806", "deps": [ @@ -8114,7 +8147,7 @@ }, "recipe": { "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1727", "deps": [] @@ -8128,7 +8161,7 @@ }, "recipe": { "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -8143,7 +8176,7 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150228.1213", "deps": [] @@ -8157,7 +8190,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140815.1813", "deps": [ @@ -8173,7 +8206,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1820", "deps": [] @@ -8183,11 +8216,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53114" + "rev": "53137" }, "recipe": { "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.952", "deps": [] @@ -8201,7 +8234,7 @@ }, "recipe": { "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.447", "deps": [] @@ -8215,7 +8248,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130823.2254", "deps": [] @@ -8229,7 +8262,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110911.504", "deps": [] @@ -8243,7 +8276,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150409.1934", "deps": [ @@ -8259,7 +8292,7 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150410.1110", "deps": [] @@ -8273,7 +8306,7 @@ }, "recipe": { "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1619", "deps": [ @@ -8284,12 +8317,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "8ff90cf595c202ae759835658a220787f50db5567198c03a3fe81883466481ee", + "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1524", "deps": [] @@ -8303,7 +8336,7 @@ }, "recipe": { "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131020.1354", "deps": [ @@ -8320,7 +8353,7 @@ }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.742", "deps": [ @@ -8336,7 +8369,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.527", "deps": [ @@ -8352,7 +8385,7 @@ }, "recipe": { "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150419.649", "deps": [ @@ -8368,7 +8401,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.722", "deps": [ @@ -8385,7 +8418,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.1206", "deps": [ @@ -8402,7 +8435,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1300", "deps": [ @@ -8418,7 +8451,7 @@ }, "recipe": { "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.804", "deps": [] @@ -8432,7 +8465,7 @@ }, "recipe": { "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.912", "deps": [] @@ -8446,7 +8479,7 @@ }, "recipe": { "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.920", "deps": [] @@ -8460,7 +8493,7 @@ }, "recipe": { "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.450", "deps": [ @@ -8476,7 +8509,7 @@ }, "recipe": { "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.1713", "deps": [] @@ -8490,7 +8523,7 @@ }, "recipe": { "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140413.1625", "deps": [] @@ -8504,7 +8537,7 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.816", "deps": [] @@ -8517,7 +8550,7 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.659", "deps": [] @@ -8531,7 +8564,7 @@ }, "recipe": { "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.824", "deps": [] @@ -8545,7 +8578,7 @@ }, "recipe": { "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140730.447", "deps": [] @@ -8559,7 +8592,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.2256", "deps": [ @@ -8578,7 +8611,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141230.738", "deps": [] @@ -8592,7 +8625,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2143", "deps": [] @@ -8606,7 +8639,7 @@ }, "recipe": { "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.1102", "deps": [] @@ -8620,7 +8653,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1145", "deps": [ @@ -8641,7 +8674,7 @@ }, "recipe": { "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110112.1907", "deps": [] @@ -8655,7 +8688,7 @@ }, "recipe": { "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1044", "deps": [ @@ -8671,7 +8704,7 @@ }, "recipe": { "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130423.1048", "deps": [ @@ -8687,7 +8720,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120406.1551", "deps": [] @@ -8701,7 +8734,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130907.332", "deps": [] @@ -8715,7 +8748,7 @@ }, "recipe": { "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.1636", "deps": [] @@ -8729,7 +8762,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121001.2245", "deps": [] @@ -8743,7 +8776,7 @@ }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.2330", "deps": [ @@ -8755,12 +8788,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -8776,7 +8809,7 @@ }, "recipe": { "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131031.1832", "deps": [ @@ -8792,7 +8825,7 @@ }, "recipe": { "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130609.443", "deps": [ @@ -8807,7 +8840,7 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1147", "deps": [] @@ -8821,7 +8854,7 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.603", "deps": [ @@ -8838,7 +8871,7 @@ }, "recipe": { "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.305", "deps": [ @@ -8854,7 +8887,7 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140927.29", "deps": [] @@ -8867,7 +8900,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1607", "deps": [ @@ -8883,7 +8916,7 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.2015", "deps": [] @@ -8896,7 +8929,7 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.627", "deps": [] @@ -8910,7 +8943,7 @@ }, "recipe": { "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130126.1823", "deps": [] @@ -8924,7 +8957,7 @@ }, "recipe": { "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150325.918", "deps": [ @@ -8940,7 +8973,7 @@ }, "recipe": { "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.623", "deps": [ @@ -8956,7 +8989,7 @@ }, "recipe": { "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1554", "deps": [] @@ -8970,7 +9003,7 @@ }, "recipe": { "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140707.720", "deps": [ @@ -8987,7 +9020,7 @@ }, "recipe": { "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.217", "deps": [] @@ -9001,7 +9034,7 @@ }, "recipe": { "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.334", "deps": [ @@ -9017,7 +9050,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.853", "deps": [ @@ -9035,7 +9068,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1950", "deps": [ @@ -9052,7 +9085,7 @@ }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.10", "deps": [ @@ -9073,7 +9106,7 @@ }, "recipe": { "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150502.1528", "deps": [] @@ -9087,7 +9120,7 @@ }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.519", "deps": [ @@ -9104,7 +9137,7 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1751", "deps": [ @@ -9120,7 +9153,7 @@ }, "recipe": { "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1318", "deps": [] @@ -9134,7 +9167,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.744", "deps": [] @@ -9148,7 +9181,7 @@ }, "recipe": { "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.1531", "deps": [ @@ -9164,7 +9197,7 @@ }, "recipe": { "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2110", "deps": [] @@ -9178,7 +9211,7 @@ }, "recipe": { "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.1530", "deps": [ @@ -9190,12 +9223,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "f29644cd8fc903556f2ed11d12c4e7a9318f91480489a70347d45b4223c2753a", - "rev": "1a203408a43c3d984be143768793a94b8f2ddb0c" + "sha256": "cc64a61caa1c47ed162f4d8bbd129397348707f4f69911da45966a022f24a316", + "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.1210", "deps": [ @@ -9213,7 +9246,7 @@ }, "recipe": { "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.741", "deps": [ @@ -9231,7 +9264,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.236", "deps": [ @@ -9248,7 +9281,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120928.1545", "deps": [] @@ -9262,7 +9295,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.605", "deps": [ @@ -9279,7 +9312,7 @@ }, "recipe": { "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140205.2151", "deps": [] @@ -9293,7 +9326,7 @@ }, "recipe": { "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.842", "deps": [ @@ -9309,7 +9342,7 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.1438", "deps": [] @@ -9323,7 +9356,7 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -9337,7 +9370,7 @@ }, "recipe": { "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1748", "deps": [ @@ -9354,7 +9387,7 @@ }, "recipe": { "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1431", "deps": [ @@ -9370,7 +9403,7 @@ }, "recipe": { "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.1640", "deps": [ @@ -9386,7 +9419,7 @@ }, "recipe": { "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.143", "deps": [] @@ -9400,7 +9433,7 @@ }, "recipe": { "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.747", "deps": [] @@ -9414,7 +9447,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.149", "deps": [] @@ -9428,7 +9461,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.1616", "deps": [ @@ -9444,7 +9477,7 @@ }, "recipe": { "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150628.1842", "deps": [] @@ -9458,7 +9491,7 @@ }, "recipe": { "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.54", "deps": [] @@ -9472,7 +9505,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150721.1854", "deps": [ @@ -9490,7 +9523,7 @@ }, "recipe": { "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.1446", "deps": [ @@ -9505,7 +9538,7 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20081128.906", "deps": [] @@ -9519,7 +9552,7 @@ }, "recipe": { "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1602", "deps": [ @@ -9535,7 +9568,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.1224", "deps": [ @@ -9552,7 +9585,7 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1636", "deps": [] @@ -9566,7 +9599,7 @@ }, "recipe": { "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.1100", "deps": [ @@ -9577,12 +9610,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "ae030f66630e1099efe2897b70ab6f30858139f24e5c2ebef32836207cc18a2d", + "sha256": "c47b122d4aeefbb6d6fc061dc1a519ff4432e90672e620798f33e25c4d78a0a3", "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2333", "deps": [] @@ -9596,7 +9629,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1257", "deps": [] @@ -9610,7 +9643,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.705", "deps": [] @@ -9624,7 +9657,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.821", "deps": [] @@ -9638,7 +9671,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140604.1147", "deps": [ @@ -9655,7 +9688,7 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.533", "deps": [ @@ -9671,7 +9704,7 @@ }, "recipe": { "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121129.1452", "deps": [] @@ -9684,7 +9717,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1534", "deps": [ @@ -9700,7 +9733,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.1808", "deps": [ @@ -9717,7 +9750,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150608.1923", "deps": [ @@ -9733,7 +9766,7 @@ }, "recipe": { "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.129", "deps": [ @@ -9750,7 +9783,7 @@ }, "recipe": { "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130219.419", "deps": [] @@ -9764,7 +9797,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130520.1155", "deps": [] @@ -9778,7 +9811,7 @@ }, "recipe": { "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.1536", "deps": [ @@ -9795,7 +9828,7 @@ }, "recipe": { "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2107", "deps": [] @@ -9809,7 +9842,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140302.613", "deps": [ @@ -9828,7 +9861,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1314", "deps": [ @@ -9850,7 +9883,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080502.1152", "deps": [] @@ -9864,7 +9897,7 @@ }, "recipe": { "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150628.2133", "deps": [ @@ -9883,7 +9916,7 @@ }, "recipe": { "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131122.1527", "deps": [] @@ -9896,7 +9929,7 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1239", "deps": [] @@ -9910,7 +9943,7 @@ }, "recipe": { "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.139", "deps": [] @@ -9924,7 +9957,7 @@ }, "recipe": { "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1208", "deps": [ @@ -9940,7 +9973,7 @@ }, "recipe": { "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.355", "deps": [] @@ -9954,7 +9987,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.807", "deps": [ @@ -9971,7 +10004,7 @@ }, "recipe": { "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130923.1317", "deps": [] @@ -9985,7 +10018,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150301.513", "deps": [ @@ -10003,7 +10036,7 @@ }, "recipe": { "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140826.1449", "deps": [] @@ -10017,7 +10050,7 @@ }, "recipe": { "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1418", "deps": [] @@ -10031,7 +10064,7 @@ }, "recipe": { "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.1804", "deps": [] @@ -10045,7 +10078,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.308", "deps": [ @@ -10061,7 +10094,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.632", "deps": [] @@ -10075,7 +10108,7 @@ }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1630", "deps": [] @@ -10089,7 +10122,7 @@ }, "recipe": { "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.248", "deps": [ @@ -10108,7 +10141,7 @@ }, "recipe": { "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.2032", "deps": [ @@ -10126,7 +10159,7 @@ }, "recipe": { "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140802.642", "deps": [ @@ -10143,7 +10176,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.706", "deps": [ @@ -10159,7 +10192,7 @@ }, "recipe": { "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2242", "deps": [ @@ -10175,7 +10208,7 @@ }, "recipe": { "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1727", "deps": [ @@ -10191,7 +10224,7 @@ }, "recipe": { "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1957", "deps": [ @@ -10207,7 +10240,7 @@ }, "recipe": { "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.258", "deps": [] @@ -10221,7 +10254,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.2225", "deps": [] @@ -10235,7 +10268,7 @@ }, "recipe": { "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140709.2004", "deps": [] @@ -10249,7 +10282,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130302.536", "deps": [ @@ -10266,7 +10299,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.735", "deps": [ @@ -10283,7 +10316,7 @@ }, "recipe": { "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.850", "deps": [] @@ -10297,7 +10330,7 @@ }, "recipe": { "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130913.124", "deps": [ @@ -10313,7 +10346,7 @@ }, "recipe": { "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101118.1524", "deps": [] @@ -10327,7 +10360,7 @@ }, "recipe": { "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.2322", "deps": [ @@ -10345,7 +10378,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.935", "deps": [ @@ -10361,7 +10394,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.617", "deps": [ @@ -10381,7 +10414,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.847", "deps": [ @@ -10399,7 +10432,7 @@ }, "recipe": { "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120304.1222", "deps": [] @@ -10413,7 +10446,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.1311", "deps": [] @@ -10427,7 +10460,7 @@ }, "recipe": { "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.130", "deps": [ @@ -10443,7 +10476,7 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140304.1859", "deps": [] @@ -10457,7 +10490,7 @@ }, "recipe": { "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.2000", "deps": [] @@ -10471,7 +10504,7 @@ }, "recipe": { "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1427", "deps": [] @@ -10485,7 +10518,7 @@ }, "recipe": { "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140720.546", "deps": [ @@ -10502,7 +10535,7 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121026.1618", "deps": [] @@ -10516,7 +10549,7 @@ }, "recipe": { "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140218.2004", "deps": [] @@ -10530,7 +10563,7 @@ }, "recipe": { "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.952", "deps": [] @@ -10544,7 +10577,7 @@ }, "recipe": { "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130210.1715", "deps": [] @@ -10558,7 +10591,7 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.252", "deps": [ @@ -10574,7 +10607,7 @@ }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.332", "deps": [] @@ -10588,7 +10621,7 @@ }, "recipe": { "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120910.351", "deps": [] @@ -10602,7 +10635,7 @@ }, "recipe": { "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130619.1704", "deps": [] @@ -10616,7 +10649,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.236", "deps": [ @@ -10632,7 +10665,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.845", "deps": [] @@ -10646,7 +10679,7 @@ }, "recipe": { "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1433", "deps": [] @@ -10660,7 +10693,7 @@ }, "recipe": { "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1350", "deps": [ @@ -10676,7 +10709,7 @@ }, "recipe": { "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.1229", "deps": [ @@ -10692,7 +10725,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141223.1414", "deps": [ @@ -10710,7 +10743,7 @@ }, "recipe": { "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.914", "deps": [ @@ -10728,7 +10761,7 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2126", "deps": [ @@ -10745,7 +10778,7 @@ }, "recipe": { "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.839", "deps": [] @@ -10759,7 +10792,7 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1324", "deps": [ @@ -10775,7 +10808,7 @@ }, "recipe": { "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.43", "deps": [ @@ -10792,7 +10825,7 @@ }, "recipe": { "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130207.1509", "deps": [] @@ -10805,7 +10838,7 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131210.1222", "deps": [] @@ -10819,7 +10852,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.2036", "deps": [ @@ -10831,12 +10864,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/commercialhaskell/stack-ide.git", - "sha256": "6ecd37a02a41f0c29c977e6e4558291bf32ee33d9f07dfef0a0dbccbbd93a414", + "sha256": "1ecc97de0c3165a1b201fcef2815e7fb3d36e70a6eb43c004eb3de1b7b70be91", "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" }, "recipe": { "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.1023", "deps": [ @@ -10854,7 +10887,7 @@ }, "recipe": { "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120912.24", "deps": [] @@ -10868,7 +10901,7 @@ }, "recipe": { "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140513.1316", "deps": [] @@ -10881,7 +10914,7 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100119.1548", "deps": [] @@ -10895,7 +10928,7 @@ }, "recipe": { "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140412.812", "deps": [ @@ -10912,7 +10945,7 @@ }, "recipe": { "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1645", "deps": [ @@ -10929,7 +10962,7 @@ }, "recipe": { "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140831.721", "deps": [ @@ -10946,7 +10979,7 @@ }, "recipe": { "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.908", "deps": [] @@ -10955,12 +10988,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.622", "deps": [ @@ -10975,7 +11008,7 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140808.1635", "deps": [] @@ -10989,7 +11022,7 @@ }, "recipe": { "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120128.1501", "deps": [] @@ -11003,7 +11036,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.18", "deps": [ @@ -11020,7 +11053,7 @@ }, "recipe": { "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.414", "deps": [] @@ -11034,7 +11067,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.1338", "deps": [ @@ -11050,7 +11083,7 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.606", "deps": [ @@ -11066,7 +11099,7 @@ }, "recipe": { "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1252", "deps": [ @@ -11082,7 +11115,7 @@ }, "recipe": { "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.1437", "deps": [] @@ -11092,11 +11125,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53114" + "rev": "53137" }, "recipe": { "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150306.1959", "deps": [ @@ -11112,7 +11145,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.120", "deps": [] @@ -11126,7 +11159,7 @@ }, "recipe": { "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.619", "deps": [ @@ -11145,7 +11178,7 @@ }, "recipe": { "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.1229", "deps": [] @@ -11159,7 +11192,7 @@ }, "recipe": { "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140217.1512", "deps": [ @@ -11179,7 +11212,7 @@ }, "recipe": { "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150128.1151", "deps": [] @@ -11193,7 +11226,7 @@ }, "recipe": { "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150327.1218", "deps": [ @@ -11211,7 +11244,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.1201", "deps": [ @@ -11227,7 +11260,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1013", "deps": [] @@ -11241,7 +11274,7 @@ }, "recipe": { "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1227", "deps": [] @@ -11254,7 +11287,7 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111222.1156", "deps": [] @@ -11268,7 +11301,7 @@ }, "recipe": { "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130831.1155", "deps": [ @@ -11280,12 +11313,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "881e3b81f47fc501aff8e34ee8a703a820f2dd6868297a330766bdeabfc3b1b1", + "sha256": "94b580d1d1e00368e92a36b5bd5b1814b40384302185a13e18e93bfd2683c5e2", "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.1648", "deps": [] @@ -11299,7 +11332,7 @@ }, "recipe": { "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130731.1021", "deps": [] @@ -11313,7 +11346,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130929.147", "deps": [ @@ -11329,7 +11362,7 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1550", "deps": [] @@ -11343,7 +11376,7 @@ }, "recipe": { "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.1149", "deps": [ @@ -11360,7 +11393,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.851", "deps": [ @@ -11376,7 +11409,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.234", "deps": [] @@ -11390,7 +11423,7 @@ }, "recipe": { "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.438", "deps": [] @@ -11404,7 +11437,7 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2240", "deps": [ @@ -11420,7 +11453,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.1048", "deps": [] @@ -11434,7 +11467,7 @@ }, "recipe": { "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.1642", "deps": [] @@ -11448,7 +11481,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1829", "deps": [] @@ -11462,7 +11495,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1409", "deps": [] @@ -11476,7 +11509,7 @@ }, "recipe": { "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130816.1554", "deps": [] @@ -11490,7 +11523,7 @@ }, "recipe": { "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1842", "deps": [ @@ -11501,12 +11534,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.140", "deps": [ @@ -11522,7 +11555,7 @@ }, "recipe": { "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140806.1125", "deps": [ @@ -11537,7 +11570,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1632", "deps": [ @@ -11553,7 +11586,7 @@ }, "recipe": { "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121113.700", "deps": [] @@ -11567,7 +11600,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.49", "deps": [ @@ -11587,7 +11620,7 @@ }, "recipe": { "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.109", "deps": [ @@ -11606,7 +11639,7 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.1352", "deps": [] @@ -11620,7 +11653,7 @@ }, "recipe": { "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.751", "deps": [ @@ -11636,7 +11669,7 @@ }, "recipe": { "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.455", "deps": [ @@ -11654,7 +11687,7 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.932", "deps": [ @@ -11670,7 +11703,7 @@ }, "recipe": { "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.113", "deps": [] @@ -11684,7 +11717,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140811.1609", "deps": [ @@ -11700,7 +11733,7 @@ }, "recipe": { "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.35", "deps": [] @@ -11714,7 +11747,7 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [] @@ -11723,14 +11756,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/justbur/emacs-bind-map.git", - "sha256": "a1096492c880af65717276343d8e576e623ac983a7590d67751271aded02069e", - "rev": "af26966c9a32bdfc71bbe388bba27fde144bda4b" + "sha256": "baf6863618424fc74721504fe9017a049f2478ea682b134fb338195e2ee37fd8", + "rev": "bb7a8b225879fc6a865464e5e63865653ae74427" }, "recipe": { "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.819", + "version": "20151214.1902", "deps": [ "emacs" ] @@ -11744,7 +11777,7 @@ }, "recipe": { "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.2145", "deps": [ @@ -11759,7 +11792,7 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1833", "deps": [] @@ -11773,7 +11806,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.754", "deps": [] @@ -11787,7 +11820,7 @@ }, "recipe": { "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.937", "deps": [] @@ -11801,7 +11834,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1433", "deps": [] @@ -11815,7 +11848,7 @@ }, "recipe": { "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131023.1351", "deps": [ @@ -11832,7 +11865,7 @@ }, "recipe": { "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140216.1046", "deps": [ @@ -11848,7 +11881,7 @@ }, "recipe": { "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.2327", "deps": [] @@ -11857,12 +11890,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.655", "deps": [ @@ -11881,7 +11914,7 @@ }, "recipe": { "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130920.1259", "deps": [] @@ -11895,7 +11928,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.1908", "deps": [ @@ -11913,7 +11946,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1516", "deps": [] @@ -11927,7 +11960,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130228.408", "deps": [] @@ -11941,7 +11974,7 @@ }, "recipe": { "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150706.24", "deps": [ @@ -11957,7 +11990,7 @@ }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1123", "deps": [] @@ -11971,7 +12004,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1206", "deps": [] @@ -11985,7 +12018,7 @@ }, "recipe": { "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.615", "deps": [ @@ -12001,7 +12034,7 @@ }, "recipe": { "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1528", "deps": [ @@ -12019,7 +12052,7 @@ }, "recipe": { "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141117.714", "deps": [ @@ -12035,7 +12068,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150122.1432", "deps": [] @@ -12049,7 +12082,7 @@ }, "recipe": { "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141210.627", "deps": [] @@ -12063,7 +12096,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2320", "deps": [ @@ -12082,7 +12115,7 @@ }, "recipe": { "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140905.1906", "deps": [ @@ -12098,7 +12131,7 @@ }, "recipe": { "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1415", "deps": [ @@ -12114,7 +12147,7 @@ }, "recipe": { "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120118.2334", "deps": [] @@ -12128,7 +12161,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.435", "deps": [] @@ -12142,7 +12175,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141112.1915", "deps": [] @@ -12156,7 +12189,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140731.726", "deps": [ @@ -12174,7 +12207,7 @@ }, "recipe": { "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140709.743", "deps": [] @@ -12188,7 +12221,7 @@ }, "recipe": { "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120904.1542", "deps": [] @@ -12202,7 +12235,7 @@ }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.129", "deps": [ @@ -12218,7 +12251,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.647", "deps": [] @@ -12232,7 +12265,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1116", "deps": [ @@ -12249,7 +12282,7 @@ }, "recipe": { "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1244", "deps": [] @@ -12263,7 +12296,7 @@ }, "recipe": { "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.849", "deps": [] @@ -12277,7 +12310,7 @@ }, "recipe": { "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.448", "deps": [] @@ -12291,7 +12324,7 @@ }, "recipe": { "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1316", "deps": [] @@ -12305,7 +12338,7 @@ }, "recipe": { "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.306", "deps": [ @@ -12322,7 +12355,7 @@ }, "recipe": { "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1221", "deps": [ @@ -12339,7 +12372,7 @@ }, "recipe": { "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1844", "deps": [] @@ -12353,7 +12386,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2057", "deps": [ @@ -12370,7 +12403,7 @@ }, "recipe": { "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.816", "deps": [ @@ -12387,7 +12420,7 @@ }, "recipe": { "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1636", "deps": [ @@ -12406,7 +12439,7 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140703.352", "deps": [] @@ -12419,7 +12452,7 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120426.2023", "deps": [] @@ -12433,7 +12466,7 @@ }, "recipe": { "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.2330", "deps": [ @@ -12449,7 +12482,7 @@ }, "recipe": { "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.508", "deps": [] @@ -12463,7 +12496,7 @@ }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150618.150", "deps": [] @@ -12477,7 +12510,7 @@ }, "recipe": { "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130805.949", "deps": [ @@ -12493,7 +12526,7 @@ }, "recipe": { "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140926.639", "deps": [] @@ -12507,7 +12540,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.1056", "deps": [ @@ -12523,7 +12556,7 @@ }, "recipe": { "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131010.154", "deps": [ @@ -12539,7 +12572,7 @@ }, "recipe": { "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.1133", "deps": [] @@ -12553,7 +12586,7 @@ }, "recipe": { "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.1034", "deps": [ @@ -12571,7 +12604,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130725.2119", "deps": [] @@ -12585,7 +12618,7 @@ }, "recipe": { "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.859", "deps": [] @@ -12599,7 +12632,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140802.1120", "deps": [] @@ -12613,7 +12646,7 @@ }, "recipe": { "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.1549", "deps": [ @@ -12629,7 +12662,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1506", "deps": [ @@ -12645,7 +12678,7 @@ }, "recipe": { "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.1116", "deps": [] @@ -12659,7 +12692,7 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140426.928", "deps": [ @@ -12675,7 +12708,7 @@ }, "recipe": { "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130326.1750", "deps": [] @@ -12688,7 +12721,7 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.938", "deps": [] @@ -12702,7 +12735,7 @@ }, "recipe": { "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.1955", "deps": [] @@ -12716,7 +12749,7 @@ }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.30", "deps": [ @@ -12733,7 +12766,7 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.1225", "deps": [] @@ -12747,7 +12780,7 @@ }, "recipe": { "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.2308", "deps": [ @@ -12763,7 +12796,7 @@ }, "recipe": { "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120403.1315", "deps": [] @@ -12777,7 +12810,7 @@ }, "recipe": { "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140616.1333", "deps": [ @@ -12792,7 +12825,7 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1907", "deps": [] @@ -12806,7 +12839,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.645", "deps": [] @@ -12820,7 +12853,7 @@ }, "recipe": { "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140215.1447", "deps": [ @@ -12838,7 +12871,7 @@ }, "recipe": { "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.607", "deps": [] @@ -12852,7 +12885,7 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140505.855", "deps": [] @@ -12866,7 +12899,7 @@ }, "recipe": { "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.2006", "deps": [ @@ -12878,11 +12911,11 @@ "tag": "fetchsvn", "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143530" + "rev": "143628" }, "recipe": { "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.239", "deps": [ @@ -12900,7 +12933,7 @@ }, "recipe": { "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140617.1258", "deps": [] @@ -12914,7 +12947,7 @@ }, "recipe": { "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150308.718", "deps": [] @@ -12928,7 +12961,7 @@ }, "recipe": { "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.1509", "deps": [] @@ -12942,7 +12975,7 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.743", "deps": [ @@ -12958,7 +12991,7 @@ }, "recipe": { "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1021", "deps": [] @@ -12972,7 +13005,7 @@ }, "recipe": { "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131216.428", "deps": [] @@ -12985,7 +13018,7 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1851", "deps": [] @@ -12999,7 +13032,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1922", "deps": [] @@ -13013,7 +13046,7 @@ }, "recipe": { "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141126.431", "deps": [ @@ -13030,7 +13063,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.7", "deps": [] @@ -13044,7 +13077,7 @@ }, "recipe": { "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140609.956", "deps": [] @@ -13058,7 +13091,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100930.943", "deps": [] @@ -13072,7 +13105,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131001.1034", "deps": [] @@ -13086,7 +13119,7 @@ }, "recipe": { "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150304.803", "deps": [] @@ -13100,7 +13133,7 @@ }, "recipe": { "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.909", "deps": [ @@ -13116,7 +13149,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140419.16", "deps": [ @@ -13132,7 +13165,7 @@ }, "recipe": { "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1639", "deps": [ @@ -13146,14 +13179,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/skeeto/elfeed.git", - "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", - "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.2113", + "version": "20151215.1138", "deps": [ "emacs" ] @@ -13167,7 +13200,7 @@ }, "recipe": { "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.2309", "deps": [ @@ -13185,7 +13218,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.2229", "deps": [ @@ -13201,7 +13234,7 @@ }, "recipe": { "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130201.1338", "deps": [ @@ -13218,7 +13251,7 @@ }, "recipe": { "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130412.430", "deps": [] @@ -13232,7 +13265,7 @@ }, "recipe": { "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130207.1402", "deps": [] @@ -13246,7 +13279,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1635", "deps": [ @@ -13262,7 +13295,7 @@ }, "recipe": { "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.1718", "deps": [ @@ -13279,7 +13312,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141004.1603", "deps": [] @@ -13293,7 +13326,7 @@ }, "recipe": { "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.1639", "deps": [] @@ -13307,7 +13340,7 @@ }, "recipe": { "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.1436", "deps": [] @@ -13321,7 +13354,7 @@ }, "recipe": { "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.704", "deps": [ @@ -13337,7 +13370,7 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.2223", "deps": [ @@ -13353,7 +13386,7 @@ }, "recipe": { "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100330.543", "deps": [] @@ -13367,7 +13400,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.1905", "deps": [ @@ -13385,7 +13418,7 @@ }, "recipe": { "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100124.428", "deps": [] @@ -13399,7 +13432,7 @@ }, "recipe": { "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130216.704", "deps": [] @@ -13413,7 +13446,7 @@ }, "recipe": { "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.2245", "deps": [] @@ -13427,7 +13460,7 @@ }, "recipe": { "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.948", "deps": [] @@ -13441,7 +13474,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140506.1818", "deps": [] @@ -13455,7 +13488,7 @@ }, "recipe": { "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140217.1818", "deps": [ @@ -13471,7 +13504,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.751", "deps": [] @@ -13485,7 +13518,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.415", "deps": [] @@ -13499,7 +13532,7 @@ }, "recipe": { "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.2107", "deps": [] @@ -13513,7 +13546,7 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2155", "deps": [ @@ -13529,7 +13562,7 @@ }, "recipe": { "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1025", "deps": [ @@ -13547,7 +13580,7 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2117", "deps": [ @@ -13564,7 +13597,7 @@ }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.2223", "deps": [] @@ -13578,7 +13611,7 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130614.525", "deps": [] @@ -13592,7 +13625,7 @@ }, "recipe": { "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.1630", "deps": [] @@ -13606,7 +13639,7 @@ }, "recipe": { "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.2256", "deps": [ @@ -13624,7 +13657,7 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.2025", "deps": [] @@ -13638,7 +13671,7 @@ }, "recipe": { "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.515", "deps": [ @@ -13654,7 +13687,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090428.1431", "deps": [] @@ -13668,7 +13701,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.54", "deps": [] @@ -13682,7 +13715,7 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141213.1205", "deps": [ @@ -13698,7 +13731,7 @@ }, "recipe": { "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.28", "deps": [ @@ -13715,7 +13748,7 @@ }, "recipe": { "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150102.1521", "deps": [ @@ -13737,7 +13770,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.1034", "deps": [] @@ -13751,7 +13784,7 @@ }, "recipe": { "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150613.549", "deps": [ @@ -13768,7 +13801,7 @@ }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.427", "deps": [ @@ -13785,7 +13818,7 @@ }, "recipe": { "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1242", "deps": [] @@ -13799,7 +13832,7 @@ }, "recipe": { "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.57", "deps": [ @@ -13815,7 +13848,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1114", "deps": [ @@ -13831,7 +13864,7 @@ }, "recipe": { "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130812.1139", "deps": [ @@ -13848,7 +13881,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.758", "deps": [] @@ -13862,7 +13895,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1608", "deps": [ @@ -13880,7 +13913,7 @@ }, "recipe": { "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1207", "deps": [ @@ -13896,7 +13929,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.941", "deps": [ @@ -13913,7 +13946,7 @@ }, "recipe": { "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140120.1740", "deps": [] @@ -13927,7 +13960,7 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140101.910", "deps": [ @@ -13943,7 +13976,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101223.420", "deps": [] @@ -13956,7 +13989,7 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1608", "deps": [] @@ -13965,12 +13998,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/openscad/openscad.git", - "sha256": "e57ce0dd6532f82adec76026b1bbb3d89a68a514096001317187a522bfb8ab23", - "rev": "81994d2c3d88dc4b1b7221a57b831060484fd27b" + "sha256": "bf0270c3ac0da3802549da5d86fad78ffef0b990c2c86173ab55e282a32c026e", + "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be" }, "recipe": { "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.2229", "deps": [] @@ -13984,7 +14017,7 @@ }, "recipe": { "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.743", "deps": [] @@ -13998,7 +14031,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.603", "deps": [] @@ -14012,7 +14045,7 @@ }, "recipe": { "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140119.2144", "deps": [ @@ -14028,7 +14061,7 @@ }, "recipe": { "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150605.2239", "deps": [] @@ -14042,7 +14075,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131012.1601", "deps": [] @@ -14051,12 +14084,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kivy/kivy.git", - "sha256": "54891a62afa23336e8c711dc210067b816e4341a073ac9634b24daf073a0625a", - "rev": "bd131ee882c8de9f6a7fd15a6c2a1537ea792ee9" + "sha256": "ba696df188fc1f0fe4143544dffdce918e6d48cacc77d8a727c6892eace897d4", + "rev": "a87d082710a24c23038f69374cc1423d073ae505" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140524.757", "deps": [] @@ -14070,7 +14103,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.318", "deps": [ @@ -14090,7 +14123,7 @@ }, "recipe": { "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.259", "deps": [ @@ -14106,7 +14139,7 @@ }, "recipe": { "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1149", "deps": [] @@ -14120,7 +14153,7 @@ }, "recipe": { "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130920.1142", "deps": [] @@ -14134,7 +14167,7 @@ }, "recipe": { "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.357", "deps": [] @@ -14148,7 +14181,7 @@ }, "recipe": { "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150810.1209", "deps": [] @@ -14161,7 +14194,7 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1301", "deps": [] @@ -14170,12 +14203,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", - "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150309.2252", "deps": [ @@ -14191,7 +14224,7 @@ }, "recipe": { "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.139", "deps": [] @@ -14205,7 +14238,7 @@ }, "recipe": { "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140116.1516", "deps": [] @@ -14218,7 +14251,7 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1610", "deps": [] @@ -14232,7 +14265,7 @@ }, "recipe": { "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.253", "deps": [] @@ -14246,7 +14279,7 @@ }, "recipe": { "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1223", "deps": [] @@ -14260,7 +14293,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.319", "deps": [ @@ -14278,7 +14311,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -14292,7 +14325,7 @@ }, "recipe": { "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.300", "deps": [] @@ -14306,7 +14339,7 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1009", "deps": [ @@ -14321,7 +14354,7 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130906.18", "deps": [] @@ -14335,7 +14368,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140513.1039", "deps": [ @@ -14352,7 +14385,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.403", "deps": [] @@ -14366,7 +14399,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1203", "deps": [] @@ -14375,14 +14408,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "7993727a883800048b94e3e855cdb96b2474ebd4e83ce2a0b15176be37a7e7d7", - "rev": "725f85778f9dda303bc49437752ada8159d8f6a6" + "sha256": "351389ddd31ad78a5055be8c6ed7b0143a346a048ff1c8e788d5d0ef0bc9ba69", + "rev": "71f5031cdd1faae9a5b3ec0de9053f9da2e63cd8" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151211.112", + "version": "20151215.147", "deps": [] }, "totd": { @@ -14394,7 +14427,7 @@ }, "recipe": { "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.940", "deps": [ @@ -14411,7 +14444,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1504", "deps": [ @@ -14429,7 +14462,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.637", "deps": [ @@ -14447,7 +14480,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.322", "deps": [ @@ -14464,7 +14497,7 @@ }, "recipe": { "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.758", "deps": [ @@ -14479,7 +14512,7 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.826", "deps": [] @@ -14493,7 +14526,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.638", "deps": [ @@ -14512,7 +14545,7 @@ }, "recipe": { "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.1000", "deps": [ @@ -14528,7 +14561,7 @@ }, "recipe": { "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120111.400", "deps": [] @@ -14542,7 +14575,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150503.1914", "deps": [ @@ -14560,7 +14593,7 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1603", "deps": [] @@ -14574,7 +14607,7 @@ }, "recipe": { "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.107", "deps": [] @@ -14588,7 +14621,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140919.1117", "deps": [ @@ -14607,7 +14640,7 @@ }, "recipe": { "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140930.1223", "deps": [ @@ -14623,7 +14656,7 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.217", "deps": [] @@ -14636,7 +14669,7 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.1028", "deps": [] @@ -14650,7 +14683,7 @@ }, "recipe": { "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1618", "deps": [ @@ -14666,7 +14699,7 @@ }, "recipe": { "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -14682,7 +14715,7 @@ }, "recipe": { "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130220.1250", "deps": [] @@ -14696,7 +14729,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140612.737", "deps": [ @@ -14715,7 +14748,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -14735,7 +14768,7 @@ }, "recipe": { "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.717", "deps": [] @@ -14749,7 +14782,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130126.1818", "deps": [] @@ -14763,7 +14796,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.523", "deps": [ @@ -14783,7 +14816,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120520.932", "deps": [] @@ -14797,7 +14830,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150103.50", "deps": [ @@ -14813,7 +14846,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.822", "deps": [ @@ -14829,7 +14862,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.1610", "deps": [ @@ -14845,7 +14878,7 @@ }, "recipe": { "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2133", "deps": [ @@ -14861,7 +14894,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.926", "deps": [ @@ -14877,7 +14910,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1453", "deps": [ @@ -14894,7 +14927,7 @@ }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150705.1905", "deps": [ @@ -14912,7 +14945,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.1415", "deps": [] @@ -14926,7 +14959,7 @@ }, "recipe": { "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141212.717", "deps": [ @@ -14942,7 +14975,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.1431", "deps": [] @@ -14951,12 +14984,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", - "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.1857", "deps": [] @@ -14970,7 +15003,7 @@ }, "recipe": { "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.1452", "deps": [ @@ -14987,7 +15020,7 @@ }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150321.413", "deps": [] @@ -15001,7 +15034,7 @@ }, "recipe": { "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140116.856", "deps": [] @@ -15015,7 +15048,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140221.1754", "deps": [ @@ -15033,7 +15066,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1517", "deps": [ @@ -15050,7 +15083,7 @@ }, "recipe": { "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.303", "deps": [] @@ -15064,7 +15097,7 @@ }, "recipe": { "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150327.1216", "deps": [ @@ -15082,7 +15115,7 @@ }, "recipe": { "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.1444", "deps": [] @@ -15096,7 +15129,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.618", "deps": [ @@ -15108,12 +15141,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.606", "deps": [ @@ -15129,7 +15162,7 @@ }, "recipe": { "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.947", "deps": [] @@ -15143,7 +15176,7 @@ }, "recipe": { "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.542", "deps": [] @@ -15157,7 +15190,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141103.1541", "deps": [] @@ -15171,7 +15204,7 @@ }, "recipe": { "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.814", "deps": [ @@ -15187,7 +15220,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140208.1037", "deps": [] @@ -15201,7 +15234,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.358", "deps": [ @@ -15217,7 +15250,7 @@ }, "recipe": { "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150308.1312", "deps": [] @@ -15231,7 +15264,7 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.2028", "deps": [] @@ -15244,7 +15277,7 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.834", "deps": [] @@ -15258,7 +15291,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.1428", "deps": [ @@ -15275,7 +15308,7 @@ }, "recipe": { "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120819.1914", "deps": [ @@ -15292,7 +15325,7 @@ }, "recipe": { "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1317", "deps": [ @@ -15308,7 +15341,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -15322,7 +15355,7 @@ }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.242", "deps": [ @@ -15338,7 +15371,7 @@ }, "recipe": { "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2259", "deps": [ @@ -15355,7 +15388,7 @@ }, "recipe": { "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.502", "deps": [ @@ -15371,7 +15404,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.422", "deps": [] @@ -15385,7 +15418,7 @@ }, "recipe": { "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.342", "deps": [ @@ -15403,7 +15436,7 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140317.536", "deps": [ @@ -15418,7 +15451,7 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1834", "deps": [] @@ -15432,7 +15465,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.1539", "deps": [ @@ -15448,7 +15481,7 @@ }, "recipe": { "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.647", "deps": [ @@ -15460,12 +15493,12 @@ "tag": "fetchgit", "url": "git://github.com/ledger/ledger.git", "branchName": "next", - "sha256": "130cde00075ffeece7575f475e63be1e6bd64715028ede06b7b802c776c869da", - "rev": "429765ee4dbf6ea2ad654b4287fa6498bc55fa3a" + "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1742", "deps": [] @@ -15479,7 +15512,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.224", "deps": [] @@ -15493,7 +15526,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.601", "deps": [ @@ -15513,7 +15546,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140315.1129", "deps": [ @@ -15530,7 +15563,7 @@ }, "recipe": { "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.552", "deps": [ @@ -15546,7 +15579,7 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.657", "deps": [] @@ -15560,7 +15593,7 @@ }, "recipe": { "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.253", "deps": [] @@ -15574,7 +15607,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.833", "deps": [ @@ -15591,7 +15624,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.925", "deps": [ @@ -15607,7 +15640,7 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1003", "deps": [] @@ -15622,7 +15655,7 @@ }, "recipe": { "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.106", "deps": [ @@ -15638,7 +15671,7 @@ }, "recipe": { "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1429", "deps": [] @@ -15652,7 +15685,7 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.248", "deps": [ @@ -15669,7 +15702,7 @@ }, "recipe": { "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.1336", "deps": [ @@ -15686,7 +15719,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1916", "deps": [] @@ -15700,7 +15733,7 @@ }, "recipe": { "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.1755", "deps": [] @@ -15714,7 +15747,7 @@ }, "recipe": { "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.1117", "deps": [] @@ -15728,7 +15761,7 @@ }, "recipe": { "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130627.1853", "deps": [] @@ -15742,7 +15775,7 @@ }, "recipe": { "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120630.1603", "deps": [] @@ -15756,7 +15789,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.214", "deps": [ @@ -15772,7 +15805,7 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120727.926", "deps": [] @@ -15786,7 +15819,7 @@ }, "recipe": { "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.1210", "deps": [ @@ -15802,7 +15835,7 @@ }, "recipe": { "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.1058", "deps": [ @@ -15818,7 +15851,7 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.733", "deps": [] @@ -15832,7 +15865,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140916.1322", "deps": [ @@ -15848,7 +15881,7 @@ }, "recipe": { "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141101.120", "deps": [] @@ -15862,7 +15895,7 @@ }, "recipe": { "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140509.722", "deps": [] @@ -15876,7 +15909,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.436", "deps": [] @@ -15890,7 +15923,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131231.830", "deps": [ @@ -15906,7 +15939,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140130.2016", "deps": [] @@ -15920,7 +15953,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.239", "deps": [ @@ -15937,7 +15970,7 @@ }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.1230", "deps": [] @@ -15951,7 +15984,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.2337", "deps": [ @@ -15968,7 +16001,7 @@ }, "recipe": { "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150627.951", "deps": [ @@ -15984,7 +16017,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.313", "deps": [ @@ -16005,7 +16038,7 @@ }, "recipe": { "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131012.730", "deps": [ @@ -16021,7 +16054,7 @@ }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.1358", "deps": [] @@ -16035,7 +16068,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.757", "deps": [] @@ -16049,7 +16082,7 @@ }, "recipe": { "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1335", "deps": [ @@ -16066,7 +16099,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -16080,7 +16113,7 @@ }, "recipe": { "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130630.739", "deps": [ @@ -16096,7 +16129,7 @@ }, "recipe": { "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.758", "deps": [] @@ -16110,7 +16143,7 @@ }, "recipe": { "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.937", "deps": [] @@ -16124,7 +16157,7 @@ }, "recipe": { "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141224.22", "deps": [ @@ -16140,7 +16173,7 @@ }, "recipe": { "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131224.905", "deps": [ @@ -16159,7 +16192,7 @@ }, "recipe": { "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.408", "deps": [] @@ -16173,7 +16206,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.1436", "deps": [] @@ -16187,7 +16220,7 @@ }, "recipe": { "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150518.809", "deps": [ @@ -16198,14 +16231,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/holomorph/transmission.git", - "sha256": "37e9f71ebc5ecde919bb9c4f3dc0defa92d56c3c15bdc89fc9af6d52e3b64c47", - "rev": "810484fbb3b5930b633a98e679e3396ca5d35844" + "sha256": "760f34f89c8b4b056a00019395d4c6c4a5331804566941d158e34c4c0328de4c", + "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.1100", + "version": "20151215.343", "deps": [ "emacs", "let-alist" @@ -16220,7 +16253,7 @@ }, "recipe": { "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.318", "deps": [] @@ -16234,7 +16267,7 @@ }, "recipe": { "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.1143", "deps": [] @@ -16248,7 +16281,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.854", "deps": [ @@ -16264,7 +16297,7 @@ }, "recipe": { "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1346", "deps": [] @@ -16277,7 +16310,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.924", "deps": [] @@ -16291,7 +16324,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.640", "deps": [] @@ -16305,7 +16338,7 @@ }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -16321,7 +16354,7 @@ }, "recipe": { "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.218", "deps": [] @@ -16335,7 +16368,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.416", "deps": [ @@ -16354,7 +16387,7 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.5", "deps": [] @@ -16368,7 +16401,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.946", "deps": [ @@ -16385,7 +16418,7 @@ }, "recipe": { "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1126", "deps": [ @@ -16401,7 +16434,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1335", "deps": [] @@ -16415,7 +16448,7 @@ }, "recipe": { "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.929", "deps": [] @@ -16429,7 +16462,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -16443,7 +16476,7 @@ }, "recipe": { "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150326.31", "deps": [ @@ -16459,7 +16492,7 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.2108", "deps": [ @@ -16475,7 +16508,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.742", "deps": [ @@ -16498,7 +16531,7 @@ }, "recipe": { "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150813.808", "deps": [ @@ -16515,7 +16548,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.456", "deps": [ @@ -16532,7 +16565,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.950", "deps": [ @@ -16551,7 +16584,7 @@ }, "recipe": { "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1533", "deps": [ @@ -16569,7 +16602,7 @@ }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1836", "deps": [ @@ -16586,7 +16619,7 @@ }, "recipe": { "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.159", "deps": [] @@ -16600,7 +16633,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1102", "deps": [] @@ -16614,7 +16647,7 @@ }, "recipe": { "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140823.1942", "deps": [] @@ -16628,7 +16661,7 @@ }, "recipe": { "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.718", "deps": [ @@ -16646,7 +16679,7 @@ }, "recipe": { "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130212.626", "deps": [ @@ -16664,7 +16697,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130602.748", "deps": [] @@ -16678,7 +16711,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.1642", "deps": [ @@ -16694,7 +16727,7 @@ }, "recipe": { "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.40", "deps": [] @@ -16708,7 +16741,7 @@ }, "recipe": { "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.2056", "deps": [ @@ -16725,7 +16758,7 @@ }, "recipe": { "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131006.847", "deps": [] @@ -16739,7 +16772,7 @@ }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.2215", "deps": [] @@ -16753,7 +16786,7 @@ }, "recipe": { "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140203.316", "deps": [] @@ -16762,12 +16795,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "77a3437794bc04b6cef069f6bb539a1c4ce5c4407e49693b1c12621646b1c9d9", + "sha256": "1278403c6e98af9b9907c85eb46e935bacff34abeba3ae40f80455cc1abd2831", "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.710", "deps": [ @@ -16790,7 +16823,7 @@ }, "recipe": { "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.614", "deps": [] @@ -16804,7 +16837,7 @@ }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.756", "deps": [ @@ -16821,7 +16854,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110602.1822", "deps": [ @@ -16837,7 +16870,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1212", "deps": [ @@ -16853,7 +16886,7 @@ }, "recipe": { "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1302", "deps": [] @@ -16867,7 +16900,7 @@ }, "recipe": { "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1340", "deps": [] @@ -16881,7 +16914,7 @@ }, "recipe": { "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.726", "deps": [ @@ -16901,7 +16934,7 @@ }, "recipe": { "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110507.224", "deps": [] @@ -16915,7 +16948,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.247", "deps": [ @@ -16931,7 +16964,7 @@ }, "recipe": { "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130306.1415", "deps": [] @@ -16945,7 +16978,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [] @@ -16959,7 +16992,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140815.1016", "deps": [ @@ -16970,14 +17003,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rust-lang/rust-mode.git", - "sha256": "f67c192b05f84b23e639a79ad713a82112420ba49fe473dc5b0726191f93c5bf", - "rev": "95d089cbc3a23c0dd23869e716520c31daefdf8f" + "sha256": "125b671fa783b3c5bd2bbb4a1fee2ffece51383475e195d45ebc68eed4cb7afb", + "rev": "b874bbe927e460695bd0bb7caf53b5dd8fe57a85" }, "recipe": { "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151203.832", + "version": "20151215.1303", "deps": [] }, "bug-reference-github": { @@ -16989,7 +17022,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131202.1503", "deps": [] @@ -17003,7 +17036,7 @@ }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1238", "deps": [ @@ -17019,7 +17052,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.447", "deps": [ @@ -17030,12 +17063,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.705", "deps": [ @@ -17053,7 +17086,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1002", "deps": [ @@ -17070,7 +17103,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100807.1231", "deps": [] @@ -17084,7 +17117,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1257", "deps": [ @@ -17101,7 +17134,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.600", "deps": [ @@ -17117,7 +17150,7 @@ }, "recipe": { "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131226.1408", "deps": [] @@ -17131,7 +17164,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150326.1118", "deps": [ @@ -17150,7 +17183,7 @@ }, "recipe": { "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120531.1636", "deps": [] @@ -17164,7 +17197,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.521", "deps": [] @@ -17178,7 +17211,7 @@ }, "recipe": { "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131207.2140", "deps": [] @@ -17192,7 +17225,7 @@ }, "recipe": { "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140110.2211", "deps": [] @@ -17206,7 +17239,7 @@ }, "recipe": { "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131217.911", "deps": [ @@ -17222,7 +17255,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.617", "deps": [ @@ -17238,7 +17271,7 @@ }, "recipe": { "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1113", "deps": [] @@ -17252,7 +17285,7 @@ }, "recipe": { "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.502", "deps": [] @@ -17266,7 +17299,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.832", "deps": [] @@ -17280,7 +17313,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150416.1257", "deps": [ @@ -17297,7 +17330,7 @@ }, "recipe": { "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.908", "deps": [ @@ -17314,7 +17347,7 @@ }, "recipe": { "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.617", "deps": [ @@ -17333,7 +17366,7 @@ }, "recipe": { "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150711.1723", "deps": [ @@ -17349,7 +17382,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2125", "deps": [ @@ -17366,7 +17399,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1255", "deps": [ @@ -17383,7 +17416,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.505", "deps": [ @@ -17399,7 +17432,7 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140309.422", "deps": [] @@ -17413,7 +17446,7 @@ }, "recipe": { "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150211.1149", "deps": [] @@ -17427,7 +17460,7 @@ }, "recipe": { "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140222.2022", "deps": [ @@ -17438,12 +17471,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/ido-select-window.git", - "sha256": "f2d37dc889df751ce9317ddc406482180b678e0660ddd42fe896dc2c5d45ad87", + "sha256": "d0bbcac666d1e5dd9ba13e2eb3b898d2ae1c919ceede1e9272062121c835d350", "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" }, "recipe": { "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131220.1447", "deps": [ @@ -17458,7 +17491,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1635", "deps": [] @@ -17472,7 +17505,7 @@ }, "recipe": { "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140528.1627", "deps": [ @@ -17487,7 +17520,7 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130822.532", "deps": [] @@ -17501,7 +17534,7 @@ }, "recipe": { "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.343", "deps": [] @@ -17515,7 +17548,7 @@ }, "recipe": { "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.459", "deps": [] @@ -17529,7 +17562,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.1749", "deps": [] @@ -17543,7 +17576,7 @@ }, "recipe": { "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.1810", "deps": [ @@ -17559,7 +17592,7 @@ }, "recipe": { "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1624", "deps": [ @@ -17576,7 +17609,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.2214", "deps": [] @@ -17590,7 +17623,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.531", "deps": [] @@ -17604,7 +17637,7 @@ }, "recipe": { "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.1353", "deps": [ @@ -17620,7 +17653,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1354", "deps": [ @@ -17637,7 +17670,7 @@ }, "recipe": { "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.911", "deps": [] @@ -17651,7 +17684,7 @@ }, "recipe": { "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.348", "deps": [] @@ -17664,7 +17697,7 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110616.1219", "deps": [] @@ -17678,7 +17711,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.519", "deps": [ @@ -17696,7 +17729,7 @@ }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1328", "deps": [ @@ -17712,7 +17745,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.854", "deps": [ @@ -17728,7 +17761,7 @@ }, "recipe": { "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.608", "deps": [ @@ -17744,7 +17777,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.2038", "deps": [ @@ -17760,7 +17793,7 @@ }, "recipe": { "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.713", "deps": [ @@ -17778,7 +17811,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130427.1008", "deps": [] @@ -17792,7 +17825,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.949", "deps": [] @@ -17806,7 +17839,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.918", "deps": [] @@ -17820,7 +17853,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.344", "deps": [ @@ -17836,7 +17869,7 @@ }, "recipe": { "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150401.916", "deps": [ @@ -17852,7 +17885,7 @@ }, "recipe": { "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.203", "deps": [] @@ -17866,7 +17899,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141007.656", "deps": [ @@ -17883,7 +17916,7 @@ }, "recipe": { "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.2203", "deps": [ @@ -17899,7 +17932,7 @@ }, "recipe": { "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.639", "deps": [ @@ -17915,7 +17948,7 @@ }, "recipe": { "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.810", "deps": [] @@ -17929,7 +17962,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -17945,7 +17978,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2230", "deps": [] @@ -17959,7 +17992,7 @@ }, "recipe": { "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140214.904", "deps": [ @@ -17975,7 +18008,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.934", "deps": [ @@ -17991,7 +18024,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1100", "deps": [ @@ -18008,7 +18041,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120225.1455", "deps": [ @@ -18019,14 +18052,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/yuya373/emacs-slack.git", - "sha256": "c66fa3ab65f1a857a5993d34db1c312e01cb1109e616e782504fed673a552b81", - "rev": "4b0e2994a4b5ad57db7f9506b9b2b4d2de3c9dca" + "sha256": "6bbcaf113fe2e1e346379c24e2e792a5bf9a0e9caed427915945d93c9ff24750", + "rev": "0876db049fcb8b4f901ee40fc382c01c5477f024" }, "recipe": { "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.2250", + "version": "20151214.2102", "deps": [ "alert", "circe", @@ -18045,7 +18078,7 @@ }, "recipe": { "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.2149", "deps": [] @@ -18059,7 +18092,7 @@ }, "recipe": { "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150426.2037", "deps": [] @@ -18073,7 +18106,7 @@ }, "recipe": { "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.2106", "deps": [ @@ -18089,7 +18122,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.1441", "deps": [ @@ -18105,7 +18138,7 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080329.2159", "deps": [] @@ -18119,7 +18152,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1536", "deps": [ @@ -18137,7 +18170,7 @@ }, "recipe": { "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120515.1148", "deps": [] @@ -18151,7 +18184,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141011.938", "deps": [ @@ -18169,7 +18202,7 @@ }, "recipe": { "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.2004", "deps": [ @@ -18186,7 +18219,7 @@ }, "recipe": { "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.2350", "deps": [] @@ -18199,7 +18232,7 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.918", "deps": [] @@ -18213,7 +18246,7 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1003", "deps": [] @@ -18227,7 +18260,7 @@ }, "recipe": { "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.2142", "deps": [ @@ -18243,7 +18276,7 @@ }, "recipe": { "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.1000", "deps": [ @@ -18259,7 +18292,7 @@ }, "recipe": { "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.255", "deps": [ @@ -18276,7 +18309,7 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131010.2258", "deps": [] @@ -18290,7 +18323,7 @@ }, "recipe": { "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.1239", "deps": [] @@ -18304,7 +18337,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.932", "deps": [] @@ -18318,7 +18351,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1253", "deps": [ @@ -18335,7 +18368,7 @@ }, "recipe": { "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.816", "deps": [ @@ -18351,7 +18384,7 @@ }, "recipe": { "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111121.900", "deps": [] @@ -18365,7 +18398,7 @@ }, "recipe": { "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141118.840", "deps": [] @@ -18379,7 +18412,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.939", "deps": [] @@ -18393,7 +18426,7 @@ }, "recipe": { "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1048", "deps": [ @@ -18409,7 +18442,7 @@ }, "recipe": { "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.409", "deps": [ @@ -18427,7 +18460,7 @@ }, "recipe": { "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.159", "deps": [] @@ -18441,7 +18474,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1740", "deps": [ @@ -18458,7 +18491,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.846", "deps": [] @@ -18472,7 +18505,7 @@ }, "recipe": { "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120323.1835", "deps": [] @@ -18486,7 +18519,7 @@ }, "recipe": { "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.15", "deps": [] @@ -18500,7 +18533,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.454", "deps": [ @@ -18517,7 +18550,7 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101125.1355", "deps": [] @@ -18531,7 +18564,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.2148", "deps": [ @@ -18551,7 +18584,7 @@ }, "recipe": { "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.646", "deps": [ @@ -18568,7 +18601,7 @@ }, "recipe": { "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.348", "deps": [] @@ -18582,7 +18615,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140826.656", "deps": [ @@ -18600,7 +18633,7 @@ }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1750", "deps": [ @@ -18618,7 +18651,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.939", "deps": [] @@ -18632,7 +18665,7 @@ }, "recipe": { "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.1611", "deps": [ @@ -18649,7 +18682,7 @@ }, "recipe": { "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2108", "deps": [ @@ -18667,7 +18700,7 @@ }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.420", "deps": [ @@ -18685,7 +18718,7 @@ }, "recipe": { "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.904", "deps": [] @@ -18699,7 +18732,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.959", "deps": [ @@ -18716,7 +18749,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130218.1737", "deps": [] @@ -18730,7 +18763,7 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.1050", "deps": [ @@ -18745,7 +18778,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100504.329", "deps": [] @@ -18758,7 +18791,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.952", "deps": [ @@ -18773,7 +18806,7 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.621", "deps": [] @@ -18787,7 +18820,7 @@ }, "recipe": { "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.604", "deps": [ @@ -18808,7 +18841,7 @@ }, "recipe": { "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.442", "deps": [ @@ -18824,7 +18857,7 @@ }, "recipe": { "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.414", "deps": [] @@ -18838,7 +18871,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1327", "deps": [ @@ -18855,7 +18888,7 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100504.350", "deps": [] @@ -18869,7 +18902,7 @@ }, "recipe": { "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100330.1331", "deps": [] @@ -18883,7 +18916,7 @@ }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1816", "deps": [ @@ -18897,12 +18930,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "8ae43c2e925c86286953cf60d3ef6560cec72d21ae64628535db140f68beedb3", + "sha256": "e4068a7297579b9d4f86b8f67b43cdc96656a8120cafa197c5d92551143aafb3", "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.525", "deps": [] @@ -18916,7 +18949,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.2006", "deps": [ @@ -18934,7 +18967,7 @@ }, "recipe": { "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1952", "deps": [ @@ -18950,7 +18983,7 @@ }, "recipe": { "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1418", "deps": [] @@ -18964,7 +18997,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141125.2159", "deps": [] @@ -18978,7 +19011,7 @@ }, "recipe": { "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1545", "deps": [] @@ -18992,7 +19025,7 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.740", "deps": [] @@ -19005,7 +19038,7 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140307.328", "deps": [] @@ -19019,7 +19052,7 @@ }, "recipe": { "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140918.1801", "deps": [] @@ -19033,7 +19066,7 @@ }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1846", "deps": [] @@ -19047,7 +19080,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150317.1445", "deps": [] @@ -19061,7 +19094,7 @@ }, "recipe": { "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.447", "deps": [ @@ -19079,7 +19112,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1037", "deps": [ @@ -19095,7 +19128,7 @@ }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.239", "deps": [ @@ -19115,7 +19148,7 @@ }, "recipe": { "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.1300", "deps": [] @@ -19129,7 +19162,7 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1006", "deps": [] @@ -19143,7 +19176,7 @@ }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1835", "deps": [] @@ -19157,7 +19190,7 @@ }, "recipe": { "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080305.234", "deps": [] @@ -19171,7 +19204,7 @@ }, "recipe": { "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.133", "deps": [] @@ -19184,7 +19217,7 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -19198,7 +19231,7 @@ }, "recipe": { "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.109", "deps": [ @@ -19215,7 +19248,7 @@ }, "recipe": { "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090510.1555", "deps": [] @@ -19224,12 +19257,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarao/term-plus-ki-el.git", - "sha256": "be10ceb201cfd3c44e1601c52cc2fa5d45278d13d47993fabd84015f89909e11", + "sha256": "44be77010ea236afdf904a06f8a2e420cc08f138d358ba8132bc8c6736238726", "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" }, "recipe": { "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.150", "deps": [ @@ -19246,7 +19279,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.8", "deps": [] @@ -19260,7 +19293,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.526", "deps": [ @@ -19276,7 +19309,7 @@ }, "recipe": { "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141107.1717", "deps": [ @@ -19292,7 +19325,7 @@ }, "recipe": { "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150626.145", "deps": [] @@ -19306,7 +19339,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1637", "deps": [] @@ -19320,7 +19353,7 @@ }, "recipe": { "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.1144", "deps": [ @@ -19336,7 +19369,7 @@ }, "recipe": { "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.51", "deps": [] @@ -19350,7 +19383,7 @@ }, "recipe": { "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.757", "deps": [ @@ -19366,7 +19399,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.647", "deps": [ @@ -19385,7 +19418,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.1401", "deps": [ @@ -19405,7 +19438,7 @@ }, "recipe": { "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1339", "deps": [] @@ -19419,7 +19452,7 @@ }, "recipe": { "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.1301", "deps": [] @@ -19433,7 +19466,7 @@ }, "recipe": { "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1527", "deps": [ @@ -19449,7 +19482,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150809.2340", "deps": [ @@ -19465,7 +19498,7 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1604", "deps": [] @@ -19479,7 +19512,7 @@ }, "recipe": { "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.2252", "deps": [ @@ -19495,7 +19528,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.116", "deps": [] @@ -19509,7 +19542,7 @@ }, "recipe": { "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2030", "deps": [] @@ -19523,7 +19556,7 @@ }, "recipe": { "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.2028", "deps": [] @@ -19537,7 +19570,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1123", "deps": [ @@ -19554,7 +19587,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.120", "deps": [ @@ -19570,7 +19603,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130327.732", "deps": [] @@ -19584,7 +19617,7 @@ }, "recipe": { "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.430", "deps": [] @@ -19598,7 +19631,7 @@ }, "recipe": { "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1222", "deps": [ @@ -19615,7 +19648,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121227.1702", "deps": [] @@ -19629,7 +19662,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.224", "deps": [] @@ -19643,7 +19676,7 @@ }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150521.2211", "deps": [] @@ -19657,7 +19690,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141130.805", "deps": [ @@ -19673,7 +19706,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150107.1139", "deps": [ @@ -19689,7 +19722,7 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.2332", "deps": [ @@ -19705,7 +19738,7 @@ }, "recipe": { "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.2127", "deps": [ @@ -19721,7 +19754,7 @@ }, "recipe": { "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.1657", "deps": [ @@ -19736,7 +19769,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1335", "deps": [] @@ -19750,7 +19783,7 @@ }, "recipe": { "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120507.207", "deps": [] @@ -19764,7 +19797,7 @@ }, "recipe": { "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121118.1753", "deps": [] @@ -19778,7 +19811,7 @@ }, "recipe": { "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130313.443", "deps": [] @@ -19791,7 +19824,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.345", "deps": [] @@ -19805,7 +19838,7 @@ }, "recipe": { "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.210", "deps": [ @@ -19823,7 +19856,7 @@ }, "recipe": { "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150129.1516", "deps": [] @@ -19837,7 +19870,7 @@ }, "recipe": { "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.1039", "deps": [ @@ -19854,7 +19887,7 @@ }, "recipe": { "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130705.250", "deps": [] @@ -19868,7 +19901,7 @@ }, "recipe": { "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121224.1947", "deps": [] @@ -19881,7 +19914,7 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1550", "deps": [] @@ -19895,7 +19928,7 @@ }, "recipe": { "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.2045", "deps": [] @@ -19909,7 +19942,7 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.28", "deps": [ @@ -19925,7 +19958,7 @@ }, "recipe": { "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120205.507", "deps": [] @@ -19939,7 +19972,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1520", "deps": [ @@ -19955,7 +19988,7 @@ }, "recipe": { "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.225", "deps": [] @@ -19969,7 +20002,7 @@ }, "recipe": { "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130527.1625", "deps": [] @@ -19983,7 +20016,7 @@ }, "recipe": { "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130616.125", "deps": [] @@ -19997,7 +20030,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140216.619", "deps": [ @@ -20020,7 +20053,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2006", "deps": [ @@ -20036,7 +20069,7 @@ }, "recipe": { "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.1218", "deps": [] @@ -20050,7 +20083,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140122.1056", "deps": [] @@ -20064,7 +20097,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.756", "deps": [] @@ -20078,7 +20111,7 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140220.2258", "deps": [ @@ -20093,7 +20126,7 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1551", "deps": [] @@ -20107,7 +20140,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.959", "deps": [] @@ -20121,7 +20154,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.746", "deps": [] @@ -20135,7 +20168,7 @@ }, "recipe": { "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.2319", "deps": [ @@ -20151,7 +20184,7 @@ }, "recipe": { "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.812", "deps": [] @@ -20165,7 +20198,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.1431", "deps": [] @@ -20179,7 +20212,7 @@ }, "recipe": { "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.1143", "deps": [] @@ -20193,7 +20226,7 @@ }, "recipe": { "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -20209,7 +20242,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150511.519", "deps": [] @@ -20223,7 +20256,7 @@ }, "recipe": { "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1300", "deps": [ @@ -20240,7 +20273,7 @@ }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.909", "deps": [ @@ -20253,12 +20286,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/uk-ar/el-spec.git", - "sha256": "efe2408dd6030ff858729ba1e3d7ba219da4c1097cd7a2fb6b653256a6c10d68", + "sha256": "c6ba965ea64bd9f9cf6b200eb7cc68cb23c2c48e98ea49434e2895fbc1d86d02", "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" }, "recipe": { "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121018.204", "deps": [] @@ -20272,7 +20305,7 @@ }, "recipe": { "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.2108", "deps": [ @@ -20288,7 +20321,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.218", "deps": [ @@ -20304,7 +20337,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.1251", "deps": [ @@ -20321,7 +20354,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.1922", "deps": [] @@ -20335,7 +20368,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2228", "deps": [] @@ -20349,7 +20382,7 @@ }, "recipe": { "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.423", "deps": [ @@ -20364,7 +20397,7 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090208.2238", "deps": [] @@ -20378,7 +20411,7 @@ }, "recipe": { "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.2116", "deps": [] @@ -20392,7 +20425,7 @@ }, "recipe": { "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2210", "deps": [] @@ -20406,7 +20439,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.513", "deps": [ @@ -20423,7 +20456,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.116", "deps": [] @@ -20432,14 +20465,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarsius/elx.git", - "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", - "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + "sha256": "006ff5c18c313011d8e67b59496192d29164d683bc15e0b47b25d2601a6190d5", + "rev": "a8dff14f0626f729e745092dd88a1801c6239710" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150101.905", + "version": "20151215.639", "deps": [ "emacs" ] @@ -20453,7 +20486,7 @@ }, "recipe": { "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1746", "deps": [ @@ -20470,7 +20503,7 @@ }, "recipe": { "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1416", "deps": [ @@ -20487,14 +20520,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iquiw/hyai.git", - "sha256": "26943fa452e9ca7337aa72eaf63b6fcd1534a5979efd69c64cbd23f2dba056ac", - "rev": "9e0a7848cacbf2c89da135e12ae3209470c512dc" + "sha256": "8f9b414aeed5bd347cf8c1ee0b723bd6d6f4adfb729fc02bfac46a2f5399e149", + "rev": "20f1cba4a3420bff42a6d23f84c51539b618c009" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151209.935", + "version": "20151215.624", "deps": [ "cl-lib", "emacs" @@ -20509,7 +20542,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.1017", "deps": [ @@ -20525,7 +20558,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1649", "deps": [ @@ -20541,7 +20574,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2234", "deps": [ @@ -20559,7 +20592,7 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.822", "deps": [ @@ -20574,7 +20607,7 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140630.947", "deps": [] @@ -20588,7 +20621,7 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120328.314", "deps": [ @@ -20603,7 +20636,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -20616,7 +20649,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.1428", "deps": [ @@ -20632,7 +20665,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.2302", "deps": [ @@ -20649,7 +20682,7 @@ }, "recipe": { "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1035", "deps": [] @@ -20663,7 +20696,7 @@ }, "recipe": { "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140102.1736", "deps": [] @@ -20677,7 +20710,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.100", "deps": [ @@ -20694,7 +20727,7 @@ }, "recipe": { "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.327", "deps": [] @@ -20703,14 +20736,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/leoliu/ggtags.git", - "sha256": "ba40a7b6c89688c5ea7b9b6ad17e95893d0153addfd7f3c5c99419dece8b8259", - "rev": "d2a88922591c2c0dc047e2aad9dc86364507c4da" + "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151103.2345", + "version": "20151214.1544", "deps": [ "cl-lib", "emacs" @@ -20724,7 +20757,7 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140307.1044", "deps": [] @@ -20738,7 +20771,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140320.208", "deps": [ @@ -20755,7 +20788,7 @@ }, "recipe": { "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1937", "deps": [ @@ -20766,12 +20799,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/cfengine/core.git", - "sha256": "d373c60867db4125313b7809ab3be522420f214e2d95ec0080f7946f1ce005bc", - "rev": "f235637ccfa756d91f042f5254f44631a8840389" + "sha256": "e9632d27fbe81cd6af1d0ff19a7afd8b2e19ef25c545b5285f2fefb52cfe1598", + "rev": "085be03ef175c95197c9e41917098e17007ba6ab" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.611", "deps": [] @@ -20785,7 +20818,7 @@ }, "recipe": { "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150411.1055", "deps": [] @@ -20799,7 +20832,7 @@ }, "recipe": { "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1249", "deps": [ @@ -20816,7 +20849,7 @@ }, "recipe": { "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.803", "deps": [ @@ -20833,7 +20866,7 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1809", "deps": [] @@ -20846,7 +20879,7 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1226", "deps": [] @@ -20860,7 +20893,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120319.1859", "deps": [ @@ -20871,12 +20904,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-widget-mvc.git", - "sha256": "4eba3ef04d97bc132e3d3fbd8b25897b36f6aa6d8c2149207ca5968fea301b3b", - "rev": "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63" + "sha256": "70c7189dbadd43e4d0bb4dece49f9edda18e57a27a6dd28c5b778475c88bf963", + "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783" }, "recipe": { "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.2206", "deps": [] @@ -20890,7 +20923,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121006.34", "deps": [ @@ -20906,7 +20939,7 @@ }, "recipe": { "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.537", "deps": [ @@ -20924,7 +20957,7 @@ }, "recipe": { "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150214.23", "deps": [] @@ -20938,7 +20971,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131013.1044", "deps": [ @@ -20954,7 +20987,7 @@ }, "recipe": { "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.801", "deps": [] @@ -20968,7 +21001,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1100", "deps": [] @@ -20982,7 +21015,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -21001,7 +21034,7 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.2352", "deps": [ @@ -21016,7 +21049,7 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1841", "deps": [] @@ -21030,7 +21063,7 @@ }, "recipe": { "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.1226", "deps": [] @@ -21044,7 +21077,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.1253", "deps": [ @@ -21061,7 +21094,7 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2249", "deps": [ @@ -21077,7 +21110,7 @@ }, "recipe": { "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1014", "deps": [ @@ -21093,7 +21126,7 @@ }, "recipe": { "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.1712", "deps": [] @@ -21107,7 +21140,7 @@ }, "recipe": { "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.826", "deps": [ @@ -21123,7 +21156,7 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120508.1320", "deps": [] @@ -21137,7 +21170,7 @@ }, "recipe": { "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131221.545", "deps": [ @@ -21154,7 +21187,7 @@ }, "recipe": { "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.335", "deps": [] @@ -21168,7 +21201,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150226.1017", "deps": [] @@ -21182,7 +21215,7 @@ }, "recipe": { "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.348", "deps": [] @@ -21196,7 +21229,7 @@ }, "recipe": { "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -21213,7 +21246,7 @@ }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1705", "deps": [] @@ -21227,7 +21260,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1440", "deps": [ @@ -21245,7 +21278,7 @@ }, "recipe": { "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.1815", "deps": [] @@ -21259,7 +21292,7 @@ }, "recipe": { "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1812", "deps": [ @@ -21276,7 +21309,7 @@ }, "recipe": { "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140203.1706", "deps": [ @@ -21299,7 +21332,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.928", "deps": [] @@ -21313,7 +21346,7 @@ }, "recipe": { "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140920.1611", "deps": [] @@ -21327,7 +21360,7 @@ }, "recipe": { "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130127.524", "deps": [] @@ -21341,7 +21374,7 @@ }, "recipe": { "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.232", "deps": [ @@ -21357,7 +21390,7 @@ }, "recipe": { "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1610", "deps": [ @@ -21376,7 +21409,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1527", "deps": [] @@ -21390,7 +21423,7 @@ }, "recipe": { "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2213", "deps": [ @@ -21406,7 +21439,7 @@ }, "recipe": { "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.807", "deps": [ @@ -21423,7 +21456,7 @@ }, "recipe": { "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130329.48", "deps": [] @@ -21437,7 +21470,7 @@ }, "recipe": { "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1139", "deps": [ @@ -21453,7 +21486,7 @@ }, "recipe": { "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140517.918", "deps": [ @@ -21469,7 +21502,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.1542", "deps": [ @@ -21487,7 +21520,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150310.353", "deps": [ @@ -21503,7 +21536,7 @@ }, "recipe": { "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140713.131", "deps": [ @@ -21519,7 +21552,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.358", "deps": [] @@ -21533,7 +21566,7 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.1448", "deps": [ @@ -21548,7 +21581,7 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1622", "deps": [] @@ -21562,7 +21595,7 @@ }, "recipe": { "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.211", "deps": [ @@ -21578,7 +21611,7 @@ }, "recipe": { "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1018", "deps": [] @@ -21592,7 +21625,7 @@ }, "recipe": { "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.2328", "deps": [] @@ -21606,7 +21639,7 @@ }, "recipe": { "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.1828", "deps": [ @@ -21622,7 +21655,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.220", "deps": [] @@ -21636,7 +21669,7 @@ }, "recipe": { "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -21650,7 +21683,7 @@ }, "recipe": { "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.430", "deps": [] @@ -21664,7 +21697,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.653", "deps": [] @@ -21678,7 +21711,7 @@ }, "recipe": { "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.2321", "deps": [ @@ -21694,7 +21727,7 @@ }, "recipe": { "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150721.1437", "deps": [] @@ -21708,7 +21741,7 @@ }, "recipe": { "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.812", "deps": [] @@ -21722,7 +21755,7 @@ }, "recipe": { "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -21738,7 +21771,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1558", "deps": [] @@ -21752,7 +21785,7 @@ }, "recipe": { "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.423", "deps": [] @@ -21766,7 +21799,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1609", "deps": [] @@ -21780,7 +21813,7 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.830", "deps": [ @@ -21797,7 +21830,7 @@ }, "recipe": { "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.45", "deps": [ @@ -21813,7 +21846,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1739", "deps": [] @@ -21827,7 +21860,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130429.1659", "deps": [ @@ -21843,7 +21876,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.722", "deps": [] @@ -21857,7 +21890,7 @@ }, "recipe": { "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130113.1700", "deps": [ @@ -21874,7 +21907,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.613", "deps": [ @@ -21891,7 +21924,7 @@ }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1658", "deps": [ @@ -21909,7 +21942,7 @@ }, "recipe": { "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1203", "deps": [ @@ -21925,7 +21958,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1116", "deps": [ @@ -21941,7 +21974,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1057", "deps": [] @@ -21955,7 +21988,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.658", "deps": [] @@ -21969,7 +22002,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1347", "deps": [ @@ -21990,7 +22023,7 @@ }, "recipe": { "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.100", "deps": [] @@ -22004,7 +22037,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141217.1934", "deps": [ @@ -22021,7 +22054,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -22041,7 +22074,7 @@ }, "recipe": { "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.135", "deps": [] @@ -22055,7 +22088,7 @@ }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.258", "deps": [ @@ -22073,7 +22106,7 @@ }, "recipe": { "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.2110", "deps": [] @@ -22087,7 +22120,7 @@ }, "recipe": { "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1548", "deps": [ @@ -22104,7 +22137,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.924", "deps": [ @@ -22121,7 +22154,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.304", "deps": [ @@ -22138,7 +22171,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.416", "deps": [] @@ -22152,7 +22185,7 @@ }, "recipe": { "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.1957", "deps": [ @@ -22168,7 +22201,7 @@ }, "recipe": { "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130902.1248", "deps": [ @@ -22184,7 +22217,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.837", "deps": [ @@ -22200,7 +22233,7 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.2151", "deps": [] @@ -22214,7 +22247,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.1107", "deps": [ @@ -22230,7 +22263,7 @@ }, "recipe": { "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140220.1701", "deps": [] @@ -22244,7 +22277,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150318.1013", "deps": [] @@ -22258,7 +22291,7 @@ }, "recipe": { "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1416", "deps": [] @@ -22272,7 +22305,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.233", "deps": [ @@ -22291,7 +22324,7 @@ }, "recipe": { "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150203.125", "deps": [] @@ -22305,7 +22338,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1804", "deps": [ @@ -22321,7 +22354,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1818", "deps": [ @@ -22337,7 +22370,7 @@ }, "recipe": { "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141017.444", "deps": [ @@ -22353,7 +22386,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.607", "deps": [ @@ -22370,7 +22403,7 @@ }, "recipe": { "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.410", "deps": [ @@ -22386,7 +22419,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.507", "deps": [] @@ -22400,7 +22433,7 @@ }, "recipe": { "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130627.1808", "deps": [] @@ -22414,7 +22447,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.2322", "deps": [ @@ -22431,7 +22464,7 @@ }, "recipe": { "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.1737", "deps": [ @@ -22448,7 +22481,7 @@ }, "recipe": { "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130424.1019", "deps": [ @@ -22465,7 +22498,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130324.551", "deps": [ @@ -22481,7 +22514,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.408", "deps": [] @@ -22495,7 +22528,7 @@ }, "recipe": { "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.331", "deps": [] @@ -22509,7 +22542,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141111.307", "deps": [] @@ -22523,7 +22556,7 @@ }, "recipe": { "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.608", "deps": [ @@ -22541,7 +22574,7 @@ }, "recipe": { "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.1322", "deps": [ @@ -22558,7 +22591,7 @@ }, "recipe": { "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140205.725", "deps": [ @@ -22574,7 +22607,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.604", "deps": [ @@ -22591,7 +22624,7 @@ }, "recipe": { "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.2040", "deps": [ @@ -22604,14 +22637,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/fourier/ztree.git", - "sha256": "d6149700fb69170e61f610cff32b57f29e70e9cd195047d4b883ec54877ce8e0", - "rev": "4a935eece004fc5e2e70e6606e564da73fdd90f5" + "sha256": "1180986f07af1b86448fc1fd30b3210a53fc33d3145f9522ea1091b6a500dad4", + "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b" }, "recipe": { "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150702.1213", + "version": "20151215.1412", "deps": [] }, "log4j-mode": { @@ -22623,7 +22656,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101016.1022", "deps": [] @@ -22637,7 +22670,7 @@ }, "recipe": { "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.959", "deps": [ @@ -22654,7 +22687,7 @@ }, "recipe": { "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.1548", "deps": [] @@ -22668,7 +22701,7 @@ }, "recipe": { "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140501.731", "deps": [ @@ -22684,7 +22717,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140610.231", "deps": [ @@ -22696,14 +22729,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/paddymcall/noXML-fold.git", - "sha256": "be81f3de17c7676fa19f13bb11aff8de8f893b6b74c9fad6b3700232d826acd7", - "rev": "d10ac9d0282b5efefc23a583c884e3a92be49966" + "sha256": "80cdb634e2d4974ed7e20df6cb4d68b049e6e9592ba3ea3a6313dff3422559e3", + "rev": "48d55c03bb1f92fed4983b7a019926bae6aa56f7" }, "recipe": { "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151108.1418", + "version": "20151215.707", "deps": [] }, "dropdown-list": { @@ -22714,7 +22747,7 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120329.1136", "deps": [] @@ -22728,7 +22761,7 @@ }, "recipe": { "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1956", "deps": [ @@ -22744,7 +22777,7 @@ }, "recipe": { "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.1313", "deps": [ @@ -22762,7 +22795,7 @@ }, "recipe": { "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1845", "deps": [ @@ -22778,7 +22811,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.413", "deps": [ @@ -22796,7 +22829,7 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -22810,7 +22843,7 @@ }, "recipe": { "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.734", "deps": [ @@ -22826,7 +22859,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.111", "deps": [ @@ -22843,7 +22876,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.1632", "deps": [] @@ -22857,7 +22890,7 @@ }, "recipe": { "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.726", "deps": [ @@ -22874,7 +22907,7 @@ }, "recipe": { "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141202.1157", "deps": [ @@ -22891,7 +22924,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1238", "deps": [ @@ -22910,7 +22943,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150304.848", "deps": [ @@ -22928,7 +22961,7 @@ }, "recipe": { "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.932", "deps": [ @@ -22944,7 +22977,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.2358", "deps": [ @@ -22961,7 +22994,7 @@ }, "recipe": { "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.2028", "deps": [ @@ -22978,7 +23011,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1327", "deps": [ @@ -22994,7 +23027,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1149", "deps": [] @@ -23008,7 +23041,7 @@ }, "recipe": { "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120830.1228", "deps": [] @@ -23022,7 +23055,7 @@ }, "recipe": { "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.304", "deps": [] @@ -23036,7 +23069,7 @@ }, "recipe": { "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120307.425", "deps": [ @@ -23052,7 +23085,7 @@ }, "recipe": { "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131106.1303", "deps": [ @@ -23069,7 +23102,7 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150605.406", "deps": [] @@ -23083,7 +23116,7 @@ }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.448", "deps": [ @@ -23102,7 +23135,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1737", "deps": [ @@ -23119,7 +23152,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.119", "deps": [ @@ -23139,7 +23172,7 @@ }, "recipe": { "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1601", "deps": [ @@ -23156,7 +23189,7 @@ }, "recipe": { "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.1942", "deps": [] @@ -23170,7 +23203,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140615.120", "deps": [] @@ -23184,7 +23217,7 @@ }, "recipe": { "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.225", "deps": [ @@ -23201,7 +23234,7 @@ }, "recipe": { "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.531", "deps": [ @@ -23220,7 +23253,7 @@ }, "recipe": { "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120331.1544", "deps": [] @@ -23234,7 +23267,7 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.613", "deps": [ @@ -23250,7 +23283,7 @@ }, "recipe": { "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.320", "deps": [] @@ -23264,7 +23297,7 @@ }, "recipe": { "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1919", "deps": [ @@ -23282,7 +23315,7 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130901.935", "deps": [] @@ -23296,7 +23329,7 @@ }, "recipe": { "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2255", "deps": [ @@ -23312,7 +23345,7 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1906", "deps": [ @@ -23328,7 +23361,7 @@ }, "recipe": { "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120808.2207", "deps": [] @@ -23342,7 +23375,7 @@ }, "recipe": { "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130721.1950", "deps": [] @@ -23356,7 +23389,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.2236", "deps": [] @@ -23370,7 +23403,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130209.1940", "deps": [ @@ -23386,7 +23419,7 @@ }, "recipe": { "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.424", "deps": [] @@ -23400,7 +23433,7 @@ }, "recipe": { "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130926.10", "deps": [] @@ -23409,12 +23442,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150130.1004", "deps": [ @@ -23430,7 +23463,7 @@ }, "recipe": { "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1759", "deps": [] @@ -23444,7 +23477,7 @@ }, "recipe": { "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1310", "deps": [ @@ -23460,7 +23493,7 @@ }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1533", "deps": [ @@ -23478,7 +23511,7 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121016.357", "deps": [] @@ -23492,7 +23525,7 @@ }, "recipe": { "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.1237", "deps": [] @@ -23506,7 +23539,7 @@ }, "recipe": { "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130325.907", "deps": [ @@ -23521,7 +23554,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150112.1454", "deps": [] @@ -23535,7 +23568,7 @@ }, "recipe": { "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120814.312", "deps": [] @@ -23549,7 +23582,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1620", "deps": [] @@ -23563,7 +23596,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140625.2306", "deps": [] @@ -23577,7 +23610,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.712", "deps": [] @@ -23591,7 +23624,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.338", "deps": [ @@ -23607,7 +23640,7 @@ }, "recipe": { "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.1504", "deps": [] @@ -23621,7 +23654,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.333", "deps": [ @@ -23639,7 +23672,7 @@ }, "recipe": { "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1211", "deps": [] @@ -23653,7 +23686,7 @@ }, "recipe": { "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141114.1046", "deps": [ @@ -23669,7 +23702,7 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.839", "deps": [ @@ -23684,7 +23717,7 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1609", "deps": [] @@ -23698,7 +23731,7 @@ }, "recipe": { "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111002.347", "deps": [] @@ -23712,7 +23745,7 @@ }, "recipe": { "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1610", "deps": [ @@ -23730,7 +23763,7 @@ }, "recipe": { "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111019.1800", "deps": [] @@ -23744,7 +23777,7 @@ }, "recipe": { "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.233", "deps": [] @@ -23758,7 +23791,7 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1945", "deps": [] @@ -23771,7 +23804,7 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1120", "deps": [] @@ -23785,7 +23818,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1654", "deps": [ @@ -23801,7 +23834,7 @@ }, "recipe": { "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130309.1005", "deps": [] @@ -23815,7 +23848,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.658", "deps": [] @@ -23829,7 +23862,7 @@ }, "recipe": { "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1236", "deps": [] @@ -23843,7 +23876,7 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141111.1230", "deps": [ @@ -23859,7 +23892,7 @@ }, "recipe": { "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140202.1341", "deps": [] @@ -23872,7 +23905,7 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.939", "deps": [] @@ -23886,7 +23919,7 @@ }, "recipe": { "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140806.2342", "deps": [] @@ -23900,7 +23933,7 @@ }, "recipe": { "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.838", "deps": [ @@ -23917,7 +23950,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151024.1051", "deps": [] @@ -23931,7 +23964,7 @@ }, "recipe": { "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090715.1703", "deps": [] @@ -23945,7 +23978,7 @@ }, "recipe": { "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.1243", "deps": [] @@ -23959,7 +23992,7 @@ }, "recipe": { "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -23975,7 +24008,7 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -23989,7 +24022,7 @@ }, "recipe": { "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.428", "deps": [ @@ -24006,7 +24039,7 @@ }, "recipe": { "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141218.2114", "deps": [] @@ -24020,7 +24053,7 @@ }, "recipe": { "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.519", "deps": [ @@ -24037,7 +24070,7 @@ }, "recipe": { "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130312.1458", "deps": [] @@ -24051,7 +24084,7 @@ }, "recipe": { "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140915.952", "deps": [ @@ -24068,7 +24101,7 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1822", "deps": [] @@ -24082,7 +24115,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.751", "deps": [ @@ -24098,7 +24131,7 @@ }, "recipe": { "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.22", "deps": [] @@ -24112,7 +24145,7 @@ }, "recipe": { "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.953", "deps": [ @@ -24130,7 +24163,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150227.1019", "deps": [ @@ -24148,7 +24181,7 @@ }, "recipe": { "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1812", "deps": [ @@ -24167,7 +24200,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131021.1329", "deps": [ @@ -24185,7 +24218,7 @@ }, "recipe": { "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131108.527", "deps": [] @@ -24199,7 +24232,7 @@ }, "recipe": { "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.1326", "deps": [ @@ -24215,7 +24248,7 @@ }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -24233,7 +24266,7 @@ }, "recipe": { "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.719", "deps": [] @@ -24246,7 +24279,7 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1558", "deps": [] @@ -24260,7 +24293,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130424.157", "deps": [ @@ -24276,7 +24309,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2212", "deps": [ @@ -24293,7 +24326,7 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1130", "deps": [ @@ -24309,7 +24342,7 @@ }, "recipe": { "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.924", "deps": [ @@ -24325,7 +24358,7 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.1048", "deps": [] @@ -24339,7 +24372,7 @@ }, "recipe": { "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130321.1912", "deps": [] @@ -24353,7 +24386,7 @@ }, "recipe": { "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150212.924", "deps": [ @@ -24369,7 +24402,7 @@ }, "recipe": { "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.533", "deps": [] @@ -24383,7 +24416,7 @@ }, "recipe": { "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130908.1322", "deps": [ @@ -24399,7 +24432,7 @@ }, "recipe": { "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1029", "deps": [] @@ -24413,7 +24446,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.622", "deps": [ @@ -24429,7 +24462,7 @@ }, "recipe": { "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.958", "deps": [] @@ -24443,7 +24476,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.29", "deps": [] @@ -24452,14 +24485,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", - "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150815.1642", + "version": "20151215.438", "deps": [ "highlight" ] @@ -24473,7 +24506,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.346", "deps": [ @@ -24493,7 +24526,7 @@ }, "recipe": { "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.2259", "deps": [] @@ -24506,7 +24539,7 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.1305", "deps": [] @@ -24520,7 +24553,7 @@ }, "recipe": { "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.821", "deps": [ @@ -24537,7 +24570,7 @@ }, "recipe": { "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1634", "deps": [] @@ -24551,7 +24584,7 @@ }, "recipe": { "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140530.433", "deps": [ @@ -24567,7 +24600,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120209.1251", "deps": [] @@ -24581,7 +24614,7 @@ }, "recipe": { "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1359", "deps": [] @@ -24595,7 +24628,7 @@ }, "recipe": { "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.332", "deps": [] @@ -24609,7 +24642,7 @@ }, "recipe": { "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.905", "deps": [] @@ -24623,7 +24656,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101130.643", "deps": [] @@ -24637,7 +24670,7 @@ }, "recipe": { "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.801", "deps": [] @@ -24651,7 +24684,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.808", "deps": [ @@ -24668,7 +24701,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1539", "deps": [ @@ -24686,7 +24719,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -24703,7 +24736,7 @@ }, "recipe": { "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.1916", "deps": [] @@ -24717,7 +24750,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1024", "deps": [ @@ -24733,7 +24766,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.728", "deps": [ @@ -24749,7 +24782,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140202.931", "deps": [ @@ -24765,7 +24798,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131115.550", "deps": [ @@ -24782,7 +24815,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.2215", "deps": [ @@ -24800,7 +24833,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.2352", "deps": [ @@ -24816,7 +24849,7 @@ }, "recipe": { "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.600", "deps": [] @@ -24830,7 +24863,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150109.1223", "deps": [] @@ -24844,7 +24877,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1304", "deps": [ @@ -24860,7 +24893,7 @@ }, "recipe": { "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140630.1721", "deps": [ @@ -24876,7 +24909,7 @@ }, "recipe": { "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.301", "deps": [] @@ -24890,7 +24923,7 @@ }, "recipe": { "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150224.2259", "deps": [] @@ -24904,7 +24937,7 @@ }, "recipe": { "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150701.855", "deps": [ @@ -24920,7 +24953,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.610", "deps": [ @@ -24936,7 +24969,7 @@ }, "recipe": { "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1706", "deps": [ @@ -24954,7 +24987,7 @@ }, "recipe": { "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140417.614", "deps": [ @@ -24970,7 +25003,7 @@ }, "recipe": { "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.2131", "deps": [ @@ -24990,7 +25023,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -25008,7 +25041,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150612.1439", "deps": [ @@ -25024,7 +25057,7 @@ }, "recipe": { "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.1336", "deps": [] @@ -25038,7 +25071,7 @@ }, "recipe": { "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1215", "deps": [] @@ -25052,7 +25085,7 @@ }, "recipe": { "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.1930", "deps": [] @@ -25066,7 +25099,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.1322", "deps": [ @@ -25083,7 +25116,7 @@ }, "recipe": { "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120702.1536", "deps": [] @@ -25097,7 +25130,7 @@ }, "recipe": { "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.1900", "deps": [] @@ -25111,7 +25144,7 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140329.1124", "deps": [ @@ -25126,7 +25159,7 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -25140,7 +25173,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1349", "deps": [ @@ -25156,7 +25189,7 @@ }, "recipe": { "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150127.1546", "deps": [ @@ -25173,7 +25206,7 @@ }, "recipe": { "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1111", "deps": [] @@ -25187,7 +25220,7 @@ }, "recipe": { "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1527", "deps": [ @@ -25204,7 +25237,7 @@ }, "recipe": { "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120809.718", "deps": [] @@ -25218,7 +25251,7 @@ }, "recipe": { "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1250", "deps": [ @@ -25235,7 +25268,7 @@ }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1515", "deps": [] @@ -25249,7 +25282,7 @@ }, "recipe": { "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.730", "deps": [ @@ -25266,7 +25299,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.737", "deps": [ @@ -25286,7 +25319,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.1750", "deps": [ @@ -25302,7 +25335,7 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.732", "deps": [] @@ -25316,7 +25349,7 @@ }, "recipe": { "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150503.237", "deps": [ @@ -25328,11 +25361,11 @@ "tag": "fetchsvn", "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1719971" + "rev": "1720288" }, "recipe": { "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130120.1457", "deps": [] @@ -25346,7 +25379,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1043", "deps": [ @@ -25363,7 +25396,7 @@ }, "recipe": { "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.2336", "deps": [] @@ -25376,7 +25409,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1624", "deps": [] @@ -25390,7 +25423,7 @@ }, "recipe": { "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.1708", "deps": [] @@ -25404,7 +25437,7 @@ }, "recipe": { "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1435", "deps": [] @@ -25418,7 +25451,7 @@ }, "recipe": { "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.706", "deps": [ @@ -25435,7 +25468,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130104.821", "deps": [] @@ -25449,7 +25482,7 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.519", "deps": [] @@ -25462,7 +25495,7 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -25476,7 +25509,7 @@ }, "recipe": { "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2327", "deps": [ @@ -25494,7 +25527,7 @@ }, "recipe": { "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.630", "deps": [] @@ -25508,7 +25541,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.622", "deps": [ @@ -25524,7 +25557,7 @@ }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1541", "deps": [ @@ -25541,7 +25574,7 @@ }, "recipe": { "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.343", "deps": [] @@ -25555,7 +25588,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.1104", "deps": [] @@ -25569,7 +25602,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140629.1016", "deps": [ @@ -25585,7 +25618,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1247", "deps": [ @@ -25603,7 +25636,7 @@ }, "recipe": { "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1014", "deps": [] @@ -25616,7 +25649,7 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -25625,12 +25658,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.140", "deps": [ @@ -25649,7 +25682,7 @@ }, "recipe": { "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.19", "deps": [ @@ -25667,25 +25700,11 @@ }, "recipe": { "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1722", "deps": [] }, - "seq": { - "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/seq.el.git", - "sha256": "05f8290607ef8fdebf45eeb76ecb554d4183d3212eea96e25fb3e5fd18d6f169", - "rev": "1349714b20daed2e62a21ebdd5244acc0ccbef0c" - }, - "recipe": { - "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" - }, - "version": "20151121.1217", - "deps": [] - }, "ox-textile": { "fetch": { "tag": "fetchgit", @@ -25695,7 +25714,7 @@ }, "recipe": { "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2225", "deps": [ @@ -25711,7 +25730,7 @@ }, "recipe": { "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.117", "deps": [ @@ -25728,7 +25747,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.914", "deps": [ @@ -25746,7 +25765,7 @@ }, "recipe": { "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.635", "deps": [ @@ -25762,7 +25781,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -25778,7 +25797,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.1148", "deps": [] @@ -25792,7 +25811,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2329", "deps": [] @@ -25806,7 +25825,7 @@ }, "recipe": { "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.743", "deps": [] @@ -25820,7 +25839,7 @@ }, "recipe": { "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.904", "deps": [ @@ -25836,7 +25855,7 @@ }, "recipe": { "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.145", "deps": [ @@ -25853,7 +25872,7 @@ }, "recipe": { "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1620", "deps": [ @@ -25870,7 +25889,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.1643", "deps": [ @@ -25886,7 +25905,7 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.949", "deps": [] @@ -25900,7 +25919,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1002", "deps": [ @@ -25917,7 +25936,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.1522", "deps": [ @@ -25933,7 +25952,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.620", "deps": [] @@ -25947,7 +25966,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.218", "deps": [ @@ -25963,7 +25982,7 @@ }, "recipe": { "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -25979,7 +25998,7 @@ }, "recipe": { "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.421", "deps": [ @@ -25996,7 +26015,7 @@ }, "recipe": { "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.1104", "deps": [ @@ -26012,7 +26031,7 @@ }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.218", "deps": [ @@ -26029,7 +26048,7 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140515.1006", "deps": [ @@ -26044,7 +26063,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090804.1752", "deps": [] @@ -26058,7 +26077,7 @@ }, "recipe": { "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1423", "deps": [] @@ -26071,7 +26090,7 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1534", "deps": [] @@ -26085,7 +26104,7 @@ }, "recipe": { "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.827", "deps": [] @@ -26094,12 +26113,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Kitware/CMake.git", - "sha256": "d6cb00eb948877d09d16c084c0463bda8b65de88d16298a3a2c46e7efae7c804", - "rev": "6a6d00aeeffadcb535b5a4cf4adaeda296f91b3a" + "sha256": "720660bc113904d40b725b242f415f878ed637fe7f9ea74655ac35bff1947e76", + "rev": "7a47745d69003ec580e8f38d26dbf8858a4f5b18" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.926", "deps": [] @@ -26112,7 +26131,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1545", "deps": [ @@ -26128,7 +26147,7 @@ }, "recipe": { "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140430.213", "deps": [ @@ -26144,7 +26163,7 @@ }, "recipe": { "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1243", "deps": [] @@ -26158,7 +26177,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.835", "deps": [] @@ -26172,7 +26191,7 @@ }, "recipe": { "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.1322", "deps": [ @@ -26191,7 +26210,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.816", "deps": [ @@ -26208,7 +26227,7 @@ }, "recipe": { "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150214.648", "deps": [ @@ -26224,7 +26243,7 @@ }, "recipe": { "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.40", "deps": [ @@ -26240,7 +26259,7 @@ }, "recipe": { "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130127.1951", "deps": [] @@ -26253,7 +26272,7 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.837", "deps": [] @@ -26267,7 +26286,7 @@ }, "recipe": { "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1059", "deps": [] @@ -26281,7 +26300,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.2", "deps": [ @@ -26297,7 +26316,7 @@ }, "recipe": { "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140130.1136", "deps": [] @@ -26311,7 +26330,7 @@ }, "recipe": { "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1830", "deps": [] @@ -26325,7 +26344,7 @@ }, "recipe": { "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.2326", "deps": [ @@ -26343,7 +26362,7 @@ }, "recipe": { "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150608.411", "deps": [ @@ -26359,7 +26378,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110901.330", "deps": [] @@ -26373,7 +26392,7 @@ }, "recipe": { "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130810.917", "deps": [] @@ -26387,7 +26406,7 @@ }, "recipe": { "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.343", "deps": [] @@ -26401,7 +26420,7 @@ }, "recipe": { "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.322", "deps": [] @@ -26415,7 +26434,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1225", "deps": [] @@ -26429,7 +26448,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.625", "deps": [] @@ -26443,7 +26462,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1603", "deps": [] @@ -26457,7 +26476,7 @@ }, "recipe": { "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1323", "deps": [] @@ -26471,7 +26490,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1614", "deps": [ @@ -26490,7 +26509,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130122.1053", "deps": [] @@ -26499,14 +26518,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rmuslimov/browse-at-remote.git", - "sha256": "98cc9ce77720195e07e46f5ecc0668c5728f28ad6ed470baf1e1cfd4a1666ce0", - "rev": "54853e0047cd8b20143f839a2f06e86ad31aaccc" + "sha256": "61b944f1b53d8982ad5857f83e5b09ff6f75ab825467de6fdad6a5ba67297b22", + "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d" }, "recipe": { "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1952", + "version": "20151214.1527", "deps": [ "cl-lib", "f", @@ -26522,7 +26541,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.643", "deps": [ @@ -26538,7 +26557,7 @@ }, "recipe": { "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.702", "deps": [ @@ -26554,7 +26573,7 @@ }, "recipe": { "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1311", "deps": [ @@ -26570,7 +26589,7 @@ }, "recipe": { "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.1925", "deps": [ @@ -26587,7 +26606,7 @@ }, "recipe": { "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.512", "deps": [ @@ -26603,7 +26622,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.628", "deps": [ @@ -26619,7 +26638,7 @@ }, "recipe": { "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.20", "deps": [] @@ -26633,7 +26652,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1205", "deps": [] @@ -26647,7 +26666,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1202", "deps": [ @@ -26664,7 +26683,7 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1839", "deps": [] @@ -26678,7 +26697,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.2111", "deps": [] @@ -26692,7 +26711,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140807.1054", "deps": [ @@ -26708,7 +26727,7 @@ }, "recipe": { "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130921.2242", "deps": [] @@ -26722,7 +26741,7 @@ }, "recipe": { "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.148", "deps": [] @@ -26736,7 +26755,7 @@ }, "recipe": { "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.932", "deps": [ @@ -26752,7 +26771,7 @@ }, "recipe": { "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131102.609", "deps": [] @@ -26766,7 +26785,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.1943", "deps": [ @@ -26782,7 +26801,7 @@ }, "recipe": { "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100703.741", "deps": [] @@ -26796,7 +26815,7 @@ }, "recipe": { "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140612.2321", "deps": [] @@ -26810,7 +26829,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130204.1653", "deps": [] @@ -26824,7 +26843,7 @@ }, "recipe": { "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.1858", "deps": [ @@ -26841,7 +26860,7 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140904.1910", "deps": [ @@ -26856,7 +26875,7 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.657", "deps": [] @@ -26870,7 +26889,7 @@ }, "recipe": { "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.414", "deps": [] @@ -26884,7 +26903,7 @@ }, "recipe": { "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140222.2001", "deps": [ @@ -26900,7 +26919,7 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.156", "deps": [ @@ -26918,7 +26937,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.208", "deps": [ @@ -26935,7 +26954,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1857", "deps": [] @@ -26949,7 +26968,7 @@ }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1429", "deps": [ @@ -26965,7 +26984,7 @@ }, "recipe": { "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.707", "deps": [] @@ -26979,7 +26998,7 @@ }, "recipe": { "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130610.249", "deps": [] @@ -26993,7 +27012,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1328", "deps": [ @@ -27009,7 +27028,7 @@ }, "recipe": { "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141001.1413", "deps": [] @@ -27023,7 +27042,7 @@ }, "recipe": { "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.800", "deps": [] @@ -27037,7 +27056,7 @@ }, "recipe": { "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.1816", "deps": [] @@ -27051,7 +27070,7 @@ }, "recipe": { "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.1937", "deps": [ @@ -27067,7 +27086,7 @@ }, "recipe": { "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1317", "deps": [ @@ -27083,7 +27102,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.1800", "deps": [] @@ -27097,7 +27116,7 @@ }, "recipe": { "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130323.1225", "deps": [] @@ -27111,7 +27130,7 @@ }, "recipe": { "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.2257", "deps": [] @@ -27125,7 +27144,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.1119", "deps": [ @@ -27141,7 +27160,7 @@ }, "recipe": { "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.845", "deps": [] @@ -27155,7 +27174,7 @@ }, "recipe": { "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.312", "deps": [] @@ -27169,7 +27188,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1705", "deps": [ @@ -27187,7 +27206,7 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.627", "deps": [ @@ -27204,7 +27223,7 @@ }, "recipe": { "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090528.136", "deps": [] @@ -27218,7 +27237,7 @@ }, "recipe": { "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2138", "deps": [ @@ -27229,14 +27248,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/TheBB/spaceline.git", - "sha256": "5da81cbeb31e20e7b6b253c4e7283f8c372470850c913135e9a61c5721583c58", - "rev": "f08cecdf58f2bb60715114db155b2062695016d8" + "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.754", + "version": "20151215.225", "deps": [ "cl-lib", "dash", @@ -27254,7 +27273,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130526.1014", "deps": [] @@ -27268,7 +27287,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1225", "deps": [] @@ -27282,7 +27301,7 @@ }, "recipe": { "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.2133", "deps": [ @@ -27300,7 +27319,7 @@ }, "recipe": { "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131217.912", "deps": [ @@ -27316,7 +27335,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.441", "deps": [] @@ -27330,7 +27349,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -27344,7 +27363,7 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.440", "deps": [ @@ -27359,7 +27378,7 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.859", "deps": [] @@ -27373,7 +27392,7 @@ }, "recipe": { "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150321.2325", "deps": [ @@ -27390,7 +27409,7 @@ }, "recipe": { "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.923", "deps": [ @@ -27408,7 +27427,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.332", "deps": [] @@ -27422,7 +27441,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.1007", "deps": [ @@ -27439,7 +27458,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.457", "deps": [] @@ -27453,7 +27472,7 @@ }, "recipe": { "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1740", "deps": [ @@ -27469,7 +27488,7 @@ }, "recipe": { "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.304", "deps": [ @@ -27486,7 +27505,7 @@ }, "recipe": { "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130217.1605", "deps": [] @@ -27500,7 +27519,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2237", "deps": [] @@ -27514,7 +27533,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.1602", "deps": [ @@ -27525,12 +27544,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.905", "deps": [ @@ -27548,7 +27567,7 @@ }, "recipe": { "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1125", "deps": [] @@ -27562,7 +27581,7 @@ }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.130", "deps": [ @@ -27585,7 +27604,7 @@ }, "recipe": { "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.355", "deps": [ @@ -27601,7 +27620,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140829.859", "deps": [] @@ -27615,7 +27634,7 @@ }, "recipe": { "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130903.755", "deps": [] @@ -27629,7 +27648,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110806.158", "deps": [] @@ -27643,7 +27662,7 @@ }, "recipe": { "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1726", "deps": [] @@ -27657,7 +27676,7 @@ }, "recipe": { "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120425.1735", "deps": [] @@ -27671,7 +27690,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150228.1447", "deps": [] @@ -27685,7 +27704,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1837", "deps": [ @@ -27701,7 +27720,7 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140123.2102", "deps": [] @@ -27715,7 +27734,7 @@ }, "recipe": { "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140924.1000", "deps": [ @@ -27732,7 +27751,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130813.1145", "deps": [] @@ -27746,7 +27765,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1532", "deps": [ @@ -27766,7 +27785,7 @@ }, "recipe": { "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.427", "deps": [ @@ -27783,7 +27802,7 @@ }, "recipe": { "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.910", "deps": [ @@ -27800,7 +27819,7 @@ }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1730", "deps": [ @@ -27816,7 +27835,7 @@ }, "recipe": { "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110301.234", "deps": [] @@ -27830,7 +27849,7 @@ }, "recipe": { "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130831.1719", "deps": [ @@ -27846,7 +27865,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.755", "deps": [ @@ -27867,7 +27886,7 @@ }, "recipe": { "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.342", "deps": [] @@ -27881,7 +27900,7 @@ }, "recipe": { "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.135", "deps": [] @@ -27895,7 +27914,7 @@ }, "recipe": { "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.440", "deps": [ @@ -27911,7 +27930,7 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121125.1337", "deps": [] @@ -27925,7 +27944,7 @@ }, "recipe": { "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.619", "deps": [ @@ -27941,7 +27960,7 @@ }, "recipe": { "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150117.1152", "deps": [ @@ -27957,7 +27976,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.1634", "deps": [ @@ -27973,7 +27992,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.149", "deps": [] @@ -27987,7 +28006,7 @@ }, "recipe": { "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121004.1826", "deps": [] @@ -28001,7 +28020,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.441", "deps": [ @@ -28019,7 +28038,7 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.123", "deps": [] @@ -28033,7 +28052,7 @@ }, "recipe": { "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.2133", "deps": [] @@ -28046,7 +28065,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1226", "deps": [ @@ -28063,7 +28082,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140731.1422", "deps": [ @@ -28079,7 +28098,7 @@ }, "recipe": { "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.901", "deps": [] @@ -28093,7 +28112,7 @@ }, "recipe": { "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130215.1504", "deps": [] @@ -28107,7 +28126,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.938", "deps": [] @@ -28121,7 +28140,7 @@ }, "recipe": { "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130726.1407", "deps": [ @@ -28140,7 +28159,7 @@ }, "recipe": { "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2335", "deps": [ @@ -28156,7 +28175,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140920.235", "deps": [ @@ -28174,7 +28193,7 @@ }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1114", "deps": [ @@ -28192,7 +28211,7 @@ }, "recipe": { "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.1016", "deps": [ @@ -28208,7 +28227,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.231", "deps": [ @@ -28227,7 +28246,7 @@ }, "recipe": { "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.2325", "deps": [] @@ -28241,7 +28260,7 @@ }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.241", "deps": [ @@ -28257,7 +28276,7 @@ }, "recipe": { "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1625", "deps": [] @@ -28271,7 +28290,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.706", "deps": [] @@ -28280,12 +28299,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/jcollard/elm-mode.git", - "sha256": "28396168e91a980f9ccb68d5cbf9877743164c7a80ec487cf87bd530f02d468e", - "rev": "e0318ebb288be638f4a98cfd56a516b20ed5e723" + "sha256": "f91f3f2562ce2809c51d7093fcda4e3325645c4403427cf79f45c95ef0e946c8", + "rev": "3f33790b1de000c70cd852bbe63cfa5e282987dd" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1250", "deps": [ @@ -28304,7 +28323,7 @@ }, "recipe": { "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1509", "deps": [ @@ -28320,7 +28339,7 @@ }, "recipe": { "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.2234", "deps": [ @@ -28336,7 +28355,7 @@ }, "recipe": { "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1728", "deps": [ @@ -28348,14 +28367,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "f7ee2610b7d887961267184f1532445d94ecb7abe9e2442660d0d6b5e299c7a2", - "rev": "90f4597dad00230a06e5ce40e34c843a705bebd7" + "sha256": "1108c876784d137ca9c5cd5053a24519cb92ec8080669c42755d227f7f32d534", + "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1247", + "version": "20151215.1557", "deps": [ "helm" ] @@ -28369,7 +28388,7 @@ }, "recipe": { "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.908", "deps": [ @@ -28386,7 +28405,7 @@ }, "recipe": { "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130529.1233", "deps": [ @@ -28403,7 +28422,7 @@ }, "recipe": { "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1647", "deps": [ @@ -28420,7 +28439,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.1632", "deps": [ @@ -28436,7 +28455,7 @@ }, "recipe": { "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.2113", "deps": [ @@ -28457,7 +28476,7 @@ }, "recipe": { "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.952", "deps": [ @@ -28474,7 +28493,7 @@ }, "recipe": { "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.1033", "deps": [] @@ -28488,7 +28507,7 @@ }, "recipe": { "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130802.611", "deps": [] @@ -28502,7 +28521,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.807", "deps": [] @@ -28516,7 +28535,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.1231", "deps": [ @@ -28533,7 +28552,7 @@ }, "recipe": { "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.1701", "deps": [ @@ -28550,7 +28569,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -28566,7 +28585,7 @@ }, "recipe": { "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.2116", "deps": [ @@ -28583,7 +28602,7 @@ }, "recipe": { "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.440", "deps": [ @@ -28600,7 +28619,7 @@ }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1546", "deps": [ @@ -28619,7 +28638,7 @@ }, "recipe": { "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.614", "deps": [] @@ -28633,7 +28652,7 @@ }, "recipe": { "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150203.1843", "deps": [] @@ -28647,7 +28666,7 @@ }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.658", "deps": [ @@ -28663,7 +28682,7 @@ }, "recipe": { "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140518.943", "deps": [ @@ -28679,7 +28698,7 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1151", "deps": [] @@ -28693,7 +28712,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140817.1804", "deps": [ @@ -28717,7 +28736,7 @@ }, "recipe": { "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.420", "deps": [ @@ -28736,7 +28755,7 @@ }, "recipe": { "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141112.1211", "deps": [ @@ -28747,12 +28766,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.250", "deps": [ @@ -28769,7 +28788,7 @@ }, "recipe": { "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1318", "deps": [ @@ -28787,7 +28806,7 @@ }, "recipe": { "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.854", "deps": [] @@ -28801,7 +28820,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.843", "deps": [] @@ -28815,7 +28834,7 @@ }, "recipe": { "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.439", "deps": [ @@ -28831,7 +28850,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.356", "deps": [ @@ -28851,7 +28870,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.804", "deps": [ @@ -28869,7 +28888,7 @@ }, "recipe": { "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.2337", "deps": [ @@ -28886,7 +28905,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.1740", "deps": [ @@ -28902,7 +28921,7 @@ }, "recipe": { "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.817", "deps": [] @@ -28916,7 +28935,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1806", "deps": [] @@ -28930,7 +28949,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.852", "deps": [] @@ -28944,7 +28963,7 @@ }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1550", "deps": [ @@ -28959,7 +28978,7 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1751", "deps": [] @@ -28973,7 +28992,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1956", "deps": [] @@ -28987,7 +29006,7 @@ }, "recipe": { "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150809.1916", "deps": [] @@ -29001,7 +29020,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130613.402", "deps": [ @@ -29017,7 +29036,7 @@ }, "recipe": { "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.1847", "deps": [ @@ -29034,7 +29053,7 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140918.1337", "deps": [] @@ -29048,7 +29067,7 @@ }, "recipe": { "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.1156", "deps": [] @@ -29062,7 +29081,7 @@ }, "recipe": { "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1048", "deps": [] @@ -29076,7 +29095,7 @@ }, "recipe": { "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.1451", "deps": [] @@ -29089,7 +29108,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1909", "deps": [] @@ -29102,7 +29121,7 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1143", "deps": [] @@ -29116,7 +29135,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.2356", "deps": [ @@ -29132,7 +29151,7 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1553", "deps": [] @@ -29146,7 +29165,7 @@ }, "recipe": { "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.928", "deps": [ @@ -29163,7 +29182,7 @@ }, "recipe": { "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.2218", "deps": [] @@ -29177,7 +29196,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.1003", "deps": [ @@ -29193,7 +29212,7 @@ }, "recipe": { "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.2319", "deps": [] @@ -29207,7 +29226,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1719", "deps": [] @@ -29221,7 +29240,7 @@ }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.207", "deps": [] @@ -29234,7 +29253,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150406.1930", "deps": [] @@ -29243,12 +29262,12 @@ "fetch": { "tag": "fetchgit", "url": "git://factorcode.org/git/factor.git", - "sha256": "380414f580ea0f96f31195609826e74c91a1d2a8d488039e2d33f0df657302c6", - "rev": "cbba6bbf959fdb739f8500c5adb2194b3d61f4d9" + "sha256": "a339a009bb3e4bdee9bbe22eb6d9f4d517b8b67621cec6eca8f6e5068172304b", + "rev": "119f188423822121b1cb94358ea16c4b95b02850" }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.543", "deps": [ @@ -29265,7 +29284,7 @@ }, "recipe": { "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.816", "deps": [] @@ -29279,7 +29298,7 @@ }, "recipe": { "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.101", "deps": [ @@ -29296,7 +29315,7 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140714.219", "deps": [] @@ -29310,7 +29329,7 @@ }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.217", "deps": [ @@ -29328,7 +29347,7 @@ }, "recipe": { "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1754", "deps": [ @@ -29345,7 +29364,7 @@ }, "recipe": { "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130403.942", "deps": [] @@ -29359,7 +29378,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130912.2019", "deps": [ @@ -29378,7 +29397,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.845", "deps": [ @@ -29395,7 +29414,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.38", "deps": [] @@ -29409,7 +29428,7 @@ }, "recipe": { "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150306.1423", "deps": [] @@ -29423,7 +29442,7 @@ }, "recipe": { "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.1515", "deps": [ @@ -29440,7 +29459,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.1352", "deps": [] @@ -29453,7 +29472,7 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140421.1122", "deps": [] @@ -29467,7 +29486,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.303", "deps": [ @@ -29488,7 +29507,7 @@ }, "recipe": { "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1035", "deps": [ @@ -29500,12 +29519,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.140", "deps": [ @@ -29531,7 +29550,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.1338", "deps": [ @@ -29549,7 +29568,7 @@ }, "recipe": { "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.859", "deps": [ @@ -29561,12 +29580,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", - "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", + "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.719", "deps": [] @@ -29580,7 +29599,7 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1133", "deps": [] @@ -29594,7 +29613,7 @@ }, "recipe": { "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.801", "deps": [ @@ -29615,7 +29634,7 @@ }, "recipe": { "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.1102", "deps": [ @@ -29632,7 +29651,7 @@ }, "recipe": { "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150610.1206", "deps": [] @@ -29646,7 +29665,7 @@ }, "recipe": { "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.1554", "deps": [ @@ -29664,7 +29683,7 @@ }, "recipe": { "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.955", "deps": [ @@ -29682,7 +29701,7 @@ }, "recipe": { "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.32", "deps": [ @@ -29699,7 +29718,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.534", "deps": [] @@ -29713,7 +29732,7 @@ }, "recipe": { "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.22", "deps": [ @@ -29731,7 +29750,7 @@ }, "recipe": { "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140224.2210", "deps": [] @@ -29745,7 +29764,7 @@ }, "recipe": { "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120202.2334", "deps": [] @@ -29759,7 +29778,7 @@ }, "recipe": { "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1125", "deps": [ @@ -29775,7 +29794,7 @@ }, "recipe": { "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.2339", "deps": [] @@ -29789,7 +29808,7 @@ }, "recipe": { "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.824", "deps": [ @@ -29805,7 +29824,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1312", "deps": [ @@ -29821,7 +29840,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140827.2056", "deps": [ @@ -29837,7 +29856,7 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1955", "deps": [] @@ -29850,7 +29869,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1052", "deps": [] @@ -29864,7 +29883,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.1230", "deps": [] @@ -29878,7 +29897,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.434", "deps": [ @@ -29894,7 +29913,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140119.1543", "deps": [] @@ -29908,7 +29927,7 @@ }, "recipe": { "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1735", "deps": [] @@ -29922,7 +29941,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.627", "deps": [] @@ -29931,12 +29950,12 @@ "fetch": { "tag": "fetchgit", "url": "http://llvm.org/git/llvm", - "sha256": "89edd9b31a3e2ad5ce10a69d36b5b74846e62f193a76331a216c3af4e427e3b2", - "rev": "a4527729ac58c83b4411b7bf1adab07cd7c3b050" + "sha256": "4aa3ce45502636723d58dc4bfa05928082dfc4541fa6b4c95f8655712e9452a3", + "rev": "8c9bc7b01bf5e097f461703f6ce7a35e65178e66" }, "recipe": { "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.844", "deps": [] @@ -29950,7 +29969,7 @@ }, "recipe": { "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.743", "deps": [ @@ -29967,7 +29986,7 @@ }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140312.1548", "deps": [] @@ -29981,7 +30000,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.423", "deps": [] @@ -29995,7 +30014,7 @@ }, "recipe": { "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1010", "deps": [] @@ -30009,7 +30028,7 @@ }, "recipe": { "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1934", "deps": [ @@ -30025,7 +30044,7 @@ }, "recipe": { "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.2133", "deps": [ @@ -30044,7 +30063,7 @@ }, "recipe": { "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1515", "deps": [ @@ -30061,7 +30080,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.1508", "deps": [ @@ -30079,7 +30098,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131111.1546", "deps": [] @@ -30093,7 +30112,7 @@ }, "recipe": { "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.141", "deps": [ @@ -30109,7 +30128,7 @@ }, "recipe": { "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.47", "deps": [ @@ -30128,7 +30147,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140213.548", "deps": [] @@ -30142,7 +30161,7 @@ }, "recipe": { "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.2047", "deps": [] @@ -30156,7 +30175,7 @@ }, "recipe": { "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.743", "deps": [] @@ -30170,7 +30189,7 @@ }, "recipe": { "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.1329", "deps": [ @@ -30182,12 +30201,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "47e6824a102b840e82838fc04624abc18ce06b551df23c5a15875b410817d246", + "sha256": "603e45398b365917790b720e517af2049d5042645c83d490e7abe5556a76dc03", "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.241", "deps": [ @@ -30203,7 +30222,7 @@ }, "recipe": { "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.2057", "deps": [] @@ -30212,12 +30231,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/JuliaLang/julia.git", - "sha256": "17603f2155b805b149c85aa4fd575be73d0920b5b757a1a4b6f95c47c4492fd4", - "rev": "bbbd9d2089479c703fa9a000d093896533dd1236" + "sha256": "5457f518eda68fdcfd854788b6736902250f06519af6b4ba6360a4cc8b5ba3b6", + "rev": "97443cd94d038fc3fe182e97b3ff2a597a9e319b" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150912.1000", "deps": [] @@ -30226,12 +30245,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarao/term-plus-mux-el.git", - "sha256": "fe9149cb025d7101cab81ce1da32e5b0bf3c64f95aae3e80ada8554f762c5020", + "sha256": "922a6886ea4a34bec05eb04b0393668fd841275f504f912cab35b8af92ed9ea7", "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" }, "recipe": { "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.149", "deps": [ @@ -30248,7 +30267,7 @@ }, "recipe": { "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.2303", "deps": [] @@ -30262,7 +30281,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1314", "deps": [ @@ -30280,7 +30299,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.238", "deps": [ @@ -30299,7 +30318,7 @@ }, "recipe": { "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140720.2327", "deps": [ @@ -30315,7 +30334,7 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.2041", "deps": [] @@ -30329,7 +30348,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.547", "deps": [ @@ -30345,7 +30364,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110120.2218", "deps": [] @@ -30359,7 +30378,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150802.1157", "deps": [] @@ -30373,7 +30392,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1331", "deps": [ @@ -30389,7 +30408,7 @@ }, "recipe": { "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.2055", "deps": [ @@ -30401,12 +30420,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", - "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", + "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" }, "recipe": { "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.616", "deps": [] @@ -30420,7 +30439,7 @@ }, "recipe": { "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130610.843", "deps": [] @@ -30434,7 +30453,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.535", "deps": [] @@ -30448,7 +30467,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.830", "deps": [] @@ -30462,7 +30481,7 @@ }, "recipe": { "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.1216", "deps": [ @@ -30478,7 +30497,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1128", "deps": [ @@ -30495,7 +30514,7 @@ }, "recipe": { "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.2205", "deps": [] @@ -30509,7 +30528,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130303.155", "deps": [] @@ -30523,7 +30542,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1649", "deps": [ @@ -30539,7 +30558,7 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1855", "deps": [] @@ -30553,7 +30572,7 @@ }, "recipe": { "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.539", "deps": [] @@ -30567,7 +30586,7 @@ }, "recipe": { "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131022.402", "deps": [] @@ -30581,7 +30600,7 @@ }, "recipe": { "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.1113", "deps": [] @@ -30595,7 +30614,7 @@ }, "recipe": { "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130612.42", "deps": [ @@ -30611,7 +30630,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1250", "deps": [] @@ -30625,7 +30644,7 @@ }, "recipe": { "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.227", "deps": [ @@ -30642,7 +30661,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.902", "deps": [ @@ -30659,7 +30678,7 @@ }, "recipe": { "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.1439", "deps": [] @@ -30673,7 +30692,7 @@ }, "recipe": { "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.638", "deps": [ @@ -30693,7 +30712,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1312", "deps": [ @@ -30710,7 +30729,7 @@ }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.131", "deps": [ @@ -30728,7 +30747,7 @@ }, "recipe": { "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1117", "deps": [] @@ -30742,7 +30761,7 @@ }, "recipe": { "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121008.1114", "deps": [] @@ -30756,7 +30775,7 @@ }, "recipe": { "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.202", "deps": [ @@ -30773,7 +30792,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.255", "deps": [ @@ -30792,7 +30811,7 @@ }, "recipe": { "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.720", "deps": [] @@ -30806,7 +30825,7 @@ }, "recipe": { "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1023", "deps": [ @@ -30822,7 +30841,7 @@ }, "recipe": { "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140108.934", "deps": [] @@ -30836,7 +30855,7 @@ }, "recipe": { "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131118.1316", "deps": [ @@ -30853,7 +30872,7 @@ }, "recipe": { "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1248", "deps": [] @@ -30862,12 +30881,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -30884,7 +30903,7 @@ }, "recipe": { "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.1418", "deps": [ @@ -30902,7 +30921,7 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.446", "deps": [ @@ -30917,7 +30936,7 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1420", "deps": [] @@ -30931,7 +30950,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.138", "deps": [ @@ -30948,7 +30967,7 @@ }, "recipe": { "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.838", "deps": [ @@ -30964,7 +30983,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.216", "deps": [ @@ -30985,7 +31004,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1448", "deps": [ @@ -31002,7 +31021,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2130", "deps": [ @@ -31018,7 +31037,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1054", "deps": [] @@ -31032,7 +31051,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.330", "deps": [ @@ -31048,7 +31067,7 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130917.1348", "deps": [] @@ -31062,7 +31081,7 @@ }, "recipe": { "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1252", "deps": [] @@ -31076,7 +31095,7 @@ }, "recipe": { "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111009.816", "deps": [] @@ -31090,7 +31109,7 @@ }, "recipe": { "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.129", "deps": [] @@ -31104,7 +31123,7 @@ }, "recipe": { "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1037", "deps": [] @@ -31118,7 +31137,7 @@ }, "recipe": { "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1804", "deps": [ @@ -31134,7 +31153,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150808.756", "deps": [ @@ -31153,7 +31172,7 @@ }, "recipe": { "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.2032", "deps": [ @@ -31170,7 +31189,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.719", "deps": [ @@ -31186,7 +31205,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2341", "deps": [] @@ -31200,7 +31219,7 @@ }, "recipe": { "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.522", "deps": [ @@ -31216,7 +31235,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.801", "deps": [ @@ -31234,7 +31253,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1224", "deps": [ @@ -31251,7 +31270,7 @@ }, "recipe": { "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121014.2319", "deps": [ @@ -31267,7 +31286,7 @@ }, "recipe": { "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.2027", "deps": [] @@ -31281,7 +31300,7 @@ }, "recipe": { "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150225.146", "deps": [] @@ -31295,7 +31314,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.749", "deps": [] @@ -31309,7 +31328,7 @@ }, "recipe": { "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.1622", "deps": [ @@ -31325,7 +31344,7 @@ }, "recipe": { "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140114.705", "deps": [] @@ -31339,7 +31358,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.358", "deps": [ @@ -31357,7 +31376,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.1150", "deps": [] @@ -31371,7 +31390,7 @@ }, "recipe": { "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.6", "deps": [ @@ -31387,7 +31406,7 @@ }, "recipe": { "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.630", "deps": [ @@ -31403,7 +31422,7 @@ }, "recipe": { "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1159", "deps": [ @@ -31419,7 +31438,7 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1126", "deps": [ @@ -31435,7 +31454,7 @@ }, "recipe": { "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.1118", "deps": [] @@ -31448,7 +31467,7 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1610", "deps": [] @@ -31462,7 +31481,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140925.1008", "deps": [] @@ -31476,7 +31495,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.827", "deps": [] @@ -31490,7 +31509,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140825.627", "deps": [ @@ -31506,7 +31525,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150618.2038", "deps": [ @@ -31522,7 +31541,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.256", "deps": [ @@ -31538,7 +31557,7 @@ }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150706.2009", "deps": [ @@ -31557,7 +31576,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.859", "deps": [ @@ -31576,7 +31595,7 @@ }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1239", "deps": [ @@ -31593,7 +31612,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.522", "deps": [] @@ -31607,7 +31626,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.809", "deps": [ @@ -31624,7 +31643,7 @@ }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.611", "deps": [ @@ -31644,7 +31663,7 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.2121", "deps": [] @@ -31658,7 +31677,7 @@ }, "recipe": { "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150224.2037", "deps": [ @@ -31677,7 +31696,7 @@ }, "recipe": { "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140904.1317", "deps": [ @@ -31692,7 +31711,7 @@ }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1121", "deps": [] @@ -31706,7 +31725,7 @@ }, "recipe": { "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1150", "deps": [ @@ -31722,7 +31741,7 @@ }, "recipe": { "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140125.1819", "deps": [ @@ -31738,7 +31757,7 @@ }, "recipe": { "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.622", "deps": [ @@ -31754,7 +31773,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2054", "deps": [ @@ -31771,7 +31790,7 @@ }, "recipe": { "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.1409", "deps": [] @@ -31785,7 +31804,7 @@ }, "recipe": { "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150704.1009", "deps": [] @@ -31799,7 +31818,7 @@ }, "recipe": { "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.1733", "deps": [] @@ -31813,7 +31832,7 @@ }, "recipe": { "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.817", "deps": [ @@ -31831,7 +31850,7 @@ }, "recipe": { "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.528", "deps": [ @@ -31848,7 +31867,7 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140201.514", "deps": [] @@ -31862,7 +31881,7 @@ }, "recipe": { "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130821.1305", "deps": [] @@ -31876,7 +31895,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150222.646", "deps": [ @@ -31893,7 +31912,7 @@ }, "recipe": { "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.904", "deps": [] @@ -31907,7 +31926,7 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.1536", "deps": [ @@ -31923,7 +31942,7 @@ }, "recipe": { "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130728.1721", "deps": [] @@ -31937,7 +31956,7 @@ }, "recipe": { "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.333", "deps": [ @@ -31953,7 +31972,7 @@ }, "recipe": { "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.1016", "deps": [] @@ -31967,7 +31986,7 @@ }, "recipe": { "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110726.1141", "deps": [] @@ -31980,7 +31999,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1532", "deps": [ @@ -31996,7 +32015,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.34", "deps": [ @@ -32012,7 +32031,7 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.2355", "deps": [] @@ -32026,7 +32045,7 @@ }, "recipe": { "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1637", "deps": [] @@ -32040,7 +32059,7 @@ }, "recipe": { "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.733", "deps": [ @@ -32061,7 +32080,7 @@ }, "recipe": { "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130216.714", "deps": [] @@ -32075,7 +32094,7 @@ }, "recipe": { "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140714.1649", "deps": [] @@ -32089,7 +32108,7 @@ }, "recipe": { "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.406", "deps": [] @@ -32103,7 +32122,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150111.1908", "deps": [ @@ -32119,7 +32138,7 @@ }, "recipe": { "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.1835", "deps": [] @@ -32133,7 +32152,7 @@ }, "recipe": { "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150802.406", "deps": [] @@ -32147,7 +32166,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.326", "deps": [ @@ -32159,14 +32178,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/justbur/evil-magit.git", - "sha256": "a74a24f11136c9eb0ccf46acd7743bf4c749bf709bb9bcac326603a26b244c3e", - "rev": "de0de28f1e0d1a0de5ba2482588c359d30f20bee" + "sha256": "b7e67dfe1e43215c71bb6f0b4309146329d28feca1bd2957fa0a2511e263b190", + "rev": "c35be89c5a80c7513f23e7382809b5abc8c58903" }, "recipe": { "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.2118", + "version": "20151215.1626", "deps": [ "evil", "magit" @@ -32181,7 +32200,7 @@ }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1438", "deps": [ @@ -32198,7 +32217,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.1629", "deps": [] @@ -32212,7 +32231,7 @@ }, "recipe": { "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130612.852", "deps": [] @@ -32226,7 +32245,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.612", "deps": [ @@ -32243,7 +32262,7 @@ }, "recipe": { "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.926", "deps": [ @@ -32259,7 +32278,7 @@ }, "recipe": { "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120817.1906", "deps": [] @@ -32273,7 +32292,7 @@ }, "recipe": { "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.346", "deps": [ @@ -32289,7 +32308,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141216.1609", "deps": [ @@ -32306,7 +32325,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.2150", "deps": [] @@ -32320,7 +32339,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1825", "deps": [ @@ -32331,14 +32350,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", - "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + "sha256": "8e9569286602d52c7b054ba408e706761a23e103e11bdda71403ba3b6ae5770e", + "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5" }, "recipe": { "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20091203.1212", + "version": "20151215.1115", "deps": [] }, "easy-kill-extras": { @@ -32350,7 +32369,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.2117", "deps": [ @@ -32366,7 +32385,7 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.348", "deps": [ @@ -32382,7 +32401,7 @@ }, "recipe": { "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.507", "deps": [ @@ -32401,7 +32420,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1832", "deps": [] @@ -32415,7 +32434,7 @@ }, "recipe": { "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.1703", "deps": [] @@ -32429,7 +32448,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.36", "deps": [ @@ -32445,7 +32464,7 @@ }, "recipe": { "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.651", "deps": [ @@ -32461,7 +32480,7 @@ }, "recipe": { "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.436", "deps": [ @@ -32478,7 +32497,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.805", "deps": [ @@ -32494,7 +32513,7 @@ }, "recipe": { "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.213", "deps": [] @@ -32508,7 +32527,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.618", "deps": [] @@ -32522,7 +32541,7 @@ }, "recipe": { "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1549", "deps": [ @@ -32542,7 +32561,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1346", "deps": [ @@ -32558,7 +32577,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120808.622", "deps": [] @@ -32572,7 +32591,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.356", "deps": [ @@ -32590,7 +32609,7 @@ }, "recipe": { "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.1518", "deps": [ @@ -32606,7 +32625,7 @@ }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.18", "deps": [ @@ -32622,7 +32641,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.2222", "deps": [] @@ -32636,7 +32655,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141121.1405", "deps": [ @@ -32653,7 +32672,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.22", "deps": [] @@ -32667,7 +32686,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1406", "deps": [] @@ -32680,7 +32699,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150616.1522", "deps": [ @@ -32696,7 +32715,7 @@ }, "recipe": { "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141122.842", "deps": [ @@ -32712,7 +32731,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.2007", "deps": [ @@ -32729,7 +32748,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.435", "deps": [] @@ -32743,7 +32762,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1547", "deps": [ @@ -32762,7 +32781,7 @@ }, "recipe": { "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.1506", "deps": [] @@ -32776,7 +32795,7 @@ }, "recipe": { "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141028.1727", "deps": [ @@ -32793,7 +32812,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.603", "deps": [] @@ -32807,7 +32826,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.605", "deps": [ @@ -32824,7 +32843,7 @@ }, "recipe": { "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1051", "deps": [ @@ -32842,7 +32861,7 @@ }, "recipe": { "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141025.1112", "deps": [] @@ -32856,7 +32875,7 @@ }, "recipe": { "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1401", "deps": [ @@ -32873,7 +32892,7 @@ }, "recipe": { "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.2304", "deps": [] @@ -32887,7 +32906,7 @@ }, "recipe": { "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141228.540", "deps": [ @@ -32904,7 +32923,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.833", "deps": [] @@ -32918,7 +32937,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150325.1315", "deps": [] @@ -32932,7 +32951,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1210", "deps": [] @@ -32941,12 +32960,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.202", "deps": [ @@ -32965,7 +32984,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.954", "deps": [ @@ -32983,7 +33002,7 @@ }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.2031", "deps": [ @@ -32999,7 +33018,7 @@ }, "recipe": { "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150526.1905", "deps": [] @@ -33012,7 +33031,7 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.304", "deps": [] @@ -33026,7 +33045,7 @@ }, "recipe": { "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120412.803", "deps": [] @@ -33041,7 +33060,7 @@ }, "recipe": { "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.1842", "deps": [] @@ -33055,7 +33074,7 @@ }, "recipe": { "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100321.1114", "deps": [] @@ -33069,7 +33088,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.107", "deps": [ @@ -33085,7 +33104,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.1611", "deps": [] @@ -33099,7 +33118,7 @@ }, "recipe": { "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130608.2140", "deps": [ @@ -33115,7 +33134,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.2247", "deps": [] @@ -33124,14 +33143,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "32a88fc9f5da06f181b048ef0caf0deb334cbfbaa2f76bf667bded681402a078", - "rev": "ca73f109122db03563b792158034cf333d97a5a9" + "sha256": "017e3a9253bc6351694ed1737f894c5bd19fb346bd53a2af9b48b7856deb39ae", + "rev": "6f16300270afffe64f65c48204049641ba3010bf" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.1038", + "version": "20151215.1600", "deps": [ "emacs", "undo-tree" @@ -33146,7 +33165,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.627", "deps": [ @@ -33162,7 +33181,7 @@ }, "recipe": { "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140919.2056", "deps": [ @@ -33179,7 +33198,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140406.2020", "deps": [ @@ -33195,7 +33214,7 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.914", "deps": [] @@ -33209,7 +33228,7 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.341", "deps": [ @@ -33227,7 +33246,7 @@ }, "recipe": { "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.1607", "deps": [] @@ -33236,12 +33255,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rsdn/nemerle.git", - "sha256": "013689d40795030567acec8010576b1ca3a7c3c064d1149142cf152967db646c", + "sha256": "2670724d9b2dfd16b1450790660b2a3123aaf49d880240457cfae03e3e45b7dd", "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.946", "deps": [] @@ -33255,7 +33274,7 @@ }, "recipe": { "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140425.1711", "deps": [] @@ -33269,7 +33288,7 @@ }, "recipe": { "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140618.58", "deps": [ @@ -33285,7 +33304,7 @@ }, "recipe": { "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.1505", "deps": [] @@ -33299,7 +33318,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1230", "deps": [] @@ -33313,7 +33332,7 @@ }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.945", "deps": [ @@ -33330,7 +33349,7 @@ }, "recipe": { "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.514", "deps": [] @@ -33344,7 +33363,7 @@ }, "recipe": { "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.814", "deps": [ @@ -33360,7 +33379,7 @@ }, "recipe": { "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140913.1458", "deps": [] @@ -33374,7 +33393,7 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.831", "deps": [] @@ -33388,7 +33407,7 @@ }, "recipe": { "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1417", "deps": [] @@ -33402,7 +33421,7 @@ }, "recipe": { "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.1024", "deps": [ @@ -33421,7 +33440,7 @@ }, "recipe": { "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.457", "deps": [] @@ -33434,7 +33453,7 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131210.2131", "deps": [] @@ -33448,7 +33467,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130409.707", "deps": [] @@ -33462,7 +33481,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.936", "deps": [ @@ -33482,7 +33501,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121020.151", "deps": [ @@ -33498,7 +33517,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.51", "deps": [ @@ -33516,7 +33535,7 @@ }, "recipe": { "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131104.1634", "deps": [] @@ -33530,7 +33549,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.345", "deps": [ @@ -33546,7 +33565,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090428.1431", "deps": [] @@ -33560,7 +33579,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140809.524", "deps": [ @@ -33576,7 +33595,7 @@ }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.257", "deps": [ @@ -33593,7 +33612,7 @@ }, "recipe": { "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130315.755", "deps": [] @@ -33606,7 +33625,7 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1620", "deps": [] @@ -33620,7 +33639,7 @@ }, "recipe": { "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.326", "deps": [ @@ -33642,7 +33661,7 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.11", "deps": [] @@ -33655,7 +33674,7 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.731", "deps": [] @@ -33669,7 +33688,7 @@ }, "recipe": { "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2048", "deps": [] @@ -33678,14 +33697,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/dougm/go-projectile.git", - "sha256": "9df1f0685b613de731c56b949683097f5ceee9ee1bc7f643eb6ec8cce020e55e", - "rev": "afbc4705ecab448f972a883ccc9ddf33dc0fcb11" + "sha256": "e279f6bc57a0d023a8809a3cdc44c809dc58c0587768822503c60bd38246df71", + "rev": "0a974097ef74b6045585c6120309c208b002f6e6" }, "recipe": { "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151208.1229", + "version": "20151215.1058", "deps": [ "go-eldoc", "go-mode", @@ -33702,7 +33721,7 @@ }, "recipe": { "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.154", "deps": [ @@ -33718,7 +33737,7 @@ }, "recipe": { "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131017.1632", "deps": [ @@ -33734,7 +33753,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150609.849", "deps": [ @@ -33753,7 +33772,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.450", "deps": [] @@ -33767,7 +33786,7 @@ }, "recipe": { "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.37", "deps": [] @@ -33781,7 +33800,7 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131231.925", "deps": [] @@ -33794,7 +33813,7 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.1240", "deps": [] @@ -33808,7 +33827,7 @@ }, "recipe": { "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.2129", "deps": [] @@ -33822,7 +33841,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1318", "deps": [ @@ -33840,7 +33859,7 @@ }, "recipe": { "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2028", "deps": [] @@ -33854,7 +33873,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1235", "deps": [] @@ -33868,7 +33887,7 @@ }, "recipe": { "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1101", "deps": [ @@ -33885,7 +33904,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110816.1646", "deps": [] @@ -33899,7 +33918,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.831", "deps": [ @@ -33918,7 +33937,7 @@ }, "recipe": { "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1856", "deps": [ @@ -33936,7 +33955,7 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.2153", "deps": [] @@ -33950,7 +33969,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120918.817", "deps": [] @@ -33964,7 +33983,7 @@ }, "recipe": { "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141006.748", "deps": [] @@ -33978,7 +33997,7 @@ }, "recipe": { "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131026.1930", "deps": [] @@ -33992,7 +34011,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140818.957", "deps": [] @@ -34006,7 +34025,7 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1059", "deps": [ @@ -34022,7 +34041,7 @@ }, "recipe": { "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.28", "deps": [] @@ -34036,7 +34055,7 @@ }, "recipe": { "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1113", "deps": [] @@ -34049,7 +34068,7 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080412.955", "deps": [] @@ -34063,7 +34082,7 @@ }, "recipe": { "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140922.2256", "deps": [ @@ -34079,7 +34098,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.859", "deps": [] @@ -34093,7 +34112,7 @@ }, "recipe": { "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.959", "deps": [ @@ -34111,7 +34130,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.746", "deps": [] @@ -34125,7 +34144,7 @@ }, "recipe": { "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2141", "deps": [ @@ -34142,7 +34161,7 @@ }, "recipe": { "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1607", "deps": [ @@ -34160,7 +34179,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1045", "deps": [ @@ -34176,7 +34195,7 @@ }, "recipe": { "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1545", "deps": [] @@ -34190,7 +34209,7 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.739", "deps": [ @@ -34205,7 +34224,7 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1427", "deps": [] @@ -34219,7 +34238,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1427", "deps": [ @@ -34235,7 +34254,7 @@ }, "recipe": { "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131116.744", "deps": [ @@ -34252,7 +34271,7 @@ }, "recipe": { "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1301", "deps": [ @@ -34270,7 +34289,7 @@ }, "recipe": { "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130729.2050", "deps": [] @@ -34284,7 +34303,7 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.1641", "deps": [ @@ -34303,7 +34322,7 @@ }, "recipe": { "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1050", "deps": [] @@ -34317,7 +34336,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2135", "deps": [ @@ -34333,7 +34352,7 @@ }, "recipe": { "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140903.1006", "deps": [] @@ -34347,7 +34366,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -34361,7 +34380,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141030.726", "deps": [ @@ -34378,7 +34397,7 @@ }, "recipe": { "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.116", "deps": [ @@ -34394,7 +34413,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.638", "deps": [ @@ -34411,7 +34430,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.35", "deps": [ @@ -34429,7 +34448,7 @@ }, "recipe": { "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.644", "deps": [ @@ -34446,7 +34465,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.1558", "deps": [ @@ -34462,7 +34481,7 @@ }, "recipe": { "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2259", "deps": [ @@ -34480,7 +34499,7 @@ }, "recipe": { "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.416", "deps": [] @@ -34494,7 +34513,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.729", "deps": [ @@ -34510,7 +34529,7 @@ }, "recipe": { "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.259", "deps": [ @@ -34526,7 +34545,7 @@ }, "recipe": { "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121118.954", "deps": [] @@ -34540,7 +34559,7 @@ }, "recipe": { "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121123.1835", "deps": [ @@ -34556,7 +34575,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.916", "deps": [ @@ -34567,14 +34586,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/flycheck/flycheck-rust.git", - "sha256": "842eeccd86b9ea7efa4c8f80b5da244a5e6ef47828622191a7d2a907354a3c2e", - "rev": "4da768e82579d63c648a6db2a7b60659df87302b" + "sha256": "084cb755b7121327a667134adbe0728562690bb6cf7b5621dbcc86b53c24b598", + "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1" }, "recipe": { "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150609.1448", + "version": "20151215.346", "deps": [ "dash", "emacs", @@ -34590,7 +34609,7 @@ }, "recipe": { "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.730", "deps": [] @@ -34604,7 +34623,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1249", "deps": [ @@ -34620,7 +34639,7 @@ }, "recipe": { "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130527.321", "deps": [] @@ -34634,7 +34653,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131125.2338", "deps": [ @@ -34652,7 +34671,7 @@ }, "recipe": { "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.153", "deps": [ @@ -34668,7 +34687,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130312.1337", "deps": [ @@ -34684,7 +34703,7 @@ }, "recipe": { "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140223.1158", "deps": [ @@ -34701,7 +34720,7 @@ }, "recipe": { "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.2110", "deps": [ @@ -34717,7 +34736,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2233", "deps": [ @@ -34733,7 +34752,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1259", "deps": [ @@ -34749,7 +34768,7 @@ }, "recipe": { "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1441", "deps": [ @@ -34767,7 +34786,7 @@ }, "recipe": { "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141201.1858", "deps": [ @@ -34783,7 +34802,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140120.1252", "deps": [ @@ -34802,7 +34821,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.2129", "deps": [] @@ -34816,7 +34835,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1349", "deps": [ @@ -34832,7 +34851,7 @@ }, "recipe": { "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.931", "deps": [ @@ -34848,7 +34867,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1504", "deps": [ @@ -34869,7 +34888,7 @@ }, "recipe": { "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1306", "deps": [ @@ -34886,7 +34905,7 @@ }, "recipe": { "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141006.2055", "deps": [ @@ -34902,7 +34921,7 @@ }, "recipe": { "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130617.1515", "deps": [] @@ -34916,7 +34935,7 @@ }, "recipe": { "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120312.1525", "deps": [] @@ -34930,7 +34949,7 @@ }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1248", "deps": [] @@ -34944,7 +34963,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150711.1934", "deps": [] @@ -34958,7 +34977,7 @@ }, "recipe": { "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121006.1525", "deps": [] @@ -34972,7 +34991,7 @@ }, "recipe": { "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150705.800", "deps": [ @@ -34988,7 +35007,7 @@ }, "recipe": { "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.549", "deps": [] @@ -35002,7 +35021,7 @@ }, "recipe": { "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140104.1259", "deps": [ @@ -35018,7 +35037,7 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.924", "deps": [ @@ -35035,7 +35054,7 @@ }, "recipe": { "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150411.616", "deps": [ @@ -35051,7 +35070,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1544", "deps": [ @@ -35068,7 +35087,7 @@ }, "recipe": { "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.414", "deps": [ @@ -35087,7 +35106,7 @@ }, "recipe": { "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140723.1346", "deps": [] @@ -35101,7 +35120,7 @@ }, "recipe": { "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.817", "deps": [] @@ -35115,7 +35134,7 @@ }, "recipe": { "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.49", "deps": [ @@ -35131,7 +35150,7 @@ }, "recipe": { "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140715.1927", "deps": [ @@ -35149,7 +35168,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140809.732", "deps": [ @@ -35166,7 +35185,7 @@ }, "recipe": { "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110509.1126", "deps": [] @@ -35180,7 +35199,7 @@ }, "recipe": { "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.521", "deps": [] @@ -35194,7 +35213,7 @@ }, "recipe": { "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.916", "deps": [] @@ -35207,7 +35226,7 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120108.645", "deps": [] @@ -35221,7 +35240,7 @@ }, "recipe": { "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1633", "deps": [ @@ -35239,7 +35258,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141212.1532", "deps": [] @@ -35253,7 +35272,7 @@ }, "recipe": { "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1440", "deps": [ @@ -35271,7 +35290,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130423.1745", "deps": [ @@ -35288,7 +35307,7 @@ }, "recipe": { "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140324.648", "deps": [] @@ -35303,7 +35322,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.601", "deps": [ @@ -35323,7 +35342,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.901", "deps": [] @@ -35337,7 +35356,7 @@ }, "recipe": { "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130214.1342", "deps": [] @@ -35351,7 +35370,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1348", "deps": [ @@ -35367,7 +35386,7 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1437", "deps": [] @@ -35381,7 +35400,7 @@ }, "recipe": { "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1923", "deps": [ @@ -35397,7 +35416,7 @@ }, "recipe": { "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120331.320", "deps": [] @@ -35411,7 +35430,7 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [ @@ -35428,7 +35447,7 @@ }, "recipe": { "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.1620", "deps": [ @@ -35444,7 +35463,7 @@ }, "recipe": { "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130717.44", "deps": [ @@ -35460,7 +35479,7 @@ }, "recipe": { "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.2316", "deps": [] @@ -35473,7 +35492,7 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130704.932", "deps": [] @@ -35487,7 +35506,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140127.1512", "deps": [ @@ -35503,7 +35522,7 @@ }, "recipe": { "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1441", "deps": [] @@ -35517,7 +35536,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.430", "deps": [ @@ -35534,7 +35553,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.754", "deps": [ @@ -35551,7 +35570,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1208", "deps": [ @@ -35571,7 +35590,7 @@ }, "recipe": { "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.415", "deps": [ @@ -35590,7 +35609,7 @@ }, "recipe": { "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.213", "deps": [] @@ -35604,7 +35623,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.1411", "deps": [ @@ -35620,7 +35639,7 @@ }, "recipe": { "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131119.1645", "deps": [] @@ -35634,7 +35653,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1858", "deps": [ @@ -35651,7 +35670,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.2106", "deps": [ @@ -35667,7 +35686,7 @@ }, "recipe": { "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111208.1222", "deps": [] @@ -35681,7 +35700,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.720", "deps": [ @@ -35697,7 +35716,7 @@ }, "recipe": { "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.1609", "deps": [] @@ -35711,7 +35730,7 @@ }, "recipe": { "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.1204", "deps": [] @@ -35725,7 +35744,7 @@ }, "recipe": { "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.337", "deps": [ @@ -35745,7 +35764,7 @@ }, "recipe": { "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.431", "deps": [] @@ -35759,7 +35778,7 @@ }, "recipe": { "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150518.900", "deps": [] @@ -35773,7 +35792,7 @@ }, "recipe": { "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.2155", "deps": [ @@ -35790,7 +35809,7 @@ }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.625", "deps": [ @@ -35810,7 +35829,7 @@ }, "recipe": { "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1211", "deps": [ @@ -35826,7 +35845,7 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1514", "deps": [ @@ -35841,7 +35860,7 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1539", "deps": [] @@ -35855,7 +35874,7 @@ }, "recipe": { "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141030.1534", "deps": [ @@ -35871,7 +35890,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -35880,14 +35899,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "52a9f660c521aa2601c708b746bc2247d09393fa7c0dc753b65449cfe1f0c159", - "rev": "651173daddfafb6d9a84643d46c4eeb93874fe18" + "sha256": "4af68a5a18ba5940cd679b59f43f29a6089f060dda126201c422929d0f81532e", + "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151207.2054", + "version": "20151214.2155", "deps": [ "emacs", "ht", @@ -35903,7 +35922,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.2046", "deps": [ @@ -35923,7 +35942,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150808.1705", "deps": [ @@ -35940,7 +35959,7 @@ }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2111", "deps": [ @@ -35957,7 +35976,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1719", "deps": [ @@ -35973,7 +35992,7 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.1112", "deps": [] @@ -35986,7 +36005,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.1224", "deps": [ @@ -36003,7 +36022,7 @@ }, "recipe": { "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.937", "deps": [ @@ -36019,7 +36038,7 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.719", "deps": [] @@ -36032,7 +36051,7 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.1902", "deps": [] @@ -36046,7 +36065,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.344", "deps": [ @@ -36062,7 +36081,7 @@ }, "recipe": { "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.2202", "deps": [] @@ -36076,7 +36095,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.946", "deps": [ @@ -36093,7 +36112,7 @@ }, "recipe": { "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1709", "deps": [] @@ -36107,7 +36126,7 @@ }, "recipe": { "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1205", "deps": [] @@ -36121,7 +36140,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.45", "deps": [ @@ -36140,7 +36159,7 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.211", "deps": [ @@ -36157,7 +36176,7 @@ }, "recipe": { "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1140", "deps": [ @@ -36173,7 +36192,7 @@ }, "recipe": { "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140716.2132", "deps": [] @@ -36187,7 +36206,7 @@ }, "recipe": { "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.1459", "deps": [ @@ -36203,7 +36222,7 @@ }, "recipe": { "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.421", "deps": [ @@ -36219,7 +36238,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.1100", "deps": [ @@ -36236,7 +36255,7 @@ }, "recipe": { "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1353", "deps": [ @@ -36252,7 +36271,7 @@ }, "recipe": { "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.458", "deps": [] @@ -36266,7 +36285,7 @@ }, "recipe": { "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.1357", "deps": [] @@ -36280,7 +36299,7 @@ }, "recipe": { "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.1431", "deps": [ @@ -36298,7 +36317,7 @@ }, "recipe": { "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141215.2347", "deps": [ @@ -36314,7 +36333,7 @@ }, "recipe": { "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1010", "deps": [ @@ -36331,7 +36350,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.1006", "deps": [ @@ -36347,7 +36366,7 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1604", "deps": [] @@ -36361,7 +36380,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1120", "deps": [ @@ -36378,7 +36397,7 @@ }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.2140", "deps": [ @@ -36394,7 +36413,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1634", "deps": [ @@ -36410,7 +36429,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.607", "deps": [ @@ -36428,7 +36447,7 @@ }, "recipe": { "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -36439,12 +36458,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/google/mozc.git", - "sha256": "937331c3adb3ebde9e93baf6724fb8013da649b28473a5575bb2db5ccbcef2a0", + "sha256": "997ca4c93dd5b903cdbe3f73bed97d3d3a4ec1e276bbe1d8ac990b3e62ae167f", "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" }, "recipe": { "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.503", "deps": [] @@ -36458,7 +36477,7 @@ }, "recipe": { "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.2314", "deps": [ @@ -36474,7 +36493,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1333", "deps": [] @@ -36488,7 +36507,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.651", "deps": [] @@ -36497,12 +36516,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.624", "deps": [ @@ -36518,7 +36537,7 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1843", "deps": [] @@ -36532,7 +36551,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140221.1753", "deps": [ @@ -36549,7 +36568,7 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120728.913", "deps": [] @@ -36563,7 +36582,7 @@ }, "recipe": { "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.931", "deps": [ @@ -36579,7 +36598,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1206", "deps": [ @@ -36596,7 +36615,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.943", "deps": [ @@ -36613,7 +36632,7 @@ }, "recipe": { "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.307", "deps": [ @@ -36633,7 +36652,7 @@ }, "recipe": { "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150319.1407", "deps": [ @@ -36650,7 +36669,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.1551", "deps": [ @@ -36666,7 +36685,7 @@ }, "recipe": { "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141017.1823", "deps": [] @@ -36680,7 +36699,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141101.1234", "deps": [ @@ -36698,7 +36717,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.853", "deps": [ @@ -36717,7 +36736,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.2352", "deps": [ @@ -36737,7 +36756,7 @@ }, "recipe": { "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1514", "deps": [] @@ -36751,7 +36770,7 @@ }, "recipe": { "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.1257", "deps": [] @@ -36765,7 +36784,7 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1525", "deps": [] @@ -36778,7 +36797,7 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110405.1020", "deps": [] @@ -36792,7 +36811,7 @@ }, "recipe": { "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150419.45", "deps": [ @@ -36804,12 +36823,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -36825,7 +36844,7 @@ }, "recipe": { "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.501", "deps": [ @@ -36842,7 +36861,7 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.1809", "deps": [ @@ -36859,7 +36878,7 @@ }, "recipe": { "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.401", "deps": [ @@ -36875,7 +36894,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.731", "deps": [ @@ -36891,7 +36910,7 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1035", "deps": [] @@ -36904,7 +36923,7 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -36918,7 +36937,7 @@ }, "recipe": { "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.524", "deps": [] @@ -36932,7 +36951,7 @@ }, "recipe": { "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.2229", "deps": [] @@ -36946,7 +36965,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141201.323", "deps": [ @@ -36962,7 +36981,7 @@ }, "recipe": { "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2030", "deps": [ @@ -36979,7 +36998,7 @@ }, "recipe": { "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.228", "deps": [] @@ -36993,7 +37012,7 @@ }, "recipe": { "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.2238", "deps": [ @@ -37013,7 +37032,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.606", "deps": [] @@ -37022,14 +37041,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "99c88f0d206ce35ab5da19fa9108cffd49a6e5141e6b2753b67c29b8ed03794f", - "rev": "d61b7dfb2b588997efd9d11d3b248c874bceda52" + "sha256": "977fead7e3cadfc0059f24a35863c2eb9fb3ee0ca0a94ccd119dec2589a71ffc", + "rev": "a456dd7948a25da8ff007a142cf1325b4855d908" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151116.2106", + "version": "20151207.1116", "deps": [ "cl-lib", "dash", @@ -37046,7 +37065,7 @@ }, "recipe": { "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.216", "deps": [] @@ -37060,7 +37079,7 @@ }, "recipe": { "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1203", "deps": [ @@ -37076,7 +37095,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.1708", "deps": [] @@ -37090,7 +37109,7 @@ }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.2301", "deps": [] @@ -37104,7 +37123,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.1617", "deps": [ @@ -37121,7 +37140,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101130.648", "deps": [] @@ -37130,14 +37149,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "bf5346e0b1c427e35fc35e72f1461d7d882fb4f19f16fd2ffa7c7890bb503ab9", - "rev": "8eada5a95d18ad3a5d77d18de9a304877f952948" + "sha256": "e4433626668568daa8f52040923c910a9518f33d3529df869322ca81161ea9ff", + "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151115.2235", + "version": "20151215.1153", "deps": [] }, "ido-migemo": { @@ -37149,7 +37168,7 @@ }, "recipe": { "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1744", "deps": [ @@ -37165,7 +37184,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.507", "deps": [ @@ -37181,7 +37200,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.2135", "deps": [ @@ -37197,7 +37216,7 @@ }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.816", "deps": [ @@ -37213,7 +37232,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1935", "deps": [ @@ -37229,7 +37248,7 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.121", "deps": [ @@ -37245,7 +37264,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1537", "deps": [] @@ -37259,7 +37278,7 @@ }, "recipe": { "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.242", "deps": [ @@ -37275,7 +37294,7 @@ }, "recipe": { "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.344", "deps": [ @@ -37291,7 +37310,7 @@ }, "recipe": { "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1", "deps": [ @@ -37308,7 +37327,7 @@ }, "recipe": { "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131007.2153", "deps": [] @@ -37322,7 +37341,7 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2121", "deps": [ @@ -37338,7 +37357,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.1944", "deps": [] @@ -37352,7 +37371,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130309.345", "deps": [ @@ -37368,7 +37387,7 @@ }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.231", "deps": [ @@ -37387,7 +37406,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150524.1205", "deps": [ @@ -37403,7 +37422,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.2033", "deps": [] @@ -37417,7 +37436,7 @@ }, "recipe": { "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.1344", "deps": [] @@ -37431,7 +37450,7 @@ }, "recipe": { "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.341", "deps": [] @@ -37445,7 +37464,7 @@ }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.2254", "deps": [ @@ -37462,7 +37481,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -37480,7 +37499,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140707.626", "deps": [] @@ -37494,7 +37513,7 @@ }, "recipe": { "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130217.443", "deps": [] @@ -37508,7 +37527,7 @@ }, "recipe": { "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.916", "deps": [ @@ -37524,7 +37543,7 @@ }, "recipe": { "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120715.409", "deps": [] @@ -37538,7 +37557,7 @@ }, "recipe": { "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120505.908", "deps": [] @@ -37552,7 +37571,7 @@ }, "recipe": { "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.2324", "deps": [ @@ -37569,7 +37588,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.714", "deps": [ @@ -37587,7 +37606,7 @@ }, "recipe": { "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130809.447", "deps": [] @@ -37601,7 +37620,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.28", "deps": [] @@ -37615,7 +37634,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.351", "deps": [ @@ -37634,7 +37653,7 @@ }, "recipe": { "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.706", "deps": [ @@ -37651,7 +37670,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1955", "deps": [ @@ -37667,7 +37686,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1609", "deps": [ @@ -37683,7 +37702,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.604", "deps": [ @@ -37699,7 +37718,7 @@ }, "recipe": { "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.715", "deps": [] @@ -37713,7 +37732,7 @@ }, "recipe": { "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.511", "deps": [ @@ -37729,7 +37748,7 @@ }, "recipe": { "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.407", "deps": [ @@ -37746,7 +37765,7 @@ }, "recipe": { "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.541", "deps": [ @@ -37764,7 +37783,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.936", "deps": [ @@ -37785,7 +37804,7 @@ }, "recipe": { "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.754", "deps": [ @@ -37801,7 +37820,7 @@ }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1331", "deps": [] @@ -37815,7 +37834,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.851", "deps": [ @@ -37833,7 +37852,7 @@ }, "recipe": { "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.704", "deps": [] @@ -37847,7 +37866,7 @@ }, "recipe": { "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.1045", "deps": [] @@ -37861,7 +37880,7 @@ }, "recipe": { "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.917", "deps": [] @@ -37875,7 +37894,7 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1022", "deps": [] @@ -37889,7 +37908,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1112", "deps": [] @@ -37903,7 +37922,7 @@ }, "recipe": { "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1620", "deps": [ @@ -37920,7 +37939,7 @@ }, "recipe": { "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1310", "deps": [ @@ -37939,7 +37958,7 @@ }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.241", "deps": [ @@ -37955,7 +37974,7 @@ }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1201", "deps": [ @@ -37972,7 +37991,7 @@ }, "recipe": { "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120120.516", "deps": [] @@ -37986,7 +38005,7 @@ }, "recipe": { "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131112.1052", "deps": [] @@ -38000,7 +38019,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.530", "deps": [ @@ -38018,7 +38037,7 @@ }, "recipe": { "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1547", "deps": [ @@ -38034,7 +38053,7 @@ }, "recipe": { "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.2250", "deps": [] @@ -38048,7 +38067,7 @@ }, "recipe": { "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.2131", "deps": [ @@ -38065,7 +38084,7 @@ }, "recipe": { "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.413", "deps": [] @@ -38079,7 +38098,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140524.358", "deps": [ @@ -38095,7 +38114,7 @@ }, "recipe": { "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.1246", "deps": [] @@ -38109,7 +38128,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.1234", "deps": [] @@ -38123,7 +38142,7 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -38136,7 +38155,7 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140417.2134", "deps": [] @@ -38150,7 +38169,7 @@ }, "recipe": { "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.257", "deps": [ @@ -38166,7 +38185,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2130", "deps": [] @@ -38180,7 +38199,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.452", "deps": [ @@ -38199,7 +38218,7 @@ }, "recipe": { "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140710.426", "deps": [] @@ -38213,7 +38232,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150107.1600", "deps": [] @@ -38227,7 +38246,7 @@ }, "recipe": { "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140113.1624", "deps": [] @@ -38241,7 +38260,7 @@ }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.506", "deps": [] @@ -38255,7 +38274,7 @@ }, "recipe": { "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1437", "deps": [ @@ -38271,7 +38290,7 @@ }, "recipe": { "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140212.502", "deps": [] @@ -38285,7 +38304,7 @@ }, "recipe": { "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.956", "deps": [ @@ -38300,7 +38319,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -38314,7 +38333,7 @@ }, "recipe": { "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.339", "deps": [ @@ -38330,7 +38349,7 @@ }, "recipe": { "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.514", "deps": [] @@ -38343,7 +38362,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.1911", "deps": [] @@ -38357,7 +38376,7 @@ }, "recipe": { "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1539", "deps": [] @@ -38370,7 +38389,7 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1120", "deps": [] @@ -38384,7 +38403,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.102", "deps": [ @@ -38400,7 +38419,7 @@ }, "recipe": { "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.2249", "deps": [ @@ -38418,7 +38437,7 @@ }, "recipe": { "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.30", "deps": [ @@ -38434,7 +38453,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1033", "deps": [ @@ -38451,7 +38470,7 @@ }, "recipe": { "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.846", "deps": [ @@ -38468,7 +38487,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1342", "deps": [ @@ -38484,7 +38503,7 @@ }, "recipe": { "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140204.1354", "deps": [] @@ -38498,7 +38517,7 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.1423", "deps": [ @@ -38514,7 +38533,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.848", "deps": [ @@ -38535,7 +38554,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.815", "deps": [] @@ -38549,7 +38568,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.313", "deps": [] @@ -38563,7 +38582,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2211", "deps": [ @@ -38579,7 +38598,7 @@ }, "recipe": { "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.2346", "deps": [ @@ -38596,7 +38615,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150625.1723", "deps": [ @@ -38613,7 +38632,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.623", "deps": [ @@ -38629,7 +38648,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1542", "deps": [ @@ -38645,7 +38664,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080905.54", "deps": [] @@ -38659,7 +38678,7 @@ }, "recipe": { "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130418.1439", "deps": [ @@ -38675,7 +38694,7 @@ }, "recipe": { "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150521.1556", "deps": [] @@ -38689,7 +38708,7 @@ }, "recipe": { "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130811.351", "deps": [] @@ -38703,7 +38722,7 @@ }, "recipe": { "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140715.1101", "deps": [] @@ -38717,7 +38736,7 @@ }, "recipe": { "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.608", "deps": [ @@ -38734,7 +38753,7 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.42", "deps": [ @@ -38751,7 +38770,7 @@ }, "recipe": { "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140722.15", "deps": [] @@ -38765,7 +38784,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140610.34", "deps": [ @@ -38782,7 +38801,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.504", "deps": [] @@ -38796,7 +38815,7 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141031.133", "deps": [] @@ -38809,7 +38828,7 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1605", "deps": [] @@ -38823,7 +38842,7 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120510.1900", "deps": [] @@ -38837,7 +38856,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.912", "deps": [ @@ -38854,7 +38873,7 @@ }, "recipe": { "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.742", "deps": [ @@ -38870,7 +38889,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.1725", "deps": [] @@ -38884,7 +38903,7 @@ }, "recipe": { "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120928.2054", "deps": [] @@ -38893,14 +38912,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "191a3a4680d71de1d687d43d4a0b0311d4cb47163c6eae50f6f0c14242fd6cfc", - "rev": "5d53a13bd193653728e74102c81aa931b780c9a9" + "sha256": "b2443f2f9a7a928c6adb19464c7f350cc7237447df20b82bb3404206f98651d0", + "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150818.118", + "version": "20151214.1129", "deps": [] }, "xtest": { @@ -38912,7 +38931,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.1106", "deps": [ @@ -38928,7 +38947,7 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.1620", "deps": [] @@ -38941,7 +38960,7 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140901.1335", "deps": [] @@ -38955,7 +38974,7 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130828.919", "deps": [] @@ -38964,14 +38983,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/codingteam/pacmacs.el.git", - "sha256": "4fc1f6ac82ff628dcf909f937095167433d9e927d9fc1db4d4e16ddd8c80b877", - "rev": "4ce9773129536b635474ac7466d4b7b9e0eb4458" + "sha256": "0da75b7f472f8fd23eac727a0cbc643e5a3fe41915fb6573e2760e7abef60f91", + "rev": "c7a3a4cbacc7c6961fcfd7b35e3ff4c07d14a126" }, "recipe": { "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.410", + "version": "20151214.1315", "deps": [ "cl-lib", "dash", @@ -38989,7 +39008,7 @@ }, "recipe": { "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1741", "deps": [] @@ -39003,7 +39022,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150912.308", "deps": [ @@ -39020,7 +39039,7 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131113.2018", "deps": [] @@ -39034,7 +39053,7 @@ }, "recipe": { "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.326", "deps": [] @@ -39043,14 +39062,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.705", + "version": "20151215.1708", "deps": [ "async", "dash", @@ -39064,14 +39083,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/sly.git", - "sha256": "e98699c11f8e22ed885fe2348a49bec0b87cc8c9849537947138eb2d1913775c", - "rev": "8533961ecd828e162dc26b065922264a3b7ba210" + "sha256": "fd46ff9f20f2389532c2054134d2a37572ee995479632e78d5c281d905626356", + "rev": "341fde694b11b72678fd991beaaf4ebd2bface69" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1717", + "version": "20151215.854", "deps": [ "emacs" ] @@ -39085,7 +39104,7 @@ }, "recipe": { "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100517.120", "deps": [] @@ -39099,7 +39118,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1744", "deps": [ @@ -39116,7 +39135,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.448", "deps": [] @@ -39130,7 +39149,7 @@ }, "recipe": { "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.554", "deps": [ @@ -39147,7 +39166,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.424", "deps": [ @@ -39164,7 +39183,7 @@ }, "recipe": { "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140911.1608", "deps": [] @@ -39178,7 +39197,7 @@ }, "recipe": { "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140421.1611", "deps": [ @@ -39194,7 +39213,7 @@ }, "recipe": { "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.413", "deps": [ @@ -39210,7 +39229,7 @@ }, "recipe": { "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140319.1700", "deps": [ @@ -39226,7 +39245,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.957", "deps": [ @@ -39243,7 +39262,7 @@ }, "recipe": { "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100703.658", "deps": [] @@ -39257,7 +39276,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140308.525", "deps": [ @@ -39273,7 +39292,7 @@ }, "recipe": { "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120718.2238", "deps": [] @@ -39287,7 +39306,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130719.456", "deps": [] @@ -39301,7 +39320,7 @@ }, "recipe": { "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.1007", "deps": [ @@ -39318,7 +39337,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1028", "deps": [ @@ -39336,7 +39355,7 @@ }, "recipe": { "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.500", "deps": [] @@ -39350,7 +39369,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.238", "deps": [ @@ -39366,7 +39385,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.639", "deps": [ @@ -39385,7 +39404,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.1302", "deps": [ @@ -39402,7 +39421,7 @@ }, "recipe": { "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.347", "deps": [ @@ -39419,7 +39438,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141215.623", "deps": [] @@ -39433,7 +39452,7 @@ }, "recipe": { "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130819.427", "deps": [] @@ -39447,7 +39466,7 @@ }, "recipe": { "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.2308", "deps": [ @@ -39463,7 +39482,7 @@ }, "recipe": { "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1435", "deps": [ @@ -39480,7 +39499,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.323", "deps": [ @@ -39497,7 +39516,7 @@ }, "recipe": { "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1532", "deps": [ @@ -39516,7 +39535,7 @@ }, "recipe": { "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -39533,7 +39552,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.508", "deps": [ @@ -39551,7 +39570,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110206.1430", "deps": [] @@ -39565,7 +39584,7 @@ }, "recipe": { "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120629.1313", "deps": [] @@ -39579,7 +39598,7 @@ }, "recipe": { "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121202.1103", "deps": [] @@ -39593,7 +39612,7 @@ }, "recipe": { "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.1016", "deps": [] @@ -39606,7 +39625,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -39620,7 +39639,7 @@ }, "recipe": { "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.307", "deps": [ @@ -39635,7 +39654,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.514", "deps": [ @@ -39651,7 +39670,7 @@ }, "recipe": { "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1139", "deps": [] @@ -39665,7 +39684,7 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.657", "deps": [ @@ -39682,7 +39701,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1306", "deps": [ @@ -39694,12 +39713,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/skeeto/elfeed.git", - "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", - "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1724", "deps": [ @@ -39712,14 +39731,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/raghavgautam/osx-lib.git", - "sha256": "4132b0a5640c965208278bc3802acef95f126a1c4f1f857949620c444f175da6", - "rev": "22ce16c48f81a9fa791d797ceb8c025855a5b7b9" + "sha256": "c6732025bdcdd8793bfab73a84a1898314750aef4620f564655e39f3f38d52e3", + "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671" }, "recipe": { "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.2350", + "version": "20151214.1857", "deps": [ "emacs" ] @@ -39733,7 +39752,7 @@ }, "recipe": { "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1731", "deps": [ @@ -39749,7 +39768,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1507", "deps": [ @@ -39766,7 +39785,7 @@ }, "recipe": { "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130804.610", "deps": [] @@ -39775,12 +39794,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1953", "deps": [ @@ -39797,7 +39816,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2341", "deps": [] @@ -39811,7 +39830,7 @@ }, "recipe": { "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.1119", "deps": [] @@ -39825,7 +39844,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1845", "deps": [ @@ -39842,7 +39861,7 @@ }, "recipe": { "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.226", "deps": [] @@ -39856,7 +39875,7 @@ }, "recipe": { "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110508.231", "deps": [] @@ -39870,7 +39889,7 @@ }, "recipe": { "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.430", "deps": [] @@ -39884,7 +39903,7 @@ }, "recipe": { "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.338", "deps": [] @@ -39893,12 +39912,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.618", "deps": [ @@ -39916,7 +39935,7 @@ }, "recipe": { "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.851", "deps": [ @@ -39933,7 +39952,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.2200", "deps": [ @@ -39950,7 +39969,7 @@ }, "recipe": { "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140224.959", "deps": [ @@ -39968,7 +39987,7 @@ }, "recipe": { "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.703", "deps": [ @@ -39984,7 +40003,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2321", "deps": [ @@ -40001,7 +40020,7 @@ }, "recipe": { "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.758", "deps": [] @@ -40015,7 +40034,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140616.315", "deps": [] @@ -40029,7 +40048,7 @@ }, "recipe": { "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1830", "deps": [] @@ -40043,7 +40062,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.929", "deps": [ @@ -40060,7 +40079,7 @@ }, "recipe": { "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141107.1006", "deps": [ @@ -40076,7 +40095,7 @@ }, "recipe": { "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1717", "deps": [] @@ -40090,7 +40109,7 @@ }, "recipe": { "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140908.1552", "deps": [ @@ -40107,7 +40126,7 @@ }, "recipe": { "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.1155", "deps": [ @@ -40123,7 +40142,7 @@ }, "recipe": { "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140812.1913", "deps": [] @@ -40137,7 +40156,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150227.1156", "deps": [] @@ -40151,7 +40170,7 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.133", "deps": [] @@ -40164,7 +40183,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1752", "deps": [] @@ -40178,7 +40197,7 @@ }, "recipe": { "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.518", "deps": [ @@ -40195,7 +40214,7 @@ }, "recipe": { "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.2236", "deps": [] @@ -40209,7 +40228,7 @@ }, "recipe": { "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130623.1833", "deps": [] @@ -40222,7 +40241,7 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141029.1049", "deps": [] @@ -40236,7 +40255,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.2339", "deps": [ @@ -40255,7 +40274,7 @@ }, "recipe": { "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.150", "deps": [ @@ -40271,7 +40290,7 @@ }, "recipe": { "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1045", "deps": [] @@ -40285,7 +40304,7 @@ }, "recipe": { "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1353", "deps": [] @@ -40299,7 +40318,7 @@ }, "recipe": { "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141014.1857", "deps": [] @@ -40313,7 +40332,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.852", "deps": [] @@ -40327,7 +40346,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141119.627", "deps": [] @@ -40341,7 +40360,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140316.1837", "deps": [ @@ -40357,7 +40376,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150420.621", "deps": [] @@ -40371,7 +40390,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150415.1426", "deps": [] @@ -40385,7 +40404,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.35", "deps": [] @@ -40399,7 +40418,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.1312", "deps": [ @@ -40415,7 +40434,7 @@ }, "recipe": { "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150131.1557", "deps": [] @@ -40429,7 +40448,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.1144", "deps": [] @@ -40443,7 +40462,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.848", "deps": [] @@ -40457,7 +40476,7 @@ }, "recipe": { "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140317.2318", "deps": [ @@ -40473,7 +40492,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.747", "deps": [] @@ -40487,7 +40506,7 @@ }, "recipe": { "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1340", "deps": [ @@ -40498,14 +40517,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tbanel/orgtblasciiplot.git", - "sha256": "2bc851eb3edefe5deb3343db90bb48ff02a22c066d6a6a49346104a49ab08ba0", - "rev": "36576ab5eccb844af62a8774e1fc9b4894b63b84" + "sha256": "d9812e1fab02a35ae1a49ee2144a49bee0c0e32a8954a91bc1a4bbe5c1c9b241", + "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e" }, "recipe": { "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150125.1629", + "version": "20151215.1551", "deps": [] }, "kill-ring-search": { @@ -40517,7 +40536,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140422.1055", "deps": [] @@ -40531,7 +40550,7 @@ }, "recipe": { "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.941", "deps": [ @@ -40547,7 +40566,7 @@ }, "recipe": { "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.946", "deps": [ @@ -40565,7 +40584,7 @@ }, "recipe": { "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.745", "deps": [] @@ -40579,7 +40598,7 @@ }, "recipe": { "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150129.446", "deps": [] @@ -40593,7 +40612,7 @@ }, "recipe": { "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.804", "deps": [ @@ -40611,7 +40630,7 @@ }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1137", "deps": [ @@ -40630,7 +40649,7 @@ }, "recipe": { "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.744", "deps": [] @@ -40644,7 +40663,7 @@ }, "recipe": { "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.1723", "deps": [ @@ -40660,7 +40679,7 @@ }, "recipe": { "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.940", "deps": [] @@ -40674,7 +40693,7 @@ }, "recipe": { "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.300", "deps": [] @@ -40688,7 +40707,7 @@ }, "recipe": { "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -40706,7 +40725,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140331.1829", "deps": [] @@ -40720,7 +40739,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.318", "deps": [ @@ -40742,7 +40761,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.730", "deps": [] @@ -40756,7 +40775,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1037", "deps": [ @@ -40772,7 +40791,7 @@ }, "recipe": { "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.650", "deps": [ @@ -40790,7 +40809,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.727", "deps": [ @@ -40808,7 +40827,7 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.2305", "deps": [] @@ -40822,7 +40841,7 @@ }, "recipe": { "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140101.1754", "deps": [] @@ -40836,7 +40855,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.1332", "deps": [ @@ -40852,7 +40871,7 @@ }, "recipe": { "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131202.1308", "deps": [ @@ -40868,7 +40887,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.20", "deps": [ @@ -40885,7 +40904,7 @@ }, "recipe": { "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150429.1314", "deps": [ @@ -40901,7 +40920,7 @@ }, "recipe": { "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150123.1800", "deps": [] @@ -40915,7 +40934,7 @@ }, "recipe": { "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.1715", "deps": [ @@ -40932,7 +40951,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.400", "deps": [] @@ -40946,7 +40965,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.808", "deps": [ @@ -40959,13 +40978,13 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/files+.el", - "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v" }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151210.2104", + "version": "20151215.858", "deps": [] }, "tracwiki-mode": { @@ -40977,7 +40996,7 @@ }, "recipe": { "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1021", "deps": [ @@ -40993,7 +41012,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.732", "deps": [ @@ -41005,14 +41024,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "d4dd31f75fa18e39763fd8bd0c3682a6f6146cf69e9eeb95054e984db16f9381", - "rev": "0164a0fb69fa9f82589eb45acbd402a43300c88d" + "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151210.1429", + "version": "20151215.1125", "deps": [ "emacs" ] @@ -41026,7 +41045,7 @@ }, "recipe": { "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131207.1132", "deps": [ @@ -41042,7 +41061,7 @@ }, "recipe": { "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.814", "deps": [ @@ -41058,7 +41077,7 @@ }, "recipe": { "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.2110", "deps": [] @@ -41072,7 +41091,7 @@ }, "recipe": { "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.1714", "deps": [] @@ -41086,7 +41105,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.515", "deps": [ @@ -41103,7 +41122,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1216", "deps": [ @@ -41119,7 +41138,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150226.811", "deps": [] @@ -41133,7 +41152,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1520", "deps": [] @@ -41142,12 +41161,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", - "sha256": "51197d3b0f4eb46b73bd41678a0fac1ed8a2b0e8eeba8a2559fe400aaa6cbcf6", - "rev": "14e3430c1fe6c351eda23f874bc4a2b0ee5c5de9" + "sha256": "578fd61aadec15df8d62a2d413e8cd7277a379f2dde56d76145ee0fcc59554b7", + "rev": "15e4b57b78bf643bb56e5000078030cbb5c66e2a" }, "recipe": { "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.2031", "deps": [] @@ -41161,7 +41180,7 @@ }, "recipe": { "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150301.1828", "deps": [ @@ -41177,7 +41196,7 @@ }, "recipe": { "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1257", "deps": [ @@ -41194,7 +41213,7 @@ }, "recipe": { "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1336", "deps": [ @@ -41210,7 +41229,7 @@ }, "recipe": { "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140409.252", "deps": [ @@ -41226,7 +41245,7 @@ }, "recipe": { "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.1137", "deps": [] @@ -41240,7 +41259,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.1345", "deps": [ @@ -41256,7 +41275,7 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130906.634", "deps": [] @@ -41266,11 +41285,11 @@ "tag": "fetchsvn", "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "255503" + "rev": "255720" }, "recipe": { "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.638", "deps": [ @@ -41286,7 +41305,7 @@ }, "recipe": { "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150130.425", "deps": [] @@ -41300,7 +41319,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.751", "deps": [ @@ -41316,7 +41335,7 @@ }, "recipe": { "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.340", "deps": [ @@ -41334,7 +41353,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140916.954", "deps": [] @@ -41348,7 +41367,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150810.439", "deps": [ @@ -41367,7 +41386,7 @@ }, "recipe": { "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.1225", "deps": [] @@ -41381,7 +41400,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.29", "deps": [ @@ -41398,7 +41417,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.1010", "deps": [] @@ -41412,7 +41431,7 @@ }, "recipe": { "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1541", "deps": [] @@ -41426,7 +41445,7 @@ }, "recipe": { "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1213", "deps": [] @@ -41435,12 +41454,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/NixOS/nix.git", - "sha256": "6ad776f3dfe3589aec1ac465facb9cc4e293f77ab9d029b57b052dad85882b4d", - "rev": "32ea8a98986b3f6629628ab2c0f395fef38bcbaa" + "sha256": "abe1ecca47d35a017bad8eeb08519166ba8587ce1b1904bd7d4b8c4c604fdce2", + "rev": "338880ee6fc2d8f55dcbe0f0b7313cd69dc866d0" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.515", "deps": [] @@ -41454,7 +41473,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140514.23", "deps": [ @@ -41471,7 +41490,7 @@ }, "recipe": { "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130711.2011", "deps": [ @@ -41487,7 +41506,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140331.1330", "deps": [ @@ -41503,7 +41522,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141202.2256", "deps": [] @@ -41517,7 +41536,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141114.1514", "deps": [] @@ -41531,7 +41550,7 @@ }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.2236", "deps": [] @@ -41545,7 +41564,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1200", "deps": [ @@ -41562,7 +41581,7 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150319.1655", "deps": [] @@ -41576,7 +41595,7 @@ }, "recipe": { "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.148", "deps": [ @@ -41592,7 +41611,7 @@ }, "recipe": { "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091211.1755", "deps": [] @@ -41605,7 +41624,7 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1600", "deps": [] @@ -41619,7 +41638,7 @@ }, "recipe": { "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141014.2129", "deps": [ @@ -41635,7 +41654,7 @@ }, "recipe": { "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.1233", "deps": [ @@ -41652,7 +41671,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.942", "deps": [] @@ -41666,7 +41685,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.436", "deps": [] @@ -41680,7 +41699,7 @@ }, "recipe": { "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.1448", "deps": [ @@ -41697,7 +41716,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.120", "deps": [ @@ -41713,7 +41732,7 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1649", "deps": [ @@ -41728,7 +41747,7 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.2153", "deps": [] @@ -41742,7 +41761,7 @@ }, "recipe": { "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.957", "deps": [] @@ -41756,7 +41775,7 @@ }, "recipe": { "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140907.1549", "deps": [] @@ -41770,7 +41789,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.1406", "deps": [ @@ -41786,7 +41805,7 @@ }, "recipe": { "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1612", "deps": [] @@ -41800,7 +41819,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.633", "deps": [ @@ -41816,7 +41835,7 @@ }, "recipe": { "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140218.807", "deps": [] @@ -41830,7 +41849,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1517", "deps": [ @@ -41852,7 +41871,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131027.1129", "deps": [ @@ -41868,7 +41887,7 @@ }, "recipe": { "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.406", "deps": [] @@ -41882,7 +41901,7 @@ }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1042", "deps": [ @@ -41901,7 +41920,7 @@ }, "recipe": { "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.418", "deps": [] @@ -41915,7 +41934,7 @@ }, "recipe": { "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121025.601", "deps": [] @@ -41929,7 +41948,7 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1559", "deps": [] @@ -41937,13 +41956,13 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.1244", "deps": [] @@ -41957,7 +41976,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.201", "deps": [ @@ -41974,7 +41993,7 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.533", "deps": [] @@ -41988,7 +42007,7 @@ }, "recipe": { "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130422.811", "deps": [] @@ -42003,7 +42022,7 @@ }, "recipe": { "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1802", "deps": [] @@ -42016,7 +42035,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.232", "deps": [ @@ -42033,7 +42052,7 @@ }, "recipe": { "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150205.1511", "deps": [] @@ -42047,7 +42066,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130525.934", "deps": [ @@ -42063,7 +42082,7 @@ }, "recipe": { "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140531.417", "deps": [ @@ -42080,7 +42099,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140724.145", "deps": [ @@ -42097,7 +42116,7 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.1233", "deps": [] @@ -42110,7 +42129,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1745", "deps": [] @@ -42124,7 +42143,7 @@ }, "recipe": { "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150222.1440", "deps": [] @@ -42137,7 +42156,7 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.855", "deps": [] @@ -42151,7 +42170,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.1135", "deps": [ @@ -42167,7 +42186,7 @@ }, "recipe": { "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.204", "deps": [ @@ -42184,7 +42203,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.714", "deps": [ @@ -42199,12 +42218,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.505", "deps": [ @@ -42221,7 +42240,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140525.547", "deps": [ @@ -42238,7 +42257,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.1308", "deps": [ @@ -42255,7 +42274,7 @@ }, "recipe": { "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130220.603", "deps": [] @@ -42269,7 +42288,7 @@ }, "recipe": { "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120622.937", "deps": [] @@ -42283,7 +42302,7 @@ }, "recipe": { "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.1601", "deps": [] @@ -42297,7 +42316,7 @@ }, "recipe": { "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.947", "deps": [] @@ -42311,7 +42330,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1621", "deps": [] @@ -42325,7 +42344,7 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1802", "deps": [] @@ -42338,7 +42357,7 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121128.243", "deps": [] @@ -42347,12 +42366,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.705", "deps": [ @@ -42370,7 +42389,7 @@ }, "recipe": { "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140123.316", "deps": [] @@ -42384,7 +42403,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.1550", "deps": [ @@ -42395,12 +42414,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/milkypostman/melpa.git", - "sha256": "3a92f4c5e4608abb563033d1fb0dbc336592875a8a9c1d159be7c3271b527923", - "rev": "f0258cc41de809b67811a5dde3d475c429df0695" + "sha256": "61b1735be10059ec6180f95d7cb0228605a82f28a30c83772ea80f7f3b33219d", + "rev": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "recipe": { "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1644", "deps": [ @@ -42416,7 +42435,7 @@ }, "recipe": { "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1757", "deps": [] @@ -42430,7 +42449,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.151", "deps": [ @@ -42448,7 +42467,7 @@ }, "recipe": { "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.725", "deps": [ @@ -42464,7 +42483,7 @@ }, "recipe": { "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2151", "deps": [ @@ -42479,7 +42498,7 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -42493,7 +42512,7 @@ }, "recipe": { "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140126.301", "deps": [] @@ -42507,7 +42526,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140112.559", "deps": [] @@ -42521,7 +42540,7 @@ }, "recipe": { "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.2254", "deps": [] @@ -42535,7 +42554,7 @@ }, "recipe": { "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.944", "deps": [] @@ -42549,7 +42568,7 @@ }, "recipe": { "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1500", "deps": [] @@ -42563,7 +42582,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.147", "deps": [ @@ -42581,7 +42600,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1111", "deps": [ @@ -42597,7 +42616,7 @@ }, "recipe": { "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.1522", "deps": [ @@ -42615,7 +42634,7 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130122.1522", "deps": [] @@ -42629,7 +42648,7 @@ }, "recipe": { "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.221", "deps": [] @@ -42643,7 +42662,7 @@ }, "recipe": { "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1758", "deps": [ @@ -42664,7 +42683,7 @@ }, "recipe": { "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1046", "deps": [] @@ -42677,7 +42696,7 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1748", "deps": [] @@ -42691,7 +42710,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.55", "deps": [ @@ -42708,7 +42727,7 @@ }, "recipe": { "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.214", "deps": [ @@ -42724,7 +42743,7 @@ }, "recipe": { "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.958", "deps": [] @@ -42738,7 +42757,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.1928", "deps": [] @@ -42752,7 +42771,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.240", "deps": [ @@ -42768,7 +42787,7 @@ }, "recipe": { "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.1633", "deps": [] @@ -42782,7 +42801,7 @@ }, "recipe": { "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140401.203", "deps": [] @@ -42796,7 +42815,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.2204", "deps": [ @@ -42812,7 +42831,7 @@ }, "recipe": { "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.932", "deps": [ @@ -42829,7 +42848,7 @@ }, "recipe": { "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1156", "deps": [] @@ -42843,7 +42862,7 @@ }, "recipe": { "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.1117", "deps": [] @@ -42857,7 +42876,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140827.32", "deps": [ @@ -42874,7 +42893,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1400", "deps": [ @@ -42892,7 +42911,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.1611", "deps": [ @@ -42908,7 +42927,7 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.527", "deps": [] @@ -42922,7 +42941,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.56", "deps": [ @@ -42938,7 +42957,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1420", "deps": [] @@ -42952,7 +42971,7 @@ }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140705.1429", "deps": [] @@ -42966,7 +42985,7 @@ }, "recipe": { "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140330.1056", "deps": [] @@ -42980,7 +42999,7 @@ }, "recipe": { "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1950", "deps": [ @@ -42997,7 +43016,7 @@ }, "recipe": { "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140723.37", "deps": [] @@ -43006,14 +43025,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "f45f10ecbaba25a2438c6ff00641e4308ace127234cd41e4da4ed75f3c3c826f", - "rev": "716237f66ee784433756bb571416fcda480fb932" + "sha256": "f7db3f7de53ea4fd2b8d33574b9dbf352a2eca91ecfd9a76d110497f7d3a3fe5", + "rev": "492e8ab16c3e69d2850e1dbeb2e2f7224ce8a58a" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.839", + "version": "20151214.1527", "deps": [ "clojure-mode", "emacs", @@ -43031,7 +43050,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1551", "deps": [] @@ -43044,7 +43063,7 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20051013.1256", "deps": [] @@ -43058,7 +43077,7 @@ }, "recipe": { "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.1116", "deps": [ @@ -43074,7 +43093,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2235", "deps": [ @@ -43092,7 +43111,7 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120211.857", "deps": [] @@ -43105,7 +43124,7 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -43119,7 +43138,7 @@ }, "recipe": { "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.547", "deps": [ @@ -43136,7 +43155,7 @@ }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140817.611", "deps": [ @@ -43148,14 +43167,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/xahlee/xah-find.git", - "sha256": "d8ac8b3bd54c6163b86b28a9e3cabc0b815e572596e842b0503dfe13df72d852", - "rev": "f67a86e3e9dfb1709e359283bc5630fc15a22e95" + "sha256": "1bf37853c6d374c57d911bee6e5ad84e34cc1790ffd1fd4ca160d880e0aebb15", + "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4" }, "recipe": { "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151209.2317", + "version": "20151214.1257", "deps": [] }, "wandbox": { @@ -43167,7 +43186,7 @@ }, "recipe": { "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.1024", "deps": [ @@ -43185,7 +43204,7 @@ }, "recipe": { "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130923.1454", "deps": [] @@ -43199,7 +43218,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303.228", "deps": [ @@ -43220,7 +43239,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1154", "deps": [ @@ -43237,7 +43256,7 @@ }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.705", "deps": [ @@ -43253,7 +43272,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130524.643", "deps": [] @@ -43267,7 +43286,7 @@ }, "recipe": { "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1843", "deps": [ @@ -43283,7 +43302,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.717", "deps": [ @@ -43300,7 +43319,7 @@ }, "recipe": { "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130822.48", "deps": [] @@ -43314,7 +43333,7 @@ }, "recipe": { "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.1204", "deps": [] @@ -43328,7 +43347,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.957", "deps": [ @@ -43341,12 +43360,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magnars/buster-mode.git", - "sha256": "52a29be50dce22b0ab9ae7af979308270ba22bb8f8aada1db9a4ba8f60cc6fb6", + "sha256": "10c1dd9f7d2c6d66bdaf6beb97f0130f6b5a7743161a62c1a86de2245dba0438", "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" }, "recipe": { "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140928.713", "deps": [] @@ -43360,7 +43379,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.2352", "deps": [ @@ -43376,7 +43395,7 @@ }, "recipe": { "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150406.2202", "deps": [] @@ -43390,7 +43409,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.232", "deps": [ @@ -43408,7 +43427,7 @@ }, "recipe": { "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131112.214", "deps": [] @@ -43422,7 +43441,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.603", "deps": [ @@ -43440,7 +43459,7 @@ }, "recipe": { "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130413.419", "deps": [] @@ -43454,7 +43473,7 @@ }, "recipe": { "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140326.550", "deps": [] @@ -43468,7 +43487,7 @@ }, "recipe": { "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.717", "deps": [ @@ -43479,12 +43498,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140316.617", "deps": [] @@ -43493,14 +43512,14 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/markdown-mode.git", - "sha256": "04bdb250853244ee7d47f098508b3fcc0635fee807c80a9f6db38202ca647a67", - "rev": "8826fe678d80ab0580883d407faaace3fa39fb4a" + "sha256": "9598cac1aec72eb4133bde780488cab417bd0158cb91d5368f619f62d743676f", + "rev": "23113fa13292712899ad66c355dcd44c0ee9055c" }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.1016", + "version": "20151215.1502", "deps": [] }, "sphinx-doc": { @@ -43512,7 +43531,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150616.1350", "deps": [ @@ -43530,7 +43549,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.324", "deps": [ @@ -43548,7 +43567,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1038", "deps": [ @@ -43564,7 +43583,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150410.2025", "deps": [] @@ -43578,7 +43597,7 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.900", "deps": [ @@ -43595,7 +43614,7 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150511.2247", "deps": [ @@ -43610,7 +43629,7 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.658", "deps": [] @@ -43624,7 +43643,7 @@ }, "recipe": { "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1327", "deps": [ @@ -43640,7 +43659,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140405.1827", "deps": [ @@ -43656,7 +43675,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140426.1204", "deps": [] @@ -43670,7 +43689,7 @@ }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1210", "deps": [ @@ -43690,7 +43709,7 @@ }, "recipe": { "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150204.508", "deps": [] @@ -43704,11 +43723,11 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141216.1719", "deps": [ "coffee-mode" ] } -} +} \ No newline at end of file From e21f5f933c7e61f4b3a6687cd9e6062ce19430cd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 06:55:03 -0600 Subject: [PATCH 299/707] emacsPackagesNgGen: use import, not callPackage `callPackage` should only be used for actual packages. Functions, like `emacsPackagesNgGen`, should be `import`ed. This also has the effect of exposing the `override` function provided by `makeScope` so that `emacsPackagesNg.override` overrides the package set instead of overriding the arguments to `emacsPackagesNgGen`. --- pkgs/top-level/all-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 012b7225831..d12a05f83bc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11624,10 +11624,11 @@ let emacs24Packages = recurseIntoAttrs (emacsPackagesGen emacs24 pkgs.emacs24Packages); - emacsPackagesNgGen = emacs: callPackage ./emacs-packages.nix { + emacsPackagesNgGen = emacs: import ./emacs-packages.nix { overrides = (config.emacsPackageOverrides or (p: {})) pkgs; - inherit newScope; + inherit lib newScope stdenv; + inherit fetchFromGitHub fetchgit fetchhg fetchurl; inherit emacs elpaPackages melpaPackages melpaStablePackages; trivialBuild = callPackage ../build-support/emacs/trivial.nix { From bf9b4b03d5be5cf96cbc5fd694f85dcfe9253428 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:13:46 -0600 Subject: [PATCH 300/707] elpa-packages: mark broken packages These packages fail to build on Hydra. --- .../editors/emacs-modes/elpa-packages.nix | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 6c48969a9ef..00f127a2992 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -51,4 +51,25 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; - in super // { inherit elpaBuild; elpaPackage = super; } + + elpaPackages = super // { + ace-window = markBroken super.ace-window; + ada-mode = markBroken super.ada-mode; + beacon = markBroken super.beacon; + bug-hunter = markBroken super.bug-hunter; + company-math = markBroken super.company-math; + company-statistics = markBroken super.company-statistics; + context-coloring = markBroken super.context-coloring; + dict-tree = markBroken super.dict-tree; + el-search = markBroken super.el-search; + ergoemacs-mode = markBroken super.ergoemacs-mode; + exwm = markBroken super.exwm; + gnugo = markBroken super.gnugo; + iterators = markBroken super.iterators; + midi-kbd = markBroken super.mini-kbd; + stream = markBroken super.stream; + tNFA = markBroken super.tNFA; + trie = markBroken super.trie; + xelb = markBroken super.xelb; + }; + in elpaPackages // { inherit elpaBuild elpaPackages; } From ccc8265d44482c338c5beeccb6d777f79d5aca73 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:22:25 -0600 Subject: [PATCH 301/707] melpa-stable-packages: 2015-12-16 Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`. --- .../emacs-modes/melpa-stable-packages.json | 3022 +++++++++-------- 1 file changed, 1521 insertions(+), 1501 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index ccf76ad40e1..e4e1755be3d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -8,7 +8,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -22,7 +22,7 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -36,7 +36,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.8", "deps": [ @@ -52,7 +52,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.16", "deps": [] @@ -66,7 +66,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -83,7 +83,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [] @@ -97,7 +97,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -116,7 +116,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -129,11 +129,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", - "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w" }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -142,15 +142,17 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "7bf27290c33b017e8cc557dbe11c11f2f1d1156dba4947592a2c2c738fdf6ff4", - "rev": "8d395a5aef72e58dd3256ba3f70c912c0e6d059a" + "sha256": "12d3d757ef71a4ea5fa4d5418bb3a673c3410eb441365e3910427d619875c73b", + "rev": "b6953102d022adb60678eb5c4186008de987cdce" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "0.2", - "deps": [] + "version": "0.3", + "deps": [ + "emacs" + ] }, "jammer": { "fetch": { @@ -161,7 +163,7 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -174,7 +176,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -190,7 +192,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.26", "deps": [ @@ -206,7 +208,7 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -220,7 +222,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -239,7 +241,7 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -252,7 +254,7 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -266,7 +268,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -283,7 +285,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -301,7 +303,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.5", "deps": [ @@ -317,7 +319,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -331,7 +333,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.1", "deps": [ @@ -348,7 +350,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -364,7 +366,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -378,7 +380,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.9", "deps": [ @@ -396,7 +398,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -410,7 +412,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.41", "deps": [ @@ -429,7 +431,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -447,7 +449,7 @@ }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -464,7 +466,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -480,7 +482,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.63", "deps": [ @@ -496,7 +498,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -510,7 +512,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -526,7 +528,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -542,7 +544,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -556,7 +558,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -573,7 +575,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -592,7 +594,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -608,7 +610,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -625,7 +627,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -643,7 +645,7 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -657,7 +659,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -671,7 +673,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.5", "deps": [ @@ -687,7 +689,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.4.3", "deps": [ @@ -703,7 +705,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -717,7 +719,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.2", "deps": [ @@ -733,7 +735,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.3", "deps": [ @@ -751,7 +753,7 @@ }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -770,7 +772,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.1", "deps": [ @@ -790,7 +792,7 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2_24", "deps": [] @@ -804,7 +806,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.6", "deps": [ @@ -821,7 +823,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -835,7 +837,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -846,12 +848,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -870,7 +872,7 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [] @@ -883,7 +885,7 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -897,7 +899,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [] @@ -911,7 +913,7 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0Alpha", "deps": [ @@ -927,7 +929,7 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -943,7 +945,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -961,7 +963,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16", "deps": [ @@ -978,7 +980,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.5", "deps": [ @@ -994,7 +996,7 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1008,7 +1010,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1024,7 +1026,7 @@ }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [ @@ -1043,7 +1045,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1059,7 +1061,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -1073,7 +1075,7 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -1088,7 +1090,7 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1102,7 +1104,7 @@ }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -1120,7 +1122,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -1134,7 +1136,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -1150,7 +1152,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7", "deps": [] @@ -1164,7 +1166,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -1178,7 +1180,7 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1193,7 +1195,7 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1207,7 +1209,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -1221,7 +1223,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.5.2", "deps": [ @@ -1239,7 +1241,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -1253,7 +1255,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -1271,7 +1273,7 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1285,7 +1287,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [ @@ -1303,7 +1305,7 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -1317,7 +1319,7 @@ }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -1335,7 +1337,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -1349,7 +1351,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -1365,7 +1367,7 @@ }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.4.0.0", "deps": [ @@ -1381,7 +1383,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -1397,7 +1399,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -1411,7 +1413,7 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.1", "deps": [] @@ -1424,7 +1426,7 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1438,7 +1440,7 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -1453,7 +1455,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -1472,7 +1474,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -1489,7 +1491,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1502,7 +1504,7 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1516,7 +1518,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.4", "deps": [ @@ -1533,7 +1535,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -1547,7 +1549,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1", "deps": [ @@ -1564,7 +1566,7 @@ }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -1581,7 +1583,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.5", "deps": [ @@ -1597,7 +1599,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.9", "deps": [] @@ -1611,7 +1613,7 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.79", "deps": [] @@ -1624,7 +1626,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -1640,7 +1642,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -1657,7 +1659,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.2", "deps": [] @@ -1671,7 +1673,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -1687,7 +1689,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1700,7 +1702,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1713,7 +1715,7 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1727,7 +1729,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -1744,7 +1746,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -1760,7 +1762,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1", "deps": [ @@ -1778,7 +1780,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -1792,7 +1794,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -1806,11 +1808,29 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "24", "deps": [] }, + "gh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/gh.el.git", + "sha256": "04c1aee9517fe7168658623019e2692c39d59e12a100b29637746c73003525ac", + "rev": "33b88251e8989069cc08f3f5d6886635f276f42e" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "0.9.2", + "deps": [ + "eieio", + "logito", + "pcache" + ] + }, "lispy": { "fetch": { "tag": "fetchgit", @@ -1820,7 +1840,7 @@ }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.26.0", "deps": [ @@ -1836,12 +1856,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -1854,7 +1874,7 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1868,7 +1888,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -1884,7 +1904,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -1900,7 +1920,7 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.09", "deps": [ @@ -1917,7 +1937,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -1938,7 +1958,7 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -1951,7 +1971,7 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1965,7 +1985,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -1979,7 +1999,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -1998,7 +2018,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2011,7 +2031,7 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2025,7 +2045,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [] @@ -2039,7 +2059,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [ @@ -2055,7 +2075,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -2074,7 +2094,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -2088,7 +2108,7 @@ }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [] @@ -2102,7 +2122,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -2116,7 +2136,7 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -2129,7 +2149,7 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2143,7 +2163,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -2157,7 +2177,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -2174,7 +2194,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -2188,7 +2208,7 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.10", "deps": [] @@ -2201,7 +2221,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2214,7 +2234,7 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2228,7 +2248,7 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.5", "deps": [ @@ -2243,7 +2263,7 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2257,7 +2277,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -2275,7 +2295,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7", "deps": [] @@ -2289,7 +2309,7 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -2304,7 +2324,7 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2313,12 +2333,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -2334,7 +2354,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.2", "deps": [ @@ -2350,7 +2370,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -2368,7 +2388,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -2382,7 +2402,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -2402,7 +2422,7 @@ }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -2424,7 +2444,7 @@ }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -2440,7 +2460,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -2454,7 +2474,7 @@ }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [ @@ -2471,7 +2491,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -2489,7 +2509,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.3", "deps": [] @@ -2503,7 +2523,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.16", "deps": [ @@ -2519,7 +2539,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.6", "deps": [ @@ -2535,7 +2555,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.2.2", "deps": [] @@ -2549,7 +2569,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -2565,7 +2585,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -2581,7 +2601,7 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -2594,7 +2614,7 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2608,7 +2628,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -2624,7 +2644,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.45", "deps": [ @@ -2640,7 +2660,7 @@ }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -2654,7 +2674,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -2671,7 +2691,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "6.7", "deps": [] @@ -2685,7 +2705,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -2704,7 +2724,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -2718,7 +2738,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -2732,7 +2752,7 @@ }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -2749,7 +2769,7 @@ }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.4", "deps": [ @@ -2767,7 +2787,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -2783,7 +2803,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -2797,7 +2817,7 @@ }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -2814,7 +2834,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -2831,7 +2851,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -2848,7 +2868,7 @@ }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.4", "deps": [ @@ -2864,7 +2884,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -2883,7 +2903,7 @@ }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.12", "deps": [] @@ -2897,7 +2917,7 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.99a", "deps": [ @@ -2913,7 +2933,7 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.04", "deps": [ @@ -2929,7 +2949,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -2945,7 +2965,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -2959,7 +2979,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -2978,7 +2998,7 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.22", "deps": [] @@ -2991,7 +3011,7 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3000,12 +3020,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -3022,7 +3042,7 @@ }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3039,7 +3059,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -3053,7 +3073,7 @@ }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3066,7 +3086,7 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3080,7 +3100,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -3098,7 +3118,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -3114,7 +3134,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -3131,7 +3151,7 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -3149,7 +3169,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.5", "deps": [ @@ -3165,7 +3185,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -3179,7 +3199,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.4", "deps": [] @@ -3193,7 +3213,7 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -3208,7 +3228,7 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3222,7 +3242,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -3240,7 +3260,7 @@ }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.1", "deps": [] @@ -3254,7 +3274,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -3270,7 +3290,7 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3283,7 +3303,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -3298,7 +3318,7 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3312,7 +3332,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -3326,7 +3346,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3340,7 +3360,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -3356,7 +3376,7 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -3369,7 +3389,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3382,7 +3402,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3396,7 +3416,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -3413,7 +3433,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3429,7 +3449,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -3443,7 +3463,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [ @@ -3460,7 +3480,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -3478,7 +3498,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3494,7 +3514,7 @@ }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -3517,7 +3537,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [] @@ -3531,7 +3551,7 @@ }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.12", "deps": [ @@ -3549,7 +3569,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -3567,7 +3587,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3581,7 +3601,7 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -3595,7 +3615,7 @@ }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3609,7 +3629,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -3623,7 +3643,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -3632,12 +3652,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/bufshow.git", - "sha256": "56868174258e16f4778ff77218915116322c06c1264a7e3b1b193d8cafac8485", + "sha256": "41c9aec30bd62fc5e3f6b64b3ced3b9065cfcfdef5db071664f6d5d3b5769451", "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3650,7 +3670,7 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3664,7 +3684,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -3682,7 +3702,7 @@ }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [ @@ -3698,7 +3718,7 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3712,7 +3732,7 @@ }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.3", "deps": [ @@ -3729,7 +3749,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -3746,7 +3766,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3760,7 +3780,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3777,7 +3797,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -3793,7 +3813,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -3807,7 +3827,7 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -3820,7 +3840,7 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3834,7 +3854,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3848,7 +3868,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -3864,7 +3884,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -3878,7 +3898,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.8", "deps": [] @@ -3892,7 +3912,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.0", "deps": [] @@ -3906,7 +3926,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -3920,7 +3940,7 @@ }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.85", "deps": [ @@ -3936,7 +3956,7 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3950,7 +3970,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -3966,7 +3986,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -3980,7 +4000,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.4", "deps": [ @@ -4002,7 +4022,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [ @@ -4019,7 +4039,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [] @@ -4033,7 +4053,7 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.7", "deps": [ @@ -4048,7 +4068,7 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4062,7 +4082,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [] @@ -4076,7 +4096,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -4090,7 +4110,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -4104,7 +4124,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.9", "deps": [] @@ -4118,7 +4138,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.8", "deps": [ @@ -4134,7 +4154,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.4.0", "deps": [] @@ -4148,7 +4168,7 @@ }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303", "deps": [ @@ -4164,7 +4184,7 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11.2", "deps": [] @@ -4177,7 +4197,7 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4191,7 +4211,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -4209,7 +4229,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -4227,7 +4247,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.8", "deps": [ @@ -4247,7 +4267,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -4261,7 +4281,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -4278,7 +4298,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -4294,7 +4314,7 @@ }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -4310,7 +4330,7 @@ }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -4328,7 +4348,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [ @@ -4344,7 +4364,7 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4358,7 +4378,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -4374,7 +4394,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4388,7 +4408,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -4402,7 +4422,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -4416,7 +4436,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -4432,11 +4452,25 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] }, + "project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist.git", + "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "0.3.2", + "deps": [] + }, "popup": { "fetch": { "tag": "fetchgit", @@ -4446,7 +4480,7 @@ }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [ @@ -4462,7 +4496,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -4478,7 +4512,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -4495,7 +4529,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -4512,7 +4546,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -4528,7 +4562,7 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -4541,7 +4575,7 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4555,7 +4589,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.22", "deps": [ @@ -4573,7 +4607,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -4587,7 +4621,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -4601,7 +4635,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.7", "deps": [ @@ -4622,7 +4656,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0", "deps": [] @@ -4636,7 +4670,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -4650,7 +4684,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -4664,7 +4698,7 @@ }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -4676,12 +4710,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -4696,7 +4730,7 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4710,7 +4744,7 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -4727,7 +4761,7 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -4740,7 +4774,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -4756,7 +4790,7 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.9", "deps": [] @@ -4769,7 +4803,7 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4783,7 +4817,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16.0", "deps": [ @@ -4801,7 +4835,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [ @@ -4818,7 +4852,7 @@ }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [ @@ -4839,7 +4873,7 @@ }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -4856,7 +4890,7 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -4872,7 +4906,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -4886,7 +4920,7 @@ }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -4904,7 +4938,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -4921,7 +4955,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -4935,7 +4969,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909", "deps": [ @@ -4951,7 +4985,7 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4965,7 +4999,7 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -4979,7 +5013,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -4993,7 +5027,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -5009,7 +5043,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [ @@ -5026,7 +5060,7 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5040,7 +5074,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -5057,7 +5091,7 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5066,12 +5100,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "bdc884416100f3348425ae6bf192c4e193c46aa9374636f87f68bc25c192fdaf", + "sha256": "df9c033f6e057b3c47414d19f551161e7b77a7d1bf101ddc64fbc18af8669ba8", "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0-a", "deps": [] @@ -5085,7 +5119,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -5099,7 +5133,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5113,7 +5147,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -5127,7 +5161,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5144,7 +5178,7 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -5159,7 +5193,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5175,7 +5209,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.6", "deps": [ @@ -5192,7 +5226,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -5206,7 +5240,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -5220,7 +5254,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -5239,7 +5273,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -5261,7 +5295,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5274,7 +5308,7 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5288,7 +5322,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -5305,7 +5339,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [] @@ -5319,7 +5353,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -5335,7 +5369,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5351,7 +5385,7 @@ }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.11", "deps": [] @@ -5364,7 +5398,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5380,7 +5414,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5394,7 +5428,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5411,7 +5445,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -5427,7 +5461,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -5443,7 +5477,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130322.926", "deps": [ @@ -5462,7 +5496,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.8", "deps": [ @@ -5480,7 +5514,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -5494,7 +5528,7 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -5507,7 +5541,7 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5521,7 +5555,7 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "15.09", "deps": [ @@ -5537,7 +5571,7 @@ }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [] @@ -5551,7 +5585,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -5567,7 +5601,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5581,7 +5615,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.6", "deps": [ @@ -5599,7 +5633,7 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -5616,7 +5650,7 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -5631,7 +5665,7 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5645,7 +5679,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16", "deps": [ @@ -5661,7 +5695,7 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5670,12 +5704,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -5690,7 +5724,7 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5704,7 +5738,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -5721,7 +5755,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -5737,7 +5771,7 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -5752,7 +5786,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5766,7 +5800,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -5782,7 +5816,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -5795,7 +5829,7 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5804,12 +5838,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "eeb55f04c955f62b031d36dfce3e4edb64a3781a29161825fc26e5b1099cbe49", + "sha256": "d455d10d8cd4dc59b8934b6b6a95f507426b95bb4df874f7bd12cdf8a757ce17", "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [] @@ -5823,7 +5857,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -5839,7 +5873,7 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5853,7 +5887,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.9", "deps": [ @@ -5869,7 +5903,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5883,7 +5917,7 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -5899,7 +5933,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -5913,7 +5947,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [] @@ -5927,7 +5961,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -5936,12 +5970,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.11", "deps": [ @@ -5956,7 +5990,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5972,7 +6006,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -5992,7 +6026,7 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.3", "deps": [] @@ -6006,7 +6040,7 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -6022,7 +6056,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -6038,7 +6072,7 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -6051,7 +6085,7 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6065,7 +6099,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [] @@ -6079,7 +6113,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.81", "deps": [] @@ -6088,12 +6122,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -6112,7 +6146,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -6130,7 +6164,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -6144,7 +6178,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -6158,7 +6192,7 @@ }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -6172,7 +6206,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -6186,7 +6220,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -6200,7 +6234,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -6219,7 +6253,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -6233,7 +6267,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -6247,7 +6281,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [ @@ -6265,7 +6299,7 @@ }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -6281,7 +6315,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -6295,7 +6329,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.12", "deps": [ @@ -6312,7 +6346,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [ @@ -6329,7 +6363,7 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -6342,7 +6376,7 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6356,7 +6390,7 @@ }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [] @@ -6370,7 +6404,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -6386,7 +6420,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [] @@ -6400,7 +6434,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3", "deps": [] @@ -6414,7 +6448,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -6430,7 +6464,7 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -6443,7 +6477,7 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6457,7 +6491,7 @@ }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -6471,7 +6505,7 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -6484,7 +6518,7 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6498,7 +6532,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.1", "deps": [] @@ -6512,7 +6546,7 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.126", "deps": [] @@ -6526,7 +6560,7 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.3", "deps": [ @@ -6541,7 +6575,7 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6555,7 +6589,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.37", "deps": [] @@ -6569,7 +6603,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -6583,7 +6617,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -6597,7 +6631,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [] @@ -6611,7 +6645,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -6627,7 +6661,7 @@ }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -6643,7 +6677,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -6659,7 +6693,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.9", "deps": [ @@ -6675,7 +6709,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -6689,7 +6723,7 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -6705,7 +6739,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -6723,7 +6757,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.4", "deps": [] @@ -6737,7 +6771,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -6751,7 +6785,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -6765,7 +6799,7 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -6781,7 +6815,7 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -6798,7 +6832,7 @@ }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -6812,7 +6846,7 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [] @@ -6825,7 +6859,7 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6839,7 +6873,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -6853,7 +6887,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -6867,7 +6901,7 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -6883,7 +6917,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -6897,7 +6931,7 @@ }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -6914,7 +6948,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11.2", "deps": [ @@ -6930,7 +6964,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [] @@ -6944,7 +6978,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -6962,7 +6996,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [ @@ -6979,7 +7013,7 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.28", "deps": [] @@ -6992,7 +7026,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7005,7 +7039,7 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7019,7 +7053,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -7033,7 +7067,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -7047,7 +7081,7 @@ }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [] @@ -7061,7 +7095,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7080,7 +7114,7 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7094,7 +7128,7 @@ }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -7109,7 +7143,7 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7123,7 +7157,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -7141,7 +7175,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -7155,7 +7189,7 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7168,7 +7202,7 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7182,7 +7216,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -7199,7 +7233,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -7213,7 +7247,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0.0", "deps": [] @@ -7222,12 +7256,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "40f8d8987341fa3dc1c5ea96d8d4049044843a7bda3624187457c929b7fb1cee", + "sha256": "b0120b123c7e6e68100a84e4f1520986754e8ba10b2078702a618eb82774c1e7", "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -7241,7 +7275,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.2", "deps": [ @@ -7259,7 +7293,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7277,7 +7311,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.11", "deps": [ @@ -7293,7 +7327,7 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7307,7 +7341,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -7326,7 +7360,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14.3", "deps": [ @@ -7344,7 +7378,7 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7358,7 +7392,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -7376,7 +7410,7 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [] @@ -7389,7 +7423,7 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7403,7 +7437,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7422,7 +7456,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.4", "deps": [ @@ -7441,7 +7475,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7455,7 +7489,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7475,7 +7509,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7489,7 +7523,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -7505,7 +7539,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -7521,7 +7555,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7537,7 +7571,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -7553,7 +7587,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -7570,7 +7604,7 @@ }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -7588,7 +7622,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -7602,7 +7636,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7616,7 +7650,7 @@ }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [] @@ -7630,7 +7664,7 @@ }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -7644,7 +7678,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -7662,7 +7696,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -7679,7 +7713,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -7690,13 +7724,13 @@ "swbuff": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "module": "emhacks/swbuff.el", + "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" }, "recipe": { "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7710,7 +7744,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -7724,7 +7758,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -7738,7 +7772,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -7754,7 +7788,7 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13.10", "deps": [] @@ -7767,7 +7801,7 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7781,7 +7815,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -7798,7 +7832,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.8", "deps": [] @@ -7812,7 +7846,7 @@ }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -7828,7 +7862,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -7842,7 +7876,7 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -7857,7 +7891,7 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7871,7 +7905,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -7888,7 +7922,7 @@ }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1", "deps": [] @@ -7902,7 +7936,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -7916,7 +7950,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7936,7 +7970,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -7952,7 +7986,7 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7966,7 +8000,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -7983,7 +8017,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -7999,7 +8033,7 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8013,7 +8047,7 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -8030,7 +8064,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.4", "deps": [] @@ -8044,7 +8078,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -8060,7 +8094,7 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -8073,7 +8107,7 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8087,7 +8121,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -8103,7 +8137,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -8117,7 +8151,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -8133,7 +8167,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.8", "deps": [] @@ -8147,7 +8181,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -8163,7 +8197,7 @@ }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -8177,7 +8211,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -8194,7 +8228,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -8215,7 +8249,7 @@ }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [] @@ -8229,7 +8263,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13", "deps": [] @@ -8243,7 +8277,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -8257,7 +8291,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -8271,7 +8305,7 @@ }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -8288,7 +8322,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -8303,7 +8337,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8317,7 +8351,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.21", "deps": [] @@ -8331,7 +8365,7 @@ }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -8348,7 +8382,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -8367,7 +8401,7 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8381,7 +8415,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -8398,7 +8432,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -8412,7 +8446,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [] @@ -8426,7 +8460,7 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -8442,7 +8476,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [ @@ -8465,7 +8499,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [ @@ -8482,7 +8516,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.0", "deps": [ @@ -8501,7 +8535,7 @@ }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.1", "deps": [ @@ -8518,7 +8552,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8532,7 +8566,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8546,7 +8580,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -8560,7 +8594,7 @@ }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1.0", "deps": [] @@ -8569,12 +8603,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "3cb76a6815d0445dc3c62f3a45c5200663f6e30d9ad69e9f3d643c0f2d2a66ae", + "sha256": "f76caf8ffd4677d6f3298f2ba53de5799b51646c90bcf7828bb064e2951821a4", "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8588,7 +8622,7 @@ }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -8605,7 +8639,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -8621,7 +8655,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [ @@ -8637,7 +8671,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -8653,7 +8687,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -8667,7 +8701,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -8683,7 +8717,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -8697,7 +8731,7 @@ }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.0.1", "deps": [ @@ -8713,7 +8747,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.18.1", "deps": [ @@ -8729,7 +8763,7 @@ }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -8747,7 +8781,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -8763,7 +8797,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -8777,7 +8811,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -8794,7 +8828,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -8810,7 +8844,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -8829,7 +8863,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.25.1", "deps": [] @@ -8843,7 +8877,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.3", "deps": [ @@ -8859,7 +8893,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -8873,7 +8907,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -8890,7 +8924,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -8907,7 +8941,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.946", "deps": [ @@ -8923,7 +8957,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -8939,7 +8973,7 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "6.3", "deps": [] @@ -8952,7 +8986,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8965,7 +8999,7 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8979,7 +9013,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [] @@ -8993,7 +9027,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -9007,7 +9041,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.6", "deps": [] @@ -9021,7 +9055,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -9037,7 +9071,7 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9051,7 +9085,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -9069,7 +9103,7 @@ }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -9085,7 +9119,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -9101,7 +9135,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -9117,7 +9151,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -9131,7 +9165,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.2", "deps": [] @@ -9145,7 +9179,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -9159,7 +9193,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -9175,7 +9209,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -9192,7 +9226,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.8", "deps": [ @@ -9208,7 +9242,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.17.0", "deps": [] @@ -9222,7 +9256,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.1", "deps": [ @@ -9238,7 +9272,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9255,7 +9289,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9271,7 +9305,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9287,7 +9321,7 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9301,7 +9335,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9319,7 +9353,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -9336,7 +9370,7 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9350,7 +9384,7 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [] @@ -9363,7 +9397,7 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9377,7 +9411,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -9391,7 +9425,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.10", "deps": [ @@ -9408,7 +9442,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [] @@ -9422,7 +9456,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9439,7 +9473,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -9453,7 +9487,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -9470,7 +9504,7 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9484,7 +9518,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9504,7 +9538,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -9522,7 +9556,7 @@ }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.46", "deps": [ @@ -9540,7 +9574,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -9554,7 +9588,7 @@ }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -9572,7 +9606,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -9589,7 +9623,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [] @@ -9603,7 +9637,7 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -9618,7 +9652,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9631,7 +9665,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -9646,7 +9680,7 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9660,7 +9694,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -9677,7 +9711,7 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9691,7 +9725,7 @@ }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -9704,12 +9738,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "590bc08a6476a92c16aaa6b173bd3440fc144970cff7e92cb781a9b432674622", + "sha256": "a026a3f80427f49d3db66fbd9c94b32b50f0b586ade0c9fb5a0cad49eca5d9c3", "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [] @@ -9723,7 +9757,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9741,7 +9775,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -9755,7 +9789,7 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -9768,7 +9802,7 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9782,7 +9816,7 @@ }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -9796,7 +9830,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -9810,7 +9844,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9826,7 +9860,7 @@ }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [ @@ -9846,7 +9880,7 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "04b", "deps": [] @@ -9860,7 +9894,7 @@ }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.1", "deps": [] @@ -9873,7 +9907,7 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9887,7 +9921,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -9901,7 +9935,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -9917,7 +9951,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -9931,7 +9965,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -9950,7 +9984,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -9970,7 +10004,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -9986,7 +10020,7 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10000,7 +10034,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.32", "deps": [] @@ -10014,7 +10048,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -10030,7 +10064,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.3", "deps": [ @@ -10046,7 +10080,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [] @@ -10060,7 +10094,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.6", "deps": [] @@ -10074,7 +10108,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -10088,7 +10122,7 @@ }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.6.1", "deps": [] @@ -10102,7 +10136,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -10118,7 +10152,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -10134,7 +10168,7 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -10149,7 +10183,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10162,7 +10196,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10175,7 +10209,7 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10189,7 +10223,7 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.6", "deps": [ @@ -10205,7 +10239,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [ @@ -10221,7 +10255,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -10244,7 +10278,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -10260,7 +10294,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -10274,7 +10308,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -10288,7 +10322,7 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -10303,7 +10337,7 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10317,7 +10351,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -10331,7 +10365,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.44", "deps": [] @@ -10345,7 +10379,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -10359,7 +10393,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.20", "deps": [] @@ -10373,7 +10407,7 @@ }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -10390,7 +10424,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -10404,7 +10438,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.8", "deps": [ @@ -10421,7 +10455,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -10435,7 +10469,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0", "deps": [] @@ -10448,7 +10482,7 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10462,7 +10496,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.13.3", "deps": [ @@ -10479,7 +10513,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -10493,7 +10527,7 @@ }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [ @@ -10509,7 +10543,7 @@ }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -10526,7 +10560,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -10542,7 +10576,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [ @@ -10558,7 +10592,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -10576,7 +10610,7 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -10591,7 +10625,7 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10605,7 +10639,7 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [ @@ -10620,7 +10654,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10633,7 +10667,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -10649,7 +10683,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [ @@ -10666,7 +10700,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -10683,7 +10717,7 @@ }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.11", "deps": [ @@ -10699,7 +10733,7 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10713,7 +10747,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -10730,7 +10764,7 @@ }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.8.0b1", "deps": [] @@ -10744,7 +10778,7 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -10757,7 +10791,7 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10771,7 +10805,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [ @@ -10787,7 +10821,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -10803,7 +10837,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.1", "deps": [ @@ -10819,7 +10853,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [] @@ -10833,7 +10867,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -10851,7 +10885,7 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -10866,7 +10900,7 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10880,7 +10914,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -10897,7 +10931,7 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -10912,7 +10946,7 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10926,7 +10960,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -10940,7 +10974,7 @@ }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -10954,7 +10988,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -10968,7 +11002,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -10982,7 +11016,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -10996,7 +11030,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -11014,7 +11048,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -11030,7 +11064,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.5", "deps": [] @@ -11044,7 +11078,7 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -11059,7 +11093,7 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11073,7 +11107,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -11087,7 +11121,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [] @@ -11101,7 +11135,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.13", "deps": [] @@ -11115,7 +11149,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -11129,7 +11163,7 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -11146,7 +11180,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -11160,7 +11194,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -11174,7 +11208,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -11188,7 +11222,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.12.1", "deps": [ @@ -11205,7 +11239,7 @@ }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.70", "deps": [ @@ -11223,7 +11257,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [ @@ -11239,7 +11273,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -11253,7 +11287,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -11267,7 +11301,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.2", "deps": [ @@ -11287,7 +11321,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -11304,7 +11338,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -11323,7 +11357,7 @@ }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -11341,7 +11375,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -11358,7 +11392,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -11375,7 +11409,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -11389,7 +11423,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.9", "deps": [ @@ -11405,7 +11439,7 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11419,7 +11453,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.8.1", "deps": [] @@ -11433,7 +11467,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.6", "deps": [] @@ -11447,7 +11481,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -11466,7 +11500,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.92", "deps": [] @@ -11480,7 +11514,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -11496,7 +11530,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.3", "deps": [ @@ -11513,7 +11547,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -11527,7 +11561,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -11544,7 +11578,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -11560,7 +11594,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -11574,7 +11608,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -11588,7 +11622,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.0", "deps": [ @@ -11605,7 +11639,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -11619,7 +11653,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -11635,7 +11669,7 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11649,7 +11683,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -11667,7 +11701,7 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11681,7 +11715,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.1", "deps": [ @@ -11698,7 +11732,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -11712,7 +11746,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -11731,7 +11765,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -11749,7 +11783,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -11763,7 +11797,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -11779,7 +11813,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -11793,7 +11827,7 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -11807,7 +11841,7 @@ }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -11826,7 +11860,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.5", "deps": [] @@ -11840,7 +11874,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -11859,7 +11893,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -11873,7 +11907,7 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -11888,7 +11922,7 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11902,7 +11936,7 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -11918,7 +11952,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.4", "deps": [] @@ -11932,7 +11966,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -11941,12 +11975,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -11962,7 +11996,7 @@ }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -11979,7 +12013,7 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -11992,7 +12026,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12006,7 +12040,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.29", "deps": [] @@ -12020,7 +12054,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -12034,7 +12068,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [] @@ -12048,7 +12082,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12064,7 +12098,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12080,7 +12114,7 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -12095,7 +12129,7 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12109,7 +12143,7 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [] @@ -12122,7 +12156,7 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12136,7 +12170,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.12", "deps": [ @@ -12152,7 +12186,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1", "deps": [] @@ -12166,7 +12200,7 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -12181,7 +12215,7 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12195,7 +12229,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -12209,7 +12243,7 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -12222,7 +12256,7 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12236,7 +12270,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -12252,7 +12286,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -12270,7 +12304,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -12284,7 +12318,7 @@ }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -12301,7 +12335,7 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12315,7 +12349,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -12331,7 +12365,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0.18", "deps": [ @@ -12347,7 +12381,7 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -12362,7 +12396,7 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12376,7 +12410,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12392,7 +12426,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.7", "deps": [] @@ -12401,14 +12435,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", - "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.6", + "version": "1.8", "deps": [ "highlight" ] @@ -12422,7 +12456,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [ @@ -12441,7 +12475,7 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12455,7 +12489,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -12469,7 +12503,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -12483,7 +12517,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.11", "deps": [ @@ -12500,7 +12534,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -12518,7 +12552,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.8", "deps": [ @@ -12535,7 +12569,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -12551,7 +12585,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -12567,7 +12601,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -12581,7 +12615,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -12598,7 +12632,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -12616,7 +12650,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -12632,7 +12666,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [] @@ -12646,7 +12680,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12662,7 +12696,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -12678,7 +12712,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -12692,7 +12726,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -12708,7 +12742,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12725,7 +12759,7 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -12740,7 +12774,7 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12754,7 +12788,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [] @@ -12768,7 +12802,7 @@ }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -12782,7 +12816,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -12802,7 +12836,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -12818,7 +12852,7 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -12832,7 +12866,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.10", "deps": [ @@ -12848,7 +12882,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12862,7 +12896,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.5", "deps": [] @@ -12876,7 +12910,7 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -12889,7 +12923,7 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12903,7 +12937,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12919,7 +12953,7 @@ }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.12", "deps": [ @@ -12936,7 +12970,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -12950,7 +12984,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -12966,7 +13000,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -12983,7 +13017,7 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12992,12 +13026,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.11", "deps": [ @@ -13007,20 +13041,6 @@ "ruby-mode" ] }, - "seq": { - "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/seq.el.git", - "sha256": "34530414c3bf71a8d9466e9378ad6963540573acf45dfe13408b50e9abfab053", - "rev": "ff8083a29b7e0a3686ded17d35c2aa839e8489e4" - }, - "recipe": { - "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" - }, - "version": "1.11", - "deps": [] - }, "ucs-utils": { "fetch": { "tag": "fetchgit", @@ -13030,7 +13050,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.4", "deps": [ @@ -13048,7 +13068,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -13064,7 +13084,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -13078,7 +13098,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.5.10", "deps": [] @@ -13092,7 +13112,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -13108,7 +13128,7 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13122,7 +13142,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -13136,7 +13156,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [] @@ -13150,7 +13170,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13164,7 +13184,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -13180,7 +13200,7 @@ }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.48", "deps": [ @@ -13197,7 +13217,7 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -13212,7 +13232,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13225,7 +13245,7 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13239,7 +13259,7 @@ }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.4.1", "deps": [] @@ -13252,7 +13272,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -13268,7 +13288,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -13282,7 +13302,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.9", "deps": [ @@ -13298,7 +13318,7 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13312,7 +13332,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.0", "deps": [] @@ -13326,7 +13346,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -13340,7 +13360,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -13354,7 +13374,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [] @@ -13368,7 +13388,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -13382,7 +13402,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -13401,7 +13421,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -13415,7 +13435,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -13431,7 +13451,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -13447,7 +13467,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2015.11.29", "deps": [] @@ -13461,7 +13481,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -13478,7 +13498,7 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13492,7 +13512,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -13506,7 +13526,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -13522,7 +13542,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -13538,7 +13558,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -13552,7 +13572,7 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -13565,7 +13585,7 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13579,7 +13599,7 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -13597,7 +13617,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -13614,7 +13634,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13628,7 +13648,7 @@ }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -13644,7 +13664,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -13660,7 +13680,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -13674,7 +13694,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -13690,7 +13710,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.7", "deps": [ @@ -13708,7 +13728,7 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -13720,14 +13740,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/TheBB/spaceline.git", - "sha256": "b3d6e4aec5eacc2f489b9170c22043e08882ab480643d14860ad45f9e6809e39", - "rev": "3990442b0b1f4f5975ae1bba3248fd89d4b5dff8" + "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.0.1", + "version": "1.0.2", "deps": [ "cl-lib", "dash", @@ -13745,7 +13765,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -13759,7 +13779,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -13773,7 +13793,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -13787,7 +13807,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.6", "deps": [] @@ -13801,7 +13821,7 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [ @@ -13816,7 +13836,7 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13830,7 +13850,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [] @@ -13844,7 +13864,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.7", "deps": [ @@ -13861,7 +13881,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.20131027", "deps": [] @@ -13875,7 +13895,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -13889,7 +13909,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13898,12 +13918,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -13921,7 +13941,7 @@ }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [ @@ -13944,7 +13964,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -13958,7 +13978,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13972,7 +13992,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -13986,7 +14006,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -14002,7 +14022,7 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14016,7 +14036,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.25.20130814", "deps": [] @@ -14030,7 +14050,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -14050,7 +14070,7 @@ }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -14066,7 +14086,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.6", "deps": [ @@ -14086,7 +14106,7 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14100,7 +14120,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14116,7 +14136,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [] @@ -14130,7 +14150,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -14148,7 +14168,7 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -14161,7 +14181,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -14178,7 +14198,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.8", "deps": [ @@ -14194,7 +14214,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.8", "deps": [] @@ -14208,7 +14228,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -14226,7 +14246,7 @@ }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.8", "deps": [ @@ -14244,7 +14264,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.31", "deps": [ @@ -14261,7 +14281,7 @@ }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -14277,7 +14297,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -14291,7 +14311,7 @@ }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.08", "deps": [ @@ -14307,7 +14327,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -14323,7 +14343,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -14337,7 +14357,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [ @@ -14354,7 +14374,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -14370,7 +14390,7 @@ }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -14389,7 +14409,7 @@ }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14404,7 +14424,7 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14418,7 +14438,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.6", "deps": [ @@ -14442,7 +14462,7 @@ }, "recipe": { "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -14461,7 +14481,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -14475,7 +14495,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -14495,7 +14515,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -14513,7 +14533,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [] @@ -14527,7 +14547,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -14541,7 +14561,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [] @@ -14555,7 +14575,7 @@ }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13.16", "deps": [ @@ -14570,7 +14590,7 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14584,7 +14604,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -14598,7 +14618,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.23", "deps": [] @@ -14612,7 +14632,7 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [] @@ -14625,7 +14645,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14638,7 +14658,7 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14652,7 +14672,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -14668,7 +14688,7 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14682,7 +14702,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14698,7 +14718,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9", "deps": [] @@ -14712,7 +14732,7 @@ }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.7", "deps": [] @@ -14725,7 +14745,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14739,7 +14759,7 @@ }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.96", "deps": [] @@ -14752,7 +14772,7 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14766,7 +14786,7 @@ }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [ @@ -14784,7 +14804,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -14803,7 +14823,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.7", "deps": [ @@ -14820,7 +14840,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14833,7 +14853,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14846,7 +14866,7 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14860,7 +14880,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -14874,12 +14894,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.5", "deps": [ @@ -14905,7 +14925,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -14918,12 +14938,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "868656dc794d05db566b6ae0052f148a635a737c625d965d89dc036fdd12ccbf", + "sha256": "5cb84c3c4bf3f7c3e0c9ab869dababb785d44198b1e1072dc9c0937fc483aa14", "rev": "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.9.3e", "deps": [] @@ -14937,7 +14957,7 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.4", "deps": [] @@ -14951,7 +14971,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -14965,7 +14985,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -14981,7 +15001,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.4", "deps": [ @@ -14997,7 +15017,7 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -15010,7 +15030,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15024,7 +15044,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.6", "deps": [] @@ -15038,7 +15058,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -15054,7 +15074,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -15068,7 +15088,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -15082,7 +15102,7 @@ }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [] @@ -15096,7 +15116,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -15110,7 +15130,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -15128,7 +15148,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15142,7 +15162,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.17.1", "deps": [] @@ -15151,12 +15171,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "641652bf1b99ef486340437500e4e9ad97321446e6cbb56e27cad22741ff7fce", + "sha256": "a37e8552f2e08a0aa5cab25bf9f81a001a6d57fc65c8fab101c1aa8146e74c4c", "rev": "591e1e996c820da218ea1eee0a500c556769f128" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -15172,7 +15192,7 @@ }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [] @@ -15186,7 +15206,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -15204,7 +15224,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -15222,7 +15242,7 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15236,7 +15256,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -15252,7 +15272,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -15266,7 +15286,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [] @@ -15280,7 +15300,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.0", "deps": [ @@ -15296,7 +15316,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [] @@ -15310,7 +15330,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [] @@ -15324,7 +15344,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -15341,7 +15361,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -15355,7 +15375,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.5", "deps": [ @@ -15372,7 +15392,7 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15386,7 +15406,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -15400,7 +15420,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -15417,7 +15437,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15434,7 +15454,7 @@ }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [ @@ -15452,7 +15472,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -15466,12 +15486,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15488,7 +15508,7 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -15503,7 +15523,7 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15517,7 +15537,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -15533,7 +15553,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -15554,7 +15574,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.2", "deps": [ @@ -15571,7 +15591,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -15587,7 +15607,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -15601,7 +15621,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [ @@ -15617,7 +15637,7 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15631,7 +15651,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -15650,7 +15670,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -15666,7 +15686,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -15680,7 +15700,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -15698,7 +15718,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -15715,7 +15735,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -15729,7 +15749,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -15747,7 +15767,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -15761,7 +15781,7 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -15774,7 +15794,7 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15788,7 +15808,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -15802,7 +15822,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [] @@ -15816,7 +15836,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15832,7 +15852,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -15848,7 +15868,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -15864,7 +15884,7 @@ }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.150707", "deps": [ @@ -15883,7 +15903,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -15902,7 +15922,7 @@ }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -15919,7 +15939,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -15933,7 +15953,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.8.9", "deps": [ @@ -15950,7 +15970,7 @@ }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.25.1", "deps": [ @@ -15971,7 +15991,7 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -15980,11 +16000,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/dired+.el", - "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15998,7 +16018,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -16014,7 +16034,7 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16028,7 +16048,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16045,7 +16065,7 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.20", "deps": [ @@ -16060,7 +16080,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -16076,7 +16096,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -16092,7 +16112,7 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16106,7 +16126,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -16122,7 +16142,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [ @@ -16139,7 +16159,7 @@ }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -16156,7 +16176,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -16170,7 +16190,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.8", "deps": [ @@ -16187,7 +16207,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -16204,7 +16224,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16218,7 +16238,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -16229,14 +16249,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", - "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + "sha256": "662d9ccb0608806cfc7541a9e3dea71228608b80087717db26ff6788ee73ef62", + "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65" }, "recipe": { "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "0.44", + "version": "0.45", "deps": [] }, "easy-kill-extras": { @@ -16248,7 +16268,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [ @@ -16264,7 +16284,7 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -16279,7 +16299,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16293,7 +16313,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.7", "deps": [ @@ -16309,7 +16329,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16323,7 +16343,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16337,7 +16357,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -16353,7 +16373,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -16367,7 +16387,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -16385,7 +16405,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.9", "deps": [] @@ -16399,7 +16419,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -16416,7 +16436,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -16430,7 +16450,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [] @@ -16443,7 +16463,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -16459,7 +16479,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -16476,7 +16496,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -16490,7 +16510,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [ @@ -16509,7 +16529,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -16523,7 +16543,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.59", "deps": [ @@ -16540,7 +16560,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -16554,7 +16574,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.2", "deps": [] @@ -16568,7 +16588,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -16577,12 +16597,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -16601,7 +16621,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -16619,7 +16639,7 @@ }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16634,7 +16654,7 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16648,7 +16668,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -16664,7 +16684,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [] @@ -16678,7 +16698,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -16692,7 +16712,7 @@ }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.14.7.3.1", "deps": [ @@ -16709,7 +16729,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -16725,7 +16745,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -16741,7 +16761,7 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16755,7 +16775,7 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -16773,7 +16793,7 @@ }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -16787,7 +16807,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [] @@ -16801,7 +16821,7 @@ }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -16817,7 +16837,7 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -16830,7 +16850,7 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16844,7 +16864,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -16858,7 +16878,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.1", "deps": [ @@ -16878,7 +16898,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16894,7 +16914,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -16912,7 +16932,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -16926,7 +16946,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.15", "deps": [] @@ -16940,7 +16960,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.12", "deps": [ @@ -16956,7 +16976,7 @@ }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [ @@ -16972,7 +16992,7 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16986,7 +17006,7 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -16999,7 +17019,7 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17013,7 +17033,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -17032,7 +17052,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -17046,7 +17066,7 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [] @@ -17059,7 +17079,7 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17073,7 +17093,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -17091,7 +17111,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -17105,7 +17125,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1", "deps": [] @@ -17119,7 +17139,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -17137,7 +17157,7 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17151,7 +17171,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -17165,7 +17185,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -17179,7 +17199,7 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [ @@ -17194,7 +17214,7 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17208,7 +17228,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -17222,7 +17242,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.21", "deps": [] @@ -17236,7 +17256,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -17252,7 +17272,7 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -17267,7 +17287,7 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17281,7 +17301,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -17297,7 +17317,7 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -17316,7 +17336,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -17332,7 +17352,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [] @@ -17346,7 +17366,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [ @@ -17363,7 +17383,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -17380,7 +17400,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.5", "deps": [ @@ -17396,7 +17416,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -17412,7 +17432,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -17428,7 +17448,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [ @@ -17444,7 +17464,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17460,7 +17480,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -17478,7 +17498,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17494,7 +17514,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.0.0", "deps": [] @@ -17508,7 +17528,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -17524,7 +17544,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -17543,7 +17563,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -17557,7 +17577,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -17571,7 +17591,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.6", "deps": [ @@ -17591,7 +17611,7 @@ }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [] @@ -17605,7 +17625,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.5", "deps": [] @@ -17619,7 +17639,7 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -17636,7 +17656,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -17653,7 +17673,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -17669,7 +17689,7 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17683,7 +17703,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -17697,7 +17717,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17715,7 +17735,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.0", "deps": [ @@ -17735,7 +17755,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -17749,7 +17769,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -17765,7 +17785,7 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.4.0", "deps": [] @@ -17779,7 +17799,7 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -17792,7 +17812,7 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17806,7 +17826,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -17822,7 +17842,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -17839,7 +17859,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -17856,7 +17876,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -17876,7 +17896,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.15", "deps": [ @@ -17892,7 +17912,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -17909,7 +17929,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -17925,7 +17945,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -17941,7 +17961,7 @@ }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -17961,7 +17981,7 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -17976,7 +17996,7 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17990,7 +18010,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -18004,7 +18024,7 @@ }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18022,7 +18042,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -18042,7 +18062,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -18059,7 +18079,7 @@ }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -18073,7 +18093,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -18089,7 +18109,7 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -18102,7 +18122,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -18119,7 +18139,7 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -18132,7 +18152,7 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18146,7 +18166,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -18162,7 +18182,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -18176,7 +18196,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -18195,7 +18215,7 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -18212,7 +18232,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -18229,7 +18249,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -18246,7 +18266,7 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18260,7 +18280,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -18277,7 +18297,7 @@ }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303", "deps": [ @@ -18293,7 +18313,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -18307,7 +18327,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.19", "deps": [ @@ -18325,7 +18345,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -18339,7 +18359,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -18348,12 +18368,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -18369,7 +18389,7 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18383,7 +18403,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -18400,7 +18420,7 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18414,7 +18434,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6.1", "deps": [ @@ -18431,7 +18451,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -18448,7 +18468,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -18462,7 +18482,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -18480,7 +18500,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16.0", "deps": [ @@ -18499,7 +18519,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18518,7 +18538,7 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -18531,7 +18551,7 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18540,12 +18560,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -18561,7 +18581,7 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -18578,7 +18598,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.9", "deps": [ @@ -18594,7 +18614,7 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -18607,7 +18627,7 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18621,7 +18641,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -18637,7 +18657,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.0", "deps": [] @@ -18651,7 +18671,7 @@ }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -18670,7 +18690,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -18684,7 +18704,7 @@ }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -18698,7 +18718,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -18715,7 +18735,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -18724,14 +18744,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "0b341581ec14c75b62368a673db2798810230ab0fc3e690eae795d3a86214e35", - "rev": "ae3f3d14fd92b70c988847aa760967dfff06c796" + "sha256": "48d9d161170c7af95a4d7f2f5685ee91b40461e4a7f03f3c2b8c23123585938a", + "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.15", + "version": "1.16", "deps": [] }, "elwm": { @@ -18743,7 +18763,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -18759,7 +18779,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -18775,7 +18795,7 @@ }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [ @@ -18791,7 +18811,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.5", "deps": [ @@ -18807,7 +18827,7 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.05", "deps": [ @@ -18823,7 +18843,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -18837,7 +18857,7 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.06", "deps": [ @@ -18853,7 +18873,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.10", "deps": [] @@ -18867,7 +18887,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18883,7 +18903,7 @@ }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -18902,7 +18922,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -18918,7 +18938,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.6", "deps": [] @@ -18932,7 +18952,7 @@ }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1.0", "deps": [ @@ -18949,7 +18969,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -18967,7 +18987,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.7", "deps": [] @@ -18981,7 +19001,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -18999,7 +19019,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -19013,7 +19033,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -19032,7 +19052,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -19048,7 +19068,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0", "deps": [] @@ -19062,7 +19082,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -19078,7 +19098,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.5", "deps": [ @@ -19099,7 +19119,7 @@ }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -19113,7 +19133,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -19131,7 +19151,7 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -19145,7 +19165,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -19159,7 +19179,7 @@ }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [ @@ -19175,7 +19195,7 @@ }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -19191,7 +19211,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19209,7 +19229,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -19225,7 +19245,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [] @@ -19239,7 +19259,7 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -19252,7 +19272,7 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19266,7 +19286,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -19280,7 +19300,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -19299,7 +19319,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -19313,7 +19333,7 @@ }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -19326,7 +19346,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19339,7 +19359,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19352,7 +19372,7 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19366,7 +19386,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -19382,7 +19402,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -19399,7 +19419,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.15", "deps": [ @@ -19415,7 +19435,7 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19431,7 +19451,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.15", "deps": [ @@ -19452,7 +19472,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -19466,7 +19486,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.12.1", "deps": [] @@ -19480,7 +19500,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.9", "deps": [ @@ -19496,7 +19516,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -19513,7 +19533,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -19527,7 +19547,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -19543,7 +19563,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19557,7 +19577,7 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -19574,7 +19594,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19591,7 +19611,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2015.11.29", "deps": [] @@ -19605,7 +19625,7 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [] @@ -19618,7 +19638,7 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19632,7 +19652,7 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3a", "deps": [] @@ -19646,7 +19666,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19662,7 +19682,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -19676,7 +19696,7 @@ }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -19690,7 +19710,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19706,7 +19726,7 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -19719,7 +19739,7 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19733,7 +19753,7 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.5", "deps": [] @@ -19747,7 +19767,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19764,7 +19784,7 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19778,7 +19798,7 @@ }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -19799,7 +19819,7 @@ }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.14", "deps": [] @@ -19813,7 +19833,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [ @@ -19830,7 +19850,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -19844,7 +19864,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.0", "deps": [ @@ -19861,7 +19881,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -19875,7 +19895,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -19891,7 +19911,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.2", "deps": [] @@ -19905,7 +19925,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -19923,7 +19943,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -19939,7 +19959,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19958,7 +19978,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.8", "deps": [ @@ -19975,7 +19995,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [] @@ -19989,7 +20009,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.18.0", "deps": [ @@ -20006,7 +20026,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -20024,7 +20044,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -20037,7 +20057,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20050,7 +20070,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -20066,7 +20086,7 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -20083,7 +20103,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -20100,7 +20120,7 @@ }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -20118,7 +20138,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -20130,12 +20150,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -20152,7 +20172,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.1", "deps": [] @@ -20166,7 +20186,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20180,7 +20200,7 @@ }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -20198,7 +20218,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -20215,7 +20235,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -20231,7 +20251,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -20245,7 +20265,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20262,7 +20282,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20276,7 +20296,7 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.20", "deps": [] @@ -20289,7 +20309,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20302,7 +20322,7 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20316,7 +20336,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [ @@ -20335,7 +20355,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.10", "deps": [] @@ -20349,7 +20369,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -20363,7 +20383,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20379,7 +20399,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -20393,7 +20413,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -20407,7 +20427,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -20421,7 +20441,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -20437,7 +20457,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.944", "deps": [] @@ -20451,7 +20471,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [] @@ -20465,7 +20485,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11", "deps": [] @@ -20479,7 +20499,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -20493,7 +20513,7 @@ }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.4", "deps": [ @@ -20511,7 +20531,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -20525,7 +20545,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -20547,7 +20567,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025", "deps": [] @@ -20561,7 +20581,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -20577,7 +20597,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -20595,7 +20615,7 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [] @@ -20609,7 +20629,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20625,7 +20645,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.0", "deps": [ @@ -20642,7 +20662,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -20656,7 +20676,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -20669,11 +20689,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/files+.el", - "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v" }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20687,7 +20707,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -20699,14 +20719,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "14810b3a5875cc11991f35d36920e9e8a601a1e04a6837f0021f2b830e60daca", - "rev": "aa8dfa11da4f24894c8efdcd09fc792325387634" + "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.1", + "version": "1.2", "deps": [ "emacs" ] @@ -20720,7 +20740,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.11", "deps": [ @@ -20737,7 +20757,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -20753,7 +20773,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -20767,7 +20787,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20781,7 +20801,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -20797,7 +20817,7 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -20811,7 +20831,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.12", "deps": [ @@ -20827,7 +20847,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -20841,7 +20861,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -20860,7 +20880,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -20877,7 +20897,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -20891,7 +20911,7 @@ }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -20905,7 +20925,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -20922,7 +20942,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -20938,7 +20958,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -20952,7 +20972,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -20966,7 +20986,7 @@ }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20980,7 +21000,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -20997,7 +21017,7 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -21010,7 +21030,7 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21024,7 +21044,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.0", "deps": [] @@ -21038,7 +21058,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -21052,7 +21072,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -21068,7 +21088,7 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -21083,7 +21103,7 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21097,7 +21117,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -21113,7 +21133,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -21129,7 +21149,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.6", "deps": [ @@ -21151,7 +21171,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -21167,7 +21187,7 @@ }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -21185,7 +21205,7 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -21193,13 +21213,13 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21213,7 +21233,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -21230,7 +21250,7 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -21243,7 +21263,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -21260,7 +21280,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -21276,7 +21296,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -21292,7 +21312,7 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -21305,7 +21325,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21318,7 +21338,7 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21332,7 +21352,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.5", "deps": [ @@ -21348,7 +21368,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -21363,12 +21383,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -21385,7 +21405,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -21402,7 +21422,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -21419,7 +21439,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21433,7 +21453,7 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -21446,7 +21466,7 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21460,7 +21480,7 @@ }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -21478,7 +21498,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -21492,7 +21512,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -21509,7 +21529,7 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21523,7 +21543,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -21537,7 +21557,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21554,7 +21574,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21570,7 +21590,7 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21583,7 +21603,7 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21597,7 +21617,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.1", "deps": [ @@ -21614,7 +21634,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21628,7 +21648,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [] @@ -21642,7 +21662,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -21658,7 +21678,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -21675,7 +21695,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21693,7 +21713,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -21709,7 +21729,7 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21723,7 +21743,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.8.0", "deps": [ @@ -21739,7 +21759,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.5", "deps": [] @@ -21753,7 +21773,7 @@ }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.23.4", "deps": [] @@ -21767,7 +21787,7 @@ }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [ @@ -21787,7 +21807,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21800,7 +21820,7 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21814,7 +21834,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -21832,7 +21852,7 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.7", "deps": [] @@ -21845,7 +21865,7 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21859,7 +21879,7 @@ }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -21873,7 +21893,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -21894,7 +21914,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -21911,7 +21931,7 @@ }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.0.1", "deps": [ @@ -21927,7 +21947,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130521", "deps": [] @@ -21941,7 +21961,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -21958,7 +21978,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -21976,7 +21996,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -21993,7 +22013,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -22011,7 +22031,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -22024,12 +22044,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -22043,7 +22063,7 @@ }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -22057,7 +22077,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -22074,7 +22094,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -22093,7 +22113,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -22107,7 +22127,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -22121,7 +22141,7 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -22138,7 +22158,7 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -22153,7 +22173,7 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -22167,7 +22187,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -22183,7 +22203,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -22197,7 +22217,7 @@ }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -22216,11 +22236,11 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.04", "deps": [ "coffee-mode" ] } -} +} \ No newline at end of file From 9f55d3f29f644b1a0f0aca62a06c1b48a813407c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:24:35 -0600 Subject: [PATCH 302/707] elpaPackages: fix typo in midi-kbd --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 00f127a2992..0f92ded4043 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -66,7 +66,7 @@ self: exwm = markBroken super.exwm; gnugo = markBroken super.gnugo; iterators = markBroken super.iterators; - midi-kbd = markBroken super.mini-kbd; + midi-kbd = markBroken super.midi-kbd; stream = markBroken super.stream; tNFA = markBroken super.tNFA; trie = markBroken super.trie; From f7ce3cdddb9ef7d5d5470005b2c4a481748800af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 12:45:57 -0600 Subject: [PATCH 303/707] emacsPackagesNg: don't call `override` repeatedly Calling override repeatedly obfuscates how the final package set is actually constructed. --- pkgs/top-level/emacs-packages.nix | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index ebd6464de5a..cb6da618768 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -46,12 +46,7 @@ with lib.licenses; let - addMelpaPackages = scope: scope.override (super: melpaPackages); - addMelpaStablePackages = scope: scope.override (super: melpaStablePackages); - addElpaPackages = scope: scope.override (super: elpaPackages); - addOverrides = scope: scope.override packagesFun; - - packagesFun = super: self: with self; { + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; @@ -2029,8 +2024,10 @@ let }; in - addOverrides - (addElpaPackages - (addMelpaStablePackages - (addMelpaPackages - (lib.makeScope newScope (self: { inherit emacs; }))))) + lib.makeScope newScope (self: + {} + // melpaPackages self + // melpaStablePackages self + // elpaPackages self + // packagesFun self + ) From a4f4d1717d377d8d3698ed0e306e18c8278bd2a7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:39:45 -0600 Subject: [PATCH 304/707] elpaPackages: don't import all of pkgs --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 8 +++----- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 0f92ded4043..7b8d429f76a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ fetchurl, lib, stdenv, texinfo }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./elpa-packages.json; manifest = builtins.fromJSON json; @@ -40,12 +40,10 @@ self: super = mapAttrs (mkPackage self) manifest; elpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; + inherit fetchurl lib stdenv texinfo; inherit (self) emacs; }; - builtin = null; - markBroken = pkg: pkg.override { elpaBuild = args: self.elpaBuild (args // { meta = (args.meta or {}) // { broken = true; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d12a05f83bc..feb55346c0f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11648,8 +11648,9 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - elpaPackages = - import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; + elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { + inherit fetchurl lib stdenv texinfo; + }; melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; From 28af093438a7f9d7d836bc5fe41cca8a2ed92ced Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:41:08 -0600 Subject: [PATCH 305/707] melpaPackages: don't import all of pkgs --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 1bc4363cb11..e48baa2d6e0 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ lib }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./melpa-stable-packages.json; manifest = builtins.fromJSON json; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index feb55346c0f..74d3caabd6f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11655,8 +11655,9 @@ let melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; - melpaPackages = - import ../applications/editors/emacs-modes/melpa-packages.nix pkgs; + melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { + inherit lib; + }; emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; From a338959da6fb976345aac467e2c0d2f9b2c4ac46 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:41:50 -0600 Subject: [PATCH 306/707] melpaStablePackages: don't import all of pkgs --- .../editors/emacs-modes/melpa-stable-packages.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 869c5549bfa..bf8df730a77 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ lib }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./melpa-stable-packages.json; manifest = builtins.fromJSON json; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 74d3caabd6f..e748f0b2fb0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11652,8 +11652,9 @@ let inherit fetchurl lib stdenv texinfo; }; - melpaStablePackages = - import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; + melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { + inherit lib; + }; melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { inherit lib; From 78d68b8c149d7c7a2f6f48d25ae61e5ec66212d7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:43:43 -0600 Subject: [PATCH 307/707] emacsPackagesNg: don't expose package functions Remove elpaPackages, melpaStablePackages, and melpaPackages from the top-level. --- pkgs/top-level/all-packages.nix | 14 +------------- pkgs/top-level/emacs-packages.nix | 14 +++++++++++++- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e748f0b2fb0..5559135e242 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11629,7 +11629,7 @@ let inherit lib newScope stdenv; inherit fetchFromGitHub fetchgit fetchhg fetchurl; - inherit emacs elpaPackages melpaPackages melpaStablePackages; + inherit emacs texinfo; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11648,18 +11648,6 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { - inherit fetchurl lib stdenv texinfo; - }; - - melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { - inherit lib; - }; - - melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { - inherit lib; - }; - emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index cb6da618768..727ceb24c8a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -35,7 +35,7 @@ , lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, elpaPackages, melpaPackages, melpaStablePackages +, emacs, texinfo , trivialBuild , melpaBuild @@ -46,6 +46,18 @@ with lib.licenses; let + elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { + inherit fetchurl lib stdenv texinfo; + }; + + melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { + inherit lib; + }; + + melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { + inherit lib; + }; + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; From 3b1f994347a3a9e95b48256e0218b563c7887639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 14:09:49 +0100 Subject: [PATCH 308/707] release: remove reference to castle_combat The game itself was removed in 66f663e19. --- pkgs/top-level/release.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index c55f8f0825f..50331b83e8e 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -66,7 +66,6 @@ let binutils = linux; bind = linux; bvi = all; - castle_combat = linux; cdrkit = linux; classpath = linux; ddrescue = linux; From 5a129a8121f455e79fd1ae90ce941a690a053f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 24 Sep 2015 11:28:20 +0200 Subject: [PATCH 309/707] libffi: doCheck optionally and do so for glib-tested This is kind-of reverting fcf99efcd. --- pkgs/development/libraries/libffi/default.nix | 6 +++++- pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 824b909f1d9..9c2334f38db 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv }: +{ fetchurl, stdenv, dejagnu, doCheck ? false }: stdenv.mkDerivation rec { name = "libffi-3.2.1"; @@ -10,11 +10,15 @@ stdenv.mkDerivation rec { patches = if stdenv.isCygwin then [ ./3.2.1-cygwin.patch ] else null; + buildInputs = stdenv.lib.optional doCheck dejagnu; + configureFlags = [ "--with-gcc-arch=generic" # no detection of -march= or -mtune= "--enable-pax_emutramp" ]; + inherit doCheck; + dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling. # Install headers in the right place. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e759dba84ee..fc95924320f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6659,7 +6659,10 @@ let }; glib = callPackage ../development/libraries/glib { }; - glib-tested = glib.override { doCheck = true; }; # checked version separate to break cycles + glib-tested = glib.override { # checked version separate to break cycles + doCheck = true; + libffi = libffi.override { doCheck = true; }; + }; glibmm = callPackage ../development/libraries/glibmm { }; glib_networking = callPackage ../development/libraries/glib-networking {}; From 82a21ccaf7b3913657eabbd085130c308461ebb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 15 Jun 2015 10:56:24 +0200 Subject: [PATCH 310/707] libffi: refactor meta --- pkgs/development/libraries/libffi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 9c2334f38db..5c981e664cb 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ln -s${if (stdenv.isFreeBSD || stdenv.isOpenBSD || stdenv.isDarwin) then "" else "r"}v "$out/lib/"libffi*/include "$out/include" ''; - meta = { + meta = with stdenv.lib; { description = "A foreign function call interface library"; longDescription = '' The libffi library provides a portable, high level programming @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { ''; homepage = http://sourceware.org/libffi/; # See http://github.com/atgreen/libffi/blob/master/LICENSE . - license = stdenv.lib.licenses.free; + license = licenses.free; maintainers = [ ]; - platforms = stdenv.lib.platforms.all; + platforms = platforms.all; }; } From daa199a95ef542d00d7580a9bf7d2eaf51365c0e Mon Sep 17 00:00:00 2001 From: Jan Malakhovski Date: Sat, 24 Oct 2015 10:27:30 +0000 Subject: [PATCH 311/707] texinfo: fix doCheck properly, cleanup (close #11527) --- pkgs/development/tools/misc/texinfo/5.2.nix | 11 +++++++---- pkgs/development/tools/misc/texinfo/6.0.nix | 15 +++++++++------ 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/misc/texinfo/5.2.nix b/pkgs/development/tools/misc/texinfo/5.2.nix index c43ebcd2de2..99582e0f8a3 100644 --- a/pkgs/development/tools/misc/texinfo/5.2.nix +++ b/pkgs/development/tools/misc/texinfo/5.2.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, ncurses, perl, xz, interactive ? false }: +{ stdenv, fetchurl, ncurses, perl, xz, procps, interactive ? false }: + +with stdenv.lib; stdenv.mkDerivation rec { name = "texinfo-5.2"; @@ -9,7 +11,8 @@ stdenv.mkDerivation rec { }; buildInputs = [ perl xz ] - ++ stdenv.lib.optional interactive ncurses; + ++ optional interactive ncurses + ++ optional doCheck procps; # for tests preInstall = '' installFlags="TEXMF=$out/texmf-dist"; @@ -21,8 +24,8 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.gnu.org/software/texinfo/"; description = "The GNU documentation system"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix index 11e822291e8..c947586f0fb 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.0.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, ncurses, perl, xz, libiconv, gawk, interactive ? false }: +{ stdenv, fetchurl, ncurses, perl, xz, libiconv, gawk, procps, interactive ? false }: + +with stdenv.lib; stdenv.mkDerivation rec { name = "texinfo-6.0"; @@ -9,8 +11,9 @@ stdenv.mkDerivation rec { }; buildInputs = [ perl xz ] - ++ stdenv.lib.optionals stdenv.isSunOS [ libiconv gawk ] - ++ stdenv.lib.optional interactive ncurses; + ++ optionals stdenv.isSunOS [ libiconv gawk ] + ++ optional interactive ncurses + ++ optional doCheck procps; # for tests configureFlags = stdenv.lib.optionalString stdenv.isSunOS "AWK=${gawk}/bin/awk"; @@ -19,13 +22,13 @@ stdenv.mkDerivation rec { installTargets="install install-tex"; ''; - doCheck = !stdenv.isDarwin && !interactive && !stdenv.isSunOS/*flaky*/; + doCheck = !stdenv.isDarwin && !stdenv.isSunOS/*flaky*/; meta = { homepage = "http://www.gnu.org/software/texinfo/"; description = "The GNU documentation system"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. From 5d4f0b556e0d6326ee51ea1c418058f1cd12b83c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 08:42:28 +0100 Subject: [PATCH 312/707] texinfo: cleanups and doCheck = false for non-interactive ... to simplify bootstrapping. Discussion on #11527. --- pkgs/development/tools/misc/texinfo/6.0.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix index c947586f0fb..28b05866b84 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.0.nix @@ -15,14 +15,15 @@ stdenv.mkDerivation rec { ++ optional interactive ncurses ++ optional doCheck procps; # for tests - configureFlags = stdenv.lib.optionalString stdenv.isSunOS "AWK=${gawk}/bin/awk"; + configureFlags = stdenv.lib.optional stdenv.isSunOS "AWK=${gawk}/bin/awk"; preInstall = '' installFlags="TEXMF=$out/texmf-dist"; installTargets="install install-tex"; ''; - doCheck = !stdenv.isDarwin && !stdenv.isSunOS/*flaky*/; + doCheck = interactive # simplify bootstrapping + && !stdenv.isDarwin && !stdenv.isSunOS/*flaky*/; meta = { homepage = "http://www.gnu.org/software/texinfo/"; @@ -45,6 +46,5 @@ stdenv.mkDerivation rec { need revise only that one document. The Texinfo system is well-integrated with GNU Emacs. ''; - branch = "5.2"; }; } From 07eb0ad76c5bf14f71e9260206c92c180e915557 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 17 Dec 2015 16:47:25 +0300 Subject: [PATCH 313/707] phc-intel: fix installation dir --- pkgs/os-specific/linux/phc-intel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index c3c62dbf5eb..4eed41254f9 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -33,8 +33,8 @@ in stdenv.mkDerivation { enableParallelBuilding = false; installPhase = '' - install -m 755 -d $out/lib/modules/${kernel.version}/extra/ - install -m 644 *.ko $out/lib/modules/${kernel.version}/extra/ + install -m 755 -d $out/lib/modules/${kernel.modDirVersion}/extra/ + install -m 644 *.ko $out/lib/modules/${kernel.modDirVersion}/extra/ ''; meta = with stdenv.lib; { From 301c74bc161dc48ba6059ab83338200dfad7cf79 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Thu, 17 Dec 2015 08:10:16 -0400 Subject: [PATCH 314/707] nixos: improve mime DB cache generation (close #11785) --- nixos/modules/config/system-path.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index e14e4cf1314..f510b58842e 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -128,7 +128,7 @@ in # !!! Hacky, should modularise. postBuild = '' - if [ -x $out/bin/update-mime-database -a -w $out/share/mime/packages ]; then + if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null fi From f2a98371138fe58680d035846f46a18e39a581c2 Mon Sep 17 00:00:00 2001 From: Matthijs Steen Date: Thu, 17 Dec 2015 12:48:43 +0100 Subject: [PATCH 315/707] grml-zsh-config: init at 0.12.4 --- pkgs/shells/grml-zsh-config/default.nix | 38 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/shells/grml-zsh-config/default.nix diff --git a/pkgs/shells/grml-zsh-config/default.nix b/pkgs/shells/grml-zsh-config/default.nix new file mode 100644 index 00000000000..5da96adaabd --- /dev/null +++ b/pkgs/shells/grml-zsh-config/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchurl, lib +, zsh, coreutils, inetutils, procps, txt2tags }: + +with lib; + +stdenv.mkDerivation rec { + name = "grml-zsh-config-${version}"; + version = "0.12.4"; + + src = fetchurl { + url = "http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${version}.tar.gz"; + sha256 = "1cbedc41e32787c37c2ed546355a26376dacf2ae1fab9551c9ace3e46d236b72"; + }; + + buildInputs = [ zsh coreutils inetutils procps txt2tags ]; + + buildPhase = '' + cd doc + make + cd .. + ''; + + installPhase = '' + install -D -m644 etc/zsh/keephack $out/etc/zsh/keephack + install -D -m644 etc/zsh/zshrc $out/etc/zsh/zshrc + + install -D -m644 doc/grmlzshrc.5 $out/share/man/man5/grmlzshrc.5 + ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz + ''; + + meta = with stdenv.lib; { + description = "grml's zsh setup"; + homepage = http://grml.org/zsh/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.msteen ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44b92c77c9c..790312b11e7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3741,6 +3741,8 @@ let nix-zsh-completions = callPackage ../shells/nix-zsh-completions { }; + grml-zsh-config = callPackage ../shells/grml-zsh-config { }; + ### DEVELOPMENT / COMPILERS From c3e010720191c29df9728a3fb9697bcd237031e1 Mon Sep 17 00:00:00 2001 From: aaron levin Date: Thu, 17 Dec 2015 16:40:35 +0100 Subject: [PATCH 316/707] Remove default scsiLinkPolicy --- nixos/modules/config/power-management.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix index 6086f06ca3d..fbd7867a095 100644 --- a/nixos/modules/config/power-management.nix +++ b/nixos/modules/config/power-management.nix @@ -71,7 +71,6 @@ in # FIXME: Implement powersave governor for sandy bridge or later Intel CPUs powerManagement.cpuFreqGovernor = mkDefault "ondemand"; - powerManagement.scsiLinkPolicy = mkDefault "max_performance"; systemd.targets.post-resume = { description = "Post-Resume Actions"; From a111fa517e3bff2e9b240c16f544d997b5e1c9dc Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 17 Dec 2015 18:27:18 +0100 Subject: [PATCH 317/707] zsh-navigation-tools: 1.3.2 -> 1.4 --- pkgs/tools/misc/zsh-navigation-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index 8f335d7cf58..ae4774c0e12 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zsh-navigation-tools-${version}"; - version = "1.3.2"; + version = "1.4"; src = fetchFromGitHub { owner = "psprint"; repo = "zsh-navigation-tools"; rev = "v${version}"; - sha256 = "1xj1jakcrf0sfkiq6l1drg6vzylhkk0kmhs7nz08dv18pgx9jy36"; + sha256 = "1r24mpx57jyn201mdhd793rlhlr5r83n9137aafkgf86282ghr7y"; }; dontBuild = true; From 976a5f68fb9ce10036577b88440b1df3231ba1a6 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Thu, 17 Dec 2015 19:30:37 +0100 Subject: [PATCH 318/707] pythonPackages.colorlog: init at 2.6.0 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 135e5b06cb3..59ff6f9a921 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1513,6 +1513,22 @@ in modules // { propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ]; }; + colorlog = buildPythonPackage rec { + name = "colorlog-${version}"; + version = "2.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/colorlog/${name}.tar.gz"; + sha256 = "1s8z9zr4r18igr4rri71nba01arnpppifrkaxhi2xb51500sw0qg"; + }; + + meta = { + description = "Log formatting with colors"; + homepage = https://github.com/borntyping/python-colorlog; + license = licenses.free; # BSD-like + }; + }; + colour = buildPythonPackage rec { name = "${pname}-${version}"; pname = "colour"; From d879a242cd747c1cee86f9f651b34409aabbfd73 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 17 Dec 2015 11:51:07 -0800 Subject: [PATCH 319/707] haskellPackages.git-annex: Do not build lsof on Darwin --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f7fe236da35..dbfd7850c37 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -66,11 +66,13 @@ self: super: { # build which has the assistant to be used in the top-level. git-annex_5_20150727 = (disableCabalFlag super.git-annex_5_20150727 "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; git-annex = (disableCabalFlag super.git-annex "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; From 20c1ef63cb85fd1c423cea9a62cad79ca2a4d3db Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 17 Dec 2015 23:14:27 +0300 Subject: [PATCH 320/707] vimPlugins: update 2015-12-17 --- pkgs/misc/vim-plugins/default.nix | 96 +++++++++++++++---------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 30c4c7d63b1..603e4db4ac6 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -302,11 +302,11 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2015-12-01"; + name = "fugitive-2015-12-15"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "d854197c03c0b027cca41abf86a5557c5473b82f"; - sha256 = "cbe8333d1d359c5ba556d8f59e6700d14c0425a3b333503e3411e48b4b239cda"; + rev = "8851b8fe643517af160f59dfc3d88a0c4eed1fa5"; + sha256 = "bba527606ab63cc6cce24ca1b44226aa37aced7f1aac4c352a6b83ce522c4b5f"; }; dependencies = []; @@ -357,11 +357,11 @@ rec { }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2015-12-05"; + name = "neomake-2015-12-11"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "73f186e069d432b7746c1c09ac085c68d6e120f8"; - sha256 = "e6bbe895e373a3b596291e0420d856928cd874485c4c2f5b7c2972738696464b"; + rev = "d4c0a6f062a0d098126e87bb718b92fe7b79fd97"; + sha256 = "1b2f1e024ffdfe0613c0aeb4c6fc64d64c6a25a00841538b7a371efd34cb8615"; }; dependencies = []; @@ -434,11 +434,11 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2015-12-08"; + name = "vim-go-2015-12-15"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "0aeb07e9305f5696bfc1cffb1e3b2226d851b913"; - sha256 = "6bd784ef49f68526b26b25149f153b2caafa5840690ee65452b9ee6d0e99814e"; + rev = "70c363044df808e34d947815d01a37d4e7564421"; + sha256 = "9f1764a5e8c7450c4af9fc64b3170e10d89c4d6b4ad69a758878bed16362cf09"; }; dependencies = []; @@ -511,11 +511,11 @@ rec { }; vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-buffergator-2015-08-15"; + name = "vim-buffergator-2015-12-16"; src = fetchgit { url = "git://github.com/jeetsukumaran/vim-buffergator"; - rev = "ed3bfc2b560f687075d9c2225079bfe43f1f2390"; - sha256 = "f2024ecf447e5cca2d66efdb6d31e2890e7210e142728873ab521b8c5ea17c11"; + rev = "ab5ef1a2c3b5076204ed3ee1601fcedda379967b"; + sha256 = "5c479d884bccf6a07891aff2cb09fbaf59d8460bdc91ad9fb19cf0d8e020c29d"; }; dependencies = []; @@ -621,11 +621,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2015-12-11"; + name = "vimtex-2015-12-16"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "62d0b9b44c53eb2302a50ad6f7a8446ab10e233c"; - sha256 = "b847f22a40e605c05a5e7672562e2e58b0effd5615c1e199937a920002ff4634"; + rev = "e982722e89462716e2ecdb6ce7aa9baea6dc8c98"; + sha256 = "4c0e8399b97cbd24b0131c3e22fc8873d04576e21156b80e5c678b4ce3d19fe0"; }; dependencies = []; @@ -727,44 +727,44 @@ rec { }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2015-12-11"; + name = "neocomplete-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "1c8d6356ad562e7430f091950530925f0a9dad5f"; - sha256 = "148d61fff5e07547a09e41f9105fa3a4bbecf82089855cab8d5b26cccddec0f5"; + rev = "d1cb4c57e5eb8b453b63432dcbcb45a15c0fd07e"; + sha256 = "a704696e66101875e98a1b2b6815acad647b87a07a3842fd6f9f91b8a70411e5"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2015-12-05"; + name = "neosnippet-snippets-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "42e81d1409fd08a3acec8c82c8480880338e4808"; - sha256 = "fb8aca8264851bceecf06d483162a55897f8ecdbe873fbc383d5a05cd0a50e1f"; + rev = "ec9267240ecb855657de830c9c68e5f6e34cfe65"; + sha256 = "319a7ac504b462f7e466c9e02ff6e54b8374e5970f148552986c83136c423854"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2015-12-12"; + name = "neosnippet-vim-2015-12-16"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "7dc7ce803e28783bcbb829bfdbe8bbae6e51139a"; - sha256 = "bddcd3e651fbd96cb740fec67782439f3d899715e564b539e6e19eef34750d56"; + rev = "cfc99eedb5caf3d6baf867db5220a891b4686699"; + sha256 = "aa34c6e28eb281bec6e617f03eb5e094cd2cfe18951f9e4823dda0ccdabaffad"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2015-12-05"; + name = "unite-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "f376de838a46c4848a81a2e95ebc4116732b1fef"; - sha256 = "372c353040b3e79dd6c223e0ead442090e4257daabd0d002e733d9cb691c778c"; + rev = "aefd6c32ef8dc5b357efe7d8e5cd3dd4aa785d5c"; + sha256 = "83562a15afc1c41a5d407fd0eb7d26beec216a9431dd80992bcd615afd595e5e"; }; dependencies = []; @@ -822,11 +822,11 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-11-14"; + name = "vim-quickrun-2015-12-17"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "5bcb966b80d9d9e4051d9882a07fd61a2ea39d23"; - sha256 = "894a0f5c569ddd633514084e8021322b2fe62889fa8d32b2211d7bab04a701f2"; + rev = "97e1c8f6674d3ccce4730510d67c4e15894adcdc"; + sha256 = "c61167569d5b05767fdaffc1b09aab729c777d01afaff8c0efd641a61ebe758c"; }; dependencies = []; @@ -877,11 +877,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2015-12-11"; + name = "youcompleteme-2015-12-13"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "14083d939d4b1341dc6ad2053914c327b7d647b1"; - sha256 = "ec900cb1fabfb1690ae735a46375e1f5044f70df5fd34e2ea233e9b4f558e342"; + rev = "93c2a8644bcfc84590bea5e19eab350fe245e504"; + sha256 = "32aaa99c5398d65875c1fdf5ed22f58aeeb267a2840930479523815b94b4111c"; }; dependencies = []; buildInputs = [ @@ -1127,11 +1127,11 @@ rec { }; sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "sensible-2015-09-24"; + name = "sensible-2015-12-11"; src = fetchgit { url = "git://github.com/tpope/vim-sensible"; - rev = "26f8783e08efef27fc01e0df6465b8f94c8bf270"; - sha256 = "e04193a4f38bdc3c552ce5033bb3922a7ccae84ec6e1e46e12e71e1afb93cac3"; + rev = "8c4429c70c186f9be47121b126c13095793062a1"; + sha256 = "f3b5de776ae4fa2c8769f2f04639d2a0218c88345beba9364899d359d32cf6e5"; }; dependencies = []; @@ -1214,22 +1214,22 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2015-12-11"; + name = "tlib-2015-12-12"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "b957a0a6b7f7a1b0ffa370963712b4ef526b5f76"; - sha256 = "12168055ecafbbde4afafe7d5fce8046b21d62d748326a290b5dc4239b30db34"; + rev = "599934acbbcf1637616878fc6e8f5aba1b301a29"; + sha256 = "2401a623363bf31fa9f152faae90268d06ed5cef8352163c19b0c7b013e5c0b7"; }; dependencies = []; }; undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "undotree-2015-10-28"; + name = "undotree-2015-12-16"; src = fetchgit { url = "git://github.com/mbbill/undotree"; - rev = "74874d92d4bde3d026f2d0f3ff780b1787ba4e84"; - sha256 = "aa36bd56b1af88b55aac561ba7339944a28f8159c11f1058abb692eb9f99990d"; + rev = "39e5cf0fc241c64e920f91d52299b444475d54df"; + sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca"; }; dependencies = []; @@ -1489,11 +1489,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2015-12-10"; + name = "vim-gitgutter-2015-12-16"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "28aea43adf187ca01f0255c5a9418a5aac6380f1"; - sha256 = "74c6655373fd7d671e8599cd1996b962b12fc23fcc1c6437a9a09429509f3efb"; + rev = "f52f875fc7b25b601366bd6c0d67c53ad84f9559"; + sha256 = "43e36cff7c12115f05dc3dc5225f38e6c084bf37f8a43a600ad54861392eadf7"; }; dependencies = []; @@ -1555,11 +1555,11 @@ rec { }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2015-12-08"; + name = "vim-snippets-2015-12-17"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "c0040abe4e54786c77ec41d6dbd1be916a03a506"; - sha256 = "20b8a1e4ae563b5119d181d19538d540e4811cd20dd2509cc29940a01208bc7e"; + rev = "d5153d63b16e956e892f039ac5982963660a1c68"; + sha256 = "c79fc743ec1e565111876357136cee1a04ed6b3f58d1586df322a38b026f8a49"; }; dependencies = []; From 996a0a9abf7e3338e9fbcf3af540749bda565012 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 22:43:34 +0100 Subject: [PATCH 321/707] liboauth: add `nss3` path to liboauth.la Fixes the following libgdata build error: ``` CCLD gdata/libgdata.la /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lssl3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lsmime3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lnss3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lnssutil3 collect2: error: ld returned 1 exit status ``` --- pkgs/development/libraries/liboauth/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix index 8f46d1c0bfd..479a187cf87 100644 --- a/pkgs/development/libraries/liboauth/default.nix +++ b/pkgs/development/libraries/liboauth/default.nix @@ -13,6 +13,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-nss" ]; + postInstall = '' + substituteInPlace $out/lib/liboauth.la \ + --replace "-lnss3" "-L${nss}/lib -lnss3" + ''; + meta = with stdenv.lib; { platforms = platforms.linux; description = "C library implementing the OAuth secure authentication protocol"; From a3c2bd5aec63b7b3512a4a53f1ed1bde39d1ccb8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Dec 2015 21:47:21 +0100 Subject: [PATCH 322/707] eboard: fix build Add perl dependency and patch ./configure to use it. --- pkgs/games/eboard/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/games/eboard/default.nix b/pkgs/games/eboard/default.nix index 8dd06fa6a28..3d070c5eafb 100644 --- a/pkgs/games/eboard/default.nix +++ b/pkgs/games/eboard/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, pkgconfig, gtk }: +{ stdenv, fetchurl, perl, pkgconfig, gtk }: stdenv.mkDerivation { name = "eboard-1.1.1"; - + src = fetchurl { url = mirror://sourceforge/eboard/eboard-1.1.1.tar.bz2; sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd"; @@ -10,7 +10,14 @@ stdenv.mkDerivation { patches = [ ./eboard.patch ]; - buildInputs = [ pkgconfig gtk ]; + buildInputs = [ gtk ]; + nativeBuildInputs = [ perl pkgconfig ]; + + preConfigure = '' + patchShebangs ./configure + ''; + + NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; meta = { homepage = http://www.bergo.eng.br/eboard/; From 341d23324de72c4b3ebc6891dbfce49c8918081c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 05:43:21 +0100 Subject: [PATCH 323/707] libpsl: 2015-12-03 -> 2015-12-17 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 4058943b6f3..1412e1d59fa 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -5,10 +5,10 @@ let version = "${libVersion}-list-${listVersion}"; - listVersion = "2015-12-03"; + listVersion = "2015-12-17"; listSources = fetchFromGitHub { - sha256 = "1192g8x57pm9r3va1xfvni0jczg8wy5kka6vcwnvc3lk4314l2na"; - rev = "6c137ba598d61f2ea299632bb447608a9fc25d0f"; + sha256 = "09scxqlw7cp7vkjn7bp7dr9nqb3wg84kvw3iyapyxddfri4k0rvl"; + rev = "9636089f5f22b0af98b1a48fb9179dc875f0872d"; repo = "list"; owner = "publicsuffix"; }; From 11a8cddff41343d2add0239b02709b38d2c3c1e9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 06:30:20 +0100 Subject: [PATCH 324/707] man-db: use groff from closure, not PATH --- pkgs/tools/misc/man-db/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix index 3ec429269a3..d77b7ff4812 100644 --- a/pkgs/tools/misc/man-db/default.nix +++ b/pkgs/tools/misc/man-db/default.nix @@ -9,12 +9,18 @@ stdenv.mkDerivation rec { }; buildInputs = [ pkgconfig libpipeline db groff ]; - + configureFlags = [ "--disable-setuid" "--sysconfdir=/etc" "--localstatedir=/var" "--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d" + "--with-eqn=${groff}/bin/eqn" + "--with-neqn=${groff}/bin/neqn" + "--with-nroff=${groff}/bin/nroff" + "--with-pic=${groff}/bin/pic" + "--with-refer=${groff}/bin/refer" + "--with-tbl=${groff}/bin/tbl" ]; installFlags = [ "DESTDIR=\${out}" ]; From 1e3314718debdd69aac8d333525c7a3f20e2f0b6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 02:39:44 +0100 Subject: [PATCH 325/707] uksmtools: init at 2015-09-25 --- pkgs/os-specific/linux/uksmtools/default.nix | 27 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/os-specific/linux/uksmtools/default.nix diff --git a/pkgs/os-specific/linux/uksmtools/default.nix b/pkgs/os-specific/linux/uksmtools/default.nix new file mode 100644 index 00000000000..eeb5440f510 --- /dev/null +++ b/pkgs/os-specific/linux/uksmtools/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchgit, cmake }: + +let version = "2015-09-25"; in +stdenv.mkDerivation { + name = "uksmtools-${version}"; + + src = fetchgit { + sha256 = "0ngdmici2vgi2z02brzc3f78j1g1y9myzfxn46zlm1skg94fp692"; + rev = "9f59a3a0b494b758aa91d7d8fa04e21b5e6463c0"; + url = "https://github.com/pfactum/uksmtools.git"; + }; + + nativeBuildInputs = [ cmake ]; + + enableParallelBuilding = true; + + doCheck = false; + + meta = with stdenv.lib; { + inherit version; + description = "Tools to control Linux UKSM (Ultra Kernel Same-page Merging)"; + homepage = https://github.com/pfactum/uksmtools/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4ca05bd5563..7de5ad294a3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10547,6 +10547,8 @@ let udisks_glue = callPackage ../os-specific/linux/udisks-glue { }; + uksmtools = callPackage ../os-specific/linux/uksmtools { }; + untie = callPackage ../os-specific/linux/untie { }; upower = callPackage ../os-specific/linux/upower { }; From 535b4279c7aafe68971527fe2ddb0dd8d2b70ec9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 16:41:57 +0100 Subject: [PATCH 326/707] ipad_charge, simple-scan: libusb{-compat -> 1} --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- pkgs/tools/misc/ipad_charge/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index c205c2a3f1c..c169d262fb6 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool -, libusb, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }: +, libusb1, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }: let version = "3.19.3"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; }; - buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 saneBackends + buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 saneBackends vala ]; nativeBuildInputs = [ intltool itstool pkgconfig wrapGAppsHook ]; diff --git a/pkgs/tools/misc/ipad_charge/default.nix b/pkgs/tools/misc/ipad_charge/default.nix index df987ed86c1..73fee38cbf2 100644 --- a/pkgs/tools/misc/ipad_charge/default.nix +++ b/pkgs/tools/misc/ipad_charge/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, libusb }: +{ stdenv, fetchFromGitHub, libusb1 }: let version = "2015-02-03"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "mkorenkov"; }; - buildInputs = [ libusb ]; + buildInputs = [ libusb1 ]; postPatch = '' substituteInPlace Makefile \ From 61420e7ea95933db47e4b74c5a274e008fd31feb Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Fri, 18 Dec 2015 00:43:07 +0100 Subject: [PATCH 327/707] pkgs.zdfmediathk: 9 -> 10 --- pkgs/applications/video/zdfmediathk/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/video/zdfmediathk/default.nix b/pkgs/applications/video/zdfmediathk/default.nix index 06342075182..b7f95fccda3 100644 --- a/pkgs/applications/video/zdfmediathk/default.nix +++ b/pkgs/applications/video/zdfmediathk/default.nix @@ -4,19 +4,16 @@ with stdenv; mkDerivation rec { - version = "9"; + version = "10"; name = "zdfmediathk-${version}"; src = fetchurl { - url = "http://downloads.sourceforge.net/project/zdfmediathk/Mediathek/Mediathek%209/MediathekView_${version}.zip"; - sha256 = "1wff0igr33z9p1mjw7yvb6658smdwnp22dv8klz0y8qg116wx7a4"; + url = "https://github.com/xaverW/MediathekView/archive/Version${version}.tar.gz"; + sha256 = "12iyigqjslbn8rzym1mq1s0mvss7r97aiy6wfdrq5m0psarlcljw"; }; - buildInputs = [ unzip ]; - - unpackPhase = "unzip $src"; - installPhase = '' mkdir -p $out/{lib,bin,share/{doc,licenses}} + cd dist/ install -m644 MediathekView.jar $out/ install -m644 -t $out/lib lib/* install -m755 bin/flv.sh $out/bin/ @@ -32,7 +29,7 @@ mkDerivation rec { meta = with stdenv.lib; { description = "Offers access to the Mediathek of different tv stations (ARD, ZDF, Arte, etc.)"; - homepage = "http://zdfmediathk.sourceforge.net/"; + homepage = "https://github.com/xaverW/MediathekView/"; license = licenses.gpl3; maintainers = [ maintainers.flosse ]; platforms = platforms.all; From 68c504fa8ffed81a4d666b059865cb0ebf85c70b Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 02:03:00 +0100 Subject: [PATCH 328/707] beets: Use bs1770gain by default for replaygain After trying with a dozen files, it seems the bs1770gain backend is much more reliable than the audiotools backend and especially does a better job (well, compared to audiotools which either does doing nothing at all or throws an exception) when used on alboms that contain different sample rates/sizes. Additionally, we already had a few issues regarding the audiotools backend, even to the extent that @sampsyco almost wanted to drop it upstream (see sampsyco/beets#1342). Also related issues are #10376 and sampsyo/beets#1592. Signed-off-by: aszlig --- pkgs/tools/audio/beets/default.nix | 13 +++++++++---- ...ls.patch => replaygain-default-bs1770gain.patch} | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) rename pkgs/tools/audio/beets/{replaygain-default-audiotools.patch => replaygain-default-bs1770gain.patch} (93%) diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 123b183f2d3..7a678148944 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -8,7 +8,7 @@ , enableFetchart ? true , enableLastfm ? true , enableMpd ? true -, enableReplaygain ? true +, enableReplaygain ? true, bs1770gain ? null , enableThumbnails ? true , enableWeb ? true @@ -22,7 +22,7 @@ assert enableEchonest -> pythonPackages.pyechonest != null; assert enableFetchart -> pythonPackages.responses != null; assert enableLastfm -> pythonPackages.pylast != null; assert enableMpd -> pythonPackages.mpd != null; -assert enableReplaygain -> pythonPackages.audiotools != null; +assert enableReplaygain -> bs1770gain != null; assert enableThumbnails -> pythonPackages.pyxdg != null; assert enableWeb -> pythonPackages.flask != null; @@ -90,7 +90,6 @@ in buildPythonPackage rec { ++ optional enableEchonest pythonPackages.pyechonest ++ optional enableLastfm pythonPackages.pylast ++ optional enableMpd pythonPackages.mpd - ++ optional enableReplaygain pythonPackages.audiotools ++ optional enableThumbnails pythonPackages.pyxdg ++ optional enableWeb pythonPackages.flask; @@ -104,7 +103,7 @@ in buildPythonPackage rec { ]; patches = [ - ./replaygain-default-audiotools.patch + ./replaygain-default-bs1770gain.patch ]; postPatch = '' @@ -119,6 +118,12 @@ in buildPythonPackage rec { s,"flac","${flac}/bin/flac", s,"mp3val","${mp3val}/bin/mp3val", }' beetsplug/badfiles.py + '' + optionalString enableReplaygain '' + sed -i -re ' + s!^( *cmd *= *b?['\'''"])(bs1770gain['\'''"])!\1${bs1770gain}/bin/\2! + ' beetsplug/replaygain.py + sed -i -e 's/if has_program.*bs1770gain.*:/if True:/' \ + test/test_replaygain.py ''; doCheck = true; diff --git a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch similarity index 93% rename from pkgs/tools/audio/beets/replaygain-default-audiotools.patch rename to pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch index d852ea6feca..538f9e93303 100644 --- a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch +++ b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch @@ -11,7 +11,7 @@ index 40b3a3a..9b54a5a 100644 'overwrite': False, 'auto': True, - 'backend': u'command', -+ 'backend': u'audiotools', ++ 'backend': u'bs1770gain', 'targetlevel': 89, }) From ec3d068170a5e29731655e7fc94a4f8a8d9ba8a1 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 03:06:47 +0100 Subject: [PATCH 329/707] tomahawk: Build with older taglib version 1.9 The 0.8.4 version of Tomahawk doesn't yet recognize the new taglib version that has been introduced in b762a20 and fails during configurePhase. Signed-off-by: aszlig --- 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 7de5ad294a3..e109024a199 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13329,6 +13329,7 @@ let tomahawk = callPackage ../applications/audio/tomahawk { inherit (pkgs.kde4) kdelibs; + taglib = taglib_1_9; enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; From 662ab05119e88f70d6b43518bffec0bca4bdb474 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 05:34:46 +0100 Subject: [PATCH 330/707] beets: Add the external beets-alternatives plugin It's not included in upstream beets but are linked in the documentation under "Other plugins", see: http://beets.readthedocs.org/en/v1.3.15/plugins/index.html#other-plugins I found this one particularly useful for syncing files to varios media players that refuse to read my FLAC files properly. Signed-off-by: aszlig --- .../tools/audio/beets/alternatives-plugin.nix | 25 +++++++++++++++++++ pkgs/tools/audio/beets/default.nix | 8 +++++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/audio/beets/alternatives-plugin.nix diff --git a/pkgs/tools/audio/beets/alternatives-plugin.nix b/pkgs/tools/audio/beets/alternatives-plugin.nix new file mode 100644 index 00000000000..1b0c9b3992b --- /dev/null +++ b/pkgs/tools/audio/beets/alternatives-plugin.nix @@ -0,0 +1,25 @@ +{ stdenv, buildPythonPackage, fetchFromGitHub, pythonPackages }: + +buildPythonPackage rec { + name = "beets-alternatives-${version}"; + version = "0.8.2"; + + src = fetchFromGitHub { + repo = "beets-alternatives"; + owner = "geigerzaehler"; + rev = "v${version}"; + sha256 = "10za6h59pxa13y8i4amqhc6392csml0dl771lssv6b6a98kamsy7"; + }; + + postPatch = '' + sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py + ''; + + propagatedBuildInputs = with pythonPackages; [ futures ]; + + meta = { + description = "Beets plugin to manage external files"; + homepage = "https://github.com/geigerzaehler/beets-alternatives"; + license = stdenv.lib.licenses.mit; + }; +} diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 7a678148944..35a69262acd 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -12,6 +12,9 @@ , enableThumbnails ? true , enableWeb ? true +# External plugins +, enableAlternatives ? false + , bashInteractive, bashCompletion }: @@ -91,7 +94,10 @@ in buildPythonPackage rec { ++ optional enableLastfm pythonPackages.pylast ++ optional enableMpd pythonPackages.mpd ++ optional enableThumbnails pythonPackages.pyxdg - ++ optional enableWeb pythonPackages.flask; + ++ optional enableWeb pythonPackages.flask + ++ optional enableAlternatives (import ./alternatives-plugin.nix { + inherit stdenv buildPythonPackage pythonPackages fetchFromGitHub; + }); buildInputs = with pythonPackages; [ beautifulsoup4 From 4c61faa009df175b77148ce587ade14fe9b31b12 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 07:09:42 +0100 Subject: [PATCH 331/707] nixos/tests/networking: Add a test for loopback It serves as a regression test, because right now if you enable networking.useNetworkd the default loopback interface doesn't get assigned any IP addresses. To be sure, I have bisected this and it has been introduced with the update to systemd 228 in 1da87d4. Only the "scripted" networking tests have to succeed in order to trigger a channel update of nixos-unstable, so I'm leaving this test as broken and we have to figure out next what's the *exact* reason for the breakage. Signed-off-by: aszlig --- nixos/release-combined.nix | 1 + nixos/release.nix | 2 ++ nixos/tests/networking.nix | 11 +++++++++++ 3 files changed, 14 insertions(+) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 9a2a77b3155..06890b458ef 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -71,6 +71,7 @@ in rec { (all nixos.tests.misc) (all nixos.tests.nat.firewall) (all nixos.tests.nat.standalone) + (all nixos.tests.networking.scripted.loopback) (all nixos.tests.networking.scripted.static) (all nixos.tests.networking.scripted.dhcpSimple) (all nixos.tests.networking.scripted.dhcpOneIf) diff --git a/nixos/release.nix b/nixos/release.nix index b5ac97b3b94..e1235c5fe28 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -256,6 +256,7 @@ in rec { tests.mysqlReplication = callTest tests/mysql-replication.nix {}; tests.nat.firewall = callTest tests/nat.nix { withFirewall = true; }; tests.nat.standalone = callTest tests/nat.nix { withFirewall = false; }; + tests.networking.networkd.loopback = callTest tests/networking.nix { networkd = true; test = "loopback"; }; tests.networking.networkd.static = callTest tests/networking.nix { networkd = true; test = "static"; }; tests.networking.networkd.dhcpSimple = callTest tests/networking.nix { networkd = true; test = "dhcpSimple"; }; tests.networking.networkd.dhcpOneIf = callTest tests/networking.nix { networkd = true; test = "dhcpOneIf"; }; @@ -264,6 +265,7 @@ in rec { tests.networking.networkd.macvlan = callTest tests/networking.nix { networkd = true; test = "macvlan"; }; tests.networking.networkd.sit = callTest tests/networking.nix { networkd = true; test = "sit"; }; tests.networking.networkd.vlan = callTest tests/networking.nix { networkd = true; test = "vlan"; }; + tests.networking.scripted.loopback = callTest tests/networking.nix { networkd = false; test = "loopback"; }; tests.networking.scripted.static = callTest tests/networking.nix { networkd = false; test = "static"; }; tests.networking.scripted.dhcpSimple = callTest tests/networking.nix { networkd = false; test = "dhcpSimple"; }; tests.networking.scripted.dhcpOneIf = callTest tests/networking.nix { networkd = false; test = "dhcpOneIf"; }; diff --git a/nixos/tests/networking.nix b/nixos/tests/networking.nix index 6a7f63702c4..813d7c2bf51 100644 --- a/nixos/tests/networking.nix +++ b/nixos/tests/networking.nix @@ -31,6 +31,17 @@ import ./make-test.nix ({ pkgs, networkd, test, ... }: }; }; testCases = { + loopback = { + name = "Loopback"; + machine.networking.useNetworkd = networkd; + testScript = '' + startAll; + $machine->waitForUnit("network-interfaces.target"); + $machine->waitForUnit("network.target"); + $machine->succeed("ip addr show lo | grep -q 'inet 127.0.0.1/8 '"); + $machine->succeed("ip addr show lo | grep -q 'inet6 ::1/128 '"); + ''; + }; static = { name = "Static"; nodes.router = router; From 37341582bb738a6d0ab0abdf33e710f862897c84 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Fri, 18 Dec 2015 00:12:31 -0600 Subject: [PATCH 332/707] screen: include the utmp from the apple_sdk --- pkgs/tools/misc/screen/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/screen/default.nix b/pkgs/tools/misc/screen/default.nix index 3e130154e46..de9836422e6 100644 --- a/pkgs/tools/misc/screen/default.nix +++ b/pkgs/tools/misc/screen/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, ncurses, pam ? null }: +{ stdenv, fetchurl, fetchpatch, ncurses, utmp, pam ? null }: stdenv.mkDerivation rec { name = "screen-4.3.1"; @@ -26,7 +26,8 @@ stdenv.mkDerivation rec { sha256 = "192dsa8hm1zw8m638avzhwhnrddgizhyrwaxgwa96zr9vwai2nvc"; }); - buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam; + buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam + ++ stdenv.lib.optional stdenv.isDarwin utmp; doCheck = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7de5ad294a3..7902b5de95d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2985,7 +2985,9 @@ let samplicator = callPackage ../tools/networking/samplicator { }; - screen = callPackage ../tools/misc/screen { }; + screen = callPackage ../tools/misc/screen { + inherit (darwin.apple_sdk.libs) utmp; + }; screen-message = callPackage ../tools/X11/screen-message { }; From eab677ea213e040e6102f4acf7fb8ec59b1bb5d4 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 14:53:18 +0900 Subject: [PATCH 333/707] eventstore: fix source hash (close #11732) --- pkgs/servers/nosql/eventstore/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/nosql/eventstore/default.nix b/pkgs/servers/nosql/eventstore/default.nix index 9cb5dd41c1c..a42212ade08 100644 --- a/pkgs/servers/nosql/eventstore/default.nix +++ b/pkgs/servers/nosql/eventstore/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, fetchpatch, git, mono, v8, icu }: +{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }: # There are some similarities with the pinta derivation. We should # have a helper to make it easy to package these Mono apps. @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "EventStore-${version}"; version = "3.0.3"; - src = fetchgit { - url = "https://github.com/EventStore/EventStore.git"; - rev = "a1382252dd1ed0554ddb04015cdb2cbc1b0a65c1"; - sha256 = "07ir6jlli2q1yvsnyw8r8dfril6h1wmfj98yf7a6k81585v2mc6g"; - leaveDotGit = true; + src = fetchFromGitHub { + owner = "EventStore"; + repo = "EventStore"; + rev = "oss-v${version}"; + sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2"; }; patches = [ From 10e0b68141aef12c7841f71588b2688768483124 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 18 Dec 2015 09:41:11 +0100 Subject: [PATCH 334/707] lastpass-cli: 0.5.1 -> 0.7.0 --- pkgs/tools/security/lastpass-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 92c7a027d69..01495156810 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "lastpass-cli-${version}"; - version = "0.5.1"; + version = "0.7.0"; src = fetchFromGitHub { owner = "lastpass"; repo = "lastpass-cli"; rev = "v${version}"; - sha256 = "0k2dbfizd6gwd4s8badm50qg2djrh22szd932l1a96mn79q8zb70"; + sha256 = "18dn4sx173666w6aaqhwcya5x2z3q0fmhg8h76lgdmx8adrhzdzc"; }; buildInputs = [ From cf99e57c804b796299717ea429db85814c2025f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20M=C3=BCller?= Date: Fri, 18 Dec 2015 09:41:51 +0100 Subject: [PATCH 335/707] php: 7.0.0 -> 7.0.1 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 2c554648290..6760b88dac6 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -303,8 +303,8 @@ in { }; php70 = generic { - version = "7.0.0"; - sha256 = "1spwxpfx0q95cfkwl1n8hpczgwy69x901v60ywwpl5ijd0q58am9"; + version = "7.0.1"; + sha256 = "0hiyv71ysbzcl3kf28phjyycp7myjd89l8f28arrf4q0vb8kpkh4"; }; } From be6c6254107b4cac011a54946ecf39161c935db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 18 Dec 2015 10:05:57 +0100 Subject: [PATCH 336/707] telepathy-farstream: minor update 0.6.1 -> 0.6.2 Also cleanup unneeded dependencies, in particular gst-0.10. --- .../libraries/telepathy/farstream/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix index a5185689ee0..88eecd0703c 100644 --- a/pkgs/development/libraries/telepathy/farstream/default.nix +++ b/pkgs/development/libraries/telepathy/farstream/default.nix @@ -1,17 +1,14 @@ -{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib -, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }: +{ stdenv, fetchurl, pkgconfig, telepathy_glib, farstream, dbus_glib }: stdenv.mkDerivation rec { - name = "${pname}-0.6.1"; + name = "${pname}-0.6.2"; pname = "telepathy-farstream"; src = fetchurl { url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz"; - sha256 = "0ia8nldxxan1cvplr62aicjhfcrm27s3qyk0x46c8q0fmqvnzlm3"; + sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g"; }; - buildInputs = [ gst_plugins_base gst_python pygobject ]; - - propagatedBuildInputs = [ dbus_glib telepathy_glib gstreamer farstream ]; - nativeBuildInputs = [ pkgconfig python libxslt]; + propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ]; + nativeBuildInputs = [ pkgconfig ]; } From 2ee0e45172a2955b23941ccfc20496e56076e320 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:15:13 +0000 Subject: [PATCH 337/707] python systemd: init at 231 This module has been split out from the main systemd repository. --- pkgs/top-level/python-packages.nix | 97 ++++++++++++++++-------------- 1 file changed, 52 insertions(+), 45 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ed0528f6fe..a21faf4866d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18554,7 +18554,6 @@ in modules // { }; }; - structlog = buildPythonPackage rec { name = "structlog-15.3.0"; @@ -18596,21 +18595,59 @@ in modules // { }; }; + syncthing-gtk = buildPythonPackage rec { + version = "0.6.3"; + name = "syncthing-gtk-${version}"; + src = pkgs.fetchFromGitHub { + owner = "syncthing"; + repo = "syncthing-gtk"; + rev = "v${version}"; + sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms"; + }; - # XXX: ValueError: ZIP does not support timestamps before 1980 - # svneverever = buildPythonPackage rec { - # name = "svneverever-778489a8"; - # - # src = pkgs.fetchgit { - # url = git://git.goodpoint.de/svneverever.git; - # rev = "778489a8c6f07825fb18c9da3892a781c3d659ac"; - # sha256 = "41c9da1dab2be7b60bff87e618befdf5da37c0a56287385cb0cbd3f91e452bb6"; - # }; - # - # propagatedBuildInputs = with self; [ pysvn argparse ]; - # - # doCheck = false; - # }; + disabled = isPy3k; + + propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc + pygobject3 pkgs.gtk3 ]; + + patchPhase = '' + substituteInPlace "scripts/syncthing-gtk" \ + --replace "/usr/share" "$out/share" + substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'" + ''; + + meta = { + description = " GTK3 & python based GUI for Syncthing "; + maintainers = with maintainers; [ DamienCassou ]; + platforms = pkgs.syncthing.meta.platforms; + homepage = "https://github.com/syncthing/syncthing-gtk"; + license = licenses.gpl2; + }; + }; + + systemd = buildPythonPackage rec { + version = "231"; + name = "python-systemd-${version}"; + + src = pkgs.fetchurl { + url = "https://github.com/systemd/python-systemd/archive/v${version}.tar.gz"; + sha256 = "1sifq7mdg0y5ngab8vjy8995nz9c0hxny35dxs5qjx0k0hyzb71c"; + }; + + buildInputs = with pkgs; [ systemd pkgconfig ]; + + patchPhase = '' + substituteInPlace setup.py \ + --replace "/usr/include" "${pkgs.systemd}/include" + echo '#include ' >> systemd/pyutil.h + ''; + + meta = { + description = "Python module for native access to the systemd facilities"; + homepage = http://www.freedesktop.org/software/systemd/python-systemd/; + license = licenses.lgpl21; + }; + }; tabulate = buildPythonPackage rec { version = "0.7.5"; @@ -18656,36 +18693,6 @@ in modules // { }; }; - syncthing-gtk = buildPythonPackage rec { - version = "0.6.3"; - name = "syncthing-gtk-${version}"; - src = pkgs.fetchFromGitHub { - owner = "syncthing"; - repo = "syncthing-gtk"; - rev = "v${version}"; - sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms"; - }; - - disabled = isPy3k; - - propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc - pygobject3 pkgs.gtk3 ]; - - patchPhase = '' - substituteInPlace "scripts/syncthing-gtk" \ - --replace "/usr/share" "$out/share" - substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'" - ''; - - meta = { - description = " GTK3 & python based GUI for Syncthing "; - maintainers = with maintainers; [ DamienCassou ]; - platforms = pkgs.syncthing.meta.platforms; - homepage = "https://github.com/syncthing/syncthing-gtk"; - license = licenses.gpl2; - }; - }; - tarsnapper = buildPythonPackage rec { name = "tarsnapper-0.2.1"; disabled = isPy3k; From 2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:31:36 +0000 Subject: [PATCH 338/707] systemd: python module split out since v223 --- pkgs/os-specific/linux/systemd/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 54c04a8b3f2..2e742b4d82d 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -3,14 +3,11 @@ , glib, kbd, libxslt, coreutils, libgcrypt , kexectools, libmicrohttpd, linuxHeaders, libseccomp , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 -, pythonPackages ? null, pythonSupport ? false , enableKDbus ? false }: assert stdenv.isLinux; -assert pythonSupport -> pythonPackages != null; - stdenv.mkDerivation rec { version = "228"; name = "systemd-${version}"; @@ -32,7 +29,7 @@ stdenv.mkDerivation rec { by generating an autoconf'd tarball, but that's probably not worth it. */ autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45 - ] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml]; + ]; configureFlags = [ "--localstatedir=/var" From 242c24c402e9c00a8d3a4ffabe087b5b7e709a55 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:36:21 +0000 Subject: [PATCH 339/707] fail2ban: python packaging workaround for /etc/fail2ban installation (fixes #11534) Removed path substitutions from setup.py because these should be handled by the setuptools install prefix. Except that the install prefix won't quite work until issue #4968 is resolved. In the meantime there are preInstall and postInstall scripts so that this package continues to work with the nix python packaging improvements. --- pkgs/tools/security/fail2ban/default.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 184f8a59d28..33638e5f494 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -18,14 +18,6 @@ pythonPackages.buildPythonPackage { ++ [ python.modules.sqlite3 gamin ]; preConfigure = '' - substituteInPlace setup.cfg \ - --replace /usr $out - - substituteInPlace setup.py \ - --replace /usr $out \ - --replace /etc $out/etc \ - --replace /var $TMPDIR/var \ - for i in fail2ban-client fail2ban-regex fail2ban-server; do substituteInPlace $i \ --replace /usr/share/fail2ban $out/share/fail2ban @@ -40,6 +32,18 @@ pythonPackages.buildPythonPackage { doCheck = false; + preInstall = '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + ${python}/bin/${python.executable} setup.py install_data --install-dir=$out --root=$out + ''; + + postInstall = let + sitePackages = "$out/lib/${python.libPrefix}/site-packages"; + in '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var; + ''; + meta = with stdenv.lib; { homepage = http://www.fail2ban.org/; description = "A program that scans log files for repeated failing login attempts and bans IP addresses"; From 201859ea188a976abba64ce17a27a702ec50657c Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:53:07 +0000 Subject: [PATCH 340/707] fail2ban: update python-systemd dependency The python module has been split off from systemd since v223. --- pkgs/tools/security/fail2ban/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 6 +----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 33638e5f494..a0451ea63a3 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, python, pythonPackages, unzip, systemd, gamin }: +{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }: let version = "0.9.1"; in @@ -14,8 +14,8 @@ pythonPackages.buildPythonPackage { buildInputs = [ unzip ]; - pythonPath = (stdenv.lib.optional stdenv.isLinux systemd) - ++ [ python.modules.sqlite3 gamin ]; + propagatedBuildInputs = [ python.modules.sqlite3 gamin ] + ++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd); preConfigure = '' for i in fail2ban-client fail2ban-regex fail2ban-server; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..e47ce53832e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1432,11 +1432,7 @@ let fabric = pythonPackages.fabric; - fail2ban = callPackage ../tools/security/fail2ban { - systemd = systemd.override { - pythonSupport = true; - }; - }; + fail2ban = callPackage ../tools/security/fail2ban { }; fakeroot = callPackage ../tools/system/fakeroot { }; From 75d143ae9a44306c412be09105d05044d1ac33c2 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 15:13:18 +0000 Subject: [PATCH 341/707] fail2ban: 0.9.1 -> 0.9.3 --- pkgs/tools/security/fail2ban/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index a0451ea63a3..667157978a3 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, python, pythonPackages, unzip, gamin }: -let version = "0.9.1"; in +let version = "0.9.3"; in pythonPackages.buildPythonPackage { name = "fail2ban-${version}"; @@ -9,7 +9,7 @@ pythonPackages.buildPythonPackage { src = fetchzip { name = "fail2ban-${version}-src"; url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5"; + sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; }; buildInputs = [ unzip ]; From 7070c2d9008f8f637d25f9da2f4fd129a8619f5e Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sat, 12 Dec 2015 14:23:56 -0200 Subject: [PATCH 342/707] Higan: 094 -> 095 In order to increase portability and flexibility, now the build phase explicitly sets "compiler=c++" as a make parameter. Further, there is a link "higan" for backwards compatibility; higan was split in icarus (the game ROMS database manager) and tomoko (the emulator itself). --- .../emulators/higan/0001-change-flags.diff | 35 +++++++++++++ pkgs/misc/emulators/higan/default.nix | 52 +++++++++---------- pkgs/top-level/all-packages.nix | 4 +- 3 files changed, 61 insertions(+), 30 deletions(-) create mode 100644 pkgs/misc/emulators/higan/0001-change-flags.diff diff --git a/pkgs/misc/emulators/higan/0001-change-flags.diff b/pkgs/misc/emulators/higan/0001-change-flags.diff new file mode 100644 index 00000000000..78f4a248c5f --- /dev/null +++ b/pkgs/misc/emulators/higan/0001-change-flags.diff @@ -0,0 +1,35 @@ +diff -rupN higan_v095-source.orig/GNUmakefile higan_v095-source/GNUmakefile +--- higan_v095-source.orig/GNUmakefile 2015-11-04 10:28:26.173428178 +0100 ++++ higan_v095-source/GNUmakefile 2015-11-04 10:28:31.752231593 +0100 +@@ -12,7 +12,8 @@ target := tomoko + # console := true + + # compiler +-flags += -I. -O3 ++flags += -I. $(CXXFLAGS) ++link += $(LDFLAGS) + objects := libco + + # profile-guided optimization mode +@@ -43,7 +44,7 @@ ifeq ($(platform),windows) + else ifeq ($(platform),macosx) + flags += -march=native + else ifeq ($(platform),linux) +- flags += -march=native -fopenmp ++ flags += -fopenmp + link += -fopenmp + link += -Wl,-export-dynamic + link += -lX11 -lXext -ldl +diff -rupN higan_v095-source.orig/icarus/GNUmakefile higan_v095-source/icarus/GNUmakefile +--- higan_v095-source.orig/icarus/GNUmakefile 2015-11-04 10:28:26.186486119 +0100 ++++ higan_v095-source/icarus/GNUmakefile 2015-11-04 10:28:48.755059317 +0100 +@@ -1,8 +1,8 @@ + include ../nall/GNUmakefile + include ../hiro/GNUmakefile + +-flags += -I.. -O3 +-link += ++flags += -I.. $(CXXFLAGS) ++link += $(LDFLAGS) + objects := obj/hiro.o obj/icarus.o + objects += $(if $(call streq,$(platform),windows),obj/resource.o) diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix index 95793de9884..080805e9df5 100644 --- a/pkgs/misc/emulators/higan/default.nix +++ b/pkgs/misc/emulators/higan/default.nix @@ -1,56 +1,51 @@ { stdenv, fetchurl -, pkgconfig +, p7zip, pkgconfig , libX11, libXv , udev , mesa, SDL , libao, openal, libpulseaudio -, profile ? "performance" # Options: accuracy, balanced, performance -, guiToolkit ? "gtk" # can be gtk or qt4 -, gtk ? null, qt4 ? null }: - -assert guiToolkit == "gtk" || guiToolkit == "qt4"; -assert (guiToolkit == "gtk" -> gtk != null) || (guiToolkit == "qt4" -> qt4 != null); +, gtk, gtksourceview +, profile ? "balanced" # Options: accuracy, balanced, performance +}: with stdenv.lib; stdenv.mkDerivation rec { - name = "higan-${version}"; - version = "094"; - sourceName = "higan_v${version}-source"; + name = "higan-${meta.version}"; + sourceName = "higan_v${meta.version}-source"; src = fetchurl { - urls = [ "http://files.byuu.org/download/${sourceName}.tar.xz" ]; - sha256 = "06qm271pzf3qf2labfw2lx6k0xcd89jndmn0jzmnc40cspwrs52y"; + urls = [ "http://download.byuu.org/${sourceName}.7z" ]; + sha256 = "0xsgyijcf4psi3mlahr5iq7vbbw3jby1if5pkhg8c5xqckpi2fj4"; curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick... }; + patches = [ ./0001-change-flags.diff ]; + buildInputs = - [ pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio ] - ++ optionals (guiToolkit == "gtk") [ gtk ] - ++ optionals (guiToolkit == "qt4") [ qt4 ]; + [ p7zip pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio gtk gtksourceview ]; + + unpackPhase = '' + 7z x $src + sourceRoot=${sourceName} + ''; buildPhase = '' - make phoenix=${guiToolkit} profile=${profile} -C ananke - make phoenix=${guiToolkit} profile=${profile} + make compiler=c++ profile=${profile} -C icarus + make compiler=c++ profile=${profile} ''; installPhase = '' - install -dm 755 $out/share/applications $out/share/pixmaps $out/share/higan/Video\ Shaders $out/bin $out/lib - + install -dm 755 $out/bin $out/share/applications $out/share/higan $out/share/pixmaps + install -m 755 icarus/icarus $out/bin/ + install -m 755 out/tomoko $out/bin/ + (cd $out/bin; ln -Ts tomoko higan) #backwards compatibility install -m 644 data/higan.desktop $out/share/applications/ install -m 644 data/higan.png $out/share/pixmaps/ - cp -dr --no-preserve=ownership profile/* data/cheats.bml $out/share/higan/ - cp -dr --no-preserve=ownership shaders/*.shader $out/share/higan/Video\ Shaders/ - - install -m 755 out/higan $out/bin/higan - install -m 644 ananke/libananke.so $out/lib/libananke.so.1 - (cd $out/lib && ln -s libananke.so.1 libananke.so) + cp -dr --no-preserve='ownership' profile/* data/cheats.bml $out/share/higan/ ''; fixupPhase = '' - oldRPath=$(patchelf --print-rpath $out/bin/higan) - patchelf --set-rpath $oldRPath:$out/lib $out/bin/higan - # A dirty workaround, suggested by @cpages: # we create a first-run script to populate # the local $HOME with all the auxiliary @@ -67,6 +62,7 @@ stdenv.mkDerivation rec { ''; meta = { + version = "095"; description = "An open-source, cycle-accurate Nintendo multi-system emulator"; longDescription = '' Higan (formerly bsnes) is a Nintendo multi-system emulator. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..1176256e63a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15773,8 +15773,8 @@ let snes9x-gtk = callPackage ../misc/emulators/snes9x-gtk { }; higan = callPackage ../misc/emulators/higan { - profile = config.higan.profile or "performance"; - guiToolkit = config.higan.guiToolkit or "gtk"; + inherit (gnome) gtksourceview; + profile = config.higan.profile or "balanced"; }; misc = callPackage ../misc/misc.nix { }; From 1932d101e21dfab5af1c475c10b5ae463d28a283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 18 Dec 2015 10:51:27 +0100 Subject: [PATCH 343/707] telepathy-qt: minor update, fix by patch, unify - The patch fixes building against gst-1.6. - Having to change three files with almost same contents would drive me mad, so I unified them into a single expression. /cc @ttuegel - libxslt seemed unneeded, and it uses libxml2 anyway. --- .../libraries/telepathy/qt/default.nix | 20 +++++++++---- .../libraries/telepathy/qt5/default.nix | 29 ------------------- .../libraries/telepathy/qt5/old.nix | 29 ------------------- pkgs/top-level/all-packages.nix | 6 ++-- 4 files changed, 17 insertions(+), 67 deletions(-) delete mode 100644 pkgs/development/libraries/telepathy/qt5/default.nix delete mode 100644 pkgs/development/libraries/telepathy/qt5/old.nix diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix index 7ef48d09725..1052e92d380 100644 --- a/pkgs/development/libraries/telepathy/qt/default.nix +++ b/pkgs/development/libraries/telepathy/qt/default.nix @@ -1,19 +1,27 @@ -{ stdenv, fetchurl, cmake, qt4, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: +{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, dbus_glib, dbus_daemon +, telepathy_farstream, telepathy_glib, pythonDBus, fetchpatch }: stdenv.mkDerivation rec { - name = "telepathy-qt-0.9.5"; + name = "telepathy-qt-0.9.6"; src = fetchurl { url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; + sha256 = "0j7hs055cx5g9chn3b2p0arig70m5g9547qgqvk29kxdyxxxsmqc"; }; + patches = [(fetchpatch { + name = "gst-1.6.patch"; + url = "http://cgit.freedesktop.org/telepathy/telepathy-qt/patch" + + "/?id=ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb"; + sha256 = "1rh7n3xyrwpvpa3haqi35qn4mfz4396ha43w4zsqpmcyda9y65v2"; + })]; - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qt4 dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; + nativeBuildInputs = [ cmake pkgconfig python ]; + propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; buildInputs = stdenv.lib.optional doCheck dbus_daemon; + cmakeFlags = "-DDESIRED_QT_VERSION=${builtins.substring 0 1 qtbase.version}"; + preBuild = '' NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" ''; diff --git a/pkgs/development/libraries/telepathy/qt5/default.nix b/pkgs/development/libraries/telepathy/qt5/default.nix deleted file mode 100644 index 1c18e844689..00000000000 --- a/pkgs/development/libraries/telepathy/qt5/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: - -stdenv.mkDerivation rec { - name = "telepathy-qt5-0.9.5"; - - src = fetchurl { - url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; - }; - - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; - - cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ]; - - buildInputs = stdenv.lib.optional doCheck dbus_daemon; - - preBuild = '' - NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" - ''; - - enableParallelBuilding = true; - doCheck = false; # giving up for now - - meta = { - platforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/development/libraries/telepathy/qt5/old.nix b/pkgs/development/libraries/telepathy/qt5/old.nix deleted file mode 100644 index 50d569f3091..00000000000 --- a/pkgs/development/libraries/telepathy/qt5/old.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchurl, cmake, qt5, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: - -stdenv.mkDerivation rec { - name = "telepathy-qt5-0.9.5"; - - src = fetchurl { - url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; - }; - - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qt5.base dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; - - cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ]; - - buildInputs = stdenv.lib.optional doCheck dbus_daemon; - - preBuild = '' - NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" - ''; - - enableParallelBuilding = true; - doCheck = false; # giving up for now - - meta = { - platforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..13cac40328f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8190,7 +8190,7 @@ let signon = callPackage ../development/libraries/signon { }; - telepathy = callPackage ../development/libraries/telepathy/qt5 { }; + telepathy = callPackage ../development/libraries/telepathy/qt { }; vlc = callPackage ../applications/video/vlc { qt4 = null; @@ -8503,9 +8503,9 @@ let telepathy_farstream = callPackage ../development/libraries/telepathy/farstream {}; - telepathy_qt = callPackage ../development/libraries/telepathy/qt { }; + telepathy_qt = callPackage ../development/libraries/telepathy/qt { qtbase = qt4; }; - telepathy_qt5 = callPackage ../development/libraries/telepathy/qt5/old.nix {}; + telepathy_qt5 = telepathy_qt.override { qtbase = qt5.base; }; tevent = callPackage ../development/libraries/tevent { python = python2; From d2d68b0d92934d76a0c4294c357e4a4226cbbfed Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 00:30:45 +0100 Subject: [PATCH 344/707] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/1e4c0752db037bd56ee5731098a5fb3fe12da18c - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/42db5021ee1a4b501ec28e7d32a17b76a6b49e74 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/253d4da34232ee2e34c825f5937f836f3374abd1 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/57c8505aea9ea07de3bc4e319a583befbb124ea4 --- .../haskell-modules/configuration-lts-0.0.nix | 6 + .../haskell-modules/configuration-lts-0.1.nix | 7 + .../haskell-modules/configuration-lts-0.2.nix | 7 + .../haskell-modules/configuration-lts-0.3.nix | 7 + .../haskell-modules/configuration-lts-0.4.nix | 7 + .../haskell-modules/configuration-lts-0.5.nix | 7 + .../haskell-modules/configuration-lts-0.6.nix | 7 + .../haskell-modules/configuration-lts-0.7.nix | 7 + .../haskell-modules/configuration-lts-1.0.nix | 7 + .../haskell-modules/configuration-lts-1.1.nix | 7 + .../configuration-lts-1.10.nix | 8 + .../configuration-lts-1.11.nix | 8 + .../configuration-lts-1.12.nix | 8 + .../configuration-lts-1.13.nix | 8 + .../configuration-lts-1.14.nix | 8 + .../configuration-lts-1.15.nix | 8 + .../haskell-modules/configuration-lts-1.2.nix | 7 + .../haskell-modules/configuration-lts-1.4.nix | 7 + .../haskell-modules/configuration-lts-1.5.nix | 7 + .../haskell-modules/configuration-lts-1.7.nix | 7 + .../haskell-modules/configuration-lts-1.8.nix | 8 + .../haskell-modules/configuration-lts-1.9.nix | 8 + .../haskell-modules/configuration-lts-2.0.nix | 8 + .../haskell-modules/configuration-lts-2.1.nix | 8 + .../configuration-lts-2.10.nix | 8 + .../configuration-lts-2.11.nix | 8 + .../configuration-lts-2.12.nix | 8 + .../configuration-lts-2.13.nix | 8 + .../configuration-lts-2.14.nix | 8 + .../configuration-lts-2.15.nix | 8 + .../configuration-lts-2.16.nix | 9 + .../configuration-lts-2.17.nix | 10 + .../configuration-lts-2.18.nix | 11 + .../configuration-lts-2.19.nix | 11 + .../haskell-modules/configuration-lts-2.2.nix | 8 + .../configuration-lts-2.20.nix | 11 + .../configuration-lts-2.21.nix | 11 + .../configuration-lts-2.22.nix | 11 + .../haskell-modules/configuration-lts-2.3.nix | 8 + .../haskell-modules/configuration-lts-2.4.nix | 8 + .../haskell-modules/configuration-lts-2.5.nix | 8 + .../haskell-modules/configuration-lts-2.6.nix | 8 + .../haskell-modules/configuration-lts-2.7.nix | 8 + .../haskell-modules/configuration-lts-2.8.nix | 8 + .../haskell-modules/configuration-lts-2.9.nix | 8 + .../haskell-modules/configuration-lts-3.0.nix | 15 + .../haskell-modules/configuration-lts-3.1.nix | 16 + .../configuration-lts-3.10.nix | 16 + .../configuration-lts-3.11.nix | 16 + .../configuration-lts-3.12.nix | 16 + .../configuration-lts-3.13.nix | 16 + .../configuration-lts-3.14.nix | 16 + .../configuration-lts-3.15.nix | 16 + .../configuration-lts-3.16.nix | 17 + .../configuration-lts-3.17.nix | 18 + .../configuration-lts-3.18.nix | 19 + .../haskell-modules/configuration-lts-3.2.nix | 16 + .../haskell-modules/configuration-lts-3.3.nix | 16 + .../haskell-modules/configuration-lts-3.4.nix | 16 + .../haskell-modules/configuration-lts-3.5.nix | 16 + .../haskell-modules/configuration-lts-3.6.nix | 16 + .../haskell-modules/configuration-lts-3.7.nix | 16 + .../haskell-modules/configuration-lts-3.8.nix | 16 + .../haskell-modules/configuration-lts-3.9.nix | 16 + .../haskell-modules/hackage-packages.nix | 846 ++++++++++++------ 65 files changed, 1228 insertions(+), 290 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 23b3bdf8454..bbdac77f255 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -4792,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4982,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5377,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6929,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7167,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 22a5f246372..e4843781374 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index adfe05857ed..05eb3606504 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 1856c9787ab..0f715809110 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 26af9f6a7c4..9a854e7c578 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4788,6 +4790,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4978,6 +4981,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5373,6 +5377,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6924,6 +6929,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7162,6 +7168,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index a41c1bfc3b4..cb4a40e3b65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4788,6 +4790,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4978,6 +4981,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5373,6 +5377,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6924,6 +6929,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7162,6 +7168,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index fadd237ffbc..53c49850676 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1970,6 +1970,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2187,6 +2188,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4784,6 +4786,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4974,6 +4977,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5369,6 +5373,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6918,6 +6923,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7156,6 +7162,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index c5aa7f8ebb9..788506e212d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1970,6 +1970,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2187,6 +2188,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4784,6 +4786,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4974,6 +4977,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5369,6 +5373,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6918,6 +6923,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7156,6 +7162,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index dac2e4c977f..800dcfdb69e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1963,6 +1963,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2179,6 +2180,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4772,6 +4774,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4962,6 +4965,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5357,6 +5361,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6904,6 +6909,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7142,6 +7148,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index fbcdb8a86f5..3f94ca7c1e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1962,6 +1962,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2177,6 +2178,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4765,6 +4767,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4955,6 +4958,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5350,6 +5354,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6896,6 +6901,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7134,6 +7140,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 992d6212022..d6a801b156c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4223,6 +4225,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4745,6 +4748,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4934,6 +4938,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5328,6 +5333,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6868,6 +6874,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7105,6 +7112,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 8aa2db947bb..70ba9664ab7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4222,6 +4224,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4743,6 +4746,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4931,6 +4935,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5324,6 +5329,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6864,6 +6870,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7101,6 +7108,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 87461679853..5a167b8678b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4221,6 +4223,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4742,6 +4745,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4930,6 +4934,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5323,6 +5328,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6863,6 +6869,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7100,6 +7107,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index e50346655f1..aad007e67de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4220,6 +4222,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4741,6 +4744,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4929,6 +4933,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5322,6 +5327,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6862,6 +6868,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7099,6 +7106,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 2addeb5c06d..80925f0cd60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1957,6 +1957,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2171,6 +2172,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4216,6 +4218,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4737,6 +4740,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4925,6 +4929,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5317,6 +5322,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6854,6 +6860,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7091,6 +7098,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 5682f7e1f25..3190e508d4f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1956,6 +1956,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2169,6 +2170,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4211,6 +4213,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4732,6 +4735,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4920,6 +4924,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5312,6 +5317,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6845,6 +6851,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7082,6 +7089,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index d5b3f51926b..b9522cce53b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1962,6 +1962,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2176,6 +2177,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4762,6 +4764,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4952,6 +4955,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5347,6 +5351,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6891,6 +6896,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7128,6 +7134,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 0b3ac781834..296b837f1aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1961,6 +1961,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2175,6 +2176,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4759,6 +4761,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4949,6 +4952,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5344,6 +5348,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6886,6 +6891,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7123,6 +7129,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index fd90d1d8d45..d20f6f60d6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4757,6 +4759,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4947,6 +4950,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5342,6 +5346,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6884,6 +6889,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7121,6 +7127,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index dad8d991a76..db971f7d85c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4752,6 +4754,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4941,6 +4944,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5336,6 +5340,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6878,6 +6883,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7115,6 +7121,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 11ba47df60d..dd8b559020b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4225,6 +4227,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4748,6 +4751,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4937,6 +4941,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5331,6 +5336,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6873,6 +6879,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7110,6 +7117,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 3d43aab4224..bdc271e4378 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4224,6 +4226,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4746,6 +4749,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4935,6 +4939,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5329,6 +5334,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6870,6 +6876,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7107,6 +7114,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index cab9b99357b..f47ce735b9e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1943,6 +1943,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2154,6 +2155,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4184,6 +4186,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4697,6 +4700,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4882,6 +4886,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_11"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5269,6 +5274,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6786,6 +6792,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7022,6 +7029,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 3b450fc9081..553a4ef2834 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1942,6 +1942,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2153,6 +2154,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4182,6 +4184,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4695,6 +4698,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4880,6 +4884,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5267,6 +5272,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6784,6 +6790,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7020,6 +7027,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3e703edcc20..632f1da31ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1930,6 +1930,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2140,6 +2141,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4159,6 +4161,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4668,6 +4671,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4850,6 +4854,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5234,6 +5239,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6738,6 +6744,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6973,6 +6980,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8f8cd53d76b..211d1193965 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4156,6 +4158,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4664,6 +4667,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4845,6 +4849,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5229,6 +5234,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6730,6 +6736,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6965,6 +6972,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index b612864ed83..9fddb60412e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4156,6 +4158,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4664,6 +4667,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4845,6 +4849,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5229,6 +5234,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6730,6 +6736,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6964,6 +6971,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index bd2110ef60c..516f6370f0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4155,6 +4157,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4662,6 +4665,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4843,6 +4847,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5227,6 +5232,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6727,6 +6733,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6961,6 +6968,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index cec6bda6e3a..339b5d73d6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1928,6 +1928,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2138,6 +2139,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4153,6 +4155,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4659,6 +4662,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4840,6 +4844,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5224,6 +5229,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6723,6 +6729,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6957,6 +6964,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 2d98f22ccc1..ed79543f331 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1928,6 +1928,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2138,6 +2139,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4152,6 +4154,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4658,6 +4661,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4839,6 +4843,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5223,6 +5228,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6719,6 +6725,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6953,6 +6960,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index cebef846148..5b3b21e8168 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1927,6 +1927,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2136,6 +2137,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4145,6 +4147,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4651,6 +4654,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4832,6 +4836,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5215,6 +5220,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6711,6 +6717,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6945,6 +6952,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7170,6 +7178,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 5d66775b49e..d86fd0c1a13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1924,6 +1925,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2133,6 +2135,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4138,6 +4141,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4644,6 +4648,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4825,6 +4830,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5208,6 +5214,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6702,6 +6709,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6936,6 +6944,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7161,6 +7170,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 8f3048c29e7..1494a52c28d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2131,6 +2133,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3585,6 +3588,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4133,6 +4137,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4639,6 +4644,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4820,6 +4826,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5203,6 +5210,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1_1"; @@ -6695,6 +6703,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6929,6 +6938,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7154,6 +7164,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index fd4812219ec..7af271824c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2131,6 +2133,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3584,6 +3587,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4132,6 +4136,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4638,6 +4643,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4819,6 +4825,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5202,6 +5209,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1_1"; @@ -6692,6 +6700,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6926,6 +6935,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7150,6 +7160,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index f54a7c92e52..edc9796f2ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1939,6 +1939,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2150,6 +2151,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4179,6 +4181,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4692,6 +4695,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4877,6 +4881,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5264,6 +5269,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6781,6 +6787,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7017,6 +7024,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index f78f8e91c56..e9e2de96aa3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2130,6 +2132,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3583,6 +3586,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4130,6 +4134,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4636,6 +4641,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4817,6 +4823,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5200,6 +5207,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6689,6 +6697,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6923,6 +6932,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7146,6 +7156,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 12f836e2f9a..1e261f7e7cc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2130,6 +2132,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3583,6 +3586,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4130,6 +4134,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4636,6 +4641,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4817,6 +4823,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5199,6 +5206,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6687,6 +6695,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6921,6 +6930,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7144,6 +7154,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index a1f3a7d8573..e0f88573e21 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1436,6 +1436,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1921,6 +1922,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2129,6 +2131,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3582,6 +3585,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4128,6 +4132,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4634,6 +4639,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4815,6 +4821,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5196,6 +5203,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6683,6 +6691,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6917,6 +6926,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7140,6 +7150,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 090646697dc..c38b94ccae7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1939,6 +1939,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2150,6 +2151,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4178,6 +4180,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4690,6 +4693,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4875,6 +4879,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5262,6 +5267,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6779,6 +6785,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7015,6 +7022,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 727580bbaf5..9ee8703de10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1938,6 +1938,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2149,6 +2150,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4177,6 +4179,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4689,6 +4692,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4874,6 +4878,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5261,6 +5266,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6774,6 +6780,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7010,6 +7017,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index ed098498a05..e0c37b51beb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1938,6 +1938,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2149,6 +2150,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4176,6 +4178,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4688,6 +4691,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4873,6 +4877,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5259,6 +5264,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6772,6 +6778,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7008,6 +7015,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 6c1e7ef0a44..346d3550fa7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1935,6 +1935,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2146,6 +2147,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4171,6 +4173,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4683,6 +4686,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4868,6 +4872,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5254,6 +5259,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6766,6 +6772,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7002,6 +7009,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 68d05b0fae3..14cce5df287 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1934,6 +1934,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2145,6 +2146,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4170,6 +4172,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4682,6 +4685,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4867,6 +4871,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5253,6 +5258,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6765,6 +6771,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7001,6 +7008,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 15402d99af2..24b8b51ed82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1933,6 +1933,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2144,6 +2145,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4168,6 +4170,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4679,6 +4682,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4863,6 +4867,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5249,6 +5254,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6761,6 +6767,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6996,6 +7003,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index c6a043b4b59..657c571b286 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1930,6 +1930,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2141,6 +2142,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4162,6 +4164,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4671,6 +4674,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4855,6 +4859,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5240,6 +5245,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6749,6 +6755,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6984,6 +6991,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 18efcac44b5..2bcc9271083 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1394,6 +1394,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1501,6 +1502,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1854,6 +1856,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1957,6 +1960,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2056,6 +2060,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2425,6 +2430,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3463,6 +3470,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3999,6 +4007,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4485,6 +4494,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4660,6 +4670,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5019,6 +5030,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6461,6 +6473,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6690,6 +6703,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6902,6 +6916,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 5f272356846..f4d36188938 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1393,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1456,6 +1457,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1499,6 +1501,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1852,6 +1855,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1955,6 +1959,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2054,6 +2059,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2423,6 +2429,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3458,6 +3466,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3993,6 +4002,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4479,6 +4489,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4654,6 +4665,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5013,6 +5025,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6451,6 +6464,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6680,6 +6694,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6892,6 +6907,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index a41aa1b749b..db2b73b9d56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1376,6 +1376,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1439,6 +1440,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1482,6 +1484,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1826,6 +1829,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1929,6 +1933,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2026,6 +2031,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2389,6 +2395,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3399,6 +3407,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3928,6 +3937,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4409,6 +4419,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4581,6 +4592,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4933,6 +4945,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6343,6 +6356,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6570,6 +6584,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6772,6 +6787,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 847d00dd79b..ce72e7fbb86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1376,6 +1376,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1439,6 +1440,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1482,6 +1484,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1824,6 +1827,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1927,6 +1931,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2024,6 +2029,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2387,6 +2393,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3395,6 +3403,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3923,6 +3932,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4404,6 +4414,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4576,6 +4587,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4928,6 +4940,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6336,6 +6349,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6562,6 +6576,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6763,6 +6778,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index ca3ed4a6fdb..7109ae66a10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1375,6 +1375,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1438,6 +1439,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1481,6 +1483,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1823,6 +1826,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1922,6 +1926,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2019,6 +2024,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2382,6 +2388,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3389,6 +3397,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3917,6 +3926,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4398,6 +4408,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4570,6 +4581,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4922,6 +4934,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6329,6 +6342,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6555,6 +6569,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6756,6 +6771,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index a12b0ab22f4..5c5ea1c12ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1375,6 +1375,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1438,6 +1439,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1481,6 +1483,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1823,6 +1826,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1922,6 +1926,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2019,6 +2024,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2382,6 +2388,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3389,6 +3397,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3916,6 +3925,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4397,6 +4407,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4569,6 +4580,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4920,6 +4932,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6325,6 +6338,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6551,6 +6565,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6752,6 +6767,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 30316276737..99b04cd6a8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1373,6 +1373,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1436,6 +1437,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1479,6 +1481,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1820,6 +1823,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1919,6 +1923,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2016,6 +2021,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2378,6 +2384,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3380,6 +3388,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3907,6 +3916,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4387,6 +4397,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4559,6 +4570,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4910,6 +4922,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6312,6 +6325,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6538,6 +6552,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6739,6 +6754,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index af656608acf..64ed99c9448 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1372,6 +1372,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1435,6 +1436,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1478,6 +1480,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1819,6 +1822,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1918,6 +1922,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2015,6 +2020,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2377,6 +2383,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3378,6 +3386,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3904,6 +3913,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4382,6 +4392,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4554,6 +4565,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4905,6 +4917,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6305,6 +6318,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6531,6 +6545,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6731,6 +6746,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 2fa74f7262d..84d32e7fe44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1371,6 +1371,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1433,6 +1434,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1476,6 +1478,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1817,6 +1820,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1916,6 +1920,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2013,6 +2018,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2375,6 +2381,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3375,6 +3383,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3900,6 +3909,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4378,6 +4388,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4550,6 +4561,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4899,6 +4911,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6294,6 +6307,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6519,6 +6533,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6719,6 +6734,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7859,6 +7875,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 279cfaedde9..5dcf83ccb8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1367,6 +1367,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1429,6 +1430,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1472,6 +1474,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1812,6 +1815,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1910,6 +1914,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2007,6 +2012,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2367,6 +2373,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3366,6 +3374,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3890,6 +3899,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4368,6 +4378,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4538,6 +4549,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4887,6 +4899,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; @@ -5693,6 +5706,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6276,6 +6290,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6501,6 +6516,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6701,6 +6717,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7839,6 +7856,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index d4b51cdc561..09fd9006a86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1367,6 +1367,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1429,6 +1430,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1472,6 +1474,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1811,6 +1814,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1909,6 +1913,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2006,6 +2011,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2366,6 +2372,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3363,6 +3371,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3883,6 +3892,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4212,6 +4222,7 @@ self: super: { "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_25"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4357,6 +4368,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4527,6 +4539,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4876,6 +4889,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; @@ -5680,6 +5694,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6261,6 +6276,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6486,6 +6502,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6685,6 +6702,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7819,6 +7837,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 7f3faa96206..2c89aae7f38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1390,6 +1390,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1453,6 +1454,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1496,6 +1498,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1849,6 +1852,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1952,6 +1956,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2051,6 +2056,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2420,6 +2426,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3453,6 +3461,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3988,6 +3997,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4474,6 +4484,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4649,6 +4660,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5006,6 +5018,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6441,6 +6454,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6669,6 +6683,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6879,6 +6894,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 0818d564b15..d391c532538 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1389,6 +1389,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1452,6 +1453,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1495,6 +1497,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1848,6 +1851,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1951,6 +1955,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2049,6 +2054,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2416,6 +2422,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3448,6 +3456,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3982,6 +3991,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4467,6 +4477,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4642,6 +4653,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4999,6 +5011,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6433,6 +6446,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6661,6 +6675,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6871,6 +6886,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index dc22d5aa5bf..f2c645af7ac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1389,6 +1389,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1452,6 +1453,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1495,6 +1497,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1847,6 +1850,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1950,6 +1954,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2048,6 +2053,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2415,6 +2421,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3447,6 +3455,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3981,6 +3990,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4466,6 +4476,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4641,6 +4652,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4998,6 +5010,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6432,6 +6445,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6659,6 +6673,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6869,6 +6884,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index ad76072710f..48f7963be65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1388,6 +1388,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1451,6 +1452,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1494,6 +1496,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1845,6 +1848,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1948,6 +1952,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2046,6 +2051,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2412,6 +2418,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3442,6 +3450,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3974,6 +3983,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4456,6 +4466,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4630,6 +4641,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4986,6 +4998,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2_1"; @@ -6415,6 +6428,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6642,6 +6656,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6851,6 +6866,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index a8f64fef71b..6f7f9e75e00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1387,6 +1387,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1450,6 +1451,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1493,6 +1495,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1843,6 +1846,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1946,6 +1950,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2044,6 +2049,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2410,6 +2416,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3435,6 +3443,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3967,6 +3976,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4449,6 +4459,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4622,6 +4633,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4975,6 +4987,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6402,6 +6415,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6629,6 +6643,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6838,6 +6853,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 157dcb22bfa..94979700e62 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1382,6 +1382,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1445,6 +1446,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1488,6 +1490,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1838,6 +1841,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1941,6 +1945,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2039,6 +2044,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2404,6 +2410,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3426,6 +3434,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3956,6 +3965,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4438,6 +4448,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4610,6 +4621,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4963,6 +4975,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6383,6 +6396,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6610,6 +6624,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6818,6 +6833,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 900e14b8aef..b109fbd9392 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1382,6 +1382,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1445,6 +1446,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1488,6 +1490,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1834,6 +1837,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1937,6 +1941,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2034,6 +2039,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2398,6 +2404,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3415,6 +3423,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3945,6 +3954,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4427,6 +4437,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4599,6 +4610,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4952,6 +4964,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6367,6 +6380,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6594,6 +6608,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6802,6 +6817,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 66de270065c..d7b955a5c84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1380,6 +1380,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1443,6 +1444,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1486,6 +1488,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1830,6 +1833,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1933,6 +1937,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2030,6 +2035,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2393,6 +2399,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3407,6 +3415,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3937,6 +3946,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4419,6 +4429,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4591,6 +4602,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4944,6 +4956,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6358,6 +6371,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6585,6 +6599,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6793,6 +6808,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index f1a0e64c4e9..4334c17b655 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2568,6 +2568,7 @@ self: { version = "0.2.0.0"; sha256 = "8b0484241f389a9b83225f97ca0d903b7e5d3b0d98c34f5a526a0c7c3b934b45"; libraryHaskellDepends = [ base lens template-haskell ]; + jailbreak = true; description = "Coordinate systems"; license = stdenv.lib.licenses.mit; }) {}; @@ -4445,6 +4446,7 @@ self: { sha256 = "71b3cfb410c08cf1692d4aa484b3190cc0840245adc23ea7ed8bb3e109a41c88"; libraryHaskellDepends = [ base containers MonadRandom ]; testHaskellDepends = [ base containers MonadRandom ]; + jailbreak = true; homepage = "https://github.com/wyager/Dist"; description = "A Haskell library for probability distributions"; license = stdenv.lib.licenses.mit; @@ -5916,6 +5918,7 @@ self: { executableHaskellDepends = [ base FTGL GLFW-b OpenGLRaw parallel random time ]; + jailbreak = true; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -6329,8 +6332,8 @@ self: { }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUtil" = callPackage - ({ mkDerivation, array, base, bytestring, containers, cpphs - , directory, filepath, JuicyPixels, linear, OpenGL, OpenGLRaw + ({ mkDerivation, array, base, bytestring, containers, directory + , filepath, hpp, JuicyPixels, linear, OpenGL, OpenGLRaw , transformers, vector }: mkDerivation { @@ -6338,10 +6341,9 @@ self: { version = "0.8.8"; sha256 = "2ceb807d97c1c599d26be80d4bae98321cdbd59cff3af0dd68d1daa27615c7d4"; libraryHaskellDepends = [ - array base bytestring containers directory filepath JuicyPixels + array base bytestring containers directory filepath hpp JuicyPixels linear OpenGL OpenGLRaw transformers vector ]; - libraryToolDepends = [ cpphs ]; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -11650,6 +11652,7 @@ self: { template-haskell text transformers unordered-containers vector vector-binary-instances zlib ]; + jailbreak = true; homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; @@ -12502,16 +12505,15 @@ self: { }) {}; "MemoTrie" = callPackage - ({ mkDerivation, base, void }: + ({ mkDerivation, base }: mkDerivation { pname = "MemoTrie"; version = "0.6.4"; sha256 = "4238c8f7ea1ecd2497d0a948493acbdc47728b2528b6e7841ef064b783d68b1c"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base void ]; + libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/conal/MemoTrie"; description = "Trie-based memo functions"; license = stdenv.lib.licenses.bsd3; @@ -12589,7 +12591,7 @@ self: { base bytestring containers GLUtil lens linear OpenGL OpenGLRaw WaveFront ]; - doHaddock = false; + jailbreak = true; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -13407,6 +13409,7 @@ self: { base bytestring cereal containers directory hashable messagepack network stm vector ]; + jailbreak = true; description = "Simple networked key/value store"; license = stdenv.lib.licenses.mit; }) {}; @@ -14816,17 +14819,17 @@ self: { "Plot-ho-matic" = callPackage ({ mkDerivation, base, cairo, Chart, Chart-cairo, containers , data-default-class, generic-accessors, glib, gtk, lens, text - , time + , time, vector }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.6.0.0"; - sha256 = "b78ef18527546825ba965ae6373b6d999a2ba7140b64517869273619abaaf73b"; + version = "0.7.0.0"; + sha256 = "8fb8ca89074e10f325c7c0107a405718455bf6120e74140623252b9347aa2c97"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cairo Chart Chart-cairo containers data-default-class - generic-accessors glib gtk lens text time + generic-accessors glib gtk lens text time vector ]; executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; @@ -18976,6 +18979,7 @@ self: { libraryHaskellDepends = [ base containers filepath GLUtil lens linear OpenGL ]; + jailbreak = true; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -19605,6 +19609,7 @@ self: { executableHaskellDepends = [ base cgi containers hsparql pretty rdf4h text ]; + jailbreak = true; homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; @@ -24425,6 +24430,8 @@ self: { pname = "amazonka-core"; version = "0.3.3"; sha256 = "2382e3ba4576a544ee54037b346dea2cb99326d8d417fedfde70d50bb8a9f4d5"; + revision = "1"; + editedCabalFile = "5f5396e3f969b8f5c0eb6c956c85dade9a751388bd40e8d1c0b007ee3a59dde8"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24456,6 +24463,8 @@ self: { pname = "amazonka-core"; version = "0.3.4"; sha256 = "5f268010d0dff030398b272f7c505f25acc33a9c8c0ccb3ad9e667663707306a"; + revision = "1"; + editedCabalFile = "906720ed3918b2ceab4fb4d87a5f8e1dff1fbcf978e85b7a20195c2b35872aca"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24486,6 +24495,8 @@ self: { pname = "amazonka-core"; version = "0.3.6"; sha256 = "821e635dc21ea7a06c6ba6711dec228c6fb18c12de51924f84d92fc71cf8c0d0"; + revision = "1"; + editedCabalFile = "a0471c700a9a90808fac28a7f77802220d61b5bf84c3d50b8e0b8fb146413aef"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -28690,6 +28701,7 @@ self: { docopt filepath ghc ghc-paths ghc-syb-utils hlint hspec lens-simple pathwalk pipes pipes-group QuickCheck syb ]; + doCheck = false; homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; @@ -30665,7 +30677,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update" = callPackage + "auto-update_0_1_2_2" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -30675,9 +30687,10 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update_0_1_3" = callPackage + "auto-update" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -30687,7 +30700,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "autonix-deps" = callPackage @@ -30836,6 +30848,7 @@ self: { version = "0.0.1.2"; sha256 = "60102786473f189ea0f97d97b91d9de5a2867dde466b96386c28afbe22e056cc"; libraryHaskellDepends = [ base dependent-sum mtl process shake ]; + jailbreak = true; homepage = "https://github.com/mokus0/avr-shake"; description = "AVR Crosspack actions for shake build systems"; license = stdenv.lib.licenses.publicDomain; @@ -32413,19 +32426,6 @@ self: { }) {}; "base-noprelude" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "base-noprelude"; - version = "4.8.1.0"; - sha256 = "bd524ee4d4b9fb433a4f10eedf8605de3baccc9c2c533d1ab57ee6941ade4014"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - homepage = "https://github.com/hvr/base-noprelude"; - description = "\"base\" package sans \"Prelude\" module"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "base-noprelude_4_8_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-noprelude"; @@ -32433,11 +32433,9 @@ self: { sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7"; libraryHaskellDepends = [ base ]; doHaddock = false; - jailbreak = true; homepage = "https://github.com/hvr/base-noprelude"; description = "\"base\" package sans \"Prelude\" module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-orphans_0_4_3" = callPackage @@ -32450,13 +32448,14 @@ self: { editedCabalFile = "a29b52bb0bcf5ec63ab526d5382553497cc5eb40ac02752c75c43752cf464344"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-orphans" = callPackage + "base-orphans_0_4_4" = callPackage ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: mkDerivation { pname = "base-orphans"; @@ -32469,9 +32468,10 @@ self: { homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-orphans_0_4_5" = callPackage + "base-orphans" = callPackage ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: mkDerivation { pname = "base-orphans"; @@ -32482,7 +32482,6 @@ self: { homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-prelude_0_1_6" = callPackage @@ -32625,6 +32624,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "base-prelude_0_1_20" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "base-prelude"; + version = "0.1.20"; + sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/nikita-volkov/base-prelude"; + description = "The most complete prelude formed from only the \"base\" package"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base-unicode-symbols" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -33404,6 +33416,7 @@ self: { base lens QuickCheck semigroups test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/Noeda/bet/"; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = stdenv.lib.licenses.mit; @@ -33596,7 +33609,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5" = callPackage ({ mkDerivation, base, semigroups, tagged }: mkDerivation { pname = "bifunctors"; @@ -33606,9 +33619,10 @@ self: { homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors_5_1" = callPackage + "bifunctors" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, semigroups , tagged, template-haskell, transformers, transformers-compat }: @@ -33627,7 +33641,6 @@ self: { homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billboard-parser" = callPackage @@ -37939,6 +37952,28 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "buffer-builder_0_2_4_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion + , deepseq, HTF, mtl, quickcheck-instances, text + , unordered-containers, vector + }: + mkDerivation { + pname = "buffer-builder"; + version = "0.2.4.1"; + sha256 = "f9ced75361df829a377fd3227ebb26ab9905b3c1eb6eef9b0234a9e14d519795"; + libraryHaskellDepends = [ + base bytestring mtl text unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring criterion deepseq HTF + quickcheck-instances text vector + ]; + homepage = "https://github.com/chadaustin/buffer-builder"; + description = "Library for efficiently building up buffers, one piece at a time"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "buffer-builder-aeson" = callPackage ({ mkDerivation, aeson, attoparsec, base, buffer-builder , bytestring, hashable, HUnit, integer-gmp, QuickCheck, scientific @@ -42249,6 +42284,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {gtk2 = pkgs.gnome2.gtk;}; + "cerberus" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, cmdargs + , conduit-extra, ekg, ekg-core, hslogger, http-client + , http-client-tls, http-reverse-proxy, http-types, pretty-show + , text, wai, wai-middleware-caching, wai-middleware-caching-lru + , wai-middleware-caching-redis, wai-middleware-throttle, warp + }: + mkDerivation { + pname = "cerberus"; + version = "0.1.0.0"; + sha256 = "11c9b5aa94939e289869a1a98cf60b6081b1be8ba5d75a66cf4ed8be0faa5c8e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit-extra ekg ekg-core hslogger + http-client http-client-tls http-reverse-proxy http-types text wai + wai-middleware-caching wai-middleware-caching-lru + wai-middleware-caching-redis wai-middleware-throttle warp + ]; + executableHaskellDepends = [ + base cmdargs ekg ekg-core hslogger pretty-show + ]; + testHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://github.com/yogsototh/cerberus#readme"; + description = "Protect and control API access with cerberus"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal_0_4_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, ghc-prim }: mkDerivation { @@ -45761,7 +45825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_5_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -45772,6 +45836,21 @@ self: { homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clock" = callPackage + ({ mkDerivation, base, tasty, tasty-quickcheck }: + mkDerivation { + pname = "clock"; + version = "0.5.2"; + sha256 = "6c9a2276b5e76f2ea4c0bc2410d68549782dcc38f56964a49245c1070896d0d7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + doCheck = false; + homepage = "https://github.com/corsis/clock"; + description = "High-resolution clock functions: monotonic, realtime, cputime"; + license = stdenv.lib.licenses.bsd3; }) {}; "clock_0_6_0_1" = callPackage @@ -47957,7 +48036,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-extra" = callPackage + "concurrent-extra_0_7_0_9" = callPackage ({ mkDerivation, async, base, HUnit, random, stm, test-framework , test-framework-hunit, unbounded-delays }: @@ -47975,9 +48054,10 @@ self: { homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-extra_0_7_0_10" = callPackage + "concurrent-extra" = callPackage ({ mkDerivation, async, base, HUnit, random, stm, test-framework , test-framework-hunit, unbounded-delays }: @@ -47990,10 +48070,10 @@ self: { async base HUnit random stm test-framework test-framework-hunit unbounded-delays ]; + doCheck = false; homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-machines" = callPackage @@ -49638,17 +49718,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "containers_0_5_6_3" = callPackage + "containers_0_5_7_0" = callPackage ({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "containers"; - version = "0.5.6.3"; - sha256 = "1647e62e31ed066c61b4a3c1a4403ddb15210bab0e658d624af16f406d298dcd"; - revision = "1"; - editedCabalFile = "d62a931abcdc917811b7eff078c117e0f2b2c2ac030d843cbebb00b8c8f87a5e"; + version = "0.5.7.0"; + sha256 = "f293f840d99c285630d7524d5c92da58f59921c26e1592a7f0600cda062a30f9"; libraryHaskellDepends = [ array base deepseq ghc-prim ]; testHaskellDepends = [ array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck @@ -56791,25 +56869,13 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-map" = callPackage + "dependent-map_0_1_1_3" = callPackage ({ mkDerivation, base, containers, dependent-sum }: mkDerivation { pname = "dependent-map"; version = "0.1.1.3"; sha256 = "44dd913868dddfaa104c27794cbf852e8c4783fe78f49b3b2dd635b4731ec8af"; libraryHaskellDepends = [ base containers dependent-sum ]; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - }) {}; - - "dependent-map_0_2_0_1" = callPackage - ({ mkDerivation, base, containers, dependent-sum }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.0.1"; - sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; - libraryHaskellDepends = [ base containers dependent-sum ]; jailbreak = true; homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; @@ -56817,7 +56883,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-sum" = callPackage + "dependent-map" = callPackage + ({ mkDerivation, base, containers, dependent-sum }: + mkDerivation { + pname = "dependent-map"; + version = "0.2.0.1"; + sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; + libraryHaskellDepends = [ base containers dependent-sum ]; + homepage = "https://github.com/mokus0/dependent-map"; + description = "Dependent finite maps (partial dependent products)"; + license = "unknown"; + }) {}; + + "dependent-map_0_2_1_0" = callPackage + ({ mkDerivation, base, containers, dependent-sum }: + mkDerivation { + pname = "dependent-map"; + version = "0.2.1.0"; + sha256 = "567d81bf090feda43c9bc01708e6f3684399628329b64a266ba6a6a79351d284"; + libraryHaskellDepends = [ base containers dependent-sum ]; + homepage = "https://github.com/mokus0/dependent-map"; + description = "Dependent finite maps (partial dependent products)"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dependent-sum_0_2_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "dependent-sum"; @@ -56827,9 +56918,10 @@ self: { homepage = "https://github.com/mokus0/dependent-sum"; description = "Dependent sum type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-sum_0_3_2_1" = callPackage + "dependent-sum" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "dependent-sum"; @@ -56839,7 +56931,6 @@ self: { homepage = "https://github.com/mokus0/dependent-sum"; description = "Dependent sum type"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum-template" = callPackage @@ -58223,6 +58314,7 @@ self: { libraryHaskellDepends = [ base cairo diagrams-cairo diagrams-lib gtk ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; @@ -60081,12 +60173,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_4_0" = callPackage + "directory_1_2_5_0" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.4.0"; - sha256 = "f80eb093f772f4be6c9c6d4d179b6cb2358ef40a62f7f9e52bfc6df643268517"; + version = "1.2.5.0"; + sha256 = "ac9d7fdd402c3281fab7ffad004229671f0ecfb7ddd70fd58b90b0a48c1ddef7"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -66725,8 +66817,8 @@ self: { }: mkDerivation { pname = "eventstore"; - version = "0.9.1.1"; - sha256 = "0b14aa08ac3e26d4db103c18fe7c95758168f7a3aaad9387b54b83e981f4bbff"; + version = "0.9.1.2"; + sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; libraryHaskellDepends = [ aeson async attoparsec base bytestring cereal containers network protobuf random stm text time unordered-containers uuid @@ -66741,29 +66833,6 @@ self: { platforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; - "eventstore_0_9_1_2" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal - , containers, network, protobuf, random, stm, tasty, tasty-hunit - , text, time, unordered-containers, uuid - }: - mkDerivation { - pname = "eventstore"; - version = "0.9.1.2"; - sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring cereal containers network - protobuf random stm text time unordered-containers uuid - ]; - testHaskellDepends = [ - aeson base stm tasty tasty-hunit text time - ]; - homepage = "http://github.com/YoEight/eventstore"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "every-bit-counts" = callPackage ({ mkDerivation, base, haskell98 }: mkDerivation { @@ -69494,8 +69563,7 @@ self: { description = "Signal Processing extension for Feldspar"; license = stdenv.lib.licenses.bsd3; broken = true; - }) {feldspar-compiler-shim = null; imperative-edsl = null; - monadic-edsl-priv = null;}; + }) {feldspar-compiler-shim = null; monadic-edsl-priv = null;}; "fen2s" = callPackage ({ mkDerivation, api-opentheory-unicode, base, opentheory-unicode @@ -73716,27 +73784,29 @@ self: { }) {}; "funbot" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, feed - , feed-collect, funbot-ext-events, HTTP, http-client - , http-client-tls, http-listen, irc-fun-bot, irc-fun-color - , json-state, network-uri, settings, tagsoup, text, time - , time-interval, time-units, transformers, unordered-containers - , utf8-string, vcs-web-hook-parse + ({ mkDerivation, aeson, auto-update, base, bytestring, clock + , containers, data-default-class, feed, feed-collect + , funbot-ext-events, HTTP, http-client, http-client-tls + , http-listen, irc-fun-bot, irc-fun-color, json-state, network-uri + , settings, tagsoup, text, time, time-interval, time-units + , transformers, unordered-containers, utf8-string + , vcs-web-hook-parse }: mkDerivation { pname = "funbot"; - version = "0.3"; - sha256 = "b59ff6ae40115e1c470677d5bc7188276a282dc383f6afad1f7c801f9c0d52b4"; + version = "0.4.0.1"; + sha256 = "444da7bc772b17de0aa329292dbe1a3ad3134990f824d6f88d6355ff28c3537e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson base bytestring containers feed feed-collect - funbot-ext-events HTTP http-client http-client-tls http-listen - irc-fun-bot irc-fun-color json-state network-uri settings tagsoup - text time time-interval time-units transformers - unordered-containers utf8-string vcs-web-hook-parse + aeson auto-update base bytestring clock containers + data-default-class feed feed-collect funbot-ext-events HTTP + http-client http-client-tls http-listen irc-fun-bot irc-fun-color + json-state network-uri settings tagsoup text time time-interval + time-units transformers unordered-containers utf8-string + vcs-web-hook-parse ]; - homepage = "https://notabug.org/fr33domlover/funbot/"; + homepage = "https://notabug.org/fr33domlover/funbot"; description = "IRC bot for fun, learning, creativity and collaboration"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -73764,8 +73834,8 @@ self: { ({ mkDerivation, aeson, base, text }: mkDerivation { pname = "funbot-ext-events"; - version = "0.1.0.0"; - sha256 = "5e37649835bc82210744615b623608f5e5d450487a4a598b1b43eed8184c37c8"; + version = "0.2.0.0"; + sha256 = "5224fee263e625708cc937356cdb5dfcf55f0cfd26bf61a8fcb9b2392aa37e26"; libraryHaskellDepends = [ aeson base text ]; homepage = "https://notabug.org/fr33domlover/funbot-ext-events/"; description = "Interact with FunBot's external events"; @@ -76036,8 +76106,8 @@ self: { }: mkDerivation { pname = "ghc-parmake"; - version = "0.1.8"; - sha256 = "cce9254e2f12fd8aab4ef56659db0df0c0853e8cea8024320ce66f2f2b523521"; + version = "0.1.9"; + sha256 = "381973ada7fc3e944dab09ff35d3b26070b1585f5a115fc2ddb09508c1e11c5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -76050,7 +76120,6 @@ self: { base directory filepath HUnit process QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/23Skidoo/ghc-parmake"; description = "A parallel wrapper for 'ghc --make'"; license = stdenv.lib.licenses.bsd3; @@ -76167,25 +76236,6 @@ self: { }) {}; "ghc-session" = callPackage - ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths - , transformers - }: - mkDerivation { - pname = "ghc-session"; - version = "0.1.1.0"; - sha256 = "fe73ed93744e1d324b85c6a029aac9363ec6b6badfcc791e212309d515b61f28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base exceptions ghc ghc-mtl ghc-paths transformers - ]; - executableHaskellDepends = [ base transformers ]; - homepage = "http://github.com/pmlodawski/ghc-session"; - description = "Simplified GHC API"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ghc-session_0_1_2_0" = callPackage ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths , transformers, transformers-compat }: @@ -76203,7 +76253,6 @@ self: { homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-simple" = callPackage @@ -76359,6 +76408,7 @@ self: { base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; + jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -79145,8 +79195,8 @@ self: { }: mkDerivation { pname = "gnss-converters"; - version = "0.1.1"; - sha256 = "b225a109b0d264196abdf899c824c4d1e38c24c662bf888a9af9d968029117de"; + version = "0.1.2"; + sha256 = "8e43f583e7562c086bb8de1a88ef5b5e6bdca72a3ea4645e6d9f486861d07f0c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -79282,6 +79332,7 @@ self: { ]; executableHaskellDepends = [ base gtk ]; testHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; @@ -80817,6 +80868,7 @@ self: { base colour containers fraction glib grapefruit-frp grapefruit-records grapefruit-ui gtk ]; + jailbreak = true; homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; @@ -82242,7 +82294,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk" = callPackage + "gtk_0_13_9" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, gtk2hs-buildtools, mtl, pango, text }: @@ -82259,9 +82311,10 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk_0_14_2" = callPackage + "gtk" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, gtk2hs-buildtools, mtl, pango, text }: @@ -82274,10 +82327,10 @@ self: { ]; libraryPkgconfigDepends = [ gtk2 ]; libraryToolDepends = [ gtk2hs-buildtools ]; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -82405,6 +82458,7 @@ self: { sha256 = "1582e229aafe22cf5499fe1519e2ff4f49cecbe83a6eb1a8de04f45dd44df443"; libraryHaskellDepends = [ base glib gtk ]; libraryPkgconfigDepends = [ gtk2 x11 ]; + jailbreak = true; homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; @@ -82898,6 +82952,7 @@ self: { ]; libraryPkgconfigDepends = [ gtksourceview ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; @@ -85687,6 +85742,7 @@ self: { base containers grid HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; @@ -94619,6 +94675,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hindent_4_6_1" = callPackage + ({ mkDerivation, base, data-default, descriptive, directory + , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text + , transformers + }: + mkDerivation { + pname = "hindent"; + version = "4.6.1"; + sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base data-default haskell-src-exts monad-loops mtl text + transformers + ]; + executableHaskellDepends = [ + base descriptive directory ghc-prim haskell-src-exts text + ]; + testHaskellDepends = [ + base data-default directory haskell-src-exts hspec monad-loops mtl + text + ]; + homepage = "http://www.github.com/chrisdone/hindent"; + description = "Extensible Haskell pretty printer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hinduce-associations-apriori" = callPackage ({ mkDerivation, base, containers, deepseq, hinduce-missingh , parallel, vector @@ -96158,8 +96242,8 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, process, zlib }: + "hlibgit2_0_18_0_14" = callPackage + ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: mkDerivation { pname = "hlibgit2"; version = "0.18.0.14"; @@ -96167,11 +96251,13 @@ self: { libraryHaskellDepends = [ base bindings-DSL zlib ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ base process ]; + testToolDepends = [ git ]; description = "Low-level bindings to libgit2"; license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) git; inherit (pkgs) openssl;}; - "hlibgit2_0_18_0_15" = callPackage + "hlibgit2" = callPackage ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: mkDerivation { pname = "hlibgit2"; @@ -96183,7 +96269,6 @@ self: { testToolDepends = [ git ]; description = "Low-level bindings to libgit2"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) git; inherit (pkgs) openssl;}; "hlibsass" = callPackage @@ -96192,7 +96277,6 @@ self: { pname = "hlibsass"; version = "0.1.4.0"; sha256 = "2673ff4a4189bdfda61e5b936e1e91c4de29ede91db40055511a835ccbd35818"; - configureFlags = [ "-fexternallibsass" ]; libraryHaskellDepends = [ base ]; librarySystemDepends = [ libsass ]; testHaskellDepends = [ base hspec ]; @@ -105234,7 +105318,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client" = callPackage + "http-client_0_4_25" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -105262,9 +105346,10 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client_0_4_26_1" = callPackage + "http-client" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -105292,7 +105377,6 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-auth" = callPackage @@ -108639,6 +108723,8 @@ self: { pname = "ide-backend"; version = "0.10.0"; sha256 = "26a35f82533d8361824e04468176cab7c14d3fa4d0a1ebe1aa243a986a3ae0a2"; + revision = "1"; + editedCabalFile = "96888cccc65f025e63931b466ac392e6caa581f6e902a428fd203cdf3c22f5ef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108816,6 +108902,8 @@ self: { pname = "ide-backend-common"; version = "0.10.1.1"; sha256 = "858cc32d6c73ca0d55e1fc7dc25831e437a3cca483438a74bbc236f8f93cfcb3"; + revision = "1"; + editedCabalFile = "ed08fca4f17984a5ef06a632b23bc604d5e93a3040fde4cde9721a8ef4991975"; libraryHaskellDepends = [ aeson async attoparsec base binary bytestring bytestring-trie containers crypto-api data-accessor directory filepath fingertree @@ -108994,12 +109082,12 @@ self: { , optparse-applicative, parsers, pretty, process, safe, split, text , time, transformers, transformers-compat, trifecta, uniplate, unix , unordered-containers, utf8-string, vector - , vector-binary-instances, zip-archive, zlib + , vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.9.20.1"; - sha256 = "3613b7ded2358e63df21e96ad8bc966d33dcb26d796771f1d5e9f2267d325c39"; + version = "0.9.20.2"; + sha256 = "499339fc6a443dd2902ae76114eba6a61ebbd5955dcf3d3687199df5829a0f47"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -109010,7 +109098,7 @@ self: { haskeline hscurses libffi mtl network optparse-applicative parsers pretty process safe split text time transformers transformers-compat trifecta uniplate unix unordered-containers - utf8-string vector vector-binary-instances zip-archive zlib + utf8-string vector vector-binary-instances zip-archive ]; librarySystemDepends = [ gmp ]; executableHaskellDepends = [ @@ -109897,6 +109985,29 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "imperative-edsl" = callPackage + ({ mkDerivation, array, base, BoundedChan, constraints, containers + , directory, exception-transformers, language-c-quote + , mainland-pretty, microlens, microlens-mtl, microlens-th, mtl + , open-typerep, operational-alacarte, process, srcloc, syntactic + , tagged + }: + mkDerivation { + pname = "imperative-edsl"; + version = "0.4.1"; + sha256 = "5b78994b208351b4fdd8465146559d7198c6969dfaaa3767ed667d9df29bfad4"; + libraryHaskellDepends = [ + array base BoundedChan constraints containers + exception-transformers language-c-quote mainland-pretty microlens + microlens-mtl microlens-th mtl open-typerep operational-alacarte + srcloc syntactic tagged + ]; + testHaskellDepends = [ base directory mainland-pretty process ]; + homepage = "https://github.com/emilaxelsson/imperative-edsl"; + description = "Deep embedding of imperative programs with code generation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "imperative-edsl-vhdl" = callPackage ({ mkDerivation, base, bytestring, constraints, containers , language-vhdl, mtl, operational-alacarte, pretty, syntactic @@ -111956,18 +112067,18 @@ self: { }) {}; "irc-fun-bot" = callPackage - ({ mkDerivation, aeson, base, clock, fast-logger, irc-fun-client - , irc-fun-messages, json-state, time, time-interval, time-units - , transformers, unordered-containers + ({ mkDerivation, aeson, auto-update, base, clock, containers + , fast-logger, irc-fun-client, irc-fun-messages, json-state, time + , time-interval, time-units, transformers, unordered-containers }: mkDerivation { pname = "irc-fun-bot"; - version = "0.4.0.0"; - sha256 = "defa781ecd1ff744f5b36907be56d58189fcd31de85599f713628a4ffd06c253"; + version = "0.5.0.0"; + sha256 = "1104c508068dcfba3f8c60c39d5cc8ccb9b264af57097e8fa2b61e68e3754b51"; libraryHaskellDepends = [ - aeson base clock fast-logger irc-fun-client irc-fun-messages - json-state time time-interval time-units transformers - unordered-containers + aeson auto-update base clock containers fast-logger irc-fun-client + irc-fun-messages json-state time time-interval time-units + transformers unordered-containers ]; jailbreak = true; homepage = "http://rel4tion.org/projects/irc-fun-bot/"; @@ -111981,8 +112092,8 @@ self: { }: mkDerivation { pname = "irc-fun-client"; - version = "0.3.0.0"; - sha256 = "325178cd683dc79974519e87da2e23fe7707c12feff697605915fa5e99aaf258"; + version = "0.4.0.0"; + sha256 = "2567be16b259a37a4234a1716bef694d6f1ce6c3b7c9f553d9d0a12a0be65c33"; libraryHaskellDepends = [ auto-update base fast-logger irc-fun-messages network time time-units unordered-containers @@ -112011,8 +112122,8 @@ self: { ({ mkDerivation, base, regex-applicative }: mkDerivation { pname = "irc-fun-messages"; - version = "0.2.0.0"; - sha256 = "47345b37fb95a265c5237a826ba1351e78ad956b35a7dcd13bd7c625f8d8c5a1"; + version = "0.2.0.1"; + sha256 = "b54ab9b8a259c49a495f111bc7a56c5cd50334c4708dea6e3f06b66534325198"; libraryHaskellDepends = [ base regex-applicative ]; homepage = "http://rel4tion.org/projects/irc-fun-messages/"; description = "Types and functions for working with the IRC protocol"; @@ -113896,6 +114007,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "json-encoder" = callPackage + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, contravariant, contravariant-extras + , scientific, text + }: + mkDerivation { + pname = "json-encoder"; + version = "0.1.3.1"; + sha256 = "0127462ef932a643adc948bbb1de89de78d705a464c2591aedafddcd8382fadc"; + libraryHaskellDepends = [ + base base-prelude bytestring bytestring-tree-builder contravariant + contravariant-extras scientific text + ]; + homepage = "https://github.com/sannsyn/json-encoder"; + description = "A very fast single-pass JSON encoder with a declarative DSL"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-enumerator" = callPackage ({ mkDerivation, base, blaze-builder, blaze-builder-enumerator , bytestring, containers, enumerator, json-types, text @@ -116801,6 +116930,7 @@ self: { template-haskell time transformers transformers-base unix utf8-string zlib ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot core functionality"; license = "GPL"; @@ -120309,7 +120439,6 @@ self: { attoparsec base bytestring containers data-default-class filepath hspec mtl network old-locale QuickCheck text time unix utf8-string ]; - jailbreak = true; homepage = "http://github.com/vimus/libmpd-haskell#readme"; description = "An MPD client library"; license = stdenv.lib.licenses.mit; @@ -120426,16 +120555,16 @@ self: { }) {}; "libravatar" = callPackage - ({ mkDerivation, base, bytestring, crypto-api, dns, network-uri - , pureMD5, random, SHA, url, utf8-string + ({ mkDerivation, base, bytestring, crypto-api, data-default-class + , dns, network-uri, pureMD5, random, SHA, url, utf8-string }: mkDerivation { pname = "libravatar"; - version = "0.2.0.0"; - sha256 = "a195549f60f88966732141a7bcab3fdfedb70bdbbb686ad3e2651518317082d5"; + version = "0.3.0.0"; + sha256 = "2371b91f8ff4abdeba4374d20b4fa9c90fe0e9871c874bd61f32380b32ef88bf"; libraryHaskellDepends = [ - base bytestring crypto-api dns network-uri pureMD5 random SHA url - utf8-string + base bytestring crypto-api data-default-class dns network-uri + pureMD5 random SHA url utf8-string ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; @@ -121881,6 +122010,7 @@ self: { stm tagged tasty tasty-hunit tasty-rerun transformers ]; testSystemDepends = [ z3 ]; + jailbreak = true; homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -121936,6 +122066,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "list-fusion-probe_0_1_0_5" = callPackage + ({ mkDerivation, base, tasty, tasty-hunit }: + mkDerivation { + pname = "list-fusion-probe"; + version = "0.1.0.5"; + sha256 = "7471363bd737abca1888bb8274cb3fef8f4fc925875b27fa0901efa1358adb50"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + description = "testing list fusion for success"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "list-grouping" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -122893,6 +123036,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "locked-poll" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, clock, containers + , lens, QuickCheck, random, regex-genex, tasty, tasty-golden + , tasty-hunit, tasty-quickcheck, time + }: + mkDerivation { + pname = "locked-poll"; + version = "0.1.0"; + sha256 = "6a369cb194ce975fe663b97eef47adcdc5d96e73abeea0f5087a00ee9201a164"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base clock containers ]; + executableHaskellDepends = [ base clock containers ]; + testHaskellDepends = [ + attoparsec base bytestring clock containers lens QuickCheck random + regex-genex tasty tasty-golden tasty-hunit tasty-quickcheck time + ]; + description = "Very simple poll lock"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lockfree-queue" = callPackage ({ mkDerivation, abstract-deque, abstract-deque-tests , atomic-primops, base, bytestring, ghc-prim, HUnit, test-framework @@ -136226,15 +136390,12 @@ self: { }) {}; "niagra" = callPackage - ({ mkDerivation, base, criterion, mtl, text, transformers }: + ({ mkDerivation, base, mtl, text, transformers }: mkDerivation { pname = "niagra"; - version = "0.0.1"; - sha256 = "848bd318b105bd23de959d3a6e026de1577337fcae803bfa1dc70461491c9058"; - isLibrary = true; - isExecutable = true; + version = "0.0.3"; + sha256 = "bb6dd33a0b00996263ae770fdf5ba461a956e33492310f27f83fbd248951f49b"; libraryHaskellDepends = [ base mtl text transformers ]; - executableHaskellDepends = [ base criterion text transformers ]; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -141383,8 +141544,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "parseargs"; - version = "0.2.0.3"; - sha256 = "252276e93adc941218220891a82a7b6622eacf829eda8b753c476fb13ece0073"; + version = "0.2.0.4"; + sha256 = "79241584c88dbde0abd5dd32a079b9baaad4a87b136a19e78492141ace1aa090"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; @@ -143610,7 +143771,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -143641,10 +143802,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent_2_2_4" = callPackage + "persistent" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -143675,7 +143837,6 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -145615,6 +145776,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pinchot_0_6_0_0" = callPackage + ({ mkDerivation, base, containers, Earley, lens, template-haskell + , transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.6.0.0"; + sha256 = "53cada3eace3bd2ffa297944adb1260ad71ebd8761defe0fd67053327e2d75a4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers Earley lens template-haskell transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Build parsers and ASTs for context-free grammars"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipe-enumerator" = callPackage ({ mkDerivation, base, enumerator, pipes, transformers }: mkDerivation { @@ -145948,6 +146128,7 @@ self: { async base bytestring cacophony hlint mtl pipes QuickCheck tasty tasty-quickcheck ]; + doCheck = false; homepage = "https://github.com/centromere/pipes-cacophony"; description = "Pipes for Noise-secured network connections"; license = stdenv.lib.licenses.publicDomain; @@ -146984,6 +147165,7 @@ self: { version = "0.2.0.2"; sha256 = "b6fab12df045798e95ee7e55ff19cea709d179d66e7a3770194daba0b394e3a2"; libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; + jailbreak = true; homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; @@ -146991,18 +147173,6 @@ self: { }) {}; "plot-gtk" = callPackage - ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: - mkDerivation { - pname = "plot-gtk"; - version = "0.2.0.3"; - sha256 = "fe433cdb56b1585d3fc94b51d60324a05f5f9419d861303986336e5889c1fefe"; - libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; - homepage = "http://code.haskell.org/plot"; - description = "GTK plots and interaction with GHCi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "plot-gtk_0_2_0_4" = callPackage ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: mkDerivation { pname = "plot-gtk"; @@ -147012,7 +147182,6 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-gtk-ui" = callPackage @@ -148037,6 +148206,7 @@ self: { ]; libraryPkgconfigDepends = [ gdk2 gdk_pixbuf pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; @@ -148718,8 +148888,8 @@ self: { }: mkDerivation { pname = "postgresql-simple"; - version = "0.5.1.1"; - sha256 = "e80bb4655745d5802b70c9276cee1a3772892451ea985047dd77fd1c242a43be"; + version = "0.5.1.2"; + sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -148734,30 +148904,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "postgresql-simple_0_5_1_2" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , bytestring, bytestring-builder, case-insensitive, containers - , cryptohash, hashable, HUnit, postgresql-libpq, scientific - , template-haskell, text, time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.5.1.2"; - sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable postgresql-libpq scientific - template-haskell text time transformers uuid-types vector - ]; - testHaskellDepends = [ - aeson base base16-bytestring bytestring containers cryptohash HUnit - text time vector - ]; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "postgresql-simple-migration" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash , directory, hspec, postgresql-simple, time @@ -149199,7 +149345,6 @@ self: { quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck tries unordered-containers ]; - doCheck = false; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -149404,8 +149549,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "prelude-edsl"; - version = "0.3"; - sha256 = "8250585549ad9c64c2b0407157cacb8a4a2dd0dcf77c8de4b005adddf2b98008"; + version = "0.3.1"; + sha256 = "7b6233ca1eeb916185f87a7ba9ba8007a3b3f3307b795e52b32444fbcce44658"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/emilaxelsson/prelude-edsl"; description = "An EDSL-motivated subset of the Prelude"; @@ -155688,6 +155833,7 @@ self: { libraryHaskellDepends = [ base dependent-sum gloss reflex transformers ]; + jailbreak = true; homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; @@ -155716,6 +155862,7 @@ self: { base containers gloss lens linear mtl reflex reflex-animation reflex-transformers transformers ]; + jailbreak = true; homepage = "https://github.com/saulzar/reflex-gloss-scene"; description = "A simple scene-graph using reflex and gloss"; license = stdenv.lib.licenses.bsd3; @@ -159265,7 +159412,7 @@ self: { license = stdenv.lib.licenses.mpl20; }) {}; - "rev-state" = callPackage + "rev-state_0_1" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "rev-state"; @@ -159275,9 +159422,10 @@ self: { homepage = "https://github.com/DanBurton/rev-state#readme"; description = "Reverse State monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rev-state_0_1_1" = callPackage + "rev-state" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "rev-state"; @@ -159288,7 +159436,6 @@ self: { homepage = "https://github.com/DanBurton/rev-state#readme"; description = "Reverse State monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "revdectime" = callPackage @@ -161787,8 +161934,8 @@ self: { "sbv_5_6" = callPackage ({ mkDerivation, array, async, base, base-compat, containers - , crackNum, data-binary-ieee754, deepseq, directory, filepath, mtl - , old-time, pretty, process, QuickCheck, random, syb + , crackNum, data-binary-ieee754, deepseq, directory, filepath + , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; @@ -161801,6 +161948,12 @@ self: { data-binary-ieee754 deepseq directory filepath mtl old-time pretty process QuickCheck random syb ]; + executableHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit process syb + ]; + testHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit syb + ]; homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; @@ -164415,6 +164568,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "serv" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, http-media, http-types, HUnit, mtl, QuickCheck + , tagged, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck, text + , time, transformers, wai, wai-extra, warp + }: + mkDerivation { + pname = "serv"; + version = "0.1.0.0"; + sha256 = "29d8124bcd00ae8ed28a37b6b7bcffa333cf4c30b845c9da725c71153274b371"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers http-media + http-types mtl tagged text time transformers wai + ]; + executableHaskellDepends = [ base text wai warp ]; + testHaskellDepends = [ + base HUnit QuickCheck tasty tasty-ant-xml tasty-hunit + tasty-quickcheck text wai wai-extra + ]; + homepage = "http://github.com/tel/serv#readme"; + description = "Dependently typed API server framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant_0_2_2" = callPackage ({ mkDerivation, base, hspec, parsec, QuickCheck , string-conversions, template-haskell, text @@ -165858,8 +166037,8 @@ self: { }: mkDerivation { pname = "settings"; - version = "0.2.1.0"; - sha256 = "b182e9e6093734311318f87940b9a0c5ee49d41978f82044a5ebbccdfbb2b3a8"; + version = "0.2.2.0"; + sha256 = "8ca39518d7ed4d0575dbb3bce2064aca006c449765c842906d07484fecf0b831"; libraryHaskellDepends = [ aeson aeson-pretty base bytestring time-units unordered-containers ]; @@ -170738,7 +170917,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snaplet-fay" = callPackage + "snaplet-fay_0_3_3_12" = callPackage ({ mkDerivation, aeson, base, bytestring, configurator, directory , fay, filepath, mtl, snap, snap-core, transformers }: @@ -170753,9 +170932,10 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snaplet-fay_0_3_3_13" = callPackage + "snaplet-fay" = callPackage ({ mkDerivation, aeson, base, bytestring, configurator, directory , fay, filepath, mtl, snap, snap-core, transformers }: @@ -170770,7 +170950,6 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ghcjs" = callPackage @@ -173930,6 +174109,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -174000,6 +174180,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -174070,6 +174251,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + doHaddock = false; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -179735,6 +179917,7 @@ self: { base dyre filepath gtk safe xdg-basedir ]; executablePkgconfigDepends = [ gtk2 ]; + jailbreak = true; homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; @@ -183086,35 +183269,6 @@ self: { }) {}; "text-show" = callPackage - ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors - , bytestring, bytestring-builder, containers, generic-deriving - , ghc-prim, hspec, integer-gmp, nats, QuickCheck - , quickcheck-instances, semigroups, tagged, template-haskell, text - , transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "2.1.1"; - sha256 = "0c42b918bb3a20eda3dc060b14a74c216e1ef3472d9cc8f4a15623a3f2e8c1eb"; - revision = "1"; - editedCabalFile = "6a44a796ef99a25dc68351d0c37364b301b01de63aaf31c6f376c5811da22778"; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - generic-deriving ghc-prim integer-gmp nats semigroups tagged - template-haskell text transformers void - ]; - testHaskellDepends = [ - array base base-compat base-orphans bifunctors bytestring - bytestring-builder generic-deriving ghc-prim hspec nats QuickCheck - quickcheck-instances tagged text transformers transformers-compat - void - ]; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "text-show_2_1_2" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -183136,11 +183290,9 @@ self: { quickcheck-instances tagged text transformers transformers-compat void ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-show-instances" = callPackage @@ -184091,6 +184243,7 @@ self: { base bifunctors containers hashable QuickCheck quickcheck-instances tasty tasty-quickcheck transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; license = stdenv.lib.licenses.bsd3; @@ -186915,31 +187068,6 @@ self: { }) {}; "tries" = callPackage - ({ mkDerivation, base, bytestring, bytestring-trie, composition - , composition-extra, containers, deepseq, hashable, keys, mtl - , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets - , tasty, tasty-quickcheck, unordered-containers - }: - mkDerivation { - pname = "tries"; - version = "0.0.3"; - sha256 = "45a90df3926415f24454fdeaf838d3982c8c441d4582b635a13f5f5ba1319971"; - libraryHaskellDepends = [ - base bytestring bytestring-trie composition composition-extra - containers deepseq hashable keys QuickCheck quickcheck-instances - rose-trees semigroups sets unordered-containers - ]; - testHaskellDepends = [ - base bytestring bytestring-trie composition composition-extra - containers deepseq hashable keys mtl QuickCheck - quickcheck-instances rose-trees semigroups sets tasty - tasty-quickcheck unordered-containers - ]; - description = "Various trie implementations in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "tries_0_0_4" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, composition , composition-extra, containers, deepseq, hashable, keys, mtl , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets @@ -186962,7 +187090,6 @@ self: { ]; description = "Various trie implementations in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trifecta_1_5_1_3" = callPackage @@ -187911,6 +188038,7 @@ self: { aeson base bytestring Cabal http-client http-client-tls network-uri text transformers ]; + jailbreak = true; homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -188824,6 +188952,7 @@ self: { executableHaskellDepends = [ base diagrams-cairo diagrams-lib text ]; + jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -189505,6 +189634,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "unbound-generics_0_3" = callPackage + ({ mkDerivation, base, containers, contravariant, deepseq, mtl + , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, transformers, transformers-compat + }: + mkDerivation { + pname = "unbound-generics"; + version = "0.3"; + sha256 = "8956c309de512339ee6d37501683df2e973c40437554fffab9b48cbe7283af07"; + libraryHaskellDepends = [ + base containers contravariant deepseq mtl profunctors + template-haskell transformers transformers-compat + ]; + testHaskellDepends = [ + base mtl QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + homepage = "http://github.com/lambdageek/unbound-generics"; + description = "Support for programming with names and binders using GHC Generics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unbounded-delays_0_1_0_8" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -193861,6 +194012,7 @@ self: { libraryHaskellDepends = [ base glib gtk pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; @@ -194506,6 +194658,43 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-app-static_3_1_4" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, cryptohash + , cryptohash-conduit, directory, file-embed, filepath, hspec + , http-date, http-types, mime-types, network, old-locale + , optparse-applicative, template-haskell, temporary, text, time + , transformers, unix-compat, unordered-containers, wai, wai-extra + , warp, zlib + }: + mkDerivation { + pname = "wai-app-static"; + version = "3.1.4"; + sha256 = "630e34d404da96327d312cf6a6002a098877282177b07eb875afbbcf47f43a67"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring blaze-builder blaze-html blaze-markup + byteable bytestring containers cryptohash cryptohash-conduit + directory file-embed filepath http-date http-types mime-types + old-locale optparse-applicative template-haskell text time + transformers unix-compat unordered-containers wai wai-extra warp + zlib + ]; + executableHaskellDepends = [ + base bytestring containers directory mime-types text + ]; + testHaskellDepends = [ + base bytestring filepath hspec http-date http-types mime-types + network old-locale temporary text time transformers unix-compat wai + wai-extra zlib + ]; + homepage = "http://www.yesodweb.com/book/web-application-interface"; + description = "WAI application for static serving"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-conduit_3_0_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , http-types, transformers, wai @@ -195507,6 +195696,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wai-middleware-caching_0_1_0_2" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai + }: + mkDerivation { + pname = "wai-middleware-caching"; + version = "0.1.0.2"; + sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types wai + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; + description = "WAI Middleware to cache things"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-middleware-caching-lru" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , lrucache, text, wai, wai-middleware-caching @@ -198229,6 +198435,7 @@ self: { base bytestring http-types optparse-applicative scotty text transformers ]; + jailbreak = true; homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web scaffolding using Scotty, WAI, and Warp"; license = stdenv.lib.licenses.mit; @@ -201095,6 +201302,7 @@ self: { base cairo graphviz gtk mtl polyparse text ]; executableHaskellDepends = [ base cairo graphviz gtk text ]; + jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -201478,7 +201686,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_1_2" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, old-locale , old-time, smallcheck, tasty, tasty-hunit, tasty-smallcheck, text @@ -201508,9 +201716,10 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx_0_2_0" = callPackage + "xlsx" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -201540,7 +201749,6 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsx-templater" = callPackage @@ -206907,6 +207115,46 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-core_1_4_18" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.18"; + sha256 = "1580cfac8d8255fe0d14af2d5edabfbad2e62238af13cea33b7144cdfba11d16"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-crud" = callPackage ({ mkDerivation, base, classy-prelude, containers, MissingH , monad-control, persistent, random, safe, stm, uuid, yesod-core @@ -208394,6 +208642,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-table_2_0_1" = callPackage + ({ mkDerivation, base, bytestring, containers, contravariant, text + , yesod-core + }: + mkDerivation { + pname = "yesod-table"; + version = "2.0.1"; + sha256 = "48ff72f00f6c957585bef6639b38252ba8aec6a2c409b4f59ef0a7b70e56a086"; + libraryHaskellDepends = [ + base bytestring containers contravariant text yesod-core + ]; + homepage = "https://github.com/andrewthad/yesod-table"; + description = "HTML tables for Yesod"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-tableview" = callPackage ({ mkDerivation, base, hamlet, persistent, yesod }: mkDerivation { @@ -208918,6 +209183,7 @@ self: { base directory filepath HUnit lens QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text yi-language yi-rope ]; + jailbreak = true; homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; From fced3e32221758d1a5b01acd4872fe826156e3a2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 11:43:35 +0100 Subject: [PATCH 345/707] haskellPackages: Stackage Nightly 2015-12-17 updates to GHC 7.10.3 --- .../haskell-modules/configuration-hackage2nix.yaml | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index ffba1d42664..94ebc3049fd 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1,19 +1,19 @@ # pkgs/development/haskell-modules/configuration-hackage2nix.yaml -compiler: ghc-7.10 +compiler: ghc-7.10.3 core-packages: - array-0.5.1.0 - - base-4.8.1.0 + - base-4.8.2.0 - binary-0.7.5.0 - bin-package-db-0.0.0.0 - bytestring-0.10.6.0 - - Cabal-1.22.4.0 + - Cabal-1.22.5.0 - containers-0.5.6.2 - deepseq-1.4.1.1 - directory-1.2.2.0 - filepath-1.4.0.0 - - ghc-7.10.2 + - ghc-7.10.3 - ghc-prim-0.4.0.0 - haskeline-0.7.2.1 - hoopl-3.10.0.2 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 13cac40328f..2a77b9e55ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4113,7 +4113,7 @@ let haskell = callPackage ./haskell-packages.nix { }; - haskellPackages = haskell.packages.ghc7102.override { + haskellPackages = haskell.packages.ghc7103.override { overrides = config.haskellPackageOverrides or (self: super: {}); }; inherit (haskellPackages) ghc cabal-install stack; From 16e9b44afa55a5d29988950a5c70ebc91c9687dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 14:35:11 +0100 Subject: [PATCH 346/707] cabal2nix: update to version 20151217 --- pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix | 4 ++-- .../tools/haskell/cabal2nix/distribution-nixpkgs.nix | 6 +++--- pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 89a56f1dbad..68c85fb2951 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -6,12 +6,12 @@ mkDerivation rec { pname = "cabal2nix"; - version = "20150922"; + version = "20151217"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 6c2243628da..7aac407e3ce 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "distribution-nixpkgs"; - version = "20150922"; + version = "1"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; - rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + rev = "v20151217"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; libraryHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index 422ab0fb18f..b2b3b46581a 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "hackage2nix"; - version = "20150922"; + version = "20151217"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; From 9cb7aa8357e61ff22ac082f5cb1a5c8f5a7903a6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 14:49:24 +0100 Subject: [PATCH 347/707] haskell-gtksourceview2: add override to fix build --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dbfd7850c37..065fd9b34d8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -255,6 +255,7 @@ self: super: { glib = addPkgconfigDepend super.glib pkgs.glib; gtk3 = super.gtk3.override { inherit (pkgs) gtk3; }; gtk = addPkgconfigDepend super.gtk pkgs.gtk; + gtksourceview2 = (addPkgconfigDepend super.gtksourceview2 pkgs.gtk2).override { inherit (pkgs.gnome2) gtksourceview; }; gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; }; # Need WebkitGTK, not just webkit. From 4ba31045e46b54e8b3b3d240858f83a60b9ef49c Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 14:50:47 +0100 Subject: [PATCH 348/707] nixpkgs manual: more strict commit policy (close #11609) --- doc/submitting-changes.xml | 73 +++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 12 deletions(-) diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml index 0fd1954c528..0b09dffbb2d 100644 --- a/doc/submitting-changes.xml +++ b/doc/submitting-changes.xml @@ -261,23 +261,72 @@ Additional information. Hydra builds for master and staging should not be used as testing platform, it's a build farm for changes that have been already tested. - -Master should only see non-breaking commits that do not cause mass rebuilds. - - - -Staging should only see non-breaking mass-rebuild commits. That means it's not to be used for testing, and changes must have been well tested already. Read policy here. - - - -If staging is already in a broken state, please refrain from adding extra new breakages. Stabilize it for a few days, merge into master, then resume development on staging. Keep an eye on the staging evaluations here. If any fixes for staging happen to be already in master, then master can be merged into staging. - - When changing the bootloader installation process, extra care must be taken. Grub installations cannot be rolled back, hence changes may break people's installations forever. For any non-trivial change to the bootloader please file a PR asking for review, especially from @edolstra. +
+ Master branch + + + + + It should only see non-breaking commits that do not cause mass rebuilds. + + + +
+ +
+ Staging branch + + + + + It's only for non-breaking mass-rebuild commits. That means it's not to + be used for testing, and changes must have been well tested already. + Read policy here. + + + + + If the branch is already in a broken state, please refrain from adding + extra new breakages. Stabilize it for a few days, merge into master, + then resume development on staging. + Keep an eye on the staging evaluations here. + If any fixes for staging happen to be already in master, then master can + be merged into staging. + + + +
+ +
+ Stable release branches + + + + + If you're cherry-picking a commit to a stable release branch, always use + git cherry-pick -xe and ensure the message contains a + clear description about why this needs to be included in the stable + branch. + + An example of a cherry-picked commit would look like this: + +nixos: Refactor the world. + +The original commit message describing the reason why the world was torn apart. + +(cherry picked from commit abcdef) +Reason: I just had a gut feeling that this would also be wanted by people from +the stone age. + + + +
+ From 8843368a135ec4613ddb31d477db60f59a58cb5c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 18 Dec 2015 16:36:35 +0300 Subject: [PATCH 349/707] deluge: add .desktop file --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ed0528f6fe..72178086c50 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6828,8 +6828,10 @@ in modules // { nativeBuildInputs = [ pkgs.intltool ]; postInstall = '' + mkdir -p $out/share/applications cp -R deluge/data/pixmaps $out/share/ cp -R deluge/data/icons $out/share/ + cp deluge/data/share/applications/deluge.desktop $out/share/applications ''; meta = { From ff58a9831b0554968f4d714f2626078d5f89d3d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Andr=C3=A9?= Date: Thu, 17 Dec 2015 12:45:42 +0100 Subject: [PATCH 350/707] matter-compiler: initial expression, fixes #11780 --- lib/maintainers.nix | 1 + .../compilers/matter-compiler/Gemfile | 3 +++ .../compilers/matter-compiler/Gemfile.lock | 13 +++++++++++ .../compilers/matter-compiler/default.nix | 22 +++++++++++++++++++ .../compilers/matter-compiler/gemset.nix | 9 ++++++++ pkgs/top-level/all-packages.nix | 2 ++ 6 files changed, 50 insertions(+) create mode 100644 pkgs/development/compilers/matter-compiler/Gemfile create mode 100644 pkgs/development/compilers/matter-compiler/Gemfile.lock create mode 100644 pkgs/development/compilers/matter-compiler/default.nix create mode 100644 pkgs/development/compilers/matter-compiler/gemset.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index f1dce94bf8c..e19970fe914 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -266,6 +266,7 @@ rszibele = "Richard Szibele "; rushmorem = "Rushmore Mushambi "; rvl = "Rodney Lorrimar "; + rvlander = "Gaëtan André "; rycee = "Robert Helgesson "; samuelrivas = "Samuel Rivas "; sander = "Sander van der Burg "; diff --git a/pkgs/development/compilers/matter-compiler/Gemfile b/pkgs/development/compilers/matter-compiler/Gemfile new file mode 100644 index 00000000000..21ec2345205 --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem 'matter_compiler' diff --git a/pkgs/development/compilers/matter-compiler/Gemfile.lock b/pkgs/development/compilers/matter-compiler/Gemfile.lock new file mode 100644 index 00000000000..2eefe96ec63 --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + remote: https://rubygems.org/ + specs: + matter_compiler (0.5.1) + +PLATFORMS + ruby + +DEPENDENCIES + matter_compiler + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/development/compilers/matter-compiler/default.nix b/pkgs/development/compilers/matter-compiler/default.nix new file mode 100644 index 00000000000..12da620fe5b --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/default.nix @@ -0,0 +1,22 @@ + +{ stdenv, lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "matter_compiler-0.5.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = '' + Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool. + It composes an API blueprint from its serialzed AST media-type. + ''; + homepage = https://github.com/apiaryio/matter_compiler/; + license = licenses.mit; + maintainers = with maintainers; [ rvlander ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/compilers/matter-compiler/gemset.nix b/pkgs/development/compilers/matter-compiler/gemset.nix new file mode 100644 index 00000000000..9ac7ae8d20e --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/gemset.nix @@ -0,0 +1,9 @@ +{ + "matter_compiler" = { + version = "0.5.1"; + source = { + type = "gem"; + sha256 = "16501zdiqxk34v2d0nlbwrcrjm6g57hrsmsw0crwssn29v5zbykf"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b4541cc550..d0d2f211548 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5538,6 +5538,8 @@ let ruby = ruby_2_0_0; }; + matter-compiler = callPackage ../development/compilers/matter-compiler {}; + cfr = callPackage ../development/tools/java/cfr { }; checkstyle = callPackage ../development/tools/analysis/checkstyle { }; From 640ca7e97588026a0da0a46e6419ec1a7f8c1a16 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Fri, 18 Dec 2015 17:40:56 +0100 Subject: [PATCH 351/707] tvheadend: 4.0.7 -> 4.0.8 --- pkgs/servers/tvheadend/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix index 569eecd4f6e..ee51ace4b68 100644 --- a/pkgs/servers/tvheadend/default.nix +++ b/pkgs/servers/tvheadend/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; -let version = "4.0.7"; +let version = "4.0.8"; pkgName = "tvheadend"; in @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz"; - sha256 = "0vhj4vkgl4brjw1pdc80g1wbjn6hyy57jrxkwilnivqfd1mwx3aw"; + sha256 = "0k4g7pvfyk4bxpsjdwv7bmbygbp7gfg9wrr2aqb099ncbz18bx04"; }; enableParallelBuilding = true; From b60f0fdcd41534bd69dd4ba54194c5a1736a2489 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 18:02:16 +0100 Subject: [PATCH 352/707] systemd: Apply upstream fix: networkd: link - do not drop config for loopback device --- pkgs/os-specific/linux/systemd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 54c04a8b3f2..fa858454965 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "NixOS"; repo = "systemd"; - rev = "e9a321e25fe31f0fd2ec0cc28088172ebf819c7e"; - sha256 = "0cgdnzq60ji7kk27xk4scsjkghgzcms7qlqkz3k1cx3r9c8gszz9"; + rev = "b737c07cc0234acfa87282786025d556bca91c3f"; + sha256 = "0wca8zkn39914c232andvf3v0ni6ylv154kz3s9fcvg47rhpd5n1"; }; outputs = [ "out" "man" "doc" ]; From 463793827f5ef7afc11f6a83501332830ed76078 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 18:16:54 +0100 Subject: [PATCH 353/707] Update copyright to include contributors See discussion at https://github.com/NixOS/nixpkgs/pull/11557. Closes #11557. --- COPYING | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COPYING b/COPYING index 919d1e25bbe..0d5734a591c 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2003-2006 Eelco Dolstra +Copyright (c) 2003-2015 Eelco Dolstra and the Nixpkgs/NixOS contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the From 0e4e01c7a6f823f1f0f31af21458ced902de365a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 18 Dec 2015 18:51:01 +0100 Subject: [PATCH 354/707] add back nixopsUnstable --- .../package-management/nixops/default.nix | 44 +++---------------- .../package-management/nixops/generic.nix | 43 ++++++++++++++++++ .../package-management/nixops/unstable.nix | 9 ++++ pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 58 insertions(+), 40 deletions(-) create mode 100644 pkgs/tools/package-management/nixops/generic.nix create mode 100644 pkgs/tools/package-management/nixops/unstable.nix diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix index 12e1989525d..4388cbc5b3d 100644 --- a/pkgs/tools/package-management/nixops/default.nix +++ b/pkgs/tools/package-management/nixops/default.nix @@ -1,43 +1,9 @@ -{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh }: - -pythonPackages.buildPythonPackage rec { - name = "nixops-1.3"; - namePrefix = ""; +{ callPackage, fetchurl }: +callPackage ./generic.nix (rec { + version = "1.3"; src = fetchurl { - url = "http://nixos.org/releases/nixops/${name}/${name}.tar.bz2"; + url = "http://nixos.org/releases/nixops/nixops/nixops-${version}.tar.bz2"; sha256 = "d80b0fe3bb31bb84a8545f9ea804ec8137172c8df44f03326ed7639e5a4bad55"; }; - - buildInputs = [ libxslt ]; - - pythonPath = - [ pythonPackages.prettytable - pythonPackages.boto - pythonPackages.sqlite3 - pythonPackages.hetzner - pythonPackages.libcloud - ]; - - doCheck = false; - - postInstall = - '' - make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ - docdir=$out/share/doc/nixops mandir=$out/share/man - - mkdir -p $out/share/nix/nixops - cp -av "nix/"* $out/share/nix/nixops - - # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL - # the version of openssh is causing errors when have big networks (40+) - wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" - ''; - - meta = { - homepage = https://github.com/NixOS/nixops; - description = "NixOS cloud provisioning and deployment tool"; - maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; - platforms = lib.platforms.unix; - }; -} +}) diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix new file mode 100644 index 00000000000..b9b9eee8d16 --- /dev/null +++ b/pkgs/tools/package-management/nixops/generic.nix @@ -0,0 +1,43 @@ +{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh +# version args +, src, version +}: + +pythonPackages.buildPythonPackage { + name = "nixops-${version}"; + namePrefix = ""; + + src = src; + + buildInputs = [ libxslt ]; + + pythonPath = + [ pythonPackages.prettytable + pythonPackages.boto + pythonPackages.sqlite3 + pythonPackages.hetzner + pythonPackages.libcloud + ]; + + doCheck = false; + + postInstall = + '' + make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ + docdir=$out/share/doc/nixops mandir=$out/share/man + + mkdir -p $out/share/nix/nixops + cp -av "nix/"* $out/share/nix/nixops + + # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL + # the version of openssh is causing errors when have big networks (40+) + wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" + ''; + + meta = { + homepage = https://github.com/NixOS/nixops; + description = "NixOS cloud provisioning and deployment tool"; + maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; + platforms = lib.platforms.unix; + }; +} diff --git a/pkgs/tools/package-management/nixops/unstable.nix b/pkgs/tools/package-management/nixops/unstable.nix new file mode 100644 index 00000000000..40d56518b3d --- /dev/null +++ b/pkgs/tools/package-management/nixops/unstable.nix @@ -0,0 +1,9 @@ +{ callPackage, fetchurl }: + +callPackage ./generic.nix (rec { + version = "2015-12-18"; + src = fetchurl { + url = "http://hydra.nixos.org/build/29118371/download/2/nixops-1.3.1pre1673_a0d5681.tar.bz2"; + sha256 = "177lnlfz32crcc0gjmh1gn5y2xs142kmb4b68k4raxcxxw118kw9"; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d0d2f211548..c8781b13329 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15407,7 +15407,7 @@ let nixops = callPackage ../tools/package-management/nixops { }; - nixopsUnstable = nixops; + nixopsUnstable = callPackage ../tools/package-management/nixops/unstable.nix { }; nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; From b3b7f9f37f8c134aa22b66ec6a0a1d555f1638bb Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Thu, 17 Dec 2015 18:38:29 +0100 Subject: [PATCH 355/707] fix lib path for gradle, fixes #11191 --- pkgs/development/tools/build-managers/gradle/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 8055a918ff3..bee95d67ec3 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -8,7 +8,7 @@ rec { mkdir -pv $out/lib/gradle/ cp -rv lib/ $out/lib/gradle/ - gradle_launcher_jar=$(echo $out/gradle/lib/gradle-launcher-*.jar) + gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar) test -f $gradle_launcher_jar makeWrapper ${jdk}/bin/java $out/bin/gradle \ --set JAVA_HOME ${jdk} \ From d7e17c2e71fc3c70e24ae69cfe5508e34a64c0a3 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Fri, 18 Dec 2015 23:51:51 +0100 Subject: [PATCH 356/707] Add shell env to buildHex packages. This adds erlangPackages.${name}.env, which is usable to launch a shell with the package and it's dependencies like this: nix-shell -A erlangPackages.lager.env This required: 1) refactoring buildHex to become a fixed-point function, 2) moves output of a package into $out/${name}, 3) introduces erlEnv (buildEnv, which links in package and it's deps into one directory - a super-simple plagiarization of haskellPackages.compiler.ghcWithPackages) and 4) shell function producing a un-buildable derivation to be used by nix-shell --- .../erlang-modules/build-erlang.nix | 3 + pkgs/development/erlang-modules/build-hex.nix | 166 ++++++++++-------- 2 files changed, 96 insertions(+), 73 deletions(-) diff --git a/pkgs/development/erlang-modules/build-erlang.nix b/pkgs/development/erlang-modules/build-erlang.nix index 19320f0394c..e662166741a 100644 --- a/pkgs/development/erlang-modules/build-erlang.nix +++ b/pkgs/development/erlang-modules/build-erlang.nix @@ -1,3 +1,6 @@ +# This file is not used not tested at this time, build-hex.nix is the currently +# main vehicle of bringing Erlang packages in. + { stdenv, erlang, rebar, openssl, libyaml }: { name, version diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 041a7db48a9..7ba8fab9bd2 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,5 +1,5 @@ { stdenv, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub, - rebar3-pc }: + rebar3-pc, buildEnv }: { name, version, sha256 , hexPkg ? name @@ -11,79 +11,99 @@ with stdenv.lib; -stdenv.mkDerivation (attrs // { - name = "${name}-${version}"; +let + plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); + getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); + recursiveDeps = unique (flatten (map getDeps erlangDeps)); + recursivePluginsDeps = unique (flatten (map getDeps plugins)); - buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; - - src = fetchHex { - pkg = hexPkg; - inherit version; - inherit sha256; + erlEnv = drv: buildEnv { + name = "erlang-env-${drv.name}"; + paths = [ drv ] ++ recursiveDeps; + ignoreCollisions = false; + meta = drv.meta; }; - postPatch = '' - rm -f rebar rebar3 - if [ -e "src/${name}.app.src" ]; then - sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" - fi - - ${if compilePorts then '' - echo "{plugins, [pc]}." >> rebar.config - '' else ''''} - - ${rebar3.setupRegistry} - - ${postPatch} - ''; - - configurePhase = let - plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); - getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); - recursiveDeps = unique (flatten (map getDeps erlangDeps)); - recursivePluginsDeps = unique (flatten (map getDeps plugins)); - in '' - runHook preConfigure - ${concatMapStrings (dep: '' - header "linking erlang dependency ${dep}" - ln -s "${dep}" "_build/default/lib/${dep.packageName}" - stopNest - '') recursiveDeps} - ${concatMapStrings (dep: '' - header "linking rebar3 plugins ${dep}" - ln -s "${dep}" "_build/default/plugins/${dep.packageName}" - stopNest - '') recursivePluginsDeps} - runHook postConfigure - ''; - - buildPhase = '' - runHook preBuild - HOME=. rebar3 compile - ${if compilePorts then '' - HOME=. rebar3 pc compile - '' else ''''} - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - mkdir "$out" - for reldir in src ebin priv include; do - fd="_build/default/lib/${name}/$reldir" - [ -d "$fd" ] || continue - cp -Hrt "$out" "$fd" - success=1 - done - runHook postInstall - ''; - - meta = { - inherit (erlang.meta) platforms; - } // meta; - - passthru = { - packageName = name; - inherit erlangDeps; + shell = drv: let + drvEnv = erlEnv drv; + in stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + nativeBuildInputs = [ erlang drvEnv ]; + shellHook = '' + export ERL_LIBS="${drvEnv}"; + ''; }; -}) + pkg = self: stdenv.mkDerivation (attrs // { + name = "${name}-${version}"; + + buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; + + src = fetchHex { + pkg = hexPkg; + inherit version; + inherit sha256; + }; + + postPatch = '' + rm -f rebar rebar3 + if [ -e "src/${name}.app.src" ]; then + sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" + fi + + ${if compilePorts then '' + echo "{plugins, [pc]}." >> rebar.config + '' else ''''} + + ${rebar3.setupRegistry} + + ${postPatch} + ''; + + configurePhase = '' + runHook preConfigure + ${concatMapStrings (dep: '' + header "linking erlang dependency ${dep}" + ln -s "${dep}/${dep.name}" "_build/default/lib/${dep.name}" + stopNest + '') recursiveDeps} + ${concatMapStrings (dep: '' + header "linking rebar3 plugins ${dep}" + ln -s "${dep}/${dep.name}" "_build/default/plugins/${dep.name}" + stopNest + '') recursivePluginsDeps} + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + HOME=. rebar3 compile + ${if compilePorts then '' + HOME=. rebar3 pc compile + '' else ''''} + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + mkdir -p "$out/${name}" + for reldir in src ebin priv include; do + fd="_build/default/lib/${name}/$reldir" + [ -d "$fd" ] || continue + cp -Hrt "$out/${name}" "$fd" + success=1 + done + runHook postInstall + ''; + + meta = { + inherit (erlang.meta) platforms; + } // meta; + + passthru = { + packageName = name; + env = shell self; + inherit erlangDeps; + }; + }); +in + fix pkg From 829634620796fc8b40ff35dbd2abba37595bd2b6 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 19 Dec 2015 00:29:32 +0100 Subject: [PATCH 357/707] jhead: 2.87 -> 3.00 Also clean up the package quite a bit and add myself as maintainer. --- pkgs/tools/graphics/jhead/default.nix | 35 ++++++++++++++++++--------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix index ee44ff975bb..470a2efdf6b 100644 --- a/pkgs/tools/graphics/jhead/default.nix +++ b/pkgs/tools/graphics/jhead/default.nix @@ -1,25 +1,38 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: -stdenv.mkDerivation { - name = "jhead-2.87"; +stdenv.mkDerivation rec { + name = "jhead-${version}"; + version = "3.00"; src = fetchurl { - url = http://www.sentex.net/~mwandel/jhead/jhead-2.87.tar.gz; - sha256 = "0vpp5jz49w5qzjzq3vllrbff7fr906jy8a8sq12yq8kw6qwbjjsl"; + url = "http://www.sentex.net/~mwandel/jhead/${name}.tar.gz"; + sha256 = "0pl9s9ssb2a9di82f3ypin2hd098ns8kzdsxw3i2y94f07d03k48"; }; patchPhase = '' - sed -i s@/usr/bin@$out/bin@ makefile + substituteInPlace makefile \ + --replace /usr/local/bin $out/bin + + substituteInPlace jhead.c \ + --replace "\" Compiled: \"__DATE__" "" ''; - preInstall = '' - mkdir -p $out/bin + installPhase = '' + mkdir -p \ + $out/bin \ + $out/man/man1 \ + $out/share/doc/${name} + + cp -v jhead $out/bin + cp -v jhead.1 $out/man/man1 + cp -v *.txt $out/share/doc/${name} ''; - meta = { + meta = with stdenv.lib; { homepage = http://www.sentex.net/~mwandel/jhead/; description = "Exif Jpeg header manipulation tool"; - license = stdenv.lib.licenses.free; - maintainers = with stdenv.lib.maintainers; [viric]; + license = licenses.publicDomain; + maintainers = with maintainers; [ viric rycee ]; + platforms = platforms.all; }; } From 1b3930ca046f533a07cfbc530f578ba0d562270b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 19 Dec 2015 00:47:42 +0100 Subject: [PATCH 358/707] pdf2svg: 0.2.2 -> 0.2.3 Also minor style changes and upstream source is now on GitHub. --- pkgs/tools/graphics/pdf2svg/default.nix | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/graphics/pdf2svg/default.nix b/pkgs/tools/graphics/pdf2svg/default.nix index 10309d208d8..10758d09bc7 100644 --- a/pkgs/tools/graphics/pdf2svg/default.nix +++ b/pkgs/tools/graphics/pdf2svg/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl, pkgconfig, cairo, gtk, poppler }: +{ stdenv, fetchFromGitHub, pkgconfig, cairo, gtk, poppler }: -stdenv.mkDerivation { - name = "pdf2svg-0.2.2"; +stdenv.mkDerivation rec { + name = "pdf2svg-${version}"; + version = "0.2.3"; - src = fetchurl { - url = "http://www.cityinthesky.co.uk/wp-content/uploads/2013/10/pdf2svg-0.2.2.tar.gz" ; - sha256 = "1jy6iqwwvd7drcybmdlmnc8m970f82fd7fisa8ha5zh13p49r8n2"; + src = fetchFromGitHub { + owner = "db9052"; + repo = "pdf2svg"; + rev = "v${version}"; + sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"; }; buildInputs = [ cairo pkgconfig poppler gtk ]; - meta = { + meta = with stdenv.lib; { description = "PDF converter to SVG format"; homepage = http://www.cityinthesky.co.uk/opensource/pdf2svg; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.ianwookim ]; - platforms = stdenv.lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.ianwookim ]; + platforms = platforms.unix; }; } From af6732e5037ef81479f2dfd5e48921b380a80b7a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 11:25:48 +0100 Subject: [PATCH 359/707] nixos autoUpgrade: add a 'dates' option (cherry picked from commit 80917d2473d321d7a990cf991c6353547976638c) Originally merged #11808 to release-15.09 directly. Close #11821. --- nixos/modules/installer/tools/auto-upgrade.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index e14653dc4eb..4ef5fa8bc1d 100644 --- a/nixos/modules/installer/tools/auto-upgrade.nix +++ b/nixos/modules/installer/tools/auto-upgrade.nix @@ -42,6 +42,17 @@ let cfg = config.system.autoUpgrade; in ''; }; + dates = mkOption { + default = "04:40"; + type = types.str; + description = '' + Specification (in the format described by + systemd.time + 5) of the time at + which the update will occur. + ''; + }; + }; }; @@ -73,7 +84,7 @@ let cfg = config.system.autoUpgrade; in ${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags} ''; - startAt = mkIf cfg.enable "04:40"; + startAt = optionalString cfg.enable cfg.dates; }; }; From 723e693791d230ade50a2c9acca4c7751825bf8a Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Sat, 19 Dec 2015 09:42:01 +0100 Subject: [PATCH 360/707] djvu2pdf: make work in nix-shell --- pkgs/tools/typesetting/djvu2pdf/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/typesetting/djvu2pdf/default.nix b/pkgs/tools/typesetting/djvu2pdf/default.nix index 5455df5f106..512efe497fa 100644 --- a/pkgs/tools/typesetting/djvu2pdf/default.nix +++ b/pkgs/tools/typesetting/djvu2pdf/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, pkgconfig, djvulibre, ghostscript }: +{ stdenv, makeWrapper, fetchurl, djvulibre, ghostscript, which }: stdenv.mkDerivation rec { version = "0.9.2"; @@ -9,12 +9,13 @@ stdenv.mkDerivation rec { sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g"; }; - buildInputs = [ pkgconfig ]; - propagatedUserEnvPkgs = [ djvulibre ghostscript ]; + nativeBuildInputs = [ makeWrapper ]; installPhase = '' mkdir -p $out/bin cp -p djvu2pdf $out/bin + wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre}/bin:${which}/bin + mkdir -p $out/man/man1 cp -p djvu2pdf.1.gz $out/man/man1 ''; @@ -23,6 +24,7 @@ stdenv.mkDerivation rec { description = "Creates djvu files from PDF files"; homepage = http://0x2a.at/s/projects/djvu2pdf; license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.all; inherit version; }; } From cf994dea03011b5010f5bc6f10aa3d7b9b214cd6 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 19 Dec 2015 01:25:55 -0800 Subject: [PATCH 361/707] docker-compose: 1.5.1 -> 1.5.2 --- 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 72178086c50..a952fb7c76b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7676,14 +7676,14 @@ in modules // { }; docker_compose = buildPythonPackage rec { - version = "1.5.1"; + version = "1.5.2"; name = "docker-compose-${version}"; namePrefix = ""; disabled = isPy3k || isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz"; - sha256 = "0mdgpwkpss48zz36sw65crqjry87ba5p3mkl6ncbb8jqsxgqhpnz"; + sha256 = "79aa7e2e6ef9ab1936f8777476ffd4bb329875ec3d3664d239896d2f2a3c4f4f"; }; # lots of networking and other fails From e8aee16550b66d634ee3fb8c864b2e8aa4a03055 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 11:05:24 +0000 Subject: [PATCH 362/707] ncmpcpp: 0.6.7 -> 0.7 --- pkgs/applications/audio/ncmpcpp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/ncmpcpp/default.nix b/pkgs/applications/audio/ncmpcpp/default.nix index e316df4a8c1..70cde4b0c70 100644 --- a/pkgs/applications/audio/ncmpcpp/default.nix +++ b/pkgs/applications/audio/ncmpcpp/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, boost, mpd_clientlib, ncurses, pkgconfig, readline -, libiconv +, libiconv, icu , outputsSupport ? false # outputs screen , visualizerSupport ? false, fftw ? null # visualizer screen , clockSupport ? false # clock screen @@ -15,11 +15,11 @@ assert taglibSupport -> (taglib != null); with stdenv.lib; stdenv.mkDerivation rec { name = "ncmpcpp-${version}"; - version = "0.6.7"; + version = "0.7"; src = fetchurl { url = "http://ncmpcpp.rybczak.net/stable/${name}.tar.bz2"; - sha256 = "0yr1ib14qkgbsv839anpzkfbwkm6gg8wv4bf98ar7q5l2p2pv008"; + sha256 = "0xzz0g9whqjcjaaqmsw5ph1zvpi2j5v3i5k73g7916rca3q4z4jh"; }; configureFlags = [ "BOOST_LIB_SUFFIX=" ] @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ boost mpd_clientlib ncurses readline libiconv ] + buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu ] ++ optional curlSupport curl ++ optional visualizerSupport fftw ++ optional taglibSupport taglib; From 819ca0997eaeada449174a47fd2948d8c3a2195a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 19 Dec 2015 11:42:53 +0100 Subject: [PATCH 363/707] exfat: 1.2.2 -> 1.2.3 Fixes: - Fixed clusters loss when file renaming replaces target. --- pkgs/tools/filesystems/exfat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix index f8a0d09bc52..507c5e7a6c0 100644 --- a/pkgs/tools/filesystems/exfat/default.nix +++ b/pkgs/tools/filesystems/exfat/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }: -let version = "1.2.2"; in +let version = "1.2.3"; in stdenv.mkDerivation rec { name = "exfat-${version}"; src = fetchFromGitHub { - sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1"; + sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda"; rev = "v${version}"; repo = "exfat"; owner = "relan"; From d4b14974e5897eadbdd25ac2104aa5650e3418d7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 19 Dec 2015 12:00:26 +0100 Subject: [PATCH 364/707] eid-mw: 4.1.9 -> 4.1.11 --- pkgs/tools/security/eid-mw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index 7823a9e0307..eba1bef1870 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk3, nssTools, pcsclite , pkgconfig }: -let version = "4.1.9"; in +let version = "4.1.11"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "03hf3bkawhr4kpjcv71xhja3d947qvxmjf0lkyjmv7i3fw3j8jqs"; + sha256 = "09rp4x1vg0j4rb2dl74f8a7szqx73saacjz09jkih1sz6vwi0j0w"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; From c42f9f5f01e98923e0d8513fb65b8f96b064706f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Dec 2015 13:35:44 +0100 Subject: [PATCH 365/707] idea.idea-{community,ultimate}: 15.0.1 -> 15.0.2 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 5cce2416abe..4c9476d0b9f 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -237,25 +237,25 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "15.0.1"; - build = "IC-143.382"; + version = "15.0.2"; + build = "IC-143.1184"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "1dbwzj12xkv2xw5nrhr779ac24hag0rb96dlagzyxcvc44xigjps"; + sha256 = "0y8rrbsb87avn1dhw5r1xb4axpbm1qvgcd0aysir9bqzhx8qg64c"; }; }; idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "15.0.1"; - build = "IU-143.382"; + version = "15.0.2"; + build = "IU-143.1184"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "0bw6qvsvhw0nabv01bgsbnl78vimnz2kb280jzv0ikmhxranyk0z"; + sha256 = "1r8gw7mv1b0k223k76ib08f4yrrgrw24qmhkbx88rknmls5nsgss"; }; }; From 0ad7b1f44ac9f47de67ec5ba4f0b7ca8b7052a14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Dec 2015 14:34:58 +0100 Subject: [PATCH 366/707] CONTRIBUTING.md: add a notice about licensing This suplements changes from #11557; see the long discussion. --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b92308622ee..c20d540a25a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,8 @@ # How to contribute +Note: contributing implies licensing those contributions +under the terms of [COPYING](./COPYING), which is an MIT-like license. + ## Opening issues * Make sure you have a [GitHub account](https://github.com/signup/free) From ef21e5ee60272df6cb3a9e3ffb7982199051d13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Dec 2015 16:04:36 +0100 Subject: [PATCH 367/707] nixpkgs manual: split languages into separate files There's no change in content except for amending the title of the section to mention "frameworks", as e.g. I don't consider Qt a language, and it's likely there will be more of similar cases in future. To be certain, I checked diff of the generated HTMLs. --- doc/default.nix | 10 +- doc/language-support.xml | 1047 --------------------------- doc/languages-frameworks/coq.xml | 41 ++ doc/languages-frameworks/go.xml | 124 ++++ doc/languages-frameworks/index.xml | 42 ++ doc/languages-frameworks/java.xml | 84 +++ doc/languages-frameworks/lua.xml | 51 ++ doc/languages-frameworks/perl.xml | 181 +++++ doc/languages-frameworks/python.xml | 447 ++++++++++++ doc/languages-frameworks/qt.xml | 70 ++ doc/languages-frameworks/ruby.xml | 46 ++ doc/manual.xml | 2 +- 12 files changed, 1094 insertions(+), 1051 deletions(-) delete mode 100644 doc/language-support.xml create mode 100644 doc/languages-frameworks/coq.xml create mode 100644 doc/languages-frameworks/go.xml create mode 100644 doc/languages-frameworks/index.xml create mode 100644 doc/languages-frameworks/java.xml create mode 100644 doc/languages-frameworks/lua.xml create mode 100644 doc/languages-frameworks/perl.xml create mode 100644 doc/languages-frameworks/python.xml create mode 100644 doc/languages-frameworks/qt.xml create mode 100644 doc/languages-frameworks/ruby.xml diff --git a/doc/default.nix b/doc/default.nix index b8dac00eb65..cca68014b0d 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -1,10 +1,12 @@ with import ./.. { }; with lib; - +let + sources = sourceFilesBySuffices ./. [".xml"]; + sources-langs = ./languages-frameworks; +in stdenv.mkDerivation { name = "nixpkgs-manual"; - sources = sourceFilesBySuffices ./. [".xml"]; buildInputs = [ pandoc libxml2 libxslt ]; @@ -35,7 +37,9 @@ stdenv.mkDerivation { echo "" } >haskell-users-guide.xml - ln -s "$sources/"*.xml . + ln -s '${sources}/'*.xml . + mkdir ./languages-frameworks + cp -s '${sources-langs}'/* ./languages-frameworks echo ${nixpkgsVersion} > .version diff --git a/doc/language-support.xml b/doc/language-support.xml deleted file mode 100644 index f0d5dbd3e64..00000000000 --- a/doc/language-support.xml +++ /dev/null @@ -1,1047 +0,0 @@ - - -Support for specific programming languages - -The standard build -environment makes it easy to build typical Autotools-based -packages with very little code. Any other kind of package can be -accomodated by overriding the appropriate phases of -stdenv. However, there are specialised functions -in Nixpkgs to easily build packages for other programming languages, -such as Perl or Haskell. These are described in this chapter. - - -
Perl - -Nixpkgs provides a function buildPerlPackage, -a generic package builder function for any Perl package that has a -standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic. - -Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix, -rather than pkgs/all-packages.nix. Most Perl -packages are so straight-forward to build that they are defined here -directly, rather than having a separate function for each package -called from perl-packages.nix. However, more -complicated packages should be put in a separate file, typically in -pkgs/development/perl-modules. Here is an -example of the former: - - -ClassC3 = buildPerlPackage rec { - name = "Class-C3-0.21"; - src = fetchurl { - url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz"; - sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz"; - }; -}; - - -Note the use of mirror://cpan/, and the -${name} in the URL definition to ensure that the -name attribute is consistent with the source that we’re actually -downloading. Perl packages are made available in -all-packages.nix through the variable -perlPackages. For instance, if you have a package -that needs ClassC3, you would typically write - - -foo = import ../path/to/foo.nix { - inherit stdenv fetchurl ...; - inherit (perlPackages) ClassC3; -}; - - -in all-packages.nix. You can test building a -Perl package as follows: - - -$ nix-build -A perlPackages.ClassC3 - - -buildPerlPackage adds perl- to -the start of the name attribute, so the package above is actually -called perl-Class-C3-0.21. So to install it, you -can say: - - -$ nix-env -i perl-Class-C3 - - -(Of course you can also install using the attribute name: -nix-env -i -A perlPackages.ClassC3.) - -So what does buildPerlPackage do? It does -the following: - - - - In the configure phase, it calls perl - Makefile.PL to generate a Makefile. You can set the - variable makeMakerFlags to pass flags to - Makefile.PL - - It adds the contents of the PERL5LIB - environment variable to #! .../bin/perl line of - Perl scripts as -Idir - flags. This ensures that a script can find its - dependencies. - - In the fixup phase, it writes the propagated build - inputs (propagatedBuildInputs) to the file - $out/nix-support/propagated-user-env-packages. - nix-env recursively installs all packages listed - in this file when you install a package that has it. This ensures - that a Perl package can find its dependencies. - - - - - -buildPerlPackage is built on top of -stdenv, so everything can be customised in the -usual way. For instance, the BerkeleyDB module has -a preConfigure hook to generate a configuration -file used by Makefile.PL: - - -{ buildPerlPackage, fetchurl, db }: - -buildPerlPackage rec { - name = "BerkeleyDB-0.36"; - - src = fetchurl { - url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz"; - sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1"; - }; - - preConfigure = '' - echo "LIB = ${db}/lib" > config.in - echo "INCLUDE = ${db}/include" >> config.in - ''; -} - - - - -Dependencies on other Perl packages can be specified in the -buildInputs and -propagatedBuildInputs attributes. If something is -exclusively a build-time dependency, use -buildInputs; if it’s (also) a runtime dependency, -use propagatedBuildInputs. For instance, this -builds a Perl module that has runtime dependencies on a bunch of other -modules: - - -ClassC3Componentised = buildPerlPackage rec { - name = "Class-C3-Componentised-1.0004"; - src = fetchurl { - url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz"; - sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1"; - }; - propagatedBuildInputs = [ - ClassC3 ClassInspector TestException MROCompat - ]; -}; - - - - -
Generation from CPAN - -Nix expressions for Perl packages can be generated (almost) -automatically from CPAN. This is done by the program -nix-generate-from-cpan, which can be installed -as follows: - - -$ nix-env -i nix-generate-from-cpan - - -This program takes a Perl module name, looks it up on CPAN, -fetches and unpacks the corresponding package, and prints a Nix -expression on standard output. For example: - - -$ nix-generate-from-cpan XML::Simple - XMLSimple = buildPerlPackage { - name = "XML-Simple-2.20"; - src = fetchurl { - url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz; - sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a"; - }; - propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ]; - meta = { - description = "Easily read/write XML (esp config files)"; - license = "perl"; - }; - }; - - -The output can be pasted into -pkgs/top-level/perl-packages.nix or wherever else -you need it. - -
- -
- - -
Python - - - Currently supported interpreters are python26, python27, - python33, python34, python35 - and pypy. - - - - python is an alias to python27 and python3 is an alias to python34. - - - - python26 and python27 do not include modules that require - external dependencies (to reduce dependency bloat). Following modules need to be added as - buildInput explicitly: - - - - python.modules.bsddb - python.modules.curses - python.modules.curses_panel - python.modules.crypt - python.modules.gdbm - python.modules.sqlite3 - python.modules.tkinter - python.modules.readline - - -For convenience python27Full and python26Full -are provided with all modules included. - - - Python packages that - use setuptools or distutils, - can be built using the buildPythonPackage function as documented below. - - - - All packages depending on any Python interpreter get appended $out/${python.sitePackages} - to $PYTHONPATH if such directory exists. - - - - - Useful attributes on interpreters packages: - - - - libPrefix - - Name of the folder in ${python}/lib/ for corresponding interpreter. - - - - - interpreter - - Alias for ${python}/bin/${executable}. - - - - - buildEnv - - Function to build python interpreter environments with extra packages bundled together. - See for usage and documentation. - - - - - sitePackages - - Alias for lib/${libPrefix}/site-packages. - - - - - executable - - Name of the interpreter executable, ie python3.4. - - - - -
<varname>buildPythonPackage</varname> function - - - The function is implemented in - pkgs/development/python-modules/generic/default.nix. - Example usage: - - -twisted = buildPythonPackage { - name = "twisted-8.1.0"; - - src = pkgs.fetchurl { - url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; - sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; - }; - - propagatedBuildInputs = [ self.ZopeInterface ]; - - meta = { - homepage = http://twistedmatrix.com/; - description = "Twisted, an event-driven networking engine written in Python"; - license = stdenv.lib.licenses.mit; - }; -}; - - - Most of Python packages that use buildPythonPackage are defined - in pkgs/top-level/python-packages.nix - and generated for each python interpreter separately into attribute sets python26Packages, - python27Packages, python35Packages, python33Packages, - python34Packages and pypyPackages. - - - - buildPythonPackage mainly does four things: - - - - In the buildPhase, it calls - ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile. - - - - In the installPhase, it installs the wheel file using - pip install *.whl. - - - - In the postFixup phase, wrapPythonPrograms - bash function is called to wrap all programs in $out/bin/* - directory to include $PYTHONPATH and $PATH - environment variables. - - - - In the installCheck phase, ${python.interpreter} setup.py test - is ran. - - - - - By default doCheck = true is set - - - As in Perl, dependencies on other Python packages can be specified in the - buildInputs and - propagatedBuildInputs attributes. If something is - exclusively a build-time dependency, use - buildInputs; if it’s (also) a runtime dependency, - use propagatedBuildInputs. - - - - By default meta.platforms is set to the same value - as the interpreter unless overriden otherwise. - - - - - <varname>buildPythonPackage</varname> parameters - (all parameters from <varname>mkDerivation</varname> function are still supported) - - - - namePrefix - - Prepended text to ${name} parameter. - Defaults to "python3.3-" for Python 3.3, etc. Set it to - "" - if you're packaging an application or a command line tool. - - - - - disabled - - If true, package is not build for - particular python interpreter version. Grep around - pkgs/top-level/python-packages.nix - for examples. - - - - - setupPyBuildFlags - - List of flags passed to setup.py build_ext command. - - - - - pythonPath - - List of packages to be added into $PYTHONPATH. - Packages in pythonPath are not propagated - (contrary to propagatedBuildInputs). - - - - - preShellHook - - Hook to execute commands before shellHook. - - - - - postShellHook - - Hook to execute commands after shellHook. - - - - - makeWrapperArgs - - A list of strings. Arguments to be passed to - makeWrapper, which wraps generated binaries. By - default, the arguments to makeWrapper set - PATH and PYTHONPATH environment - variables before calling the binary. Additional arguments here can - allow a developer to set environment variables which will be - available when the binary is run. For example, - makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]. - - - - - -
- -
<function>python.buildEnv</function> function - - Create Python environments using low-level pkgs.buildEnv function. Example default.nix: - - - {}; - -python.buildEnv.override { - extraLibs = [ pkgs.pythonPackages.pyramid ]; - ignoreCollisions = true; -}]]> - - - Running nix-build will create - /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env - with wrapped binaries in bin/. - - - - You can also use env attribute to create local - environments with needed packages installed (somewhat comparable to - virtualenv). For example, with the following - shell.nix: - - - {}; - -(python3.buildEnv.override { - extraLibs = with python3Packages; - [ numpy - requests - ]; -}).env]]> - - - Running nix-shell will drop you into a shell where - python will have specified packages in its path. - - - - - <function>python.buildEnv</function> arguments - - - - extraLibs - - List of packages installed inside the environment. - - - - - postBuild - - Shell command executed after the build of environment. - - - - - ignoreCollisions - - Ignore file collisions inside the environment (default is false). - - - -
- -
Tools - -Packages inside nixpkgs are written by hand. However many tools -exist in community to help save time. No tool is preferred at the moment. - - - - - - python2nix - by Vladimir Kirillov - - - - pypi2nix - by Rok Garbas - - - - pypi2nix - by Jaka Hudoklin - - - - -
- -
Development - - - To develop Python packages buildPythonPackage has - additional logic inside shellPhase to run - pip install -e . --prefix $TMPDIR/ for the package. - - - shellPhase is executed only if setup.py - exists. - - - Given a default.nix: - - - {}; - -buildPythonPackage { - name = "myproject"; - - buildInputs = with pkgs.pythonPackages; [ pyramid ]; - - src = ./.; -}]]> - - - Running nix-shell with no arguments should give you - the environment in which the package would be build with - nix-build. - - - - Shortcut to setup environments with C headers/libraries and python packages: - - $ nix-shell -p pythonPackages.pyramid zlib libjpeg git - - - - There is a boolean value lib.inNixShell set to - true if nix-shell is invoked. - - -
- -
FAQ - - - - - How to solve circular dependencies? - - If you have packages A and B that - depend on each other, when packaging B override package - A not to depend on B as input - (and also the other way around). - - - - - install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied - - - Known bug in setuptools install_data does not respect --prefix. Example of - such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround - install it as an extra preInstall step: - - ${python.interpreter} setup.py install_data --install-dir=$out --root=$out -sed -i '/ = data_files/d' setup.py - - - - - Rationale of non-existent global site-packages - - There is no need to have global site-packages in Nix. Each package has isolated - dependency tree and installing any python package will only populate $PATH - inside user environment. See to create self-contained - interpreter with a set of packages. - - - - - -
- - -
Contributing guidelines - - Following rules are desired to be respected: - - - - - - Make sure package builds for all python interpreters. Use disabled argument to - buildPythonPackage to set unsupported interpreters. - - - - If tests need to be disabled for a package, make sure you leave a comment about reasoning. - - - - Packages in pkgs/top-level/python-packages.nix - are sorted quasi-alphabetically to avoid merge conflicts. - - - - -
- -
- - -
Ruby - There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert - this into a nix expression that contains all Gem dependencies automatically. - - For example, to package sensu, we did: - - - Gemfile -source 'https://rubygems.org' -gem 'sensu' -$ bundler package --path /tmp/vendor/bundle -$ $(nix-build '' -A bundix)/bin/bundix -$ cat > default.nix -{ lib, bundlerEnv, ruby }: - -bundlerEnv { - name = "sensu-0.17.1"; - - inherit ruby; - gemfile = ./Gemfile; - lockfile = ./Gemfile.lock; - gemset = ./gemset.nix; - - meta = with lib; { - description = "A monitoring framework that aims to be simple, malleable, -and scalable."; - homepage = http://sensuapp.org/; - license = with licenses; mit; - maintainers = with maintainers; [ theuni ]; - platforms = platforms.unix; - }; -}]]> - - -Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily. - - -
- -
Go - -The function buildGoPackage builds -standard Go packages. - - -buildGoPackage - -net = buildGoPackage rec { - name = "go.net-${rev}"; - goPackagePath = "golang.org/x/net"; - subPackages = [ "ipv4" "ipv6" ]; - rev = "e0403b4e005"; - src = fetchFromGitHub { - inherit rev; - owner = "golang"; - repo = "net"; - sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp"; - }; - goPackageAliases = [ "code.google.com/p/go.net" ]; - propagatedBuildInputs = [ goPackages.text ]; - buildFlags = "--tags release"; - disabled = isGo13; -}; - - - - is an example expression using buildGoPackage, -the following arguments are of special significance to the function: - - - - - - goPackagePath specifies the package's canonical Go import path. - - - - - - subPackages limits the builder from building child packages that - have not been listed. If subPackages is not specified, all child - packages will be built. - - - In this example only code.google.com/p/go.net/ipv4 and - code.google.com/p/go.net/ipv6 will be built. - - - - - - goPackageAliases is a list of alternative import paths - that are valid for this library. - Packages that depend on this library will automatically rename - import paths that match any of the aliases to goPackagePath. - - - In this example imports will be renamed from - code.google.com/p/go.net to - golang.org/x/net in every package that depend on the - go.net library. - - - - - - propagatedBuildInputs is where the dependencies of a Go library are - listed. Only libraries should list propagatedBuildInputs. If a standalone - program is being built instead, use buildInputs. If a library's tests require - additional dependencies that are not propagated, they should be listed in buildInputs. - - - - - - buildFlags is a list of flags passed to the go build command. - - - - - - If disabled is true, - nix will refuse to build this package. - - - In this example the package will not be built for go 1.3. The isGo13 - is an utility function that returns true if go used to build the - package has version 1.3.x. - - - - - - - - -Reusable Go libraries may be found in the goPackages set. You can test -build a Go package as follows: - - -$ nix-build -A goPackages.net - - - - - -You may use Go packages installed into the active Nix profiles by adding -the following to your ~/.bashrc: - - -for p in $NIX_PROFILES; do - GOPATH="$p/share/go:$GOPATH" -done - - - - To extract dependency information from a Go package in automated way use go2nix. -
- - -
Java - -Ant-based Java packages are typically built from source as follows: - - -stdenv.mkDerivation { - name = "..."; - src = fetchurl { ... }; - - buildInputs = [ jdk ant ]; - - buildPhase = "ant"; -} - - -Note that jdk is an alias for the OpenJDK. - -JAR files that are intended to be used by other packages should -be installed in $out/share/java. The OpenJDK has -a stdenv setup hook that adds any JARs in the -share/java directories of the build inputs to the -CLASSPATH environment variable. For instance, if the -package libfoo installs a JAR named -foo.jar in its share/java -directory, and another package declares the attribute - - -buildInputs = [ jdk libfoo ]; - - -then CLASSPATH will be set to -/nix/store/...-libfoo/share/java/foo.jar. - -Private JARs -should be installed in a location like -$out/share/package-name. - -If your Java package provides a program, you need to generate a -wrapper script to run it using the OpenJRE. You can use -makeWrapper for this: - - -buildInputs = [ makeWrapper ]; - -installPhase = - '' - mkdir -p $out/bin - makeWrapper ${jre}/bin/java $out/bin/foo \ - --add-flags "-cp $out/share/java/foo.jar org.foo.Main" - ''; - - -Note the use of jre, which is the part of the -OpenJDK package that contains the Java Runtime Environment. By using -${jre}/bin/java instead of -${jdk}/bin/java, you prevent your package from -depending on the JDK at runtime. - -It is possible to use a different Java compiler than -javac from the OpenJDK. For instance, to use the -Eclipse Java Compiler: - - -buildInputs = [ jre ant ecj ]; - - -(Note that here you don’t need the full JDK as an input, but just the -JRE.) The ECJ has a stdenv setup hook that sets some environment -variables to cause Ant to use ECJ, but this doesn’t work with all Ant -files. Similarly, you can use the GNU Java Compiler: - - -buildInputs = [ gcj ant ]; - - -Here, Ant will automatically use gij (the GNU Java -Runtime) instead of the OpenJRE. - -
- - -
Lua - - - Lua packages are built by the buildLuaPackage function. This function is - implemented - in - pkgs/development/lua-modules/generic/default.nix - and works similarly to buildPerlPackage. (See - for details.) - - - - Lua packages are defined - in pkgs/top-level/lua-packages.nix. - Most of them are simple. For example: - - -fileSystem = buildLuaPackage { - name = "filesystem-1.6.2"; - src = fetchurl { - url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz"; - sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz"; - }; - meta = { - homepage = "https://github.com/keplerproject/luafilesystem"; - hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = with maintainers; [ flosse ]; - }; -}; - - - - - Though, more complicated package should be placed in a seperate file in - pkgs/development/lua-modules. - - - Lua packages accept additional parameter disabled, which defines - the condition of disabling package from luaPackages. For example, if package has - disabled assigned to lua.luaversion != "5.1", - it will not be included in any luaPackages except lua51Packages, making it - only be built for lua 5.1. - - -
- -
Coq - - Coq libraries should be installed in - $(out)/lib/coq/${coq.coq-version}/user-contrib/. - Such directories are automatically added to the - $COQPATH environment variable by the hook defined - in the Coq derivation. - - - Some libraries require OCaml and sometimes also Camlp5. The exact - versions that were used to build Coq are saved in the - coq.ocaml and coq.camlp5 - attributes. - - - Here is a simple package example. It is a pure Coq library, thus it - only depends on Coq. Its makefile has been - generated using coq_makefile so we only have to - set the $COQLIB variable at install time. - - -{stdenv, fetchurl, coq}: -stdenv.mkDerivation { - src = fetchurl { - url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz; - sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1"; - }; - - name = "coq-karatsuba"; - - buildInputs = [ coq ]; - - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; -} - -
- -
Qt - -The information in this section applies to Qt 5.5 and later. - -Qt is an application development toolkit for C++. Although it is -not a distinct programming language, there are special considerations -for packaging Qt-based programs and libraries. A small set of tools -and conventions has grown out of these considerations. - -
Libraries - -Packages that provide libraries should be listed in -qt5LibsFun so that the library is built with each -Qt version. A set of packages is provided for each version of Qt; for -example, qt5Libs always provides libraries built -with the latest version, qt55Libs provides -libraries built with Qt 5.5, and so on. To avoid version conflicts, no -top-level attributes are created for these packages. - -
- -
Programs - -Application packages do not need to be built with every Qt -version. To ensure consistency between the package's dependencies, -call the package with qt5Libs.callPackage instead -of the usual callPackage. An older version may be -selected in case of incompatibility. For example, to build with Qt -5.5, call the package with -qt55Libs.callPackage. - -Several environment variables must be set at runtime for Qt -applications to function correctly, including: - - - QT_PLUGIN_PATH - QML_IMPORT_PATH - QML2_IMPORT_PATH - XDG_DATA_DIRS - - -To ensure that these are set correctly, the program must be wrapped by -invoking wrapQtProgram program -during installation (for example, during -fixupPhase). wrapQtProgram -accepts the same options as makeWrapper. - - -
- -
KDE - -Many of the considerations above also apply to KDE packages, -especially the need to set the correct environment variables at -runtime. To ensure that this is done, invoke wrapKDEProgram -program during -installation. wrapKDEProgram also generates a -ksycoca database so that required data and services -can be found. Like its Qt counterpart, -wrapKDEProgram accepts the same options as -makeWrapper. - -
- -
- - - - -
diff --git a/doc/languages-frameworks/coq.xml b/doc/languages-frameworks/coq.xml new file mode 100644 index 00000000000..d16c9f3dc87 --- /dev/null +++ b/doc/languages-frameworks/coq.xml @@ -0,0 +1,41 @@ +
+ +Coq + + Coq libraries should be installed in + $(out)/lib/coq/${coq.coq-version}/user-contrib/. + Such directories are automatically added to the + $COQPATH environment variable by the hook defined + in the Coq derivation. + + + Some libraries require OCaml and sometimes also Camlp5. The exact + versions that were used to build Coq are saved in the + coq.ocaml and coq.camlp5 + attributes. + + + Here is a simple package example. It is a pure Coq library, thus it + only depends on Coq. Its makefile has been + generated using coq_makefile so we only have to + set the $COQLIB variable at install time. + + +{stdenv, fetchurl, coq}: +stdenv.mkDerivation { + src = fetchurl { + url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz; + sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1"; + }; + + name = "coq-karatsuba"; + + buildInputs = [ coq ]; + + installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; +} + +
+ diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml new file mode 100644 index 00000000000..89908b3b8ff --- /dev/null +++ b/doc/languages-frameworks/go.xml @@ -0,0 +1,124 @@ +
+ +Go + +The function buildGoPackage builds +standard Go packages. + + +buildGoPackage + +net = buildGoPackage rec { + name = "go.net-${rev}"; + goPackagePath = "golang.org/x/net"; + subPackages = [ "ipv4" "ipv6" ]; + rev = "e0403b4e005"; + src = fetchFromGitHub { + inherit rev; + owner = "golang"; + repo = "net"; + sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp"; + }; + goPackageAliases = [ "code.google.com/p/go.net" ]; + propagatedBuildInputs = [ goPackages.text ]; + buildFlags = "--tags release"; + disabled = isGo13; +}; + + + + is an example expression using buildGoPackage, +the following arguments are of special significance to the function: + + + + + + goPackagePath specifies the package's canonical Go import path. + + + + + + subPackages limits the builder from building child packages that + have not been listed. If subPackages is not specified, all child + packages will be built. + + + In this example only code.google.com/p/go.net/ipv4 and + code.google.com/p/go.net/ipv6 will be built. + + + + + + goPackageAliases is a list of alternative import paths + that are valid for this library. + Packages that depend on this library will automatically rename + import paths that match any of the aliases to goPackagePath. + + + In this example imports will be renamed from + code.google.com/p/go.net to + golang.org/x/net in every package that depend on the + go.net library. + + + + + + propagatedBuildInputs is where the dependencies of a Go library are + listed. Only libraries should list propagatedBuildInputs. If a standalone + program is being built instead, use buildInputs. If a library's tests require + additional dependencies that are not propagated, they should be listed in buildInputs. + + + + + + buildFlags is a list of flags passed to the go build command. + + + + + + If disabled is true, + nix will refuse to build this package. + + + In this example the package will not be built for go 1.3. The isGo13 + is an utility function that returns true if go used to build the + package has version 1.3.x. + + + + + + + + +Reusable Go libraries may be found in the goPackages set. You can test +build a Go package as follows: + + +$ nix-build -A goPackages.net + + + + + +You may use Go packages installed into the active Nix profiles by adding +the following to your ~/.bashrc: + + +for p in $NIX_PROFILES; do + GOPATH="$p/share/go:$GOPATH" +done + + + + To extract dependency information from a Go package in automated way use go2nix. +
+ diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml new file mode 100644 index 00000000000..9fd79877e83 --- /dev/null +++ b/doc/languages-frameworks/index.xml @@ -0,0 +1,42 @@ + + +Support for specific programming languages and frameworks + +The standard build +environment makes it easy to build typical Autotools-based +packages with very little code. Any other kind of package can be +accomodated by overriding the appropriate phases of +stdenv. However, there are specialised functions +in Nixpkgs to easily build packages for other programming languages, +such as Perl or Haskell. These are described in this chapter. + + + + + + + + + + + + + + + + diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml new file mode 100644 index 00000000000..2d40a254ced --- /dev/null +++ b/doc/languages-frameworks/java.xml @@ -0,0 +1,84 @@ +
+ +Java + +Ant-based Java packages are typically built from source as follows: + + +stdenv.mkDerivation { + name = "..."; + src = fetchurl { ... }; + + buildInputs = [ jdk ant ]; + + buildPhase = "ant"; +} + + +Note that jdk is an alias for the OpenJDK. + +JAR files that are intended to be used by other packages should +be installed in $out/share/java. The OpenJDK has +a stdenv setup hook that adds any JARs in the +share/java directories of the build inputs to the +CLASSPATH environment variable. For instance, if the +package libfoo installs a JAR named +foo.jar in its share/java +directory, and another package declares the attribute + + +buildInputs = [ jdk libfoo ]; + + +then CLASSPATH will be set to +/nix/store/...-libfoo/share/java/foo.jar. + +Private JARs +should be installed in a location like +$out/share/package-name. + +If your Java package provides a program, you need to generate a +wrapper script to run it using the OpenJRE. You can use +makeWrapper for this: + + +buildInputs = [ makeWrapper ]; + +installPhase = + '' + mkdir -p $out/bin + makeWrapper ${jre}/bin/java $out/bin/foo \ + --add-flags "-cp $out/share/java/foo.jar org.foo.Main" + ''; + + +Note the use of jre, which is the part of the +OpenJDK package that contains the Java Runtime Environment. By using +${jre}/bin/java instead of +${jdk}/bin/java, you prevent your package from +depending on the JDK at runtime. + +It is possible to use a different Java compiler than +javac from the OpenJDK. For instance, to use the +Eclipse Java Compiler: + + +buildInputs = [ jre ant ecj ]; + + +(Note that here you don’t need the full JDK as an input, but just the +JRE.) The ECJ has a stdenv setup hook that sets some environment +variables to cause Ant to use ECJ, but this doesn’t work with all Ant +files. Similarly, you can use the GNU Java Compiler: + + +buildInputs = [ gcj ant ]; + + +Here, Ant will automatically use gij (the GNU Java +Runtime) instead of the OpenJRE. + +
+ diff --git a/doc/languages-frameworks/lua.xml b/doc/languages-frameworks/lua.xml new file mode 100644 index 00000000000..39b086af4cb --- /dev/null +++ b/doc/languages-frameworks/lua.xml @@ -0,0 +1,51 @@ +
+ +Lua + + + Lua packages are built by the buildLuaPackage function. This function is + implemented + in + pkgs/development/lua-modules/generic/default.nix + and works similarly to buildPerlPackage. (See + for details.) + + + + Lua packages are defined + in pkgs/top-level/lua-packages.nix. + Most of them are simple. For example: + + +fileSystem = buildLuaPackage { + name = "filesystem-1.6.2"; + src = fetchurl { + url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz"; + sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz"; + }; + meta = { + homepage = "https://github.com/keplerproject/luafilesystem"; + hydraPlatforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ flosse ]; + }; +}; + + + + + Though, more complicated package should be placed in a seperate file in + pkgs/development/lua-modules. + + + Lua packages accept additional parameter disabled, which defines + the condition of disabling package from luaPackages. For example, if package has + disabled assigned to lua.luaversion != "5.1", + it will not be included in any luaPackages except lua51Packages, making it + only be built for lua 5.1. + + +
+ diff --git a/doc/languages-frameworks/perl.xml b/doc/languages-frameworks/perl.xml new file mode 100644 index 00000000000..54b82f4a056 --- /dev/null +++ b/doc/languages-frameworks/perl.xml @@ -0,0 +1,181 @@ +
+ +Perl + +Nixpkgs provides a function buildPerlPackage, +a generic package builder function for any Perl package that has a +standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic. + +Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix, +rather than pkgs/all-packages.nix. Most Perl +packages are so straight-forward to build that they are defined here +directly, rather than having a separate function for each package +called from perl-packages.nix. However, more +complicated packages should be put in a separate file, typically in +pkgs/development/perl-modules. Here is an +example of the former: + + +ClassC3 = buildPerlPackage rec { + name = "Class-C3-0.21"; + src = fetchurl { + url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz"; + sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz"; + }; +}; + + +Note the use of mirror://cpan/, and the +${name} in the URL definition to ensure that the +name attribute is consistent with the source that we’re actually +downloading. Perl packages are made available in +all-packages.nix through the variable +perlPackages. For instance, if you have a package +that needs ClassC3, you would typically write + + +foo = import ../path/to/foo.nix { + inherit stdenv fetchurl ...; + inherit (perlPackages) ClassC3; +}; + + +in all-packages.nix. You can test building a +Perl package as follows: + + +$ nix-build -A perlPackages.ClassC3 + + +buildPerlPackage adds perl- to +the start of the name attribute, so the package above is actually +called perl-Class-C3-0.21. So to install it, you +can say: + + +$ nix-env -i perl-Class-C3 + + +(Of course you can also install using the attribute name: +nix-env -i -A perlPackages.ClassC3.) + +So what does buildPerlPackage do? It does +the following: + + + + In the configure phase, it calls perl + Makefile.PL to generate a Makefile. You can set the + variable makeMakerFlags to pass flags to + Makefile.PL + + It adds the contents of the PERL5LIB + environment variable to #! .../bin/perl line of + Perl scripts as -Idir + flags. This ensures that a script can find its + dependencies. + + In the fixup phase, it writes the propagated build + inputs (propagatedBuildInputs) to the file + $out/nix-support/propagated-user-env-packages. + nix-env recursively installs all packages listed + in this file when you install a package that has it. This ensures + that a Perl package can find its dependencies. + + + + + +buildPerlPackage is built on top of +stdenv, so everything can be customised in the +usual way. For instance, the BerkeleyDB module has +a preConfigure hook to generate a configuration +file used by Makefile.PL: + + +{ buildPerlPackage, fetchurl, db }: + +buildPerlPackage rec { + name = "BerkeleyDB-0.36"; + + src = fetchurl { + url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz"; + sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1"; + }; + + preConfigure = '' + echo "LIB = ${db}/lib" > config.in + echo "INCLUDE = ${db}/include" >> config.in + ''; +} + + + + +Dependencies on other Perl packages can be specified in the +buildInputs and +propagatedBuildInputs attributes. If something is +exclusively a build-time dependency, use +buildInputs; if it’s (also) a runtime dependency, +use propagatedBuildInputs. For instance, this +builds a Perl module that has runtime dependencies on a bunch of other +modules: + + +ClassC3Componentised = buildPerlPackage rec { + name = "Class-C3-Componentised-1.0004"; + src = fetchurl { + url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz"; + sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1"; + }; + propagatedBuildInputs = [ + ClassC3 ClassInspector TestException MROCompat + ]; +}; + + + + +
Generation from CPAN + +Nix expressions for Perl packages can be generated (almost) +automatically from CPAN. This is done by the program +nix-generate-from-cpan, which can be installed +as follows: + + +$ nix-env -i nix-generate-from-cpan + + +This program takes a Perl module name, looks it up on CPAN, +fetches and unpacks the corresponding package, and prints a Nix +expression on standard output. For example: + + +$ nix-generate-from-cpan XML::Simple + XMLSimple = buildPerlPackage { + name = "XML-Simple-2.20"; + src = fetchurl { + url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz; + sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a"; + }; + propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ]; + meta = { + description = "Easily read/write XML (esp config files)"; + license = "perl"; + }; + }; + + +The output can be pasted into +pkgs/top-level/perl-packages.nix or wherever else +you need it. + +
+ +
+ diff --git a/doc/languages-frameworks/python.xml b/doc/languages-frameworks/python.xml new file mode 100644 index 00000000000..57aceeb4868 --- /dev/null +++ b/doc/languages-frameworks/python.xml @@ -0,0 +1,447 @@ +
+ +Python + + + Currently supported interpreters are python26, python27, + python33, python34, python35 + and pypy. + + + + python is an alias to python27 and python3 is an alias to python34. + + + + python26 and python27 do not include modules that require + external dependencies (to reduce dependency bloat). Following modules need to be added as + buildInput explicitly: + + + + python.modules.bsddb + python.modules.curses + python.modules.curses_panel + python.modules.crypt + python.modules.gdbm + python.modules.sqlite3 + python.modules.tkinter + python.modules.readline + + +For convenience python27Full and python26Full +are provided with all modules included. + + + Python packages that + use setuptools or distutils, + can be built using the buildPythonPackage function as documented below. + + + + All packages depending on any Python interpreter get appended $out/${python.sitePackages} + to $PYTHONPATH if such directory exists. + + + + + Useful attributes on interpreters packages: + + + + libPrefix + + Name of the folder in ${python}/lib/ for corresponding interpreter. + + + + + interpreter + + Alias for ${python}/bin/${executable}. + + + + + buildEnv + + Function to build python interpreter environments with extra packages bundled together. + See for usage and documentation. + + + + + sitePackages + + Alias for lib/${libPrefix}/site-packages. + + + + + executable + + Name of the interpreter executable, ie python3.4. + + + + +
<varname>buildPythonPackage</varname> function + + + The function is implemented in + pkgs/development/python-modules/generic/default.nix. + Example usage: + + +twisted = buildPythonPackage { + name = "twisted-8.1.0"; + + src = pkgs.fetchurl { + url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; + sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; + }; + + propagatedBuildInputs = [ self.ZopeInterface ]; + + meta = { + homepage = http://twistedmatrix.com/; + description = "Twisted, an event-driven networking engine written in Python"; + license = stdenv.lib.licenses.mit; + }; +}; + + + Most of Python packages that use buildPythonPackage are defined + in pkgs/top-level/python-packages.nix + and generated for each python interpreter separately into attribute sets python26Packages, + python27Packages, python35Packages, python33Packages, + python34Packages and pypyPackages. + + + + buildPythonPackage mainly does four things: + + + + In the buildPhase, it calls + ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile. + + + + In the installPhase, it installs the wheel file using + pip install *.whl. + + + + In the postFixup phase, wrapPythonPrograms + bash function is called to wrap all programs in $out/bin/* + directory to include $PYTHONPATH and $PATH + environment variables. + + + + In the installCheck phase, ${python.interpreter} setup.py test + is ran. + + + + + By default doCheck = true is set + + + As in Perl, dependencies on other Python packages can be specified in the + buildInputs and + propagatedBuildInputs attributes. If something is + exclusively a build-time dependency, use + buildInputs; if it’s (also) a runtime dependency, + use propagatedBuildInputs. + + + + By default meta.platforms is set to the same value + as the interpreter unless overriden otherwise. + + + + + <varname>buildPythonPackage</varname> parameters + (all parameters from <varname>mkDerivation</varname> function are still supported) + + + + namePrefix + + Prepended text to ${name} parameter. + Defaults to "python3.3-" for Python 3.3, etc. Set it to + "" + if you're packaging an application or a command line tool. + + + + + disabled + + If true, package is not build for + particular python interpreter version. Grep around + pkgs/top-level/python-packages.nix + for examples. + + + + + setupPyBuildFlags + + List of flags passed to setup.py build_ext command. + + + + + pythonPath + + List of packages to be added into $PYTHONPATH. + Packages in pythonPath are not propagated + (contrary to propagatedBuildInputs). + + + + + preShellHook + + Hook to execute commands before shellHook. + + + + + postShellHook + + Hook to execute commands after shellHook. + + + + + makeWrapperArgs + + A list of strings. Arguments to be passed to + makeWrapper, which wraps generated binaries. By + default, the arguments to makeWrapper set + PATH and PYTHONPATH environment + variables before calling the binary. Additional arguments here can + allow a developer to set environment variables which will be + available when the binary is run. For example, + makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]. + + + + + +
+ +
<function>python.buildEnv</function> function + + Create Python environments using low-level pkgs.buildEnv function. Example default.nix: + + + {}; + +python.buildEnv.override { + extraLibs = [ pkgs.pythonPackages.pyramid ]; + ignoreCollisions = true; +}]]> + + + Running nix-build will create + /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env + with wrapped binaries in bin/. + + + + You can also use env attribute to create local + environments with needed packages installed (somewhat comparable to + virtualenv). For example, with the following + shell.nix: + + + {}; + +(python3.buildEnv.override { + extraLibs = with python3Packages; + [ numpy + requests + ]; +}).env]]> + + + Running nix-shell will drop you into a shell where + python will have specified packages in its path. + + + + + <function>python.buildEnv</function> arguments + + + + extraLibs + + List of packages installed inside the environment. + + + + + postBuild + + Shell command executed after the build of environment. + + + + + ignoreCollisions + + Ignore file collisions inside the environment (default is false). + + + +
+ +
Tools + +Packages inside nixpkgs are written by hand. However many tools +exist in community to help save time. No tool is preferred at the moment. + + + + + + python2nix + by Vladimir Kirillov + + + + pypi2nix + by Rok Garbas + + + + pypi2nix + by Jaka Hudoklin + + + + +
+ +
Development + + + To develop Python packages buildPythonPackage has + additional logic inside shellPhase to run + pip install -e . --prefix $TMPDIR/ for the package. + + + shellPhase is executed only if setup.py + exists. + + + Given a default.nix: + + + {}; + +buildPythonPackage { + name = "myproject"; + + buildInputs = with pkgs.pythonPackages; [ pyramid ]; + + src = ./.; +}]]> + + + Running nix-shell with no arguments should give you + the environment in which the package would be build with + nix-build. + + + + Shortcut to setup environments with C headers/libraries and python packages: + + $ nix-shell -p pythonPackages.pyramid zlib libjpeg git + + + + There is a boolean value lib.inNixShell set to + true if nix-shell is invoked. + + +
+ +
FAQ + + + + + How to solve circular dependencies? + + If you have packages A and B that + depend on each other, when packaging B override package + A not to depend on B as input + (and also the other way around). + + + + + install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied + + + Known bug in setuptools install_data does not respect --prefix. Example of + such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround + install it as an extra preInstall step: + + ${python.interpreter} setup.py install_data --install-dir=$out --root=$out +sed -i '/ = data_files/d' setup.py + + + + + Rationale of non-existent global site-packages + + There is no need to have global site-packages in Nix. Each package has isolated + dependency tree and installing any python package will only populate $PATH + inside user environment. See to create self-contained + interpreter with a set of packages. + + + + + +
+ + +
Contributing guidelines + + Following rules are desired to be respected: + + + + + + Make sure package builds for all python interpreters. Use disabled argument to + buildPythonPackage to set unsupported interpreters. + + + + If tests need to be disabled for a package, make sure you leave a comment about reasoning. + + + + Packages in pkgs/top-level/python-packages.nix + are sorted quasi-alphabetically to avoid merge conflicts. + + + + +
+ +
+ diff --git a/doc/languages-frameworks/qt.xml b/doc/languages-frameworks/qt.xml new file mode 100644 index 00000000000..093c33c25a1 --- /dev/null +++ b/doc/languages-frameworks/qt.xml @@ -0,0 +1,70 @@ +
+ +Qt + +The information in this section applies to Qt 5.5 and later. + +Qt is an application development toolkit for C++. Although it is +not a distinct programming language, there are special considerations +for packaging Qt-based programs and libraries. A small set of tools +and conventions has grown out of these considerations. + +
Libraries + +Packages that provide libraries should be listed in +qt5LibsFun so that the library is built with each +Qt version. A set of packages is provided for each version of Qt; for +example, qt5Libs always provides libraries built +with the latest version, qt55Libs provides +libraries built with Qt 5.5, and so on. To avoid version conflicts, no +top-level attributes are created for these packages. + +
+ +
Programs + +Application packages do not need to be built with every Qt +version. To ensure consistency between the package's dependencies, +call the package with qt5Libs.callPackage instead +of the usual callPackage. An older version may be +selected in case of incompatibility. For example, to build with Qt +5.5, call the package with +qt55Libs.callPackage. + +Several environment variables must be set at runtime for Qt +applications to function correctly, including: + + + QT_PLUGIN_PATH + QML_IMPORT_PATH + QML2_IMPORT_PATH + XDG_DATA_DIRS + + +To ensure that these are set correctly, the program must be wrapped by +invoking wrapQtProgram program +during installation (for example, during +fixupPhase). wrapQtProgram +accepts the same options as makeWrapper. + + +
+ +
KDE + +Many of the considerations above also apply to KDE packages, +especially the need to set the correct environment variables at +runtime. To ensure that this is done, invoke wrapKDEProgram +program during +installation. wrapKDEProgram also generates a +ksycoca database so that required data and services +can be found. Like its Qt counterpart, +wrapKDEProgram accepts the same options as +makeWrapper. + +
+ +
+ diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml new file mode 100644 index 00000000000..a2b4475a4a5 --- /dev/null +++ b/doc/languages-frameworks/ruby.xml @@ -0,0 +1,46 @@ +
+ +Ruby + + There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert + this into a nix expression that contains all Gem dependencies automatically. + + For example, to package sensu, we did: + + + Gemfile +source 'https://rubygems.org' +gem 'sensu' +$ bundler package --path /tmp/vendor/bundle +$ $(nix-build '' -A bundix)/bin/bundix +$ cat > default.nix +{ lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "sensu-0.17.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "A monitoring framework that aims to be simple, malleable, +and scalable."; + homepage = http://sensuapp.org/; + license = with licenses; mit; + maintainers = with maintainers; [ theuni ]; + platforms = platforms.unix; + }; +}]]> + + +Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily. + + +
+ diff --git a/doc/manual.xml b/doc/manual.xml index 3ffe7fbb068..b4c35d1a379 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -15,7 +15,7 @@ - + From dadfd93811c9ddef93024f164edef636bdd48481 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:53:12 -0600 Subject: [PATCH 368/707] emacsWithPackages: know its own package set Fixes #10819. emacsWithPackages will know its own package set. This requires it to be in a package set, rather than at the top level, so it lives in emacsPackagesNg. --- pkgs/build-support/emacs/wrapper.nix | 13 ++++++++++--- pkgs/top-level/all-packages.nix | 6 +++--- pkgs/top-level/emacs-packages.nix | 8 +++++++- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 4020a1aca33..8de13dc0c64 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -1,8 +1,15 @@ -{ stdenv, makeWrapper, emacs }: +{ lib, makeWrapper, stdenv }: self: -with stdenv.lib; +with lib; let inherit (self) emacs; in -explicitRequires: # packages explicitly requested by the user +packagesFun: # packages explicitly requested by the user + +let + explicitRequires = + if builtins.isFunction packagesFun + then packagesFun self + else packagesFun; +in stdenv.mkDerivation { name = (appendToName "with-packages" emacs).name; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5559135e242..19f2331df4c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11629,7 +11629,7 @@ let inherit lib newScope stdenv; inherit fetchFromGitHub fetchgit fetchhg fetchurl; - inherit emacs texinfo; + inherit emacs texinfo makeWrapper; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11648,8 +11648,8 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; - emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; + emacs24WithPackages = emacs24PackagesNg.emacsWithPackages; + emacsWithPackages = emacsPackagesNg.emacsWithPackages; inherit (gnome3) empathy; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 727ceb24c8a..3a93a32d160 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -35,7 +35,7 @@ , lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, texinfo +, emacs, texinfo, makeWrapper , trivialBuild , melpaBuild @@ -58,10 +58,16 @@ let inherit lib; }; + emacsWithPackages = import ../build-support/emacs/wrapper.nix { + inherit lib makeWrapper stdenv; + }; + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; + emacsWithPackages = emacsWithPackages self; + ## START HERE ac-haskell-process = melpaBuild rec { From 9268f0e67610b289c0e7fafd1d354499b9f3465f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 06:56:28 -0600 Subject: [PATCH 369/707] emacsPackagesNg: update user documentation --- pkgs/top-level/emacs-packages.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3a93a32d160..6728280c3bc 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -2,12 +2,10 @@ ## FOR USERS # -# Recommended way: simply use `emacsWithPackages` from -# `all-packages.nix` with the packages you want. +# Recommended: simply use `emacsWithPackages` with the packages you want. # -# Possible way: use `emacs` from `all-packages.nix`, install -# everything to a system or user profile and then add this at the -# start your `init.el`: +# Alterative: use `emacs`, install everything to a system or user profile +# and then add this at the start your `init.el`: /* (require 'package) From 0bc4af00ee760106b8bd842ed20edb88cf3bdf82 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:08:18 -0600 Subject: [PATCH 370/707] emacsWithPackages: add user documentation --- pkgs/build-support/emacs/wrapper.nix | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 8de13dc0c64..dc4ff03f9e7 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -1,3 +1,37 @@ +/* + +# Usage + +`emacsWithPackages` takes a single argument: a function from a package +set to a list of packages (the packages that will be available in +Emacs). For example, +``` +emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ]) +``` +All the packages in the list should come from the provided package +set. It is possible to add any package to the list, but the provided +set is guaranteed to have consistent dependencies and be built with +the correct version of Emacs. + +# Overriding + +`emacsWithPackages` inherits the package set which contains it, so the +correct way to override the provided package set is to override the +set which contains `emacsWithPackages`. For example, to override +`emacsPackagesNg.emacsWithPackages`, +``` +let customEmacsPackages = + emacsPackagesNg.override (super: self: { + # use a custom version of emacs + emacs = ...; + # use the unstable MELPA version of magit + magit = self.melpaPackages.magit; + }); +in customEmacsPackages.emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ]) +``` + +*/ + { lib, makeWrapper, stdenv }: self: with lib; let inherit (self) emacs; in From 8126ae8c7accefc0add072011ff822eeb0f5d7fc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:12:49 -0600 Subject: [PATCH 371/707] elpa-packages: add instructions for updating --- .../editors/emacs-modes/elpa-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 7b8d429f76a..479835dd8b0 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -1,3 +1,16 @@ +/* + +# Updating + +To update the list of packages from ELPA, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Run `./elpa-packages.sh` from emacs2nix +3. Copy the new elpa-packages.json file into Nixpkgs +4. `git commit -m "elpa-packages $(date -Idate)"` + +*/ + { fetchurl, lib, stdenv, texinfo }: let From c6a5ade24b9c2e0d1235e4297d6bdebf68d25a84 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:14:10 -0600 Subject: [PATCH 372/707] melpa-packages: add instructions for updating --- .../editors/emacs-modes/melpa-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index e48baa2d6e0..d94a34cd2de 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -1,3 +1,17 @@ +/* + +# Updating + +To update the list of packages from MELPA, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Clone https://github.com/milkypostman/melpa +3. Run `./melpa-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix +4. Copy the new melpa-packages.json file into Nixpkgs +5. `git commit -m "melpa-packages $(date -Idate)"` + +*/ + { lib }: let From e86f93eada0159d80db7b7ac880b6d94325668f3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:15:49 -0600 Subject: [PATCH 373/707] melpa-stable-packages: add instructions for updating --- .../emacs-modes/melpa-stable-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index bf8df730a77..d65ce4db80e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -1,3 +1,19 @@ +/* + +# Updating + +To update the list of packages from MELPA Stable, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Clone https://github.com/milkypostman/melpa +3. Run `./melpa-stable-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix. + Error messages about missing versions are normal; most packages in + MELPA do not have a stable version. +4. Copy the new melpa-stable-packages.json file into Nixpkgs +5. `git commit -m "melpa-stable-packages $(date -Idate)"` + +*/ + { lib }: let From dd89ee1c3b02a638881476df43cddf2976e78c4c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:21:53 -0600 Subject: [PATCH 374/707] release-notes: note addition of ELPA and MELPA packages --- nixos/doc/manual/release-notes/rl-unstable.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index 03eed914e27..1b8efe8770e 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -121,6 +121,12 @@ nginx.override { allowing to enable the combination again. + + + emacsPackagesNg now contains all packages + from the ELPA, MELPA, and MELPA Stable repositories. + + From 55544c1e68c79911ca7eafd638a6ac9254c25dc5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 14:20:58 -0600 Subject: [PATCH 375/707] nix-prefetch-zip: keep downloaded file extension Keep the correct file extension on the downloaded file so that `unpackFile` will know how to unpack it correctly. --- pkgs/build-support/fetchzip/nix-prefetch-zip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchzip/nix-prefetch-zip b/pkgs/build-support/fetchzip/nix-prefetch-zip index ccc03e087e5..ea55643668d 100755 --- a/pkgs/build-support/fetchzip/nix-prefetch-zip +++ b/pkgs/build-support/fetchzip/nix-prefetch-zip @@ -73,7 +73,7 @@ mkdir -p $unpackDirTmp unpackDir=$tmp/unpacked/$name mkdir -p $unpackDir -downloadedFile=$tmp/$name +downloadedFile=$tmp/$(basename "$url") unpackFile() { local curSrc="$1" From 0b1edac8c06ab84b220d3be365a1ffb108459e09 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 15:48:38 -0600 Subject: [PATCH 376/707] nix-prefetch-bzr: match path name to fetchbzr name fetchbzr always uses the derivation name `bzr-export`. nix-prefetch-bzr should use the same name for its output. This avoids duplicate downloads and problems with forbidden characters in bazaar repository names. --- pkgs/build-support/fetchbzr/nix-prefetch-bzr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/fetchbzr/nix-prefetch-bzr b/pkgs/build-support/fetchbzr/nix-prefetch-bzr index 8143fca7025..dbe8a7ef801 100755 --- a/pkgs/build-support/fetchbzr/nix-prefetch-bzr +++ b/pkgs/build-support/fetchbzr/nix-prefetch-bzr @@ -26,8 +26,7 @@ repoName=$(echo $url | sed ' s,.*/\([^/]\+\)/tags/\([^/]\+\)/*$,\1-\2,;t s,.*/\([^/]\+\)/*$,\1,;t ') -dstFile=$repoName-r$rev -test -n "$rev" || dstFile=$repoName +dstFile="bzr-export" # If the hash was given, a file with that hash may already be in the # store. From 8eabd09087ae321679c777ebdf7a634dadf33035 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 16:54:01 -0600 Subject: [PATCH 377/707] melpa-packages 2015-12-18 --- .../editors/emacs-modes/melpa-packages.json | 23744 +++++++++------- 1 file changed, 13200 insertions(+), 10544 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 8d87c35dfaf..c5d8fe80a2a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -1,28 +1,30 @@ { "netherlands-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/netherlands-holidays.git", - "sha256": "bf700dac77d054e1001c125f21168df880526ca172191ae09fc6668b85a46ece", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "netherlands-holidays", + "sha256": "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z", "rev": "26236178cdd650df9958bf5a086e184096559f00" }, "recipe": { "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1017", "deps": [] }, "qiita": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/qiita-el.git", - "sha256": "45416bcdf7d6404c4a2d4e03ad9cfbb29b94f7716bb82b275c2b272115ddf13d", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5", "rev": "93c697b97d540fd1601a13a3d9889fb939b19878" }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140118.244", "deps": [ @@ -32,14 +34,15 @@ }, "drawille": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshbio/drawille.git", - "sha256": "cabe02680a026ed6f1e2826b00955254470953c8b79e5576b3c8eae2ed0ac72b", + "tag": "fetchFromGitHub", + "owner": "sshbio", + "repo": "drawille", + "sha256": "0ay71bny5sn8ndv5b7mpr19hjislaaah0sw2wbqxcvh219l05gna", "rev": "d56a71a168b391365c8d6f567391a6892bbd3909" }, "recipe": { "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1208", "deps": [ @@ -48,28 +51,30 @@ }, "om-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielsz/om-mode.git", - "sha256": "eb6f3bd5a595f1edea776dfaedf3008d2edd9ace2d7c864ec176cc2ea2585f0f", + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "om-mode", + "sha256": "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb", "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba" }, "recipe": { "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140915.1610", "deps": [] }, "outorg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outorg.git", - "sha256": "52b9241d44db9495056093c086217511dc73504a875c6f7a32acecc135b18478", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9", "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1" }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1440", "deps": [] @@ -79,25 +84,26 @@ "tag": "fetchsvn", "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11138" + "rev": "11156" }, "recipe": { "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.604", "deps": [] }, "helm-ls-hg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-hg.git", - "sha256": "9af53e37e1ff732c1e9a108d63bdabdec5c38c422ab2e2f32b6f9dc923d659d7", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-hg", + "sha256": "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs", "rev": "61b91a22fcfb62d0fc56e361ec01ce96973c7165" }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.43", "deps": [ @@ -106,14 +112,15 @@ }, "wgrep-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.511", "deps": [ @@ -122,28 +129,30 @@ }, "color-theme-sanityinc-tomorrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", - "sha256": "efcb38614d0773c2d67ba48280956b7d3d2489a8339d6e4b01b1a7b88d310cef", - "rev": "cf47d5fb27eed10fbd4e5c1fa10958d862e5a1bd" + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-tomorrow", + "sha256": "1qs6n30amzv47d4d12z6jj506jsm5janp639jg9w65zibbp2dy7a", + "rev": "e309cb5a26228633797209276c5d48c070b90767" }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150803.1619", + "version": "20151215.2305", "deps": [] }, "focus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Focus.git", - "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.215", "deps": [ @@ -153,56 +162,60 @@ }, "xahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xahk-mode.el.git", - "sha256": "a0a0be47cba4a5e6ff21505593a4e143a0b370a649a5b51a8c1782c8f1248735", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xahk-mode.el", + "sha256": "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850", "rev": "91301b8eae7fd703b258a4c68066d9d5af943c4b" }, "recipe": { "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.1811", "deps": [] }, "buffer-move": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lukhas/buffer-move.git", - "sha256": "d1a5372dc0a40ed8394a72eb3a5101341eb320eaf303541f1f8826f95c9af8d6", + "tag": "fetchFromGitHub", + "owner": "lukhas", + "repo": "buffer-move", + "sha256": "0n60373l60fb7w679ld8i1fa6fqj23f8q8ypfddv1zjxjkp4n2k0", "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5" }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.249", "deps": [] }, "slovak-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/slovak-holidays.git", - "sha256": "4870c79b0ca2223d292a7d68b3ee0f14f81afa8a9878fa403280850483572ff8", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "slovak-holidays", + "sha256": "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28", "rev": "effb16dfcd14797bf7448f5113085479db339c02" }, "recipe": { "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.355", "deps": [] }, "youdao-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", - "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.144", "deps": [ @@ -214,14 +227,15 @@ }, "ox-nikola": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masayuko/ox-nikola.git", - "sha256": "672eb9bd73d2dbed1952627b55e946226029d65280a999ab938db4c1cc258131", + "tag": "fetchFromGitHub", + "owner": "masayuko", + "repo": "ox-nikola", + "sha256": "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7", "rev": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48" }, "recipe": { "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.516", "deps": [ @@ -232,28 +246,30 @@ }, "io-mode-inf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slackorama/io-emacs.git", - "sha256": "1a886ac2ab1e736876596e28f4a1e2b965c44500d9cff6933f858dc026422dab", + "tag": "fetchFromGitHub", + "owner": "slackorama", + "repo": "io-emacs", + "sha256": "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s", "rev": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6" }, "recipe": { "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.1334", "deps": [] }, "emacsql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.2131", "deps": [ @@ -264,14 +280,15 @@ }, "ido-skk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsukimizake/ido-skk.git", - "sha256": "7e4bba0bc9012e996c49969d9a08e17da222ec24d0deede57c40f2e597fd2c91", + "tag": "fetchFromGitHub", + "owner": "tsukimizake", + "repo": "ido-skk", + "sha256": "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy", "rev": "89a2e62799bff2841ff634517c86084c4ce69246" }, "recipe": { "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.350", "deps": [ @@ -287,65 +304,69 @@ }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.837", "deps": [] }, "cmake-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "c0d7fbb8f64d547872f2be4500b834dec605c0a51708ab574743e8465218c059", - "rev": "503374eb9c353c662bddc87bc886db87a231d9f8" + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "1qkcyh26iz7xm9a9ki0k3m1mcq4jfddy6n2ibvxl2g1l1p487cgq", + "rev": "1b4a9cb5c588efd2e0f9fc9bbc2f638e29bbb9f5" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151207.243", + "version": "20151216.1347", "deps": [ "emacs" ] }, "hideshow-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shanecelis/hideshow-org.git", - "sha256": "59d01fd19f386d75e6fe8380bb480f0029d0074f549879d247307e69d33220b7", + "tag": "fetchFromGitHub", + "owner": "shanecelis", + "repo": "hideshow-org", + "sha256": "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r", "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626" }, "recipe": { "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120223.1650", "deps": [] }, "jammer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/jammer.git", - "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.814", "deps": [] }, "ghci-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/ghci-completion.git", - "sha256": "b89059723986ccffaf11919f3be7b5d7c884eeb8369bbbc65e5b45acc51cd49d", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ghci-completion", + "sha256": "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q", "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5" }, "recipe": { "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.657", "deps": [ @@ -361,7 +382,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1640", "deps": [ @@ -370,14 +391,15 @@ }, "tide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/tide.git", - "sha256": "302f3ca24db4a7494f2cc707804cc7874666372c3549036fae07a2b3e69a2ef8", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "tide", + "sha256": "045c1fmmig88lc7c85vy8532mx0lhl666m5lrrv4i6r5n6sf68s3", "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab" }, "recipe": { "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.245", "deps": [ @@ -389,28 +411,30 @@ }, "org-doing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/org-doing.git", - "sha256": "44f1a73184b167680ff7ac32e42d9c3210eeddffe25a8e77d8606b36cdc72097", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "org-doing", + "sha256": "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm", "rev": "7d0a8ef5dcd18ee375da6298d96e6858508fb919" }, "recipe": { "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.901", "deps": [] }, "go-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-eldoc.git", - "sha256": "3f2f9fd6c9fac4d528f86327d3ec456fece9646e35b566d45394131e2f3180f7", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "1jwh5rqk7vr6kna6i0p3fl3wjk3mhlr6gxklc3xij4r2zdyfj8na", "rev": "684f1414913c85695eb8ca4a2643cea04ee60527" }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.210", "deps": [ @@ -426,21 +450,22 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1906", "deps": [] }, "cerbere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/cerbere.git", - "sha256": "9076f7497220261c3e2adbb911b847bd25aba7a3309ac507e229397b1dcf750c", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im", "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c" }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140418.915", "deps": [ @@ -451,42 +476,45 @@ }, "key-intercept": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/key-intercept-el.git", - "sha256": "448171636b5740ebafff079319275a9b4c7a9dcbd11e2cebf0bec47791767690", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "key-intercept-el", + "sha256": "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4", "rev": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2" }, "recipe": { "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.149", "deps": [] }, "grandshell-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/grandshell-theme.git", - "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "grandshell-theme", + "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs", "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.701", "deps": [] }, "warm-night-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/warm-night-theme.git", - "sha256": "2e4eb75f4c0bb262b9830f17f9899c10a78fb4aa2916698fa29b9b8c8b1687f4", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "warm-night-theme", + "sha256": "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif", "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16" }, "recipe": { "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.941", "deps": [ @@ -495,14 +523,15 @@ }, "cbm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akermu/cbm.el.git", - "sha256": "fd03cad78656599d6b8094e9b39c28421d19cc1a29566d93bdde827fc4926cac", + "tag": "fetchFromGitHub", + "owner": "akermu", + "repo": "cbm.el", + "sha256": "1b3cjb27z0nypn9nsmi93b61j7a252fb7sclh1mrsnanhvbwl0zx", "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7" }, "recipe": { "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1404", "deps": [] @@ -515,21 +544,22 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1750", "deps": [] }, "diff-hl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/diff-hl.git", - "sha256": "824fcc32aa45b0060b567590df6bf8c11dfe7d40f6afc2985b1fd8349a672ad8", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "diff-hl", + "sha256": "1n1acyd39n0zbfcc5bzn81yzw7f1z1mxz43maq5hdc25m8rcqkw2", "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545" }, "recipe": { "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1915", "deps": [ @@ -538,28 +568,30 @@ }, "outline-magic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outline-magic.git", - "sha256": "b65b67077ec77998faa2d2fab1e41a5f6d8a201d2198bf23cc87e86321e5cc84", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outline-magic", + "sha256": "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn", "rev": "5689436cd67edc86066e51be77fa4e1fe21de507" }, "recipe": { "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150209.1626", "deps": [] }, "vim-empty-lines-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmickelin/vim-empty-lines-mode.git", - "sha256": "4cd668b0c2f0901b316db574011db6a8b21382a6bad5d2b75099224eb2191562", + "tag": "fetchFromGitHub", + "owner": "jmickelin", + "repo": "vim-empty-lines-mode", + "sha256": "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4", "rev": "442a29b0ba1635a3b352c9dd1faf9ce99656d048" }, "recipe": { "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.2226", "deps": [ @@ -568,14 +600,15 @@ }, "mmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/mmt.git", - "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", "rev": "e77b809e39b9ab437b662ee759e990163bc89377" }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1159", "deps": [ @@ -585,28 +618,30 @@ }, "fetch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/crshd/fetch.el.git", - "sha256": "c863cfbce6bea622c4c2f0d393b099825bca856d2e0264d0681e013b964b5c5e", + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "fetch.el", + "sha256": "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8", "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06" }, "recipe": { "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131201.130", "deps": [] }, "vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/vimish-fold.git", - "sha256": "f42a36a96efda1684af8ee99f26ba8502c9b2387dc8656f632f3aba3b0ae5bd2", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "vimish-fold", + "sha256": "1kypjcw9n2amfq3y2g1dgx6zxf0yy4xnmxjg1fgs9j3xshg6y61m", "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a" }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1009", "deps": [ @@ -617,14 +652,15 @@ }, "stripe-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/stripe-buffer.git", - "sha256": "5d7d0095467659994c2638da006b6ee1825b5d0a95ade6d36a9c352e0e94aa37", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "stripe-buffer", + "sha256": "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax", "rev": "c252080f55cb78c951b19ebab9687f6d00237baf" }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141208.908", "deps": [ @@ -633,28 +669,30 @@ }, "web-completion-data": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/web-completion-data.git", - "sha256": "9506f5dfc68369020c3ddc69d996138c29d6fca8d7c6aa29442fd7b413c5488a", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "web-completion-data", + "sha256": "12j8ql9v9mrg8hlsminpm3ydcacc2fbdjsfw7l604sc3qvgza1lm", "rev": "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870" }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.533", "deps": [] }, "slime-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anwyn/slime-company.git", - "sha256": "5d4ecc72874835fbd67a1c10f647cc9b2313148ac68d6d93bbc171652b4c28fa", + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "1yi89hmnawf1pf9nv3f6i8a168wvri3zc40wgbbgnda8hxrcqkjx", "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154" }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.814", "deps": [ @@ -664,14 +702,15 @@ }, "flymake-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-php.git", - "sha256": "7b48b5cfaf9f430d21eb3e355f3a7cb613d1bac237c47636975815d4f427465a", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-php", + "sha256": "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4", "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66" }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1302", "deps": [ @@ -680,28 +719,30 @@ }, "jade-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1144", "deps": [] }, "cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/darksmile/cheatsheet.git", - "sha256": "b6f72d90c80752b2f05f4df78745b6ddeaea27076b31f49882aedbd5cc3a59ec", + "tag": "fetchFromGitHub", + "owner": "darksmile", + "repo": "cheatsheet", + "sha256": "1v2r7b6dbnxfhacg8cbb0wkymsnxnr2qgxsdbzqb4lh7r282vxxn", "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1" }, "recipe": { "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.351", "deps": [ @@ -711,42 +752,45 @@ }, "xquery-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mblakele/xquery-mode.git", - "sha256": "1b15136ee305cad064f7b249171228de45563ef21776a458c54d89554aeed725", + "tag": "fetchFromGitHub", + "owner": "mblakele", + "repo": "xquery-mode", + "sha256": "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v", "rev": "ac0ca72ccd575952393804330c3efe3b2271c4e2" }, "recipe": { "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140121.1143", "deps": [] }, "dakrone-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/dakrone-theme.git", - "sha256": "3e4ae035aab8370111205b5e45d6cd0988fd27102a4bfd5e80020b520f80a039", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "dakrone-theme", + "sha256": "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy", "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235" }, "recipe": { "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.2245", "deps": [] }, "smart-mode-line-powerline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y", "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.839", "deps": [ @@ -757,42 +801,45 @@ }, "signature": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/signature.git", - "sha256": "121d9e5fd85cf02ca485764f6224d11b4fe4ebed88ecdb36f123277fe1c999bc", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "signature", + "sha256": "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j", "rev": "c47df2e1189a84505f9224aa78e87b6c65d13d37" }, "recipe": { "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140730.1449", "deps": [] }, "unfill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/unfill.git", - "sha256": "f8ea4ae43bb4568225ee26d52bacdb0cdd517bc6ccc72719299867b800036d78", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "unfill", + "sha256": "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3", "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4" }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131103.413", "deps": [] }, "sonic-pi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/repl-electric/sonic-pi.el.git", - "sha256": "8ff8340b8d0ab651524c0fcb40448530841feb495d391eb0b664c8caa788cbe2", + "tag": "fetchFromGitHub", + "owner": "repl-electric", + "repo": "sonic-pi.el", + "sha256": "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1", "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09" }, "recipe": { "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.530", "deps": [ @@ -804,14 +851,15 @@ }, "org-page": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kelvinh/org-page.git", - "sha256": "13f4b384f9e44a5af55e286f7791451457e55cb45dc419d1470c2effeace97ad", + "tag": "fetchFromGitHub", + "owner": "kelvinh", + "repo": "org-page", + "sha256": "05q3dx7sfv51frsa3mk06pbrw3n986adgn08yrjwj0am0p11vpqs", "rev": "75859f2d7e05be5dd9899f765adbf2e2d434ba83" }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.1933", "deps": [ @@ -825,14 +873,15 @@ }, "auto-complete-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/auto-complete-c-headers.git", - "sha256": "d3a65d244aa18661dacb2272f5f86ef6af97c759f7083af3640f1d78e928b3b0", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "auto-complete-c-headers", + "sha256": "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n", "rev": "52fef720c6f274ad8de52bef39a343421006c511" }, "recipe": { "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.2223", "deps": [ @@ -841,14 +890,15 @@ }, "grails-projectile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yveszoundi/grails-projectile-mode.git", - "sha256": "24f302db5db0468a743b126d34a8d5e6e6eff374d05ce82a95e34190cb253e87", + "tag": "fetchFromGitHub", + "owner": "yveszoundi", + "repo": "grails-projectile-mode", + "sha256": "11ry4p5r0hg3jlmfhp6hfkryzrp6snl38v8j7ds8limhbpdh5wr4", "rev": "6cb3b7890ce869a911a7b1d5892a6eef7992c199" }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1329", "deps": [ @@ -859,28 +909,30 @@ }, "web-beautify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/web-beautify.git", - "sha256": "f4c3cf8429c4820c911d076b2a4d5fbfb964e2838e3dc3f0d676e56ec2cbc24f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "web-beautify", + "sha256": "0ky2rg16xrbnsvqc6gcfhgi69fdzbx6jlsq73n8hr0n4562czhzl", "rev": "be2b9a7f510e1719396ebeab9135bc64f0785b78" }, "recipe": { "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131118.426", "deps": [] }, "inf-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/inf-clojure.git", - "sha256": "ac96038ec0a97ea7f0bc8454af3ff45bf00f4748f9074440222dba04d7f45fee", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "inf-clojure", + "sha256": "1vjzykbh9fid490481zr913hzw2vyhzsym44pkqafzm9q27075mc", "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548" }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.234", "deps": [ @@ -890,14 +942,15 @@ }, "php-boris-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/php-boris-minor-mode.git", - "sha256": "0fb3bfbf7926c6706ea26f0768ea0b86b56958259e5ff05cd7f7a40d10de67f2", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "php-boris-minor-mode", + "sha256": "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg", "rev": "c70e176dd6545f2d42ca3427e87b469635616d8a" }, "recipe": { "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140209.1235", "deps": [ @@ -907,14 +960,15 @@ }, "rcirc-alertify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/rcirc-alertify.git", - "sha256": "269aafba76835d0cba1e92314da4724a35e0e310beb5374c42287b16cc4f1b61", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "rcirc-alertify", + "sha256": "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx", "rev": "ea5cafc55893f375eccbe013d12dbaa94bf6e259" }, "recipe": { "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140406.2019", "deps": [ @@ -923,14 +977,15 @@ }, "git-wip-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/itsjeyd/git-wip-timemachine.git", - "sha256": "c500243759a5354ae7a2e53ccb91002fec186000d3ca05423556ef794a568fc6", + "tag": "fetchFromGitHub", + "owner": "itsjeyd", + "repo": "git-wip-timemachine", + "sha256": "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl", "rev": "ed4c7931a5f5233bf3e358b1e81647d063526460" }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.506", "deps": [ @@ -939,14 +994,15 @@ }, "shell-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyagi/shell-pop-el.git", - "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", "rev": "4531d234ca471ed80458252cba0ed005a0720b27" }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.830", "deps": [ @@ -955,14 +1011,15 @@ }, "cider-decompile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-decompile.git", - "sha256": "4c5d4a3241b14ab4a25b1f77553f115a1bba2b9b183b1c897a398a3a74319ef0", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-decompile", + "sha256": "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac", "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651" }, "recipe": { "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2337", "deps": [ @@ -972,28 +1029,30 @@ }, "j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zellio/j-mode.git", - "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "tag": "fetchFromGitHub", + "owner": "zellio", + "repo": "j-mode", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9", "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140702.1009", "deps": [] }, "persistent-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/persistent-scratch.git", - "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1143", "deps": [ @@ -1002,14 +1061,15 @@ }, "map-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-regexp.git", - "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130522.1603", "deps": [ @@ -1018,28 +1078,30 @@ }, "sauron": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/djcb/sauron.git", - "sha256": "0f4ce48bb57a4e5904ad005211eaccccafa1e86c46f3ea8e367c5fba20b99316", + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "0hzg05i8x2xgsr99nyikvflsibjsq2nryfsw7y2wyhc43w89l8cb", "rev": "d7704fd9a0623d862f03f40588ac816a8877f308" }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.246", "deps": [] }, "ob-browser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-browser.git", - "sha256": "0c305b8c579872c6eb324c881223945231ec79454b2df258b927865ab6c9d4a1", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-browser", + "sha256": "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813", "rev": "9271453d28d0912093ab5f91807745ada69ada0c" }, "recipe": { "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.910", "deps": [ @@ -1048,14 +1110,15 @@ }, "scratch-palette": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scratch-palette.git", - "sha256": "a285a388068e644e916846e07257b92eb1d28809e0c58dc24c82758a17ca6401", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-palette", + "sha256": "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2", "rev": "f6803b448079f4a81cc699cec7442ef543cd5818" }, "recipe": { "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150225.242", "deps": [ @@ -1064,14 +1127,15 @@ }, "ariadne": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/ariadne-el.git", - "sha256": "f0085977f1be7e1d00a781b2099fe8a71c67deed99c9e54568fa143398e3096e", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ariadne-el", + "sha256": "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h", "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15" }, "recipe": { "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1111", "deps": [ @@ -1080,14 +1144,15 @@ }, "company-ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krzysztof-magosa/company-ansible.git", - "sha256": "2da17ef9067495b225c99c5034f0c1420a4d5fcc961727451dcdf64066001f20", + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn", "rev": "cfe1c915f49d716f30eec654c54db761f662952c" }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.450", "deps": [ @@ -1097,14 +1162,15 @@ }, "flycheck-ocaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-ocaml.git", - "sha256": "58709877cd3eed59cc56cd6b265a21194ae4b47a1f3b706eac27e8c0d194adf6", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-ocaml", + "sha256": "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94", "rev": "e4412025f27850918762237fa80b33e285a63e7c" }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.412", "deps": [ @@ -1116,14 +1182,15 @@ }, "eshell-z": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-z.git", - "sha256": "60669592b85874eae37c5d731a2a6de4f4bf5b5b5cb1234eac659db92b17d37e", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-z", + "sha256": "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0", "rev": "5a1317a58d9761c200d0ad49dc4793dec9f9490f" }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2246", "deps": [ @@ -1132,14 +1199,15 @@ }, "fix-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/fix-word.git", - "sha256": "87cbb4b8b6739d3dc7f06e8fa6bcb08dc4c6595744b5130bf47d768ae86628b2", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "fix-word", + "sha256": "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf", "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f" }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.802", "deps": [ @@ -1149,14 +1217,15 @@ }, "celery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-celery.git", - "sha256": "53cac21e25ff593a64ea9d7b32088ac9b7cd7e8d20c4c16f51dacfd237202842", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-celery", + "sha256": "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c", "rev": "5b5b1968fd258c444dc2372e989aab82830004c3" }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.347", "deps": [ @@ -1174,35 +1243,37 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1751", "deps": [] }, "charmap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lateau/charmap.git", - "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131019.2358", "deps": [] }, "parsebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/parsebib.git", - "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.432", "deps": [ @@ -1211,14 +1282,15 @@ }, "hindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/hindent.git", - "sha256": "1755027326f98d2138a42d1337617be4296f3f08100ebf58ccc49643704d6af3", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9", "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c" }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.224", "deps": [ @@ -1227,56 +1299,60 @@ }, "world-time-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-world-time-mode.git", - "sha256": "5102a8ec5d10ac544c58cd40a96db70822f9a432049afac61677599f49ed0044", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-world-time-mode", + "sha256": "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji", "rev": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc" }, "recipe": { "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140627.307", "deps": [] }, "sudden-death": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yewton/sudden-death.el.git", - "sha256": "4b7096f03ed34d11725b62f26f2dd6a7c1e389028ee3b069ecfbf1d0c9ef0780", + "tag": "fetchFromGitHub", + "owner": "yewton", + "repo": "sudden-death.el", + "sha256": "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b", "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736" }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140829.738", "deps": [] }, "multifiles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multifiles.el.git", - "sha256": "b5504ab57618ee9a5b70f3e84389806327052fcdd6c259af5677ee4e742cb0e7", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multifiles.el", + "sha256": "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai", "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897" }, "recipe": { "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130615.1633", "deps": [] }, "remark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/torgeir/remark-mode.el.git", - "sha256": "de9c6f786c0963f4e30ccaba4ab5d2ed331e50b3fc0b3aa79531e5aa2272738e", + "tag": "fetchFromGitHub", + "owner": "torgeir", + "repo": "remark-mode.el", + "sha256": "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh", "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b" }, "recipe": { "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1155", "deps": [ @@ -1285,28 +1361,30 @@ }, "flatland-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gchp/flatland-emacs.git", - "sha256": "eefae66bf187442b75d4f4c95b19dc17f6072e84ccc19967fd842b1562a88832", + "tag": "fetchFromGitHub", + "owner": "gchp", + "repo": "flatland-emacs", + "sha256": "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf", "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9" }, "recipe": { "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.505", "deps": [] }, "jist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/jist.el.git", - "sha256": "d1aaf371711e217ba2ef48c6c504efeef18d0a2c3bf605d631e295be228535e2", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "jist.el", + "sha256": "0irfqrga1hzi8g1bji5mq01z63sp0dqnd8nf0jkf02vgaagrhdc8", "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950" }, "recipe": { "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1318", "deps": [ @@ -1319,14 +1397,15 @@ }, "groovy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", - "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "tag": "fetchFromGitHub", + "owner": "Groovy-Emacs-Modes", + "repo": "groovy-emacs-modes", + "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i", "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" }, "recipe": { "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] @@ -1340,21 +1419,22 @@ }, "recipe": { "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120510.1430", "deps": [] }, "simplenote2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/simplenote2.el.git", - "sha256": "fab470ba766a029fff743b1687e8c2ea361c10cf2cb6a2f3edd1dc3aa3ff31ac", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv", "rev": "2a6c539d98968837ec09d2754e9235ff278057a8" }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.916", "deps": [ @@ -1363,28 +1443,30 @@ }, "pivotal-tracker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jxa/pivotal-tracker.git", - "sha256": "9ad2c6983ab31500ae47bad796cebfff2797b21d78393d4ae538329b66c67ce9", + "tag": "fetchFromGitHub", + "owner": "jxa", + "repo": "pivotal-tracker", + "sha256": "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls", "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5" }, "recipe": { "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1350", "deps": [] }, "cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake.git", - "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140603.2331", "deps": [ @@ -1395,14 +1477,15 @@ }, "realgud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "043fafb56d81cabbfaa39a2d0ae4427e1037fb2acbae84f8c8988dca71309051", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-dbgr", + "sha256": "1qlf9whz912jk7j87zal10b48a9agpfxkyqa7s1xjchs4k662a24", "rev": "4e85910b106e3094d2b27ac34f584df5bf4ab457" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1523", "deps": [ @@ -1414,14 +1497,15 @@ }, "js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/js2-refactor.el.git", - "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "js2-refactor.el", + "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly", "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.707", "deps": [ @@ -1434,56 +1518,60 @@ }, "ecb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexott/ecb.git", - "sha256": "9b63eb0ed7c19cdbdf415675c0c5ed4658912a74138375d3be2442721ec15b59", + "tag": "fetchFromGitHub", + "owner": "alexott", + "repo": "ecb", + "sha256": "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz", "rev": "071706b22efcfeb65da8381e317220d7f9d8cb54" }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140215.314", "deps": [] }, "meta-presenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/meta-presenter.git", - "sha256": "b4901d059a3eb88d11adf9fef628ea327fd41eb9fefbddefb85e563fa02a82f4", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "meta-presenter", + "sha256": "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l", "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f" }, "recipe": { "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.610", "deps": [] }, "kroman": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/kroman-el.git", - "sha256": "d9913350eaafe42d6cb8281704c8e789cb8f57711700f1a567f9f1db60ed5d85", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "kroman-el", + "sha256": "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr", "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70" }, "recipe": { "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.1840", "deps": [] }, "quickrun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-quickrun.git", - "sha256": "4f4f953b07ee98234d1d931e15b8c3a1b4322aac4c23e506cc78f43ed72c64d2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "1i7bx81g8xq7659hc1zlvs0afwkr8mg10cki45khxsxwcy5jr7dh", "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd" }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2352", "deps": [ @@ -1493,70 +1581,75 @@ }, "enh-ruby-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/enhanced-ruby-mode.git", - "sha256": "f211fb78fb211280d347e538d70425592303c4fb07a2e1800167c240650b6d15", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "enhanced-ruby-mode", + "sha256": "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7", "rev": "73d949ab1de16a4d3f368cde94dd5403c0402ab4" }, "recipe": { "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.341", "deps": [] }, "ukrainian-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ukrainian-holidays.git", - "sha256": "9f53576e43ce71634a0daddc01f0b43d30c714652532baf89d90a69326237b0c", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ukrainian-holidays", + "sha256": "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz", "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d" }, "recipe": { "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.849", "deps": [] }, "rsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/rsense.git", - "sha256": "8d505fc69958d42de31f86b0be97120087cb54c156c91058d97354872c0e7976", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d", "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35" }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100510.2305", "deps": [] }, "capture": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashinin/capture.el.git", - "sha256": "2791ae00e04bd895c171cd53effe0f675d5a7d025ece013f43e917a8a5bdf1a8", + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "capture.el", + "sha256": "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z", "rev": "1bb26060311da76767f70096218313fc93b0c806" }, "recipe": { "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130828.1144", "deps": [] }, "ocodo-svg-modelines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocodo/ocodo-svg-modelines.git", - "sha256": "8838980eee6f6af0cb93a918073a7d601e6fd2fa3321c928717f7c6634adaf94", + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48", "rev": "c7b0789a177219f117c4de5659ecfa8622958c40" }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.919", "deps": [ @@ -1565,14 +1658,15 @@ }, "jedi-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.905", "deps": [ @@ -1584,14 +1678,15 @@ }, "dim-autoload": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/dim-autoload.git", - "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "dim-autoload", + "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans", "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.1032", "deps": [] @@ -1604,49 +1699,52 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121026.950", "deps": [] }, "pkgbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", - "sha256": "a09c6accbdd437ec4b3066723cce656af09046f4d1f0e6515a4776deddb8fb1c", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750", "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0" }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.936", "deps": [] }, "erc-youtube": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-youtube.el.git", - "sha256": "bcc84f8e0f6d8b185a967fb79a88357af925c3545e6e1f1526410d3a7a55044e", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w", "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f" }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.1636", "deps": [] }, "roguel-ike": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stevenremot/roguel-ike.git", - "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.929", "deps": [ @@ -1655,42 +1753,45 @@ }, "memoize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-memoize.git", - "sha256": "fcf6811b90df7e05974fa72a4ab02966ca087de1596de77066181c515ba65c3a", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-memoize", + "sha256": "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw", "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75" }, "recipe": { "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130421.1434", "deps": [] }, "helm-words": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pronobis/helm-words.git", - "sha256": "f3c6eda1b4b08ff0ea5d3a9f6e5445bab929842ef92b30f4a86e53d5d826e8ee", + "tag": "fetchFromGitHub", + "owner": "pronobis", + "repo": "helm-words", + "sha256": "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35", "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185" }, "recipe": { "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1518", "deps": [] }, "name-this-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knl/name-this-color.el.git", - "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "tag": "fetchFromGitHub", + "owner": "knl", + "repo": "name-this-color.el", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n", "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.1530", "deps": [ @@ -1701,14 +1802,15 @@ }, "git-messenger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-messenger.git", - "sha256": "029a1b163e3df3ebd617a196c55ea2f2c232a25e46ab4752687f49d57e319953", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-messenger", + "sha256": "038m4fjva8ynlms6dbh55w8x8wsn9c3z02rh4782ck2zi51q0d8g", "rev": "7b16fdc9f6fd1a3b9c9f212b1633291c4c18fc9b" }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.802", "deps": [ @@ -1718,14 +1820,15 @@ }, "maven-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/maven-test-mode.git", - "sha256": "54bf2197f2bdca7f207bdf695a1a019625c1c37b90720bbf3a9b489f7aa334a0", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "maven-test-mode", + "sha256": "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c", "rev": "a19151861df2ad8ae4880a2e7c86ddf848cb569a" }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.2357", "deps": [ @@ -1735,14 +1838,15 @@ }, "rails-new": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/rails-new.git", - "sha256": "a6f61674734ff8a34e233a0d5d2152a4c290f976b33f3a5df657637b5e3aa5a5", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "rails-new", + "sha256": "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l", "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283" }, "recipe": { "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141221.249", "deps": [] @@ -1755,35 +1859,37 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1616", "deps": [] }, "nnir-est": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/nnir-est.git", - "sha256": "a1b7f575fac8784e6f630585dff870d1060cff40c688a6d26f09c5f90066fd3f", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "nnir-est", + "sha256": "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1", "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687" }, "recipe": { "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140301.802", "deps": [] }, "discover-my-major": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/discover-my-major.git", - "sha256": "d5fa5d7c342c305586c9aabd7f840d8bba79f2dd42006e54b16ce138efc92f89", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "183dh0laiwnnrjfp9kimg4s9lrzv2lvrc35203igjadj74vpbg1a", "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95" }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.212", "deps": [ @@ -1792,30 +1898,32 @@ }, "never-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/To1ne/never-comment.git", - "sha256": "7cda3a345f1b3fe5e2b15787cbdae530d3b2595e9a337a5aff6c25fbb784d032", + "tag": "fetchFromGitHub", + "owner": "To1ne", + "repo": "never-comment", + "sha256": "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy", "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4" }, "recipe": { "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140104.1607", "deps": [] }, "helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", - "rev": "b99615090efa622cba280fff0615dc7f269877fd" + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", + "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.1558", + "version": "20151218.1416", "deps": [ "async", "cl-lib", @@ -1825,14 +1933,15 @@ }, "helm-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pronobis/helm-flyspell.git", - "sha256": "f60197147dff9668b91d0ed8cb78edfc42edc3a80243c2908d05fd1afc329320", + "tag": "fetchFromGitHub", + "owner": "pronobis", + "repo": "helm-flyspell", + "sha256": "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59", "rev": "a9ea896fd932fec15709b88ef8bf101dff261b2d" }, "recipe": { "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1112", "deps": [ @@ -1841,28 +1950,30 @@ }, "latex-preview-pane": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsinglet/latex-preview-pane.git", - "sha256": "35f80f98058a99e90427b39c16173d7ff913186ec7e05df668c1b6b0ba12a71b", + "tag": "fetchFromGitHub", + "owner": "jsinglet", + "repo": "latex-preview-pane", + "sha256": "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa", "rev": "1a0539ab70eaf5dd31c2c94773dddd6f437fed41" }, "recipe": { "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1503", "deps": [] }, "pastelmac-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", - "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "pastelmac-theme-el", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly", "rev": "bead21741e3f46f6506e8aef4469d4240a819389" }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2136", "deps": [ @@ -1871,28 +1982,30 @@ }, "omni-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", - "sha256": "a7f3b00a636e83a8c9b483cc565a7f18a923eb03ad04d91667659da155efd250", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500", "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973" }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1059", "deps": [] }, "company-auctex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexeyr/company-auctex.git", - "sha256": "e54ae9c61cc4e8b3760437d5243ce11f60e1b7d537940c7f8386c21c7c7a7e56", + "tag": "fetchFromGitHub", + "owner": "alexeyr", + "repo": "company-auctex", + "sha256": "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5", "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b" }, "recipe": { "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.843", "deps": [ @@ -1903,28 +2016,30 @@ }, "newlisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kosh04/newlisp-mode.git", - "sha256": "b52f7f4c61be54848ff900597142db4a1957ec9a5809259818a69bc85d6acbfe", + "tag": "fetchFromGitHub", + "owner": "kosh04", + "repo": "newlisp-mode", + "sha256": "05jwaj7wlrdpmylawv14ypwpg9qz9pqqqd1nvb94b9gbs79j86z5", "rev": "7f44e7c763bd16481e78bced5ff310b8113883e5" }, "recipe": { "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.1240", "deps": [] }, "flycheck-hdevtools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-hdevtools.git", - "sha256": "3eb221580d55f199530e3fa89e7886f0279bdc1b4194bfc21816d5821b14f9d3", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "1lzr2hdq5m8n331bz5213gf9n9zhhrw9xa1z1r9rkwam1mc23ciy", "rev": "6997f8d033811b7a169052fa23c086fd8e904edb" }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.523", "deps": [ @@ -1934,14 +2049,15 @@ }, "mellow-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mellow-theme.git", - "sha256": "8d165468c7108d0b20b3ff733d52d91ed0bc338dddc232351966fe7c37e4342e", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mellow-theme", + "sha256": "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld", "rev": "ab72898824af6452d0cefea16e49491e42b660d1" }, "recipe": { "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -1957,21 +2073,22 @@ }, "recipe": { "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090723.1019", "deps": [] }, "el-sprunge": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/el-sprunge.git", - "sha256": "55859133e51dfa43eb89c7a671cd966750a710acc8fcadc61f457f7324ef4e41", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "el-sprunge", + "sha256": "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc", "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb" }, "recipe": { "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140106.1939", "deps": [ @@ -1982,14 +2099,15 @@ }, "4clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshuarh/4clojure.el.git", - "sha256": "78769fe6a718d1643b363d3d272a2a36f5206d1b4dbcb3b1948539431e8bcbbb", + "tag": "fetchFromGitHub", + "owner": "joshuarh", + "repo": "4clojure.el", + "sha256": "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq", "rev": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca" }, "recipe": { "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.1707", "deps": [ @@ -1999,14 +2117,15 @@ }, "mustard-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mustard-theme.git", - "sha256": "ee7158f086403aeab07ac0d643cc0c1fd56263493935f7a5792d6db6d782189c", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mustard-theme", + "sha256": "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf", "rev": "33bc6e3a0e2abc5668afdb349bca7e8b5730582c" }, "recipe": { "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -2021,21 +2140,22 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.659", "deps": [] }, "sly-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-company.git", - "sha256": "0c4511c2bfccde800c11fed5aa6c213ca73495ea891326414b3430ba58504cdf", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "0qpw345ch5b9dbznk916f6h9f9dnf03wfyvpgnzdf30ffvf4q01w", "rev": "21248bd852c9520ec27692f286c5f43b50892b12" }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.222", "deps": [ @@ -2046,28 +2166,30 @@ }, "ht": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ht.el.git", - "sha256": "06df27b8f6bdc2e967224e3296cdf0672deb235e7e239a6bdabfb03cb7af8eb5", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd", "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4" }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1315", "deps": [] }, "quelpa": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quelpa/quelpa.git", - "sha256": "4991a1efcc94b010bf936fa5ca05d670e7ad4588012f742ff8b972804f983bb2", + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa", + "sha256": "0v5fcbjf7ndmywjsq9di3cwxsh2csv5pj3mqgqb340i2yp77r9wy", "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443" }, "recipe": { "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.305", "deps": [ @@ -2077,14 +2199,15 @@ }, "erc-yt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yhvh/erc-yt.git", - "sha256": "e9a7bf3aa2f90e9161ad2426542cc6f82c91cda99938a8b2b6db53ad26199cb6", + "tag": "fetchFromGitHub", + "owner": "yhvh", + "repo": "erc-yt", + "sha256": "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9", "rev": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8" }, "recipe": { "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150426.749", "deps": [ @@ -2093,14 +2216,15 @@ }, "org-webpage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/org-webpage.git", - "sha256": "119c35c604db42aa7f8791fb8fed233ff70bea63c5097662817192cb54a7ee09", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "org-webpage", + "sha256": "15r6scvg3pynzj0waam9m22s3ym5kri4mwrsjkyxgz5fr929crj7", "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4" }, "recipe": { "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.15", "deps": [ @@ -2115,42 +2239,45 @@ }, "elisp-slime-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elisp-slime-nav.git", - "sha256": "fb29682ed4596c3c86dbd219f19636eaf63958646c558bef0353c4caa96b40a4", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elisp-slime-nav", + "sha256": "184yxv2qhqc2g5v259kprihppvcwsd52idjay2c01lkmk1i3qnj5", "rev": "f6d241b11abbc4064e17e02dbd0bc6c61db256cc" }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1448", "deps": [] }, "vlf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/vlfi.git", - "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.918", "deps": [] }, "xkcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/emacs-xkcd.git", - "sha256": "579d723ba238b4aafa064319d457698a5be9ed9579ae9c3c9a6e7eccce53a73d", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "emacs-xkcd", + "sha256": "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap", "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d" }, "recipe": { "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2353", "deps": [ @@ -2159,14 +2286,15 @@ }, "github-notifier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/github-notifier.el.git", - "sha256": "13cfa4c56479d1aaad3f3f12a8e559ad788020a0f428e3edc74f7c4e549f71fc", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "github-notifier.el", + "sha256": "1z3ikxa4wz2gqzny6a7ll0h80y5db7jsh4iz7ynsmlbrck2s9kqk", "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a" }, "recipe": { "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.523", "deps": [ @@ -2175,42 +2303,45 @@ }, "easy-after-load": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/easy-after-load.git", - "sha256": "9a90a2db1832ad560d9ce278099636b3c6e7b12e366906cf4fdb789be0d9d8e4", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "easy-after-load", + "sha256": "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4", "rev": "f8e6e10725d80d3b7e8b1ca966de6190089d8f12" }, "recipe": { "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121224.2049", "deps": [] }, "recover-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tripleee/recover-buffers.git", - "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", "rev": "a1db7f084977697081da3497628e3514e032b966" }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.205", "deps": [] }, "evil-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wcsmith/evil-args.git", - "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140329.1629", "deps": [ @@ -2219,14 +2350,15 @@ }, "smart-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/smart-region.git", - "sha256": "4e49d0263fb9abefe8916d00f980f63ff2137d3628876e5f24ae58ea1b4ba540", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "smart-region", + "sha256": "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf", "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6" }, "recipe": { "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.903", "deps": [ @@ -2238,14 +2370,15 @@ }, "color-theme-approximate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tungd/color-theme-approximate.git", - "sha256": "b8f31f58cc9ee29a016bfa2c3f608f03a5aaa423fa5cb7188c4c6afc35af1eac", + "tag": "fetchFromGitHub", + "owner": "tungd", + "repo": "color-theme-approximate", + "sha256": "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq", "rev": "f54301ca39bc5d2ffb000f233f8114184a3e7d71" }, "recipe": { "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.2236", "deps": [] @@ -2258,35 +2391,37 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.633", "deps": [] }, "real-auto-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chillaranand/real-auto-save.git", - "sha256": "821626e1340a05b49398b52b6f59096bbbe09f1bfb739c0a2ddae38af485f0cd", + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2", "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf" }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150701.1015", "deps": [] }, "ebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/ebib.git", - "sha256": "bc7d25e75c5a714dccf98bddba4bddd44b6b67b5f001579769610b2084df47d2", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "015dch0f4h9qrjgv3rapxq5afi8g074jfgjjsgvqcm90myx12p1m", "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130" }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.933", "deps": [ @@ -2297,14 +2432,15 @@ }, "db-pg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-db-pg.git", - "sha256": "0a99697dea53d2bdb5890086050e9961cf6579fa7d9629e044770c3a25c72097", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-db-pg", + "sha256": "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a", "rev": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded" }, "recipe": { "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.1302", "deps": [ @@ -2314,28 +2450,30 @@ }, "multiple-cursors": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multiple-cursors.el.git", - "sha256": "0eea70a8598e6eea6073a53a881cfad0cb23cfa9d92f6bd922b72fa71c481226", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multiple-cursors.el", + "sha256": "0hl9ll7pgqv74dnihyy0gz15wz0swj1cpa208484qd3g0dvin8j6", "rev": "a393384b3508e7d8d721e66d2bfb97fa7153dd4f" }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1425", "deps": [] }, "tss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-tss.git", - "sha256": "b1f5fd7e423503d67f2fdf3b21795ca97642051159551c585a20663678d8c090", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3", "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0" }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.908", "deps": [ @@ -2353,21 +2491,22 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.941", "deps": [] }, "ac-js2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ScottyB/ac-js2.git", - "sha256": "f3f45de22b0f9c55f0a0d203890465ed29ac29bb4a86c9c3fa576899c718c97a", + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "ac-js2", + "sha256": "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k", "rev": "721c482e1d4a08f4a29a74437257d573e8f69969" }, "recipe": { "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.642", "deps": [ @@ -2377,14 +2516,15 @@ }, "turnip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/turnip.el.git", - "sha256": "0447850f0ff7a00029c466c2e5ecc58db4328a2b0fe3d60fb26d9b2e0426144e", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "turnip.el", + "sha256": "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4", "rev": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de" }, "recipe": { "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150309.129", "deps": [ @@ -2394,14 +2534,15 @@ }, "soft-stone-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-stone-theme.git", - "sha256": "5442437ac0759ff73da86bf3c92632e7b1cd1880bfa007f9af35390d1672150c", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-stone-theme", + "sha256": "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl", "rev": "fb475514cfb02cf30ce358a61c48e46614344d48" }, "recipe": { "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140614.335", "deps": [ @@ -2410,28 +2551,30 @@ }, "el2markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/el2markdown.git", - "sha256": "b00e0ac52648cd1dca0568849aedcc393951cf717b3a75724d2d867f4aefb40f", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "el2markdown", + "sha256": "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh", "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d" }, "recipe": { "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.1538", "deps": [] }, "espuds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/espuds.git", - "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", "rev": "1405972873339e056517217136de4ad3202d744a" }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.959", "deps": [ @@ -2442,28 +2585,30 @@ }, "nav-flash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/nav-flash.git", - "sha256": "ded55c914045522ee905087d7cf55ff898f865f4b580ad256b40ef6c84d4be87", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "nav-flash", + "sha256": "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg", "rev": "53f5bc59e3f32c1192d15637d3979732dacb2c35" }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "persp-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.327", "deps": [ @@ -2474,42 +2619,45 @@ }, "osx-location": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/osx-location.git", - "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150613.417", "deps": [] }, "objc-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/objc-font-lock.git", - "sha256": "13af9bb5cf13e6b49769de7f3a47e54a6838dd541ae78bdb1979a753aa0d0c8d", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "objc-font-lock", + "sha256": "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk", "rev": "34b457d577f97ca94b8792d025f9a909c7610612" }, "recipe": { "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141021.1322", "deps": [] }, "unify-opening": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/unify-opening.git", - "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1848", "deps": [ @@ -2518,14 +2666,15 @@ }, "visual-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/visual-regexp.el.git", - "sha256": "e96b29c145ace240436688038906026fb673330af5898210282ac2ef03d08d13", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "visual-regexp.el", + "sha256": "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9", "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8" }, "recipe": { "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.719", "deps": [ @@ -2534,14 +2683,15 @@ }, "ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "9dea0d94106ee293336ce640d9fa9bbdd3e07202ee6fbb7b5f0ae424414007b6", - "rev": "6de02ea4700a700c1d5950309242ed4d44e357ae" + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "0s3d2h0fhsli2bq6q6kfaf8gng1wfff6rr1ms6smpg1sxd3k783n", + "rev": "2988749b844136148bdd35f239d3f4747813b821" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1843", "deps": [ @@ -2550,28 +2700,30 @@ }, "orgtbl-show-header": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/orgtbl-show-header.git", - "sha256": "4a7b7c8bf5075a9c9eb0d3f1979ebda51c9c0c9af8ac831d879af1467ed04e86", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "orgtbl-show-header", + "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x", "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f" }, "recipe": { "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.337", "deps": [] }, "inf-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/taksatou/inf-php.git", - "sha256": "f94b056d69870bed898876cf9b42d5bdf1bf4c579309a6c59e4dc8d749d2b6fc", + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "inf-php", + "sha256": "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr", "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a" }, "recipe": { "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130414.221", "deps": [ @@ -2580,28 +2732,30 @@ }, "omniref": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/omniref.el.git", - "sha256": "c8a61f314cb6cff452ae0857324a2da6dec342579c67f1cf34fea282a5bafbc3", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "omniref.el", + "sha256": "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8", "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115" }, "recipe": { "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.221", "deps": [] }, "flycheck-dialyzer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-dialyzer.git", - "sha256": "b02b34f56785f9f3f85901696c181bfc9b636fbde0272128edf61e02b239ac95", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-dialyzer", + "sha256": "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh", "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36" }, "recipe": { "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151024.37", "deps": [ @@ -2610,14 +2764,15 @@ }, "ninja-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martine/ninja.git", - "sha256": "5968613797683b66c800fd6455d4c4cde42f1868b56952bb573157c218653c46", + "tag": "fetchFromGitHub", + "owner": "martine", + "repo": "ninja", + "sha256": "1yvgamxjqyzpwk59lm3gvcw6f9ab64cnbwwcmmyrk4yxhyva6r3q", "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7" }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.2359", "deps": [ @@ -2626,28 +2781,30 @@ }, "el-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/el-x.git", - "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140111.1601", "deps": [] }, "migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/migemo.git", - "sha256": "d99f69932cfe6c2ed5d795a6952d459c7585f8184e1af2807ae943abaaade4ab", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr", "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169" }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.941", "deps": [ @@ -2662,21 +2819,22 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120509.605", "deps": [] }, "easy-repeat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/easy-repeat.el.git", - "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.348", "deps": [ @@ -2685,14 +2843,15 @@ }, "python3-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dvhansen/python3-info.git", - "sha256": "b399f1740e39065c9b2ac2eb3b4605bb3c2a6d0e024d6727fd00473285250053", + "tag": "fetchFromGitHub", + "owner": "dvhansen", + "repo": "python3-info", + "sha256": "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p", "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5" }, "recipe": { "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.31", "deps": [] @@ -2705,7 +2864,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.1554", "deps": [ @@ -2715,16 +2874,33 @@ "hexrgb" ] }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20110926.1118", + "deps": [ + "xml-rpc" + ] + }, "helm-ad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tnoda/helm-ad.git", - "sha256": "a4d37c5ad3ab20c9ca0735b1d414e09528defb86e9a59289c9f830536c7bae43", + "tag": "fetchFromGitHub", + "owner": "tnoda", + "repo": "helm-ad", + "sha256": "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4", "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55" }, "recipe": { "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.415", "deps": [ @@ -2734,14 +2910,15 @@ }, "pophint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-pophint.git", - "sha256": "cc7bc891f13ee8a2d21a65a83f36d94ed04665e1a76c4c241be5d76b9e64d41e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3", "rev": "fc02a155e28ae27466bedabc756e75c936b01266" }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.1234", "deps": [ @@ -2758,7 +2935,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090621.832", "deps": [] @@ -2771,23 +2948,24 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1602", "deps": [] }, "find-file-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/find-file-in-project.git", - "sha256": "1b5c1d9e171bf90695d63bf53c00b6fa75ff93f8c2dbceae27ed7a48968dd20b", - "rev": "e44a77a0143a02b4eecc0b22aece598eaa8cc5ac" + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "find-file-in-project", + "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm", + "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609" }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.41", + "version": "20151216.2050", "deps": [ "emacs", "swiper" @@ -2795,28 +2973,30 @@ }, "paren-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/paren-face.git", - "sha256": "4e25aa2a939bc133f52f9511fab07c54b1e6902206c8cf404cbb11de5059f73d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af", "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e" }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.2106", "deps": [] }, "racket-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/greghendershott/racket-mode.git", - "sha256": "4806141fc2d889ef586f1bfd4ed4163f8b0cbbc369ea7e224cfc7a42298c5b96", + "tag": "fetchFromGitHub", + "owner": "greghendershott", + "repo": "racket-mode", + "sha256": "0yshyfgdvpys38iqi4jqxa40gvwhc79njp0gq25n036kzarwjch8", "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd" }, "recipe": { "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.2152", "deps": [ @@ -2827,14 +3007,15 @@ }, "mozc-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/mozc-popup.git", - "sha256": "b6ce050255161afdb66a333e3e17bad872e6052daae4aa5fc5f84c6d989c77d5", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-popup", + "sha256": "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn", "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420" }, "recipe": { "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1834", "deps": [ @@ -2844,14 +3025,15 @@ }, "writeroom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/writeroom-mode.git", - "sha256": "c0894df2c685e5e6e1060d664d44941c0498385b3089dff2ff17d9558d849f9f", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x", "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30" }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.301", "deps": [ @@ -2861,14 +3043,15 @@ }, "use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1639", "deps": [ @@ -2885,21 +3068,22 @@ }, "recipe": { "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.120", "deps": [] }, "highlight-defined": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-defined.git", - "sha256": "c2afb40b7c0bb4dea57570697bb6c265baf18f62aa51dad10e7bb1eda5ed20d0", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-defined", + "sha256": "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2", "rev": "243478cc204ab42d29805ed610961cbb260c1dfd" }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141225.930", "deps": [ @@ -2908,14 +3092,15 @@ }, "org-present": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rlister/org-present.git", - "sha256": "d5d567cba724fe230ebc06f73a28385a1027bf35d00dd24ce0b69f7cde5335d9", + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "org-present", + "sha256": "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm", "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f" }, "recipe": { "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.1956", "deps": [ @@ -2924,56 +3109,60 @@ }, "vkill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/vkill.git", - "sha256": "6d3e151a06b53587a028e8e41bd03bbd18d8d7824831aa8c9ada0b686f216841", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "vkill", + "sha256": "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd", "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9" }, "recipe": { "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1222", "deps": [] }, "spacemacs-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nashamri/spacemacs-theme.git", - "sha256": "76aaf6e9fb5e4330a09aaca786a3a2890993d37eaec6d03d6af9e3c26f79e56d", + "tag": "fetchFromGitHub", + "owner": "nashamri", + "repo": "spacemacs-theme", + "sha256": "0vg5g5pw5qzrd8yx1imfgv9r62c9laiqd9xckah30hsyzglzdakn", "rev": "febe56c3e56757b149eac0536c087259782d2345" }, "recipe": { "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.848", "deps": [] }, "historyf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-historyf.git", - "sha256": "055ac1ab1e38aa40aac059b32500e2a55754bf7c639b6962a80f7f41034b84f8", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0", "rev": "66590519a02816cde8f442032fb144f3c38ebc6e" }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1959", "deps": [] }, "dired-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1141", "deps": [ @@ -2983,28 +3172,30 @@ }, "skype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-skype.git", - "sha256": "dda5f1947c82c65e9cc84ef76fc80f1f205b9763fd0915981a175a411c3bf23f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-skype", + "sha256": "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx", "rev": "c10f96d1d105acee8a9a9804652bf6a813591da4" }, "recipe": { "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131001.2318", "deps": [] }, "flymake-rust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joaoxsouls/flymake-rust.git", - "sha256": "9b2945f59d584dee5f65b660262d1c808a1b5b8e47d7846a85330e04e11eabe3", + "tag": "fetchFromGitHub", + "owner": "joaoxsouls", + "repo": "flymake-rust", + "sha256": "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv", "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a" }, "recipe": { "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141004.1752", "deps": [ @@ -3013,28 +3204,30 @@ }, "js-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js-doc.git", - "sha256": "0fd507e941bf24942c98db6f39cd54b568daf0c8f5eb9d25a067071ec3f152b4", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js-doc", + "sha256": "1d2jy71iw1v7l0jrvszmr3qdls5mak6kjvyvk0n9895z87lhgm8g", "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6" }, "recipe": { "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131215.719", "deps": [] }, "ess-smart-underscore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", - "sha256": "6507a3af49e1c0c5851cea381d5ed7f82bdca4bcb44743fd234ee30b304aaa07", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "ess-smart-underscore.el", + "sha256": "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5", "rev": "f3bbee01754888452232b337173b57c6c266de49" }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.2051", "deps": [ @@ -3043,14 +3236,15 @@ }, "edbi-database-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-database-url.git", - "sha256": "653f834e5296bb0edc43c34f8c4d7499326825f31c75847d59aeb5801815b6cf", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-database-url", + "sha256": "1l5lkdgcy1z6fkjh3zrhf0f4f26bzhpqy33ak1xacvm9fyf54s2x", "rev": "08b833584460ddfd4d0d76e5b159625dde684bcf" }, "recipe": { "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.603", "deps": [ @@ -3060,14 +3254,15 @@ }, "geeknote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/avendael/emacs-geeknote.git", - "sha256": "f871883dc71beeac06bc5fda5dbd349a9d0e23c9326e0da9739ab530527d6593", + "tag": "fetchFromGitHub", + "owner": "avendael", + "repo": "emacs-geeknote", + "sha256": "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq", "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9" }, "recipe": { "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1015", "deps": [ @@ -3082,7 +3277,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1508", "deps": [ @@ -3091,56 +3286,60 @@ }, "winpoint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/winpoint.git", - "sha256": "9e17a401021a83ae1b1abbca82bf5744911e3e600b89a59597e7bd6a5bdc2be3", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "winpoint", + "sha256": "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy", "rev": "e6050093c076308184566fa1d1012423d6934773" }, "recipe": { "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131023.1213", "deps": [] }, "vala-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/vala-mode.git", - "sha256": "84f0194fe9e4394026fe489d6f86faff17ff59336ee81b64408773cd50237a83", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "vala-mode", + "sha256": "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44", "rev": "fb2871a4492d75d03d72e60474919ab89adb267b" }, "recipe": { "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.1725", "deps": [] }, "pinot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-pinot-search.git", - "sha256": "107f25fae7826e4eee1cf1798f02fcd2e69fc7dee7ddb589252ab2eb4a0e83f1", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-pinot-search", + "sha256": "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh", "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a" }, "recipe": { "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.1426", "deps": [] }, "mmm-jinja2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/beardedprojamz/mmm-jinja2.git", - "sha256": "7ba5e9133c4da4a7f63292ed4dae549ae288c1d651a0fea6bf139c8fd3158cd1", + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "mmm-jinja2", + "sha256": "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv", "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef" }, "recipe": { "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.1334", "deps": [ @@ -3149,28 +3348,30 @@ }, "tronesque-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aurelienbottazini/tronesque.git", - "sha256": "baffc38962b2d7872b40717693919855c8deedbca78700860671493d3b52668a", + "tag": "fetchFromGitHub", + "owner": "aurelienbottazini", + "repo": "tronesque", + "sha256": "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm", "rev": "42093c08a50c860601c364c8a746c803458c10ba" }, "recipe": { "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150125.441", "deps": [] }, "sensitive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/sensitive.el.git", - "sha256": "c3867e6114a4d9ad757aa94929f64869e39a6ab4bdd6255280de88591873923c", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sensitive.el", + "sha256": "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3", "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3" }, "recipe": { "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.835", "deps": [ @@ -3180,28 +3381,30 @@ }, "dark-souls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomjakubowski/dark-souls.el.git", - "sha256": "99285e21815815686ad20b23305bd24e427de34a59cf33573b20d82481141ef0", + "tag": "fetchFromGitHub", + "owner": "tomjakubowski", + "repo": "dark-souls.el", + "sha256": "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r", "rev": "94122b1215423e58dcf18584a2bd022029d54d4b" }, "recipe": { "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.628", "deps": [] }, "narrowed-page-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", - "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "narrowed-page-navigation", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax", "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.2319", "deps": [ @@ -3211,28 +3414,30 @@ }, "thingopt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/thingopt-el.git", - "sha256": "26f3866b02c312fabdb089b34b73ce09af7cba61ee5a4c6934a35abcc7cabf46", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "thingopt-el", + "sha256": "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6", "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8" }, "recipe": { "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.723", "deps": [] }, "broadcast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/broadcast.el.git", - "sha256": "b23698de17ce14481eb0ac9bac4aeb28cbfcf680ceb8378b19c147d67a4ecb70", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "broadcast.el", + "sha256": "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj", "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16" }, "recipe": { "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.2012", "deps": [ @@ -3241,42 +3446,45 @@ }, "lxc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-lxc.git", - "sha256": "38e1c2e21a873af609acb74630a203c9f1465593190bb8e4bfde7b4223980f24", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-lxc", + "sha256": "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q", "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835" }, "recipe": { "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1522", "deps": [] }, "conkeror-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/conkeror-minor-mode.git", - "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "conkeror-minor-mode", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx", "rev": "476e81c27b056e21c192391fe674a2bf875466b0" }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.1004", "deps": [] }, "pycarddavel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/pycarddavel.git", - "sha256": "5e0a865e6dda8a314685cc2cdc69a37e4ddc57a144492888bf05ef8ca06a9e91", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi", "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3" }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.716", "deps": [ @@ -3286,28 +3494,30 @@ }, "org-jira": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baohaojun/org-jira.git", - "sha256": "b7d3b1278fc796b8d2b2611f8a5d807bc9db481d52ad3d87e492c0ef2746ae2c", + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "org-jira", + "sha256": "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp", "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78" }, "recipe": { "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.758", "deps": [] }, "flycheck-mercury": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-mercury.git", - "sha256": "7fd4ceb23507d70aba19e110d62afb2aae60dada358928033dd50a149e15c7f0", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-mercury", + "sha256": "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca", "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861" }, "recipe": { "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.134", "deps": [ @@ -3318,14 +3528,15 @@ }, "chatwork": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/chatwork.git", - "sha256": "b4f0b17b28bcb45df20342edcda008b7306579696170b140e6ef97e0de3b7c8b", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "chatwork", + "sha256": "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb", "rev": "7a1def04735423d47e058a8137e859391a6aaf7e" }, "recipe": { "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.2148", "deps": [] @@ -3338,7 +3549,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1047", "deps": [] @@ -3351,21 +3562,22 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "orgtbl-join": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgtbljoin.git", - "sha256": "7a4ccb997f298a005e626e94181fadfd35d4706d5d85a8e6c0a56343c49df5fc", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtbljoin", + "sha256": "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg", "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2" }, "recipe": { "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1646", "deps": [ @@ -3374,14 +3586,15 @@ }, "sclang-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/sclang-snippets.git", - "sha256": "f0c82d7bd2fda25e1651f5b7cf2b5dd406b5436f9c9f1c4d75155c235ba56b38", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "sclang-snippets", + "sha256": "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857", "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58" }, "recipe": { "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.251", "deps": [ @@ -3396,35 +3609,37 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120608.1335", "deps": [] }, "disaster": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/disaster.git", - "sha256": "8e8b4df8e4588398d775c33f14e6450c4c7c4aa68483bfa8b40708a11f0e1fb8", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "disaster", + "sha256": "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq", "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0" }, "recipe": { "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130509.1255", "deps": [] }, "emoji-cheat-sheet-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", - "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "emacs-emoji-cheat-sheet-plus", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk", "rev": "96a003127d646a2683d81ca906a17eace0a6413e" }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150617.831", "deps": [ @@ -3434,14 +3649,15 @@ }, "helm-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-proc.git", - "sha256": "469fb2f46f3d509228989689b260f4a0446d6be330e6d62f351884b904bbc168", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-proc", + "sha256": "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr", "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937" }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140504.357", "deps": [ @@ -3450,28 +3666,30 @@ }, "minimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dustinlacewell/emacs-minimap.git", - "sha256": "f3b5cb2954cd488010af775ca96cf5263c9ff841405d81b31c429d46cd5a2569", + "tag": "fetchFromGitHub", + "owner": "dustinlacewell", + "repo": "emacs-minimap", + "sha256": "0s95bb6ld7a23jrq2pa087w9yg16ymnajp3pmw880j6dahlwpdgk", "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c" }, "recipe": { "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1815", "deps": [] }, "evil-lisp-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-lisp-state.git", - "sha256": "e4a91b18f74749aa993f8ee37339a413cd62baee01e7f61b46facaf5d85916c7", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-lisp-state", + "sha256": "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw", "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d" }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.924", "deps": [ @@ -3482,14 +3700,15 @@ }, "gitolite-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/gitolite-clone.git", - "sha256": "c1eb3c46f41d04570f463ca3e5c3004020472504446b202d1262c8d72470b731", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "gitolite-clone", + "sha256": "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng", "rev": "36e8dbc2906b7bfce382db64211d982c9719ab59" }, "recipe": { "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.839", "deps": [ @@ -3501,14 +3720,15 @@ }, "helm-spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/helm-spotify.git", - "sha256": "13df5bdffb8533943bc5d29974c50765e8963cdab19d01e7d3e4a812a5015698", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "helm-spotify", + "sha256": "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a", "rev": "a1a8275a4769221f7df9a67ed9a028fecbdc29ca" }, "recipe": { "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.1621", "deps": [ @@ -3518,56 +3738,60 @@ }, "linphone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zabbal/emacs-linphone.git", - "sha256": "9620b6bb636a12db7ad590c0f1a2d8ddef4ea02d2fd5ca99dd10a49f8630db07", + "tag": "fetchFromGitHub", + "owner": "zabbal", + "repo": "emacs-linphone", + "sha256": "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n", "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302" }, "recipe": { "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130524.609", "deps": [] }, "popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/popwin-el.git", - "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "popwin-el", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp", "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.800", "deps": [] }, "py-isort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-isort.el.git", - "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.1039", "deps": [] }, "theme-looper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/theme-looper.git", - "sha256": "b266e41896ab8836e6ea93184178b90fbc613aab9ae7bd6755bd7896bfaaa4cd", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "theme-looper", + "sha256": "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj", "rev": "41c15ae98f9406b7932974318a2eada3668a88e7" }, "recipe": { "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.1304", "deps": [ @@ -3576,14 +3800,15 @@ }, "org-octopress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/org-octopress.git", - "sha256": "991bbb3008f40605c38fdf613b626369b480d4b0806a4fd425d78fbb7fd8528c", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "org-octopress", + "sha256": "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr", "rev": "e04d55c3f4bb88e5661ee136cb3a55f998dca931" }, "recipe": { "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.616", "deps": [ @@ -3594,28 +3819,30 @@ }, "django-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myfreeweb/django-mode.git", - "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "tag": "fetchFromGitHub", + "owner": "myfreeweb", + "repo": "django-mode", + "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va", "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" }, "recipe": { "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150207.717", "deps": [] }, "mobdebug-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/deftsp/mobdebug-mode.git", - "sha256": "224959c8146ef3a4edbabfd2887039fdc1ae99f4cd8799871c76bf7b02d19cd2", + "tag": "fetchFromGitHub", + "owner": "deftsp", + "repo": "mobdebug-mode", + "sha256": "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz", "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da" }, "recipe": { "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.2146", "deps": [ @@ -3632,23 +3859,24 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.913", "deps": [] }, "gh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/gh.el.git", - "sha256": "c5bcbab980cd28e0c2b95ccb6602f91f988c52007abeaf29d9a656514c792d1f", - "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd", + "rev": "3ceef078d9418cf19e1fe6be15cf34794a14880a" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150906.1048", + "version": "20151216.946", "deps": [ "emacs", "logito", @@ -3657,14 +3885,15 @@ }, "cider-profile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thunknyc/nrepl-profile.git", - "sha256": "bcd1427312dc30cfc69c01ab13a6799525f1a38898f144a19e6b1bc040a42bfc", + "tag": "fetchFromGitHub", + "owner": "thunknyc", + "repo": "nrepl-profile", + "sha256": "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0", "rev": "9aa7e404f53f5136ac8d15301ce8ca2924785cb3" }, "recipe": { "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.825", "deps": [ @@ -3673,28 +3902,30 @@ }, "simp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/simp.git", - "sha256": "4e2dfe90d639614de77397b63137f9e8938b3f5838cdc8af81ad774b96ff0ad5", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "simp", + "sha256": "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf", "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab" }, "recipe": { "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.1132", "deps": [] }, "org-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/org-grep.git", - "sha256": "2c0186a6fd2f7b33d6b4ab2f1d08a75365b48165b5e113cee7b68641f4c75c82", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "org-grep", + "sha256": "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c", "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684" }, "recipe": { "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.629", "deps": [ @@ -3703,30 +3934,32 @@ }, "minimal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikame/minimal-theme.git", - "sha256": "bf52c0531516d1956fa41d371286e7ab0f0aea275e3f92cb87fd2fcba7f8c1c7", + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "minimal-theme", + "sha256": "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz", "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238" }, "recipe": { "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140409.1801", "deps": [] }, "lispy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/lispy.git", - "sha256": "3f0acaad7dded52e12626afede7c7671f79b8a556a598de3e127b3773ae97055", - "rev": "ad1a6e075da26fa20fdd6840bb0d3d41889c42b2" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "lispy", + "sha256": "134694ngr01nb8qihyclwc2cd93ipkwjbkmwdflsbi99gv9bkyxj", + "rev": "864a4efcc686601855823f0af750fa25f4dc2e8a" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.941", + "version": "20151218.555", "deps": [ "ace-window", "emacs", @@ -3736,14 +3969,15 @@ }, "bpe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/bpe.git", - "sha256": "e80c99d998ece862eb5b143dbe143d4b29eca0f15839bc5ebe94baf0ff08c6c8", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "bpe", + "sha256": "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0", "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189" }, "recipe": { "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141228.1605", "deps": [ @@ -3752,28 +3986,30 @@ }, "sphinx-frontend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/sphinx-frontend.git", - "sha256": "3c977e2a18ff1af362296077380e6695a6e9ee2fe548fccffbe7dd7bce21d7d5", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "sphinx-frontend", + "sha256": "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw", "rev": "a46e81ce65fd24c03acab9311b162cad21343744" }, "recipe": { "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.412", "deps": [] }, "request-deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130526.1215", "deps": [ @@ -3783,14 +4019,15 @@ }, "railscasts-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mikenichols/railscasts-theme.git", - "sha256": "b4a367d543fa131c277f1e80a9766e2247bda494149e55ce684cd1ca14cdaeb9", + "tag": "fetchFromGitHub", + "owner": "mikenichols", + "repo": "railscasts-theme", + "sha256": "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205", "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b" }, "recipe": { "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.925", "deps": [] @@ -3803,21 +4040,22 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1846", "deps": [] }, "on-parens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-on-parens.git", - "sha256": "de18990058fe6e7bb53f3cf6171057dc08aefaa26a1df930e36a0597775b2698", + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-on-parens", + "sha256": "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y", "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c" }, "recipe": { "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1706", "deps": [ @@ -3829,14 +4067,15 @@ }, "ace-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-flyspell.git", - "sha256": "f2e7dbc47fad1f9d6c98c5f37233fce5b243c9aeb9405eba92c02af7570352d7", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-flyspell", + "sha256": "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj", "rev": "76c255d91c86b57a07cc7660450e37107d73505f" }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150523.1315", "deps": [ @@ -3845,14 +4084,15 @@ }, "list-unicode-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/list-unicode-display.git", - "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "list-unicode-display", + "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww", "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.301", "deps": [ @@ -3861,14 +4101,15 @@ }, "import-popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-import-popwin.git", - "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-import-popwin", + "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w", "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.433", "deps": [ @@ -3878,14 +4119,15 @@ }, "company-tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-tern.git", - "sha256": "a42f037a7b9c85d4b3078eb7d861b5ff65742c354ab2e2f3e99e49877a414273", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-tern", + "sha256": "1mybg3izz93kf5a6xhalz9rfbjmazgqrhpw9mjdcqh4zd6avw00c", "rev": "bd358af7c1492391ea39d35672ac12f8587ade21" }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.416", "deps": [ @@ -3899,14 +4141,15 @@ }, "lit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HectorAE/lit-mode.git", - "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "tag": "fetchFromGitHub", + "owner": "HectorAE", + "repo": "lit-mode", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd", "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1136", "deps": [] @@ -3919,35 +4162,37 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1905", "deps": [] }, "miniedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/miniedit.git", - "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100419.1245", "deps": [] }, "magit-gh-pulls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/magit-gh-pulls.git", - "sha256": "6575f8dc757543ca5b7a1afa3806e0c1f5e81ecdb14163ffd019556a507ea40e", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "03m4gr86lm8rs3zn6hdirlgfixf1w033iyhsg9dwlhvmfpfghxb5", "rev": "728819217c697b4eed996eb14261a8c7c3388df7" }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1243", "deps": [ @@ -3960,14 +4205,15 @@ }, "pcre2el": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/pcre2el.git", - "sha256": "98508dd642149a5a2a6853a204bee1648556f671fae3bcd475b3ffc5f177c364", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "pcre2el", + "sha256": "0ymbximchjfllrglkwv4lwb2sqprvva77vfbjb6n6kzni0ix70s3", "rev": "57ee828d07953329fd85ff85d6a4f27a0ce512a1" }, "recipe": { "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.434", "deps": [ @@ -3983,21 +4229,22 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20051013.1256", "deps": [] }, "znc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshirokov/ZNC.el.git", - "sha256": "5d577dc03c3c4de11cf5ee24936b18855446fcee8f8daac348291a3c172603d5", + "tag": "fetchFromGitHub", + "owner": "sshirokov", + "repo": "ZNC.el", + "sha256": "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp", "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19" }, "recipe": { "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140722.1621", "deps": [ @@ -4013,21 +4260,22 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1911", "deps": [] }, "dired-open": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -4037,28 +4285,30 @@ }, "firestarter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/firestarter.git", - "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", "rev": "4b7428477980e12578ebbbb121115696b352d6b2" }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.815", "deps": [] }, "adoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/adoc-mode.git", - "sha256": "dc3d45e913c6a541f6c5424ef9728a295bcf9c7fd186a9c4b0d926415dd967fb", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask", "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804" }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1114", "deps": [ @@ -4067,14 +4317,15 @@ }, "racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/racer-rust/emacs-racer.git", - "sha256": "224e9d4be82197d5947a64962d80d14850f7d5b0775aee8b225c00f3d1b231f9", + "tag": "fetchFromGitHub", + "owner": "racer-rust", + "repo": "emacs-racer", + "sha256": "10nj92fm9lmamqyri84lsdv71wbrb2nfi0gfwnq9mg54pyv0r2si", "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd" }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1916", "deps": [ @@ -4086,14 +4337,15 @@ }, "hamlet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lightquake/hamlet-mode.git", - "sha256": "4673ebc8927be06d3d328a4fb44844d76fdf336548acb79c9f3a6da1c3ba59da", + "tag": "fetchFromGitHub", + "owner": "lightquake", + "repo": "hamlet-mode", + "sha256": "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6", "rev": "7362b955e556a3d007fa06945a27e5b99349527d" }, "recipe": { "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.124", "deps": [ @@ -4104,14 +4356,15 @@ }, "simplezen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/simplezen.el.git", - "sha256": "7eeb928c66c04e05be9b03d3709be8013c01d530c7b8f0319c3e2f525970e71d", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "simplezen.el", + "sha256": "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn", "rev": "119fdf2c6890a0c56045ae72cf4fce0071a81481" }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130421.500", "deps": [ @@ -4121,42 +4374,45 @@ }, "geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaor/geiser.git", - "sha256": "64c48eb1c4af3b93e2c134691f7d7f3eadec174f90e02a785c6d5fda9016cf89", + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "0b5rs1w0gcci0b8047n0s2m02khjhs9qsp0yn0jwrg4i46jn0vll", "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570" }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.2122", "deps": [] }, "tup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/tup-mode.git", - "sha256": "f5db34da14c97f296961f00839fe7369241d1701f2fba803b97bf0c5f74f2b78", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm", "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8" }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1114", "deps": [] }, "voca-builder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yitang/voca-builder.git", - "sha256": "e56b26d7fd4a35befe4e1e6ff021e07d46deef9d36646d5e6ee9c535bc87336c", + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw", "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb" }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150625.1333", "deps": [] @@ -4169,21 +4425,22 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.833", "deps": [] }, "pager-default-keybindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/pager-default-keybindings.git", - "sha256": "15af81dd529eabfafab29eb20ef6185c8fd828a02ef05688d4c8f2b491c6ba86", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "pager-default-keybindings", + "sha256": "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm", "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3" }, "recipe": { "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130719.1557", "deps": [ @@ -4192,14 +4449,15 @@ }, "zotelo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/zotelo.git", - "sha256": "3bd21c9241e540e4e28dbc38c75e60bd897e4573d8b8198f2c78fa14912ed999", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "16fr5s8i9ykq5j7ikf6qfd2px2dxc1gcff5wipif8h758691rliv", "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93" }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.541", "deps": [ @@ -4208,14 +4466,15 @@ }, "material-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpaulik/emacs-material-theme.git", - "sha256": "94d38adf5d1cfd3d45a33231ab4405f2da7b01f5220c7b5924ddf886e59af8ee", + "tag": "fetchFromGitHub", + "owner": "cpaulik", + "repo": "emacs-material-theme", + "sha256": "1vpqkbjqdy6x4icpn312yl0ppnpj0m2anc9jld2kvz8wbpgqmlwl", "rev": "68a2e4d9f09dc3a45c765edb271c3460af885de0" }, "recipe": { "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.225", "deps": [ @@ -4224,14 +4483,15 @@ }, "helm-dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/areina/helm-dash.git", - "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1347", "deps": [ @@ -4241,28 +4501,30 @@ }, "vcomp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/vcomp.git", - "sha256": "347f00aae82976a97c101aab7610f11656208a681f368b4a1c5fb51b9811ff3b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl", "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5" }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.1708", "deps": [] }, "togetherly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/togetherly.git", - "sha256": "261d05a1f1c81acf56bb4112b4b512c117337d513cf239bf3640885a0d7254b9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "togetherly", + "sha256": "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796", "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7" }, "recipe": { "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.338", "deps": [ @@ -4271,28 +4533,30 @@ }, "jsx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsx/jsx-mode.el.git", - "sha256": "085d1c6e2efad81b20653a05b4de34dda7c4a8610b64aee0c49fbaa012c0d190", + "tag": "fetchFromGitHub", + "owner": "jsx", + "repo": "jsx-mode.el", + "sha256": "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh", "rev": "47213429c09259126cddb5742482cfc444c70d50" }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130908.1224", "deps": [] }, "literate-starter-kit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/emacs24-starter-kit.git", - "sha256": "6a103abaaf0f541271bea73b451bf8d584b0567a8ed9e32c14f666d0b3893996", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "emacs24-starter-kit", + "sha256": "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b", "rev": "6dce1d01781966c14558aa553cfc85008c06e115" }, "recipe": { "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.1354", "deps": [ @@ -4301,14 +4565,15 @@ }, "searchq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/searchq.git", - "sha256": "047a971070c79396759499fa5f1a87d0bf5961b6b219ec6c237e2c59fb46407f", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "searchq", + "sha256": "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4", "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82" }, "recipe": { "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.711", "deps": [ @@ -4317,14 +4582,15 @@ }, "x-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/x-dict.git", - "sha256": "984ed13093537bff67944c2059504a24b65593d19d7c03659b6d5332e17aeb44", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "x-dict", + "sha256": "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq", "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee" }, "recipe": { "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1223", "deps": [] @@ -4337,35 +4603,37 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1902", "deps": [] }, "python-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/python-info.git", - "sha256": "57c2ff2640ae9a1068e124c86269ef145e374d37276da1ff4e59aa76ca215511", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "python-info", + "sha256": "079xvdaw06wvjnma6572j3p8c7h206agpi9c1as3iw8r1qf5pv7z", "rev": "39996472d78420986e62ae9d16bf62a4a26aab60" }, "recipe": { "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141106.1551", "deps": [] }, "mo-git-blame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbunkus/mo-git-blame.git", - "sha256": "d86c884319ad4216ff12ba062036f1c64cd644012787d5d7606c686bc137bbf9", + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "mo-git-blame", + "sha256": "1ydv6z0nns3cc3bxb1r7052dck66y4v201ms2bzichmd351qhv6q", "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68" }, "recipe": { "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.215", "deps": [] @@ -4378,21 +4646,22 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.916", "deps": [] }, "gradle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacobono/emacs-gradle-mode.git", - "sha256": "75c6e7dc52730a4fbeccf1095208654e7c8b34597f769b846649d5f7253667fa", + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc", "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2" }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150313.1405", "deps": [ @@ -4401,16 +4670,17 @@ }, "code-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/code-library.git", - "sha256": "78fd611bea8387afe0572344845a34574aac9032a0fe0517381356590feaed2a", - "rev": "af0c971c38bf990415acb2ae8b0b69ecf3faa9fd" + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "code-library", + "sha256": "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy", + "rev": "6004c12b199f0a78bc6c11adaa5091a90bc6926b" }, "recipe": { "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151207.819", + "version": "20151216.1011", "deps": [ "gist" ] @@ -4423,21 +4693,22 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.551", "deps": [] }, "cycle-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/cycle-themes.el.git", - "sha256": "558d0455a7ed2037b2500b9cd6e12e645d94edb1b6e73da0e9f7a7b5f836ba88", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "cycle-themes.el", + "sha256": "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am", "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898" }, "recipe": { "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.2209", "deps": [ @@ -4446,14 +4717,15 @@ }, "ess-R-data-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-data-view.el.git", - "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-data-view.el", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x", "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130509.658", "deps": [ @@ -4464,42 +4736,45 @@ }, "string-inflection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akicho8/string-inflection.git", - "sha256": "742f1a8ed45154ab35c1372ecee8edb6fe63a7d94ff70f7a520324b18b932435", + "tag": "fetchFromGitHub", + "owner": "akicho8", + "repo": "string-inflection", + "sha256": "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf", "rev": "147990de9d07d8e603ade92a23ef27a71e52b850" }, "recipe": { "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.456", "deps": [] }, "keyfreq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dacap/keyfreq.git", - "sha256": "8075eda3e4b541e0438015cacf7f3c953b4b1e245136b66e9526a2ea4125bf62", + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l", "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383" }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.2205", "deps": [] }, "sourcetalk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/malroc/sourcetalk_emacs.git", - "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140823.939", "deps": [ @@ -4508,16 +4783,17 @@ }, "darkmine-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/darkmine-theme.git", - "sha256": "9ca754a6ee3a6f6bc4c6aa7c3f4da2323f265d67e6ba923950ff700586194fc9", - "rev": "758ce6adfebbebbf0f714119180ec3992c10894b" + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "darkmine-theme", + "sha256": "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp", + "rev": "8cd5ff16bede4c8e1d063bc46fc1089a36a05bd3" }, "recipe": { "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151005.315", + "version": "20151216.832", "deps": [] }, "archive-region": { @@ -4528,63 +4804,67 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140201.1745", "deps": [] }, "path-headerline-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/path-headerline-mode.git", - "sha256": "d0a64a46534630451458ff067a3bd3b53d815a3778a18c06fec4f4d6c6fe1d7d", + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "path-headerline-mode", + "sha256": "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830", "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69" }, "recipe": { "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140423.832", "deps": [] }, "pointback": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/pointback.git", - "sha256": "5bc1d77d39520386d64071525b4cb8c64d836562585ab0b0640c5b7b8b97cc04", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pointback", + "sha256": "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav", "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8" }, "recipe": { "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100210.952", "deps": [] }, "vc-osc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/vc-osc.git", - "sha256": "4462dd775c362f6a8c8403e1681957db2d4b758488d6ae715d7c800ade771f72", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "vc-osc", + "sha256": "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4", "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331" }, "recipe": { "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120910.411", "deps": [] }, "kaesar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.505", "deps": [ @@ -4593,14 +4873,15 @@ }, "image-dired+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", - "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-diredx", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29", "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.44", "deps": [ @@ -4609,14 +4890,15 @@ }, "anything-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/anything-sage.git", - "sha256": "f27c45c01f45f0868d868b9e83ef7dd7a20c9ea3aa05569b8fe7596ba2d34875", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "anything-sage", + "sha256": "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k", "rev": "370b4248935dd4527127954788a028399644f578" }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.613", "deps": [ @@ -4627,28 +4909,30 @@ }, "ignoramus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ignoramus.git", - "sha256": "db6c9dce6b9fff5c14efb1514e2d0d8e302e615b47a1e969d2f2a4b7fd4ba749", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ignoramus", + "sha256": "161algqrrjbc1ja08416q5wzz34rrg6shr2sim7vba0j3svyggnf", "rev": "cab192aa621d1087f2d574b65fffd295c5efb919" }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150216.1542", "deps": [] }, "stock-ticker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/stock-ticker.git", - "sha256": "ddc6499eda448381e4149c0572d24b8dc2e82e0d3111bb6af74fc5f0c5783aa4", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "stock-ticker", + "sha256": "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx", "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9" }, "recipe": { "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150204.452", "deps": [ @@ -4658,14 +4942,15 @@ }, "telephone-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbordak/telephone-line.git", - "sha256": "f2de1318df480845a76314699f32423e87f7ff84db0995e2d6e874b247d7b2c6", + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5", "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75" }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.642", "deps": [ @@ -4678,14 +4963,15 @@ }, "ac-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xcwen/ac-php.git", - "sha256": "36e719b810b174f15d0f28b4c50869600deca2242f69c90780b7614a82c253dc", + "tag": "fetchFromGitHub", + "owner": "xcwen", + "repo": "ac-php", + "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z", "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.2128", "deps": [ @@ -4703,14 +4989,15 @@ }, "helm-ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-ghq.git", - "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-ghq", + "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.512", "deps": [ @@ -4726,35 +5013,37 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1359", "deps": [] }, "math-symbol-lists": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/math-symbol-lists.git", - "sha256": "8ad794ba26a6d19e2ffc701130cc70d3c77805986684ca9e146076e22de84fe1", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "math-symbol-lists", + "sha256": "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx", "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b" }, "recipe": { "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1243", "deps": [] }, "ox-rst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masayuko/ox-rst.git", - "sha256": "a31bd3a0adefbe7e0f7ea8c967b10f5af7483c5cf03725ae3388d5c823b244cb", + "tag": "fetchFromGitHub", + "owner": "masayuko", + "repo": "ox-rst", + "sha256": "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3", "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10" }, "recipe": { "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.143", "deps": [ @@ -4764,42 +5053,45 @@ }, "multicolumn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/multicolumn.git", - "sha256": "2ea37f52d1d8308759d60bed7263a67165c794f74c13e919a8cdcfdb395057c7", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "multicolumn", + "sha256": "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf", "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa" }, "recipe": { "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1651", "deps": [] }, "css-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/css-eldoc.git", - "sha256": "3d134ee93fa0fdd14cba5ecc762f6ada5f2b3b1615491f700b37ff06da32ecd5", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "css-eldoc", + "sha256": "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx", "rev": "c558ac4c470742c98a37290e6b409db28183df30" }, "recipe": { "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.2123", "deps": [] }, "helm-gtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-gtags.git", - "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.820", "deps": [ @@ -4809,14 +5101,15 @@ }, "chinese-pyim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-pyim.git", - "sha256": "cb65de45ddfff5a9a0e44dcc464f0c4b9c9d36c6d7915cc98e657b50466368c1", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-pyim", + "sha256": "0sw9iajxy6lmpr8d2g6409b84psa1xr5pikrb3i5qbbwpvz6q3w4", "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6" }, "recipe": { "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1812", "deps": [ @@ -4826,30 +5119,32 @@ }, "zencoding-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rooney/zencoding.git", - "sha256": "7997dbfce10c2b80822e91dc4042657910fca951abd297049dfa2d374b907cf8", + "tag": "fetchFromGitHub", + "owner": "rooney", + "repo": "zencoding", + "sha256": "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr", "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c" }, "recipe": { "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140213.222", "deps": [] }, "company-cabal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-cabal.git", - "sha256": "e316a40f89ea7759e5cdfdf7ecc5c0de4992bbb968472da8de54bfbda72a8857", - "rev": "29b18d9e6ad3dd5132d795cadcb23ee06203d3ac" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-cabal", + "sha256": "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0", + "rev": "f458de88cad16ed48a605e8347e56433e73dcef8" }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151002.629", + "version": "20151216.920", "deps": [ "cl-lib", "company", @@ -4858,14 +5153,15 @@ }, "borland-blue-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/borland-blue-theme.git", - "sha256": "39197537e262bae8001127322d87f438d8c8339c24d3cf27483fa400b4b7f1e8", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "borland-blue-theme", + "sha256": "1s7inys0191z90kwzlr4khrwin1qyj3jsci7240fifk2w8vpa69r", "rev": "4b77caf6f40e2ffb4f37cb6e2c526bddb50c405f" }, "recipe": { "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1238", "deps": [ @@ -4874,44 +5170,47 @@ }, "idle-highlight-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/idle-highlight-mode.git", - "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "idle-highlight-mode", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv", "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120920.1148", "deps": [] }, "tc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kozo2/tc.git", - "sha256": "f35bdf5d5d65534a30e4087680498c28f1e9fa1d2e90d9fd4fd782851dcdf3f6", + "tag": "fetchFromGitHub", + "owner": "kozo2", + "repo": "tc", + "sha256": "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk", "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8" }, "recipe": { "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.2126", "deps": [] }, "java-imports": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/emacs-java-imports.git", - "sha256": "da0dda3aa83801b99446ec7fa4412136a026d4964dcfea9ad8bd89e76ff021aa", - "rev": "42f6a65441b50ae77b82168060baa8d5a8ec9f2e" + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "emacs-java-imports", + "sha256": "0canb3yp29n4bb31852hg8fbmwi1rw8r02ngd5f60mfpdrz2jqm6", + "rev": "90d1b813a88b93bea8733be3babac3ec238b54d1" }, "recipe": { "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1034", + "version": "20151217.1821", "deps": [ "pcache", "s" @@ -4919,14 +5218,15 @@ }, "mandoku": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mandoku/mandoku.git", - "sha256": "eebcdce65bbc0848d448aa6d57cf985ffdea6a93643d194e5186b3b56bdcb074", + "tag": "fetchFromGitHub", + "owner": "mandoku", + "repo": "mandoku", + "sha256": "0dbm53ihva3qsrcr1ancc6ky55j3j2i6qgqlipndv29aksxx3mlf", "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186" }, "recipe": { "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.900", "deps": [ @@ -4938,14 +5238,15 @@ }, "bibretrieve": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pzorin/bibretrieve.git", - "sha256": "e352151f8e0ccdbfab061fbb6bbd1c271e2b82dc8fb7581f0ec0386e62742d37", + "tag": "fetchFromGitHub", + "owner": "pzorin", + "repo": "bibretrieve", + "sha256": "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b", "rev": "aff34c6e1a074ac4fd574d8e66fd9e0760585419" }, "recipe": { "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131013.1332", "deps": [ @@ -4953,16 +5254,34 @@ "emacs" ] }, + "private-diary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cacology", + "repo": "private-diary", + "sha256": "02l86flh3pyvd8va3dkckf4whr8lab1iybgdb9k6dqsc6j46dcfh", + "rev": "9d2589e46a51ce256ded0542b9826f520ccfcb1a" + }, + "recipe": { + "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.1057", + "deps": [ + "emacs" + ] + }, "cryptsy-public-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/cryptsy-public-api.el.git", - "sha256": "8b047ceb3dba42ac5eeafd3d8a5f03d774318d8f491d2d4f1a23aff00e02c067", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "cryptsy-public-api.el", + "sha256": "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b", "rev": "59bdf2425dccc27cc1598868a1a810885508cff5" }, "recipe": { "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141008.728", "deps": [ @@ -4971,14 +5290,15 @@ }, "highlight-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-blocks.git", - "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1015", "deps": [ @@ -4987,14 +5307,15 @@ }, "simple-httpd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-http-server.git", - "sha256": "731209d7a3892aaafa6a5ccf6e118a25035d483952ff4b2d432f4d86f0067fdc", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-http-server", + "sha256": "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8", "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f" }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.1955", "deps": [ @@ -5003,14 +5324,15 @@ }, "lavender-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-lavender-theme.git", - "sha256": "f3c00e683c1ca192adbd11c51810c882bc3a5c6cc190cc16016136a1f310e9d5", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-lavender-theme", + "sha256": "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k", "rev": "d9e4d7838167a0e07fb5d04877a7b34c4b4cc1ee" }, "recipe": { "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -5019,42 +5341,45 @@ }, "actionscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austinhaas/actionscript-mode.git", - "sha256": "24612a82172f4357133694134af1468135f49a8f3abe6fc0d44dfe398f14bde7", + "tag": "fetchFromGitHub", + "owner": "austinhaas", + "repo": "actionscript-mode", + "sha256": "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94", "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09" }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1328", "deps": [] }, "electric-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xwl/electric-spacing.git", - "sha256": "d69595a6d89c94778b9a3be0cb4582ce1f2bc5644611109f5c8d230203583760", + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "electric-spacing", + "sha256": "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn", "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e" }, "recipe": { "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.936", "deps": [] }, "fakir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-fakir.git", - "sha256": "3019b93769bcd0cf502ecbdf6a30fbe083d568f2fa67b0064a4d86fcd7bfaaf0", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-fakir", + "sha256": "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h", "rev": "1fca406ad7de80fece6319ff75d4230b648534b0" }, "recipe": { "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.1152", "deps": [ @@ -5065,14 +5390,15 @@ }, "z3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zv/z3-mode.git", - "sha256": "5f70200557cd8de87bf8524c0c6ad8cae9f49dc2befceb871679e959661ff5cc", + "tag": "fetchFromGitHub", + "owner": "zv", + "repo": "z3-mode", + "sha256": "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z", "rev": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1" }, "recipe": { "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1655", "deps": [ @@ -5089,21 +5415,22 @@ }, "recipe": { "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.444", "deps": [] }, "sos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/emacs-sos.git", - "sha256": "913edcbe062faf77f0f48aab23480671c854d353da0057bf83f608cc2b14394b", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733", "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c" }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.2203", "deps": [ @@ -5112,14 +5439,15 @@ }, "nasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/nasm-mode.git", - "sha256": "39fce880d0fc6663055a3cb678fa825c113982708ba5da7862fdb0f19fe4b944", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs", "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa" }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1858", "deps": [ @@ -5128,28 +5456,30 @@ }, "markup-faces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/markup-faces.git", - "sha256": "47640b358d3aee97a1a318688e07a25b849c126565c856ad8c2ce5d64f0dd1f0", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27", "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0" }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141110.217", "deps": [] }, "state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/state.git", - "sha256": "31311a2912992f73d5cf2d21d2a0906cd2d70ebebce6be1fbbc43c45209bdfec", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "state", + "sha256": "1930cfpvik6b7xqpbwf92cnnqcn1icmi0v0b75hxv9jxiibqavap", "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049" }, "recipe": { "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.447", "deps": [ @@ -5158,14 +5488,15 @@ }, "angry-police-captain": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolando2424/angry-police-captain-el.git", - "sha256": "eaa45a2d23aa8138532dc186e7a976601c3e17ca91bec70c7acc4775b43d0cd4", + "tag": "fetchFromGitHub", + "owner": "rolando2424", + "repo": "angry-police-captain-el", + "sha256": "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a", "rev": "d11931c5cb63368dcc4a48797962428cca6d3e9d" }, "recipe": { "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120829.752", "deps": [] @@ -5178,63 +5509,67 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140813.319", "deps": [] }, "bison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/bison-mode.git", - "sha256": "67b241d8b59d8717652f1047c5e465d0a92be73933607c9c3050a5ca95538c45", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "bison-mode", + "sha256": "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7", "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf" }, "recipe": { "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141119.243", "deps": [] }, "wgrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141016.1856", "deps": [] }, "pg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cbbrowne/pg.el.git", - "sha256": "601a81cbc26dc2e3852b0b206d62a77595c915c5d4fa203d8a6bff6b2dd907fe", + "tag": "fetchFromGitHub", + "owner": "cbbrowne", + "repo": "pg.el", + "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0", "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d" }, "recipe": { "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130731.1642", "deps": [] }, "calfw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-calfw.git", - "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.2149", "deps": [ @@ -5243,14 +5578,15 @@ }, "tabbar-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/tabbar-ruler.el.git", - "sha256": "b858c2149120e982a27e555d772da92e02d40f725f2aa4847b42265af8ff6b6f", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "tabbar-ruler.el", + "sha256": "0vvbzzw5l9j2gf2a8ajzf87x80ifm4npfpamgsi85s90j4ac4n5q", "rev": "5854ef040a1c45e1ce7dfebea6ed7953ce6bd2b9" }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1951", "deps": [ @@ -5259,28 +5595,30 @@ }, "gruber-darker-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/gruber-darker-theme.git", - "sha256": "75caee197b485fa6a399178de88929dfaed9ecd2a3eb35cce8ce5d2b0465748a", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "gruber-darker-theme", + "sha256": "12klcl22npffx363bsx3sbndkbnz564yi38pk6iscps8gccyxjkm", "rev": "25d52be23017f5a79d5eba53e767eab9d751819e" }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.126", "deps": [] }, "orgbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuhito/orgbox.git", - "sha256": "6e16b1fc4301f8b2782022a254361d10e79f13994812d863dfb3abf425ad0f89", + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55", "rev": "72373b09768cc2200d143af38e25a0c082e8375d" }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140528.2026", "deps": [ @@ -5290,42 +5628,45 @@ }, "kolon-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samvtran/kolon-mode.git", - "sha256": "dca909af2f55fd2688f200db18c0b6d188db67a4583de452bde5f6d779f7247b", + "tag": "fetchFromGitHub", + "owner": "samvtran", + "repo": "kolon-mode", + "sha256": "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw", "rev": "5af0955e280ae991862189ebecd3937c5fc8fb9f" }, "recipe": { "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140122.534", "deps": [] }, "mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/Mew.git", - "sha256": "8de30aa9e87487f999aa2dd9a297b4c93ed8b1ff330ce47ce6f5dc94685f4e3c", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "Mew", + "sha256": "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb", "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce" }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.154", "deps": [] }, "nand2tetris-assembler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1636", "deps": [ @@ -5335,14 +5676,15 @@ }, "pytest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ionrock/pytest-el.git", - "sha256": "e502eb19be17d7b743fd88778816f8548cd429998b27590c038c12e3375e9eda", + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "pytest-el", + "sha256": "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5", "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3" }, "recipe": { "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2325", "deps": [ @@ -5351,14 +5693,15 @@ }, "portage-navi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-portage-navi.git", - "sha256": "71ec3cd146fd69b571465240331f8be915db021039b6947f14f5187ec9e9a4de", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-portage-navi", + "sha256": "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i", "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f" }, "recipe": { "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141208.755", "deps": [ @@ -5368,14 +5711,15 @@ }, "mouse-slider-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/mouse-slider-mode.git", - "sha256": "fffdc519879c543e88c71e7b4734b64ec647810d072db7f2dec9e3a0ccf971cd", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "mouse-slider-mode", + "sha256": "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7", "rev": "a8d6489fe2a3c2769b421f93f3609f402c9b92f7" }, "recipe": { "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1600", "deps": [ @@ -5385,14 +5729,15 @@ }, "helm-circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lesharris/helm-circe.git", - "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "tag": "fetchFromGitHub", + "owner": "lesharris", + "repo": "helm-circe", + "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0", "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150317.44", "deps": [ @@ -5404,28 +5749,30 @@ }, "ruby-hash-syntax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ruby-hash-syntax.git", - "sha256": "59e434bf601df60e49d15a846a2ca251c7e6c82d54005a820a6d66d6b783eddc", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ruby-hash-syntax", + "sha256": "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv", "rev": "d73a498143a3a8d6d3a7720104f2f14e70b2e2ae" }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141010.1039", "deps": [] }, "skewer-reload-stylesheets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NateEag/skewer-reload-stylesheets.git", - "sha256": "43a72de24748c3a63d8b63bd14c4dd138de780ff067881a16b670ec4246118e0", + "tag": "fetchFromGitHub", + "owner": "NateEag", + "repo": "skewer-reload-stylesheets", + "sha256": "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3", "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060" }, "recipe": { "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150111.623", "deps": [ @@ -5434,28 +5781,30 @@ }, "nodejs-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abicky/nodejs-repl.el.git", - "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "tag": "fetchFromGitHub", + "owner": "abicky", + "repo": "nodejs-repl.el", + "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an", "rev": "3c51428ccda7b1c4b5cd4a51f9034e6ca3a053f8" }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.714", "deps": [] }, "ido-completing-read+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.1726", "deps": [ @@ -5465,28 +5814,30 @@ }, "package-filter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/package-filter.git", - "sha256": "86a17f674dd6f05291da85f833321431b226651893f25e02c61e66b6aa42ee44", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "package-filter", + "sha256": "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6", "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12" }, "recipe": { "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140105.1626", "deps": [] }, "sekka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/sekka.git", - "sha256": "f9f775bedebfd5f8d392e2a4773121058009284de98cfa813711568407955fa3", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7", "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.659", "deps": [ @@ -5497,14 +5848,15 @@ }, "auto-complete-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", - "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "auto-complete-exuberant-ctags", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0", "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140320.224", "deps": [ @@ -5513,42 +5865,45 @@ }, "rcirc-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/rcirc-notify.git", - "sha256": "fdc55aaac45d3467814b117fea8d8750b3771aeb127b7723bcbac772149d2b7a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "rcirc-notify", + "sha256": "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3", "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455" }, "recipe": { "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.1604", "deps": [] }, "full-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/full-ack.git", - "sha256": "46448181df74d25c09098f8261426848b40481fda7d2de598053e75880112533", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "full-ack", + "sha256": "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5", "rev": "761d846e105b150f8e6d13d7a8983f0248313a45" }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140223.1132", "deps": [] }, "elogcat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/youngker/elogcat.el.git", - "sha256": "25784d00effc275af6c892749203aa409906d3d16f7e533dd0ce6ee7fa4299c9", + "tag": "fetchFromGitHub", + "owner": "youngker", + "repo": "elogcat.el", + "sha256": "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15", "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f" }, "recipe": { "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1841", "deps": [ @@ -5558,14 +5913,15 @@ }, "helm-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -5575,14 +5931,15 @@ }, "magit-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-annex.git", - "sha256": "68d0218de9e4da03078d8c65e6202625031749b076a6289d8de0b6f585ad8c1b", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-annex", + "sha256": "1h1i8712w0pn6bhc5lpps7ri7bf6f3vy23i6qld13hdgvimgisd9", "rev": "154345a5192f3581af105022541911398a566cce" }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.38", "deps": [ @@ -5599,7 +5956,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1443", "deps": [ @@ -5609,28 +5966,30 @@ }, "sync-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/sync-recentf.git", - "sha256": "59f7040ac78d34f21737b8a5fc7eb8f605c440b29a71aaa8e64af701d072d765", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "sync-recentf", + "sha256": "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x", "rev": "530254b1f1b569ce958dadad2620c67c31835d5c" }, "recipe": { "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.526", "deps": [] }, "helm-hatena-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", - "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", "rev": "497d33632f195354eaa24670db0804c846b7261b" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.826", "deps": [ @@ -5639,14 +5998,15 @@ }, "helm-emms": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-emms.git", - "sha256": "b481309f09dd4be0478e138b65e48ce80ec4fda14dc22e064edc06b20ed0600c", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-emms", + "sha256": "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl", "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d" }, "recipe": { "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1528", "deps": [ @@ -5658,42 +6018,45 @@ }, "xquery-tool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paddymcall/xquery-tool.el.git", - "sha256": "879e87d74e1a34b3fb2e4d07c46a61c8dc39943e7729d1c7868bbbf717d5dd93", - "rev": "1ecc31dd7809a152ac43f262e8839d1405b012be" + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "xquery-tool.el", + "sha256": "06mcz6ppr1cc5dfbxqbxhzwzmgpi8m3wbncckq5qi9xq5wvbah1d", + "rev": "af60aba324819ff6692f89f1c85aac59b820bf18" }, "recipe": { "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1055", + "version": "20151218.907", "deps": [] }, "gruvbox-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Greduan/emacs-theme-gruvbox.git", - "sha256": "2450e82d4a09040b0056afdade19fa0994230bb637a032d23e9112f462ffa68d", - "rev": "f4035b67ab16f4b2c674dc5c637eeba15690c38a" + "tag": "fetchFromGitHub", + "owner": "Greduan", + "repo": "emacs-theme-gruvbox", + "sha256": "1i9qjv39w6kvk7r829gagp4sbc1w0hp0qgnqxya1jac56h6ylhky", + "rev": "7cc236f7e357d3e53914f46d98a29588d2e7de62" }, "recipe": { "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151210.1632", + "version": "20151217.934", "deps": [] }, "java-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nekop/yasnippet-java-mode.git", - "sha256": "5a6f5a6da3314ca8baee0ae06dc2827b24d2f0486a940339e043948cdebb3c1f", + "tag": "fetchFromGitHub", + "owner": "nekop", + "repo": "yasnippet-java-mode", + "sha256": "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i", "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8" }, "recipe": { "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140728.36", "deps": [ @@ -5702,14 +6065,15 @@ }, "emacsql-psql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -5721,58 +6085,62 @@ }, "jazz-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donderom/jazz-theme.git", - "sha256": "604995d0d80c7e943ce9d6d41f47cacff3d8fb087aed912dbd84b06ef4db0a02", + "tag": "fetchFromGitHub", + "owner": "donderom", + "repo": "jazz-theme", + "sha256": "00havgs6xc44plnr3vbs13xxiwygr93izm6nx4y98zhcv389ajb0", "rev": "b9f66600fe33d25a230ed26a69f3abaaca03b453" }, "recipe": { "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1044", "deps": [] }, "yaml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "c3ae58ee2491ebebcce31418c27c7811a757eb303c739b2ab72c87a407190ca6", - "rev": "dcdcd81c9e875328e5ded06be61a603cc97face9" + "tag": "fetchFromGitHub", + "owner": "yoshiki", + "repo": "yaml-mode", + "sha256": "1yy7f7prg2v17mzj6g0rvdkvrs96cjqzdz8xbs4zl4nbmj3lmay5", + "rev": "6ddd55205224c2f2c306699e021cedbaeecfaaf2" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1246", + "version": "20151218.554", "deps": [ "emacs" ] }, "point-stack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattharrison/point-stack.git", - "sha256": "8199db22e57b92f509a7b08166965d7c1273d02443d3824f8eff1dc9dd1432dc", + "tag": "fetchFromGitHub", + "owner": "mattharrison", + "repo": "point-stack", + "sha256": "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1", "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24" }, "recipe": { "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140102.1423", "deps": [] }, "ncl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/ncl-mode.git", - "sha256": "8de27cfd2f3d2a0e88bfeb32b0db78ebc1c74a26efaaf3bc4d419debd6ebbb62", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n", "rev": "01559734504d2712606ac30916252d788ea73124" }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.1129", "deps": [ @@ -5781,14 +6149,15 @@ }, "go-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-direx.git", - "sha256": "5a3874ba35615b287b48ec8b9b6cfd8eb8f91f709661f39d8210472ce6547415", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y", "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432" }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.2043", "deps": [ @@ -5804,7 +6173,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1552", "deps": [ @@ -5813,42 +6182,45 @@ }, "shampoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dmatveev/shampoo-emacs.git", - "sha256": "7224c35f1a620438a475e662726d26b831d6dc99ad7d421d8d6cf08d9812cdab", + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x", "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf" }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.419", "deps": [] }, "dash-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stanaka/dash-at-point.git", - "sha256": "7a4a6ee258d0485d47d0d88e4aeda60e16dd056c004de75917365acd215a3f67", + "tag": "fetchFromGitHub", + "owner": "stanaka", + "repo": "dash-at-point", + "sha256": "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj", "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c" }, "recipe": { "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.235", "deps": [] }, "window-purpose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/emacs-purpose.git", - "sha256": "0b655eb0b7c36b0cdb68b8d77a142e2cb206e8d6c5ca9be0d13ef3a48a1f2b5f", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "1hfn3x08h426kw0m1qyrjy8kp6nm56d1h5zlfiwj22kfc560gb4v", "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75" }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.440", "deps": [ @@ -5860,14 +6232,15 @@ }, "boxquote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davep/boxquote.el.git", - "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "tag": "fetchFromGitHub", + "owner": "davep", + "repo": "boxquote.el", + "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73", "rev": "4c49b2046647ed187920c885e175ed388f4833dc" }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20081011.1526", "deps": [] @@ -5880,21 +6253,22 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101129.2052", "deps": [] }, "ein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1316", "deps": [ @@ -5904,14 +6278,15 @@ }, "scratches": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/scratches.git", - "sha256": "8c6e1000e5be6538ebc35fe790a316d3630c0d93994c1dfdde3fcf4b2ef01582", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "scratches", + "sha256": "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc", "rev": "9441afe6396ca38f08029123fab5d87429cbf315" }, "recipe": { "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2316", "deps": [ @@ -5921,14 +6296,15 @@ }, "magic-filetype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/magic-filetype.el.git", - "sha256": "d39ffec1799d1999f6182e44669dce7f01a668f811ca17d51f3c920b644b7ceb", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "magic-filetype.el", + "sha256": "1q5bjk9dzq8my804kd6i185522mxdkwrh2lhc2nvjbj4idx7rgll", "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e" }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.1057", "deps": [ @@ -5938,14 +6314,15 @@ }, "helm-j-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-j-cheatsheet.git", - "sha256": "c30086e3121354c89c798f5f22fc07d51b561e6cf71a43503861497d3693e5bd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-j-cheatsheet", + "sha256": "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v", "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4" }, "recipe": { "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.641", "deps": [ @@ -5954,28 +6331,30 @@ }, "py-yapf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-yapf.el.git", - "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-yapf.el", + "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x", "rev": "766e57448639ff95eeb018f6d8bdf09170094218" }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.953", "deps": [] }, "paper-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/paper-theme.git", - "sha256": "9170a2cccc57de956daf1b38cb1bd7233d44c629178c0ce1f0aff9b17d5c6857", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "0mv8biyv3ydgy3hhr30p57348g93swdwnf0vmxnrbpjprk6a4w4i", "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182" }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1000", "deps": [ @@ -5985,28 +6364,30 @@ }, "noctilux-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sjrmanning/noctilux-theme.git", - "sha256": "ba1bf8c99c84dd07daee5a4ce8235852cbdb18644e96c53d9c9cbcd2f4b837a8", + "tag": "fetchFromGitHub", + "owner": "sjrmanning", + "repo": "noctilux-theme", + "sha256": "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs", "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626" }, "recipe": { "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.947", "deps": [] }, "emms-mark-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/emms-mark-ext.git", - "sha256": "9418868d1a21c968b10370cfbdb0bc1b452f21e12be79a0bc8f6027a91d5470d", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "emms-mark-ext", + "sha256": "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l", "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541" }, "recipe": { "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130528.2227", "deps": [ @@ -6021,21 +6402,22 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.2036", "deps": [] }, "finalize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-finalize.git", - "sha256": "6ad646d2b59cee68a379c2b54140fba654acf9011d1d8696a741f36ca8954fc2", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa", "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e" }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140127.1246", "deps": [ @@ -6046,28 +6428,30 @@ }, "mpg123": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/mpg123.git", - "sha256": "eb1d3da510cac9689c7ae5405f8868ae9d2b7cb7d498310a8b660d51790de324", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "mpg123", + "sha256": "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb", "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c" }, "recipe": { "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1350", "deps": [] }, "paredit-everywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/paredit-everywhere.git", - "sha256": "db05f512bf60bdc5e9b6a6a11dbe16046324af2ca834d24a0235c9a299752ff2", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "paredit-everywhere", + "sha256": "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv", "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9" }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.2344", "deps": [ @@ -6076,28 +6460,30 @@ }, "jinja2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paradoxxxzero/jinja2-mode.git", - "sha256": "b38c734e19f062791adb2f446fb0dc361406043bfcd5384876f84f543b86d793", + "tag": "fetchFromGitHub", + "owner": "paradoxxxzero", + "repo": "jinja2-mode", + "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381", "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86" }, "recipe": { "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.407", "deps": [] }, "org-caldav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dengste/org-caldav.git", - "sha256": "5f61a7c67d0f4d093097d0da2bc784362e7585ee27150e79f50afcc74dcf0253", + "tag": "fetchFromGitHub", + "owner": "dengste", + "repo": "org-caldav", + "sha256": "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz", "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65" }, "recipe": { "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150131.352", "deps": [ @@ -6106,14 +6492,15 @@ }, "eval-in-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/eval-in-repl.git", - "sha256": "65e99be7de095ee6276624197f0640c94a95f1628796b61f553f7a30ac00d161", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "eval-in-repl", + "sha256": "0qfi02n30yizalgvd5l7cbqrajn98037y694cqkycph9vvkrpsb5", "rev": "c2c677d39cfad572fe487661ac9e8a70fb88749f" }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.528", "deps": [ @@ -6123,28 +6510,30 @@ }, "gherkin-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/candera/gherkin-mode.git", - "sha256": "163a3f1279cf2f53f72affa6497b367abe6ac5977a0fdb7b95157e011c608128", + "tag": "fetchFromGitHub", + "owner": "candera", + "repo": "gherkin-mode", + "sha256": "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8", "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d" }, "recipe": { "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.1004", "deps": [] }, "helm-perldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-perldoc.git", - "sha256": "60b3e77f7df8763dd3bd7322e0526a1298ba9d9dd7c004a87a6d216a60a39d49", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-perldoc", + "sha256": "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs", "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33" }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2227", "deps": [ @@ -6155,14 +6544,15 @@ }, "relative-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/relative-buffers.git", - "sha256": "c97cc94f1e565e727d3c40ee7fcfb14b35b8828f7c6ba8f2d6bad904771b9ef6", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "relative-buffers", + "sha256": "023fwcqyy5gg234m772vpws751pharjwn3b0433i2sszna2z6xrf", "rev": "7e37e118cc231c8581891bef0e4b5bb775920070" }, "recipe": { "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -6174,14 +6564,15 @@ }, "helm-grepint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kopoli/helm-grepint.git", - "sha256": "65d21d875ac59f75e9418f205bfac44a695890800ab68c207af900bb3899751d", + "tag": "fetchFromGitHub", + "owner": "kopoli", + "repo": "helm-grepint", + "sha256": "07bmk4wbn07rg8h8rdhah285hsaaqkx5n84g87lpb7y5ba3ivlk5", "rev": "0327f64121751065a85c76527dda2c037c8fb0d8" }, "recipe": { "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1137", "deps": [ @@ -6191,14 +6582,15 @@ }, "emms-info-mediainfo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/emms-info-mediainfo.git", - "sha256": "2f4717ba2013c8567f2be6dd1d7f4f93c2277eb4224d335c861e3dccecb4b1dd", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "emms-info-mediainfo", + "sha256": "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n", "rev": "bce16eae9eacd38719fea62a9755225a888da59d" }, "recipe": { "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131223.700", "deps": [ @@ -6207,28 +6599,30 @@ }, "javap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hiredman/javap-mode.git", - "sha256": "8f72f6caee3298a3f1b4ca26f3653cb856bd875dedd72520b167a44d5e25191c", + "tag": "fetchFromGitHub", + "owner": "hiredman", + "repo": "javap-mode", + "sha256": "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg", "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629" }, "recipe": { "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120223.1608", "deps": [] }, "ttrss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pedros/ttrss.el.git", - "sha256": "34ba33fa54b4f8503d6325eecbdd334474d15d1ee3e025aead679a1ac34d0e29", + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil", "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24" }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130409.1249", "deps": [ @@ -6237,70 +6631,75 @@ }, "term-run": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/term-run-el.git", - "sha256": "3bac85c7e51d35e1cae2dd5b7f9044cd65533d2bf14423da3cd6083a1a5cf2d7", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "term-run-el", + "sha256": "0m3h89carkbgr043d0l573igf9qrdhv5nxnxq5j9x4xc0j7sbnzc", "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb" }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.206", "deps": [] }, "anx-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmloveland/emacs-appnexus-api.git", - "sha256": "c155289b6ca5e9314b91acd46a1c0721089fa4db27f3b1bbb31fa78ab2fafd3b", + "tag": "fetchFromGitHub", + "owner": "rmloveland", + "repo": "emacs-appnexus-api", + "sha256": "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1", "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0" }, "recipe": { "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140208.914", "deps": [] }, "smooth-scrolling": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/smooth-scrolling.git", - "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131219.2239", "deps": [] }, "helm-cmd-t": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/helm-cmd-t.git", - "sha256": "7ae3bfafcb82719a83298bea07efc21c59b1514fb6cd2c3644f7f18d76109781", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "helm-cmd-t", + "sha256": "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs", "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb" }, "recipe": { "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.1357", "deps": [] }, "flymake-python-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-python-pyflakes.git", - "sha256": "229c799e179084202877e15b5286c9f90821bf95ffc91339406097540e39fa6b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-python-pyflakes", + "sha256": "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp", "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a" }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131127.206", "deps": [ @@ -6315,21 +6714,22 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.1121", "deps": [] }, "flycheck-cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-cask.git", - "sha256": "da09cf110b0d23dfc6bc7087611bfd0726bf52ad3f1c2c40a850633eea5825e2", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n", "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238" }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.653", "deps": [ @@ -6340,14 +6740,15 @@ }, "fzf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/fzf.el.git", - "sha256": "134be086673c38c2c7a9602f0978bc1dd2c628d959433cdd95585573adf82b5f", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "fzf.el", + "sha256": "0prbz2np6maqjpfkqhsrv4lcdlhxpiw0jbv0m73w4f1wcy3f0jqk", "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f" }, "recipe": { "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.833", "deps": [ @@ -6356,28 +6757,30 @@ }, "el-get": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/el-get.git", - "sha256": "89445520430c47659a6e37bdbb9d26934b7830136c45c61bb341c04e9e4bd6bd", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "el-get", + "sha256": "0ppcja9mhjm0ymln72nigilkl0jj9mwxclw3v5djdcfq0xp1mc77", "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e" }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1015", "deps": [] }, "markdown-mode+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/markdown-mode-plus.git", - "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", "rev": "f35e63284c5caed19b29501730e134018a78e441" }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120829.710", "deps": [ @@ -6386,14 +6789,15 @@ }, "feature-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michaelklishin/cucumber.el.git", - "sha256": "ad68454443473eab381c7d3e8456abd4d67de23d7e2ad64edca041a95c3f62a1", + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "18b27xfajhd0vi7dcaky7pi7vmnlmdb88gkx3hwangj78d24as5d", "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d" }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141121.1230", "deps": [] @@ -6406,7 +6810,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1550", "deps": [ @@ -6421,35 +6825,37 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.1829", "deps": [] }, "unkillable-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/unkillable-scratch.git", - "sha256": "4c61e80e71b8aca303168b9ef7f0aed54fc494eaeb2f28ef5fabe09dab8bea76", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac", "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8" }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.118", "deps": [] }, "edit-server-htmlize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/frobtech/edit-server-htmlize.git", - "sha256": "835ec7929f43517cce6cc3bf6fe2ba2641b6083e5c999056fe6218d60bc19d9c", + "tag": "fetchFromGitHub", + "owner": "frobtech", + "repo": "edit-server-htmlize", + "sha256": "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3", "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392" }, "recipe": { "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130329.1748", "deps": [ @@ -6458,14 +6864,15 @@ }, "multi-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/multi-line.git", - "sha256": "e96adce716494008044b875e6e4c042071f61f879bd0b7549c7a9a888c43b899", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "multi-line", + "sha256": "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5", "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233" }, "recipe": { "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1813", "deps": [ @@ -6474,28 +6881,30 @@ }, "crm-custom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/crm-custom.git", - "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1148", "deps": [] }, "soundcloud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tthieman/soundcloud.el.git", - "sha256": "db14f9ccec3456463e25d208788d2665d609841b2d2f52732ef801e44d651cd5", + "tag": "fetchFromGitHub", + "owner": "tthieman", + "repo": "soundcloud.el", + "sha256": "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v", "rev": "f998d4276ea90258909c698f6a5a51fccb667c08" }, "recipe": { "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.2226", "deps": [ @@ -6509,14 +6918,15 @@ }, "ace-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-link.git", - "sha256": "880584ac44ffae0c1e6161abc92b9baee5ec6ab7f293dab6a6cdb6ac77b9c773", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-link", + "sha256": "0wy7p5vsrdndlsvdm4zjnxmfrrdfkcmwkav1c4g0rbpz8jn881c8", "rev": "b03a91df61f8885c33c8c6812e656a86918572f0" }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.1035", "deps": [ @@ -6525,14 +6935,15 @@ }, "anaphora": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/anaphora.git", - "sha256": "7f008c227a19feedd9d53ed7c9bcc8620297bb36a7bf83467fb4d8057427ed8d", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav", "rev": "ed99ad4502e6fccde76050496984c6454676a410" }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140728.1736", "deps": [] @@ -6545,7 +6956,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.2302", "deps": [] @@ -6558,21 +6969,22 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.1320", "deps": [] }, "tiny": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/tiny.git", - "sha256": "43b1b69cb2c9d56358c784063b0d05dd7d81928b2e692e055bdeb9efc042bf56", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "tiny", + "sha256": "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3", "rev": "d775201a6e14aae03dda032132aa288ca93bddc4" }, "recipe": { "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.405", "deps": [] @@ -6586,7 +6998,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1120", "deps": [ @@ -6596,14 +7008,15 @@ }, "fish-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wwwjfy/emacs-fish.git", - "sha256": "58bd36b5d693c258bdeb74b62acf8f47f177664b54b3e0648c193635d314083e", + "tag": "fetchFromGitHub", + "owner": "wwwjfy", + "repo": "emacs-fish", + "sha256": "0gh82k9kadhriijf1csl9dk7gwa7iz7jmdklxfymihlkssskdgaq", "rev": "683af1c17c9dfe947166ae4a73fe97a4920d7973" }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.334", "deps": [ @@ -6612,42 +7025,45 @@ }, "ercn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/ercn.git", - "sha256": "9b0512b3cd73439bb2a18df24036650abcb7489c84789d7d0db64ef25d6a8377", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv", "rev": "79a4df5609046ae2e2e3375998287be6dda80615" }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150523.1003", "deps": [] }, "roy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/folone/roy-mode.git", - "sha256": "e8931710fe57510874f561650c39c614f67f7b5aa915d9376f0be6dedb446dde", + "tag": "fetchFromGitHub", + "owner": "folone", + "repo": "roy-mode", + "sha256": "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r", "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65" }, "recipe": { "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121208.558", "deps": [] }, "clojars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshuamiller/clojars.el.git", - "sha256": "6673e1acac09915a900578e13ef9fefd06d96889251c0f6601709bda014b28e4", + "tag": "fetchFromGitHub", + "owner": "joshuamiller", + "repo": "clojars.el", + "sha256": "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6", "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f" }, "recipe": { "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1433", "deps": [ @@ -6657,14 +7073,15 @@ }, "jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.329", "deps": [ @@ -6674,14 +7091,15 @@ }, "list-packages-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/list-packages-ext.git", - "sha256": "3a5024de92a3a5e3f6a76157ad6647bfaf55ba5ee4f4149132bf797346c1870a", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "list-packages-ext", + "sha256": "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s", "rev": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a" }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1116", "deps": [ @@ -6699,7 +7117,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140830.1721", "deps": [ @@ -6708,28 +7126,30 @@ }, "railgun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbriggs/railgun.el.git", - "sha256": "85ab5f757c8b718994830f37301ebad78487e2c0d3d0827996c39bea799b8ffd", + "tag": "fetchFromGitHub", + "owner": "mbriggs", + "repo": "railgun.el", + "sha256": "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh", "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8" }, "recipe": { "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121017.57", "deps": [] }, "clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clj-refactor.el.git", - "sha256": "bf744ac943dd6aad1a5c6eeb255ba601832d626ec89da91ce06d2fbea7a364de", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clj-refactor.el", + "sha256": "1xvhypskaap9rlvza34ad8bry1g3zr53wf8a3zbxj024lbw37ay2", "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7" }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.400", "deps": [ @@ -6747,28 +7167,30 @@ }, "org-autolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/calvinwyoung/org-autolist.git", - "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "tag": "fetchFromGitHub", + "owner": "calvinwyoung", + "repo": "org-autolist", + "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani", "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.905", "deps": [] }, "nameframe-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.407", "deps": [ @@ -6778,14 +7200,15 @@ }, "helm-bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-bind-key.el.git", - "sha256": "3e1040f9948ac0592777b2aa14aa69a916bc8c3a96d0a23c725a684ff0f1acf2", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-bind-key.el", + "sha256": "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y", "rev": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25" }, "recipe": { "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.2315", "deps": [ @@ -6795,14 +7218,15 @@ }, "evil-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "684159f82702dd310c050c6d8197b77b39acb7b43fa358a5f0a07a79a5b67230", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-escape", + "sha256": "1dl201jx7kfmkhd7ism6wlmlnbgfg1qn17faryz7kc5v2mms69b4", "rev": "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1311", "deps": [ @@ -6813,14 +7237,15 @@ }, "camcorder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/camcorder.el.git", - "sha256": "c8bd8748e38e568c7de0fa1f455ffcffe7576ce316375a1b056df63d7d9ab5bb", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "camcorder.el", + "sha256": "1fxmk9ykvxkd0ldmldqnwdn5grzzzigla7zsw1yqqmlfwd48ggf8", "rev": "bfef46deae617825089fb06591e5c25c82a2d4be" }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1012", "deps": [ @@ -6831,28 +7256,30 @@ }, "make-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/make-color.el.git", - "sha256": "5b380e1ab864c63a9ed97a5ba12233d53a304ae551633b6bfedd30c4f9d41879", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "make-color.el", + "sha256": "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c", "rev": "a1b34e95ccd3ebee4fba1489ab613d0b3078026d" }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140625.650", "deps": [] }, "nand2tetris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1651", "deps": [ @@ -6861,28 +7288,30 @@ }, "german-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/german-holidays.git", - "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.943", "deps": [] }, "traad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.815", "deps": [ @@ -6895,42 +7324,45 @@ }, "save-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/save-sexp.git", - "sha256": "2c310c995f4b2745709269ba9f14eb75fbd18b37c6e320907518639b70b3ba49", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "save-sexp", + "sha256": "0jdsndq9nqqqfn821qy66y5x3yvmxca9zfk9j9q4a9sbbychqc9c", "rev": "31bd739269e14df70f9519417370ba69a53e540d" }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.1046", "deps": [] }, "fringe-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/fringe-helper.el.git", - "sha256": "dce636d4d268c687b14ef4c2804ea02a7875f9e88bf352e7bf5a69434cebc431", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d", "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd" }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140620.1609", "deps": [] }, "bufshow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/bufshow.git", - "sha256": "4615a76ead605c28cc318591774a883d966ec8a0585faf5e2112f9237e43ce30", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh", "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130711.1239", "deps": [ @@ -6939,14 +7371,15 @@ }, "esh-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/esh-help.git", - "sha256": "baa65aafb646faf9e17a3afcfc2e0d3277e59497524e9385ebb0f7614e6fdbf9", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "esh-help", + "sha256": "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms", "rev": "3dc15f2f6086d4e4da977468fda67229a859c927" }, "recipe": { "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.422", "deps": [ @@ -6961,21 +7394,22 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121115.443", "deps": [] }, "ebal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ebal.git", - "sha256": "f7a6ff648e81738a010180e1889a741966c487e9f072db9101dd57336f923590", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0l2nhf6m6m01y2gw1fkn3zsjvmm1w02qj9zp4nmhgdl0qkllhdz5", "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13" }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.15", "deps": [ @@ -6986,14 +7420,15 @@ }, "coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/coffee-mode.git", - "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "coffee-mode", + "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5", "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.828", "deps": [ @@ -7009,21 +7444,22 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110722.1051", "deps": [] }, "smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/smartparens.git", - "sha256": "21916a0e68a041d94bcacdfd89fca55bb2bfe0ce4638f925626671585cc7172d", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "1zs6jxl7a9hwap78w81s2h62jicikn1lyj0yxiiz0gll428p3rnj", "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3" }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1707", "deps": [ @@ -7033,14 +7469,15 @@ }, "grunt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gempesaw/grunt.el.git", - "sha256": "5b0bd28ab647d681a7700dd11568ab31c18e00eda41b6490fb579dab2762d3da", + "tag": "fetchFromGitHub", + "owner": "gempesaw", + "repo": "grunt.el", + "sha256": "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r", "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29" }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1029", "deps": [ @@ -7051,30 +7488,32 @@ }, "buffer-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/buffer-utils.git", - "sha256": "1083e13f138fbf62796f951b2e58816669b7670cacbb6becd9724cb05d34bf90", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "buffer-utils", + "sha256": "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p", "rev": "685b13457e3a2085b7584e41365d2aa0779a1b6f" }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140512.900", "deps": [] }, "elscreen-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robario/elscreen-persist.git", - "sha256": "ef941e8dde02a163bd48405d4533e5450b53fc149cd8ec576abfeee923183165", - "rev": "9d8c9a2f0fc39e064c51b703d84160c06629477d" + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20141220.238", + "version": "20151218.126", "deps": [ "elscreen", "revive" @@ -7082,28 +7521,30 @@ }, "scheme-here": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/judevc/scheme-here.git", - "sha256": "396663288624bbbe8795f0fd6aea37969df025d366634ced56482e9be1cd9b25", + "tag": "fetchFromGitHub", + "owner": "judevc", + "repo": "scheme-here", + "sha256": "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir", "rev": "430ba017cc530865218de23a8f7985095a58343f" }, "recipe": { "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141028.218", "deps": [] }, "dictcc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cqql/dictcc.el.git", - "sha256": "7716c0814fb39839a2f2e79c7c2fbbd5cbdb49c12a68cbfd088dddd0a96fcc81", + "tag": "fetchFromGitHub", + "owner": "cqql", + "repo": "dictcc.el", + "sha256": "0jv4r9l8n7k2m85f4nnj6igsav4hmaq41gi1mp662mgmgfpaf0wl", "rev": "5cc898de535536380e1031b67421bd2a00cdd689" }, "recipe": { "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.455", "deps": [ @@ -7116,14 +7557,15 @@ }, "ido-clever-match": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bogdanp/ido-clever-match.git", - "sha256": "7bd351520b6206497f163b7075e8cb9a79e1af356c30fb0aa00d1c269ce8f455", + "tag": "fetchFromGitHub", + "owner": "Bogdanp", + "repo": "ido-clever-match", + "sha256": "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6", "rev": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3" }, "recipe": { "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1226", "deps": [ @@ -7133,14 +7575,15 @@ }, "pyenv-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pyenv-mode.git", - "sha256": "a9b2dd824e7f96be72c49dc944caa76dc380e6216a8a855ad1b5d1a9350829a5", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pyenv-mode", + "sha256": "0017xk95293sc37127hg9bbbh5glq34sdc1b6bx6ykzny6g49fd3", "rev": "93ddeb2c0fabc224496cdf5ff688243a208376c4" }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.441", "deps": [ @@ -7149,28 +7592,30 @@ }, "iplayer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csrhodes/iplayer-el.git", - "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.455", "deps": [] }, "ruby-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-tools.git", - "sha256": "a344c12bda2fd00215db7e585e92c0f07adb0ab82f852c819108a0cf18403701", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq", "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18" }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1015", "deps": [] @@ -7183,35 +7628,37 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.720", "deps": [] }, "hardcore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/hardcore-mode.el.git", - "sha256": "cb3182e9524931ce6d7d8eb799a62b2e99aa3c93c6fb22c67787f57707409388", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb", "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d" }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.101", "deps": [] }, "e2wm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-R.el.git", - "sha256": "2e86a886f2927ab3e580fec654b90b067f80bbd4ffac6083161fc43ade450a46", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "0xjgdd6xgxy1rfiah95w7wzjriqqf4hi87lma8v4f59g312zrhwy", "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b" }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130506.8", "deps": [ @@ -7222,84 +7669,90 @@ }, "bibtex-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/plantarum/bibtex-utils.git", - "sha256": "ed26628ba13c8a66e0e5b02509017e07d95094f67b4c4d9b50708f2e808af368", + "tag": "fetchFromGitHub", + "owner": "plantarum", + "repo": "bibtex-utils", + "sha256": "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8", "rev": "1695db9f4f9198bb27f219bd4da7d34a9ae58069" }, "recipe": { "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.847", "deps": [] }, "fold-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/fold-this.el.git", - "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.542", "deps": [] }, "mowedline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/mowedline.git", - "sha256": "5386a121a36f481db8feded92b798a26a0542e7781afebe60fd3d712e8e53189", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338", "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19" }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.1209", "deps": [] }, "keychain-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keychain-environment.git", - "sha256": "9125bf86edaa9a10537c4918cd3126a1ebed6e3cca99df41658abe8797dfa776", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci", "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe" }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150416.1458", "deps": [] }, "parent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/parent-mode.git", - "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.1800", "deps": [] }, "frame-tag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liangzan/frame-tag.el.git", - "sha256": "14a3724395839fede34a2f2d61c3a55c4ea619b316c91a735b419e0bc8348370", + "tag": "fetchFromGitHub", + "owner": "liangzan", + "repo": "frame-tag.el", + "sha256": "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30", "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17" }, "recipe": { "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.118", "deps": [ @@ -7308,14 +7761,15 @@ }, "midje-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bpoweski/midje-test-mode.git", - "sha256": "51b5717bc2e30ec904ec4b28b5fb4655d9b67bc250f85e271c1e6d5bd8ed9537", + "tag": "fetchFromGitHub", + "owner": "bpoweski", + "repo": "midje-test-mode", + "sha256": "0f3iq4ghi4ig2by1smfciavr2f0lx6vhvajykxdfs0afn006w4cs", "rev": "46fc081865d48f30b950f21a597eadd59a802fc9" }, "recipe": { "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.1114", "deps": [ @@ -7325,14 +7779,15 @@ }, "git-gutter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter.git", - "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.203", "deps": [ @@ -7342,16 +7797,17 @@ }, "flycheck-flow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-flow.git", - "sha256": "45e03e5c12ee5dd2a423e59919bab194439f2c297b0f939d4363b7a22a6d363b", - "rev": "9629a5dc9a0662ea513783105fc884855379b89c" + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-flow", + "sha256": "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx", + "rev": "6a6307a3998531279feab742321192cfc0c6e90a" }, "recipe": { "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151027.1716", + "version": "20151218.604", "deps": [ "flycheck" ] @@ -7364,21 +7820,22 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091012.1230", "deps": [] }, "stylus-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150313.1012", "deps": [ @@ -7387,28 +7844,30 @@ }, "peg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ellerh/peg.el.git", - "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.141", "deps": [] }, "cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/cask.git", - "sha256": "f88f09cbeeb57689c519e6a29258db64214035a7bf7b2d023f9d0768d57337f8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y", "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5" }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.728", "deps": [ @@ -7423,28 +7882,30 @@ }, "pcmpl-homebrew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/pcmpl-homebrew.git", - "sha256": "244aeb55b9b18bcfb9da690426a15ebb87d18e0a5216dd3e7f1fb6024091259e", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "pcmpl-homebrew", + "sha256": "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4", "rev": "a2b9026a1b3c8206d0eca90c491c0397fb275f94" }, "recipe": { "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.2052", "deps": [] }, "ace-jump-helm-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", - "sha256": "538cd180f81e168cd63803b1a5a64332af2f91a4ae9f8e64a237cf2092b7d079", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-jump-helm-line", + "sha256": "0yfhny921krpl9j8x7xflj8jzbrj8fkabc8373b8q5hyz20d332k", "rev": "8400dbdd93d0442493f74f4030b09bbfac2d5700" }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1300", "deps": [ @@ -7454,56 +7915,60 @@ }, "keyword-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/keyword-search/keyword-search.git", - "sha256": "18bf0e5982aa8b4cf888e25dca8c56286cb9c71d4bf994a9f766b9982e9d847f", + "tag": "fetchFromGitHub", + "owner": "keyword-search", + "repo": "keyword-search", + "sha256": "0zw4klp9ifb6yylr9yab3p3vjv18as6clpg2i3w4r2xah9chxgqq", "rev": "1a01e3d5a43e48701cfab0332876284f5d3a1bba" }, "recipe": { "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.432", "deps": [] }, "puml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skuro/puml-mode.git", - "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "tag": "fetchFromGitHub", + "owner": "skuro", + "repo": "puml-mode", + "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz", "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1023", "deps": [] }, "gnus-summary-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/gnus-summary-ext.git", - "sha256": "cbec3a1111d2fc5e2b6f64c9326655f54e81593a1fd2d08fe7bc6eae0b1cebb7", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "gnus-summary-ext", + "sha256": "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b", "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b" }, "recipe": { "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.2033", "deps": [] }, "bbdb-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/bbdb-ext.git", - "sha256": "24d3b04f67b706057bde1e0afae6fdc69764c209f7598907b45732ec57e1cd25", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "bbdb-ext", + "sha256": "09fdw5byqcjpnh3qjngp171695y6zpkgl2hyvrxha1mpcx7v1lr4", "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc" }, "recipe": { "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.1352", "deps": [ @@ -7512,14 +7977,15 @@ }, "ac-html-csswatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-csswatcher.git", - "sha256": "39b3c8008b670ff4c91fe9cc60c05d66d69cf342b7ee3b8e933217f885e18b6b", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-csswatcher", + "sha256": "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr", "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221" }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1513", "deps": [ @@ -7534,35 +8000,37 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141021.1338", "deps": [] }, "gmail2bbdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/gmail2bbdb.git", - "sha256": "7f687cb5d31abe5ab4df19c8229dc51cbe8d11b2dd409e5c2007522ca3551006", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z", "rev": "f0e23a1262bb683285b381b1d142478ba345af1a" }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.2039", "deps": [] }, "wolfram-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/wolfram-mode.git", - "sha256": "7c446844b6243cb2cde60496d8aa84ed2e7c8cfa0c40a1f93da8a6f82403caf6", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "wolfram-mode", + "sha256": "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w", "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7" }, "recipe": { "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140118.957", "deps": [ @@ -7571,28 +8039,30 @@ }, "flymake-easy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-easy.git", - "sha256": "44dca289ebfead0259c991dbc1b29782441041d771c43885771c9f0f86a48d22", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc", "rev": "de41ea49503f71f997e5c359a2ad08df696c0147" }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140818.255", "deps": [] }, "sane-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/adamrt/sane-term.git", - "sha256": "7ce0efe6aa0daa7fd76b954552b5f24b134babdda0b257a393f6cbbf8435cbe4", + "tag": "fetchFromGitHub", + "owner": "adamrt", + "repo": "sane-term", + "sha256": "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w", "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7" }, "recipe": { "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.1802", "deps": [ @@ -7601,14 +8071,15 @@ }, "org-repo-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/org-repo-todo.git", - "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "org-repo-todo", + "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9", "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1541", "deps": [] @@ -7622,35 +8093,37 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.2103", "deps": [] }, "headlong": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/headlong.git", - "sha256": "387b5b253c75956dc08cb34cdc39e89bb6f6b7de05a14ce4caf73ba2cc35181a", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "headlong", + "sha256": "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq", "rev": "f6830f87f236eee88263cb6976125f72422abe72" }, "recipe": { "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.1026", "deps": [] }, "robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/robe.git", - "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1658", "deps": [ @@ -7659,14 +8132,15 @@ }, "espresso-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/espresso-theme.git", - "sha256": "d85f5b6f962c7a8bb4fcf8e56b76bae34c1ca7281aab1e974fd801ff1a912747", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "espresso-theme", + "sha256": "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq", "rev": "c3a524e873f33923fe511791197a66dea5156687" }, "recipe": { "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130301.148", "deps": [] @@ -7680,7 +8154,7 @@ }, "recipe": { "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1700", "deps": [ @@ -7690,28 +8164,30 @@ }, "git-auto-commit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/git-auto-commit-mode.git", - "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "git-auto-commit-mode", + "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh", "rev": "075e5f9ded66c2035581a7b216896556cc586814" }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.951", "deps": [] }, "company-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1224", "deps": [ @@ -7721,14 +8197,15 @@ }, "light-soap-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/light-soap-theme.git", - "sha256": "28ea7de39931fb9fb5a381d9b5332b8cac24de34a24d371ac9d8bc2a3e9ab111", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "light-soap-theme", + "sha256": "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8", "rev": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d" }, "recipe": { "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.945", "deps": [ @@ -7737,28 +8214,30 @@ }, "google-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/google-translate.git", - "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1420", "deps": [] }, "kfg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/kfg.git", - "sha256": "acc80331b30d70adfadef315bde21c22a672ee05b17c35c9227a72ff7b190877", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "kfg", + "sha256": "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c", "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97" }, "recipe": { "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140909.38", "deps": [ @@ -7773,21 +8252,22 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140807.1550", "deps": [] }, "puppet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/puppet-mode.git", - "sha256": "f87858f13c64aa3c525610daea0d017b042ef3f518976f9a0822fb0001eea76f", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp", "rev": "268ec790603a4121f62822ca6c26e9038a1b0375" }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.1408", "deps": [ @@ -7797,42 +8277,45 @@ }, "region-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/region-state.el.git", - "sha256": "2e3c23e8cd86e52bbcfa9c619f9ac555088e166a4959dfbece7f779c4307503f", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "region-state.el", + "sha256": "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f", "rev": "07ffb7d9ada2fcd204f3447f078c265d25f36f60" }, "recipe": { "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.438", "deps": [] }, "heroku-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonathanchu/heroku-theme.git", - "sha256": "4d469acc927b9f5cd6e1ba2ee259c0471dd6a5de09950ce2b402240291598839", + "tag": "fetchFromGitHub", + "owner": "jonathanchu", + "repo": "heroku-theme", + "sha256": "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx", "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d" }, "recipe": { "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.2119", "deps": [] }, "commify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ddoherty03/commify.git", - "sha256": "22e8330f721e34492ed79e83d5bce5a85b3cdef99693753b02250d775af269c4", + "tag": "fetchFromGitHub", + "owner": "ddoherty03", + "repo": "commify", + "sha256": "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa", "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a" }, "recipe": { "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.338", "deps": [ @@ -7841,56 +8324,60 @@ }, "fillcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snarfed/fillcode.git", - "sha256": "87f01c76f0572de76081368fdfcdf42f63f7994527d1fc7d7bd8b4ca56af3cf5", + "tag": "fetchFromGitHub", + "owner": "snarfed", + "repo": "fillcode", + "sha256": "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47", "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8" }, "recipe": { "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.1141", "deps": [] }, "gs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/emacs-grads.git", - "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", "rev": "1a13051db21b999c7682a015b33a03096ff9d891" }, "recipe": { "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.406", "deps": [] }, "mip-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gaudecker/mip-mode.git", - "sha256": "cc4e02c5d93ca9fb3f9ecef74f0a182362423fa13ae2b7fb00b68104488c698a", + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "mip-mode", + "sha256": "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc", "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c" }, "recipe": { "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.17", "deps": [] }, "marmalade-client": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-marmalade-upload.git", - "sha256": "99ae633075f61392a8c6d893b3ba26997edb2ef2f79022e7afc545671308f304", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-marmalade-upload", + "sha256": "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr", "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a" }, "recipe": { "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1407", "deps": [ @@ -7901,14 +8388,15 @@ }, "live-code-talks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/live-code-talks.git", - "sha256": "a231172de5fa098b4b1fdce86491fee9579ec1a8b5ff7e522fa7b4e3b7165dc9", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "live-code-talks", + "sha256": "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj", "rev": "fece58108939a53104f88d348298c9e122f25b75" }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1623", "deps": [ @@ -7919,28 +8407,30 @@ }, "smooth-scroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/smooth-scroll.el.git", - "sha256": "668ccfdcd9b25ba6ea15b3b4e0c25bb76aad802dd73fb9df6290ddf52ca93887", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "smooth-scroll.el", + "sha256": "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk", "rev": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45" }, "recipe": { "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130321.2314", "deps": [] }, "helm-c-moccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-c-moccur.el.git", - "sha256": "86b08a004db181457c67ed38b26f770496105dc2c8e063420fe22966d5d234ea", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-c-moccur.el", + "sha256": "1silsbancag21x167q68q9fi15h4fxpv4f7dcxy4b0di9l08mc46", "rev": "a0f70c8bc750b1e0a5f417a70c9ca192eb7a1e83" }, "recipe": { "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.2142", "deps": [ @@ -7950,14 +8440,15 @@ }, "unicode-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-fonts.git", - "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-fonts", + "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk", "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1732", "deps": [ @@ -7970,28 +8461,30 @@ }, "eww-lnum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/eww-lnum.git", - "sha256": "40e8319d2d40dc4754d452420f2fe5dba0df02fa572f36060369289e4f70dfc4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "eww-lnum", + "sha256": "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20", "rev": "4b0ecec769919ecb05ca4fb15ec51911ba589929" }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150102.912", "deps": [] }, "mbe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ijp/mbe.el.git", - "sha256": "665d218cb926450c6b4ccb8c34c34883d0f5f2628042dc1dca5f5cfbdaf3dcff", + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6", "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c" }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.534", "deps": [ @@ -8001,14 +8494,15 @@ }, "relative-line-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/relative-line-numbers.git", - "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "relative-line-numbers", + "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a", "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.1646", "deps": [ @@ -8017,14 +8511,15 @@ }, "electric-case": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/electric-case.git", - "sha256": "28432f21b871128f02544a9b2ad81d6c8aaefbfff00b6826609d649dc2089e68", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "electric-case", + "sha256": "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8", "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7" }, "recipe": { "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.612", "deps": [] @@ -8033,26 +8528,27 @@ "fetch": { "tag": "fetchgit", "url": "https://gitlab.com/python-mode-devs/python-mode.git", - "sha256": "73c91e494d616370b0438c0e060b93ced188919a60f59225a56d10209eff5c60", - "rev": "e8372b87b802ec1771dead1505af9ba71fc04b8d" + "sha256": "2c17d1a6cdff6a910fe868c46924cc37e88d776db28b673d23450c77eeab9316", + "rev": "0740af7b7fff37eb0fe74f9221f8eb3b3f09e5b0" }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.426", + "version": "20151218.630", "deps": [] }, "ob-sml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/swannodette/ob-sml.git", - "sha256": "cf7be992aad98b0eacf7bcd3fb1187506b6aaf20e8557955ee91bd8888b2d53f", + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg", "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b" }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130829.1343", "deps": [ @@ -8061,14 +8557,15 @@ }, "mu4e-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "2c858859615c1e26c2b00f639fef086cc41fb610fb9430a8a2ae8e5afcee4d58", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0n2dxvy5m3mflal3157v22v1zi3c13pryqqgn312c7jwc5cqi19c", "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1227", "deps": [ @@ -8079,42 +8576,45 @@ }, "preseed-generic-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/suntong001/preseed-generic-mode.git", - "sha256": "403aab634dd51ab8626c2ef6e8b75074e51c05e13dfdd80f7272102c984dd1b7", + "tag": "fetchFromGitHub", + "owner": "suntong001", + "repo": "preseed-generic-mode", + "sha256": "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0", "rev": "19bce980d41607bef8af4b1901343abfca0f0855" }, "recipe": { "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1441", "deps": [] }, "erc-colorize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/erc-colorize.git", - "sha256": "f0ded255c2d3c8de408a6c05fb6115cd5e1d6cb436d9642c2f2466e9a1516b62", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "erc-colorize", + "sha256": "0knr45va4xi5dgv7iyzdv93zrw4rapzahj7ryi3ik32jacx2cpl2", "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865" }, "recipe": { "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150725.909", "deps": [] }, "django-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myfreeweb/django-mode.git", - "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "tag": "fetchFromGitHub", + "owner": "myfreeweb", + "repo": "django-mode", + "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va", "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" }, "recipe": { "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.1011", "deps": [ @@ -8123,14 +8623,15 @@ }, "ham-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/ham-mode.git", - "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "ham-mode", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g", "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.806", "deps": [ @@ -8140,28 +8641,30 @@ }, "toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/elisp.git", - "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "elisp", + "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n", "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" }, "recipe": { "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1727", "deps": [] }, "slime-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-slime-theme.git", - "sha256": "5d5ada753309e3df3020aa2a0ce79ee3a3a1d18839c70b9baf5a3fa8eb4d358f", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-slime-theme", + "sha256": "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx", "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f" }, "recipe": { "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -8176,21 +8679,22 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150228.1213", "deps": [] }, "e2wm-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-direx.git", - "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140815.1813", "deps": [ @@ -8206,7 +8710,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1820", "deps": [] @@ -8216,39 +8720,41 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53137" + "rev": "53195" }, "recipe": { "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.952", "deps": [] }, "rcirc-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csantosb/rcirc-alert.git", - "sha256": "e21339e42a4ab171b3b9eb8b443c88fc797e92ac5251ee2e7d620bfdc1cdbe75", + "tag": "fetchFromGitHub", + "owner": "csantosb", + "repo": "rcirc-alert", + "sha256": "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2", "rev": "0adf8ff9c47023fec578f678424be62b0f49057f" }, "recipe": { "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.447", "deps": [] }, "multi-web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/multi-web-mode.git", - "sha256": "a8142f518d71a69619d243c33a55d63d0ee2ee504732bac571966f79fb048f58", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n", "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c" }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130823.2254", "deps": [] @@ -8262,21 +8768,22 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110911.504", "deps": [] }, "history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/history.git", - "sha256": "e639225dff486cc78fc052fd1ee394a4e670ea0a19b8ca5c616336f2c187c7b9", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x", "rev": "4bb475513f98ec07db55212a504b6167dae3a646" }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150409.1934", "deps": [ @@ -8285,28 +8792,30 @@ }, "auto-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/auto-dictionary-mode.git", - "sha256": "4b643bc3ac02b1c9dbda36bca373fed676143cc16bb281e4597bb792a80ffeba", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "auto-dictionary-mode", + "sha256": "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp", "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7" }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150410.1110", "deps": [] }, "defproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kotfic/defproject.git", - "sha256": "cd8ea23540108ca4f993425e8e62b65e111f459ca2e12152cedde1eb09650d0d", + "tag": "fetchFromGitHub", + "owner": "kotfic", + "repo": "defproject", + "sha256": "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr", "rev": "674d48a5e34cb4bba76faa38ee901322ec649086" }, "recipe": { "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1619", "deps": [ @@ -8315,28 +8824,30 @@ }, "project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs", "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1524", "deps": [] }, "popup-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/popup-kill-ring.git", - "sha256": "d646b03da29f1135b616aa52c0fadd7559aa989578dadc1bc015e43d66a5bcfd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "popup-kill-ring", + "sha256": "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn", "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa" }, "recipe": { "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131020.1354", "deps": [ @@ -8346,14 +8857,15 @@ }, "popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/popup-el.git", - "sha256": "8b57b907e7934ff046c9c5080172e08f925ef4c78aac14d28cec70564272d111", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "18yhvcnp669xrwgxdjm1vrnv7f6lgg1i42vpkxnmj0fy8bzndqf1", "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc" }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.742", "deps": [ @@ -8362,14 +8874,15 @@ }, "evil-commentary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-commentary.git", - "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-commentary", + "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a", "rev": "122880a6721fcf16479f406c78c6e490a25efab0" }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.527", "deps": [ @@ -8378,14 +8891,15 @@ }, "mozc-im": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/mozc-im.git", - "sha256": "591880c0bd0d1f6666f60542adeb7101ce4731e33b9ec80f400408de8577450e", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-im", + "sha256": "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r", "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d" }, "recipe": { "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150419.649", "deps": [ @@ -8394,14 +8908,15 @@ }, "shut-up": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/shut-up.git", - "sha256": "ef307421c393568142ae6c32ed80c386c07468916525d484c6496a89a71c6a2a", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs", "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39" }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.722", "deps": [ @@ -8411,14 +8926,15 @@ }, "orglink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/orglink.git", - "sha256": "6dfc9bd424a99acc83c3316d07d5367c88f348de967997d9a2569ad16849c38b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d", "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0" }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.1206", "deps": [ @@ -8428,14 +8944,15 @@ }, "flymake-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-shell.git", - "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-shell", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc", "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1300", "deps": [ @@ -8444,56 +8961,60 @@ }, "uimage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/uimage.git", - "sha256": "431e5b91fd9aa07f125d181b54a2b8152783b48d44198baf41b350f577b01ba7", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "uimage", + "sha256": "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3", "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413" }, "recipe": { "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.804", "deps": [] }, "shakespeare-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CodyReichert/shakespeare-mode.git", - "sha256": "2691fe682314de37209aaf8d46ce435ae7bfdfe30f6ca28366ca134ff8a07d6e", + "tag": "fetchFromGitHub", + "owner": "CodyReichert", + "repo": "shakespeare-mode", + "sha256": "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496", "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02" }, "recipe": { "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.912", "deps": [] }, "gregorio-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cajetanus/gregorio-mode.el.git", - "sha256": "3f6cfa9b7718deb45c9d47c0668b8cd1580f757ea0531af280d23f258cf8f2a5", + "tag": "fetchFromGitHub", + "owner": "cajetanus", + "repo": "gregorio-mode.el", + "sha256": "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag", "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3" }, "recipe": { "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.920", "deps": [] }, "ponylang-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/ponylang-mode.git", - "sha256": "23d754a3355f362c79abbfd21a48ef6738943d65038423eb2237d451fb842d33", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "ponylang-mode", + "sha256": "14rczhgpkm93cada7hqqf31mxx9f34ih43mjq52zkkcbr7smm09d", "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc" }, "recipe": { "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.450", "deps": [ @@ -8502,42 +9023,45 @@ }, "e2ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/e2ansi.git", - "sha256": "bca48071c75dc14b526a22d37014ee36d22e886329403c17c1cb7dc26f9b2834", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "e2ansi", + "sha256": "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w", "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90" }, "recipe": { "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.1713", "deps": [] }, "sunny-day-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/sunny-day-theme.git", - "sha256": "ac9600e21e9ab8ff2f0c3a4c4372d257a7fef6bb49fbf979a1fc6b2ee5841e56", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "sunny-day-theme", + "sha256": "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc", "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00" }, "recipe": { "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140413.1625", "deps": [] }, "rdf-prefix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/simenheg/rdf-prefix.git", - "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.816", "deps": [] @@ -8550,49 +9074,52 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.659", "deps": [] }, "edit-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/enoson/edit-at-point.el.git", - "sha256": "dcc839e3adfe6454c36d73ebf63ead27994dc49f781ebc7ef0fa9cf1ec6b3c33", + "tag": "fetchFromGitHub", + "owner": "enoson", + "repo": "edit-at-point.el", + "sha256": "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w", "rev": "3b800c11685102e1eab62ec71c5fc1589ebb81a7" }, "recipe": { "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.824", "deps": [] }, "centered-window-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikame/centered-window-mode.git", - "sha256": "e7e9b7e154326e3ad5ddfe1929c27180cbc404ec684a75a26b4ccc1698675926", + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "centered-window-mode", + "sha256": "09jrcyc1dk2cdfi7ajk8xh2c9jw0f712j6gyvpaklvijakhvgsg7", "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd" }, "recipe": { "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140730.447", "deps": [] }, "helm-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-migemo.git", - "sha256": "3d6ee1888c454a0f05003a6356d649b244755817511f37ff1e9e68595cbef43f", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix", "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e" }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.2256", "deps": [ @@ -8604,56 +9131,60 @@ }, "gather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-gather.git", - "sha256": "7f4b09a451121f34dcf382b12d19d08ce3d337eebe0faca53d8dd788b3ee85a8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-gather", + "sha256": "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5", "rev": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b" }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141230.738", "deps": [] }, "test-simple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-test-simple.git", - "sha256": "eb64bcb28aedc1e0ecf15775d47195f15d95438a3153411e9a5cf58865d52781", - "rev": "6fd325beabe3dfe72eb9ec3ceb40ee3f43ae8e92" + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3", + "rev": "95e58b52ff36ed7c0c50e84dcf5458cb71c380dc" }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2143", "deps": [] }, "auto-dim-other-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mina86/auto-dim-other-buffers.el.git", - "sha256": "e0a9bcaaa6d63503128ded80df0529b32d0b2b40301643363bb4e1c9ea8c959d", + "tag": "fetchFromGitHub", + "owner": "mina86", + "repo": "auto-dim-other-buffers.el", + "sha256": "1j3ygbask2vsrh6ia6y86348lg6vl68gsraryxn25mr0c2b41811", "rev": "8b909cb210a9e4482bcc43858cf8d15da4ecd1d2" }, "recipe": { "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.1102", "deps": [] }, "projectile-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/projectile-rails.git", - "sha256": "fcbcedf6867e0f4769b1772087bebf4e4ed0b675b3bbebe3e12a24c471e165e9", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "0hh2hwyhdb1k7ba8vy1ys2i8qvf7sxw8a3v24m3b2cmrg3hz3hcb", "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5" }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1145", "deps": [ @@ -8674,21 +9205,22 @@ }, "recipe": { "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110112.1907", "deps": [] }, "change-inner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/change-inner.el.git", - "sha256": "3f29d042fe69e9ed7db61e7fd975aaf417bff492f3534b47a34b2abe46c23ad5", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "change-inner.el", + "sha256": "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z", "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8" }, "recipe": { "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1044", "deps": [ @@ -8697,14 +9229,15 @@ }, "flymake-yaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-yaml.git", - "sha256": "95de0aaf47d5bbf126774e91d28da445b4f9874c537190568a9a15a4d2a8aa55", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-yaml", + "sha256": "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm", "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10" }, "recipe": { "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130423.1048", "deps": [ @@ -8713,70 +9246,75 @@ }, "tabulated-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/tabulated-list.el.git", - "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "tabulated-list.el", + "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g", "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120406.1551", "deps": [] }, "hippie-expand-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/hippie-expand-slime.git", - "sha256": "e3633feb83abc2e85f04bb338f2ba53417b88881516e2b0455ba303eea29dd62", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp", "rev": "432de36799fffc920e5bff7a4691f3c67236e59c" }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130907.332", "deps": [] }, "pgdevenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/pgdevenv-el.git", - "sha256": "92fdf50b6d218383ea5f4ec0450135cb14b6cf2a7b91e30ff0c7b04804232d31", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "pgdevenv-el", + "sha256": "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj", "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132" }, "recipe": { "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.1636", "deps": [] }, "httpcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rspivak/httpcode.el.git", - "sha256": "c4e6c0422f3fe7dc4fad5f6375c170a4a36c7f090cd37a37873f19da39465f0a", + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4", "rev": "a45e735082b09477cd704a99294d336cdbeb12ba" }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121001.2245", "deps": [] }, "keyset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/keyset.git", - "sha256": "de2bb5143ac69279e28c16de3f005d1de441e6a16aee82e1a5c4fb0eb4151285", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "1i17hm00ba7kf23cgb15hmxn0dgwmf00a5awqn5p76kfzf1ashpy", "rev": "727661420ce4b2c67c2dc6188d2822c22761904a" }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.2330", "deps": [ @@ -8786,14 +9324,15 @@ }, "editorconfig-fnmatch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -8802,14 +9341,15 @@ }, "plantuml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wildsoul/plantuml-mode.git", - "sha256": "75ed777d60f443ba636462a62ecf2429967a177a8f4f0ddabf7a4f9e5201f543", + "tag": "fetchFromGitHub", + "owner": "wildsoul", + "repo": "plantuml-mode", + "sha256": "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg", "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa" }, "recipe": { "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131031.1832", "deps": [ @@ -8818,14 +9358,15 @@ }, "anything-git-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/anything-git-files-el.git", - "sha256": "59acbcd7d2704b373cb7fc83559e36c55816d3928cb5695060a57320c8b9403e", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "anything-git-files-el", + "sha256": "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r", "rev": "efeec4f8001e2a95f36a9c31181bb30f7561015c" }, "recipe": { "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130609.443", "deps": [ @@ -8840,21 +9381,22 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1147", "deps": [] }, "git-gutter-fringe+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", - "sha256": "d1119bb18b5dd752e22c870ad29218ab4b2b28a752c249e26c96aefb470a52e7", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-fringe-plus", + "sha256": "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi", "rev": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc" }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.603", "deps": [ @@ -8864,14 +9406,15 @@ }, "encourage-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/halbtuerke/encourage-mode.el.git", - "sha256": "089aea9dae8addd52182bd2847419965074ab1499853153fb053dba201d1b64c", + "tag": "fetchFromGitHub", + "owner": "halbtuerke", + "repo": "encourage-mode.el", + "sha256": "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8", "rev": "99edacf2d94d168d3da0609860dc7253db7c9815" }, "recipe": { "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.305", "deps": [ @@ -8880,14 +9423,15 @@ }, "milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-milkode.git", - "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140927.29", "deps": [] @@ -8900,7 +9444,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1607", "deps": [ @@ -8909,14 +9453,15 @@ }, "egg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/egg.git", - "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", "rev": "499894195528203cfcf309228bf7578dd8cd5698" }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.2015", "deps": [] @@ -8929,35 +9474,37 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.627", "deps": [] }, "quack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/quack.git", - "sha256": "c2f4a8ec29b474cad20905ead77b5c9c465b203da840c4ac8b40c96682cdf360", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "quack", + "sha256": "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62", "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb" }, "recipe": { "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130126.1823", "deps": [] }, "jaword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/jaword.git", - "sha256": "6a3a42614e122ce44f059f084eefa28bf0d1814a97b6f95fd8b439831aef6090", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "jaword", + "sha256": "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka", "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3" }, "recipe": { "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150325.918", "deps": [ @@ -8966,14 +9513,15 @@ }, "greymatters-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/greymatters-theme.git", - "sha256": "77497e9ec30076369072e6fdaaa82baae3b3f5274d390c5ccea61473534d8091", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "greymatters-theme", + "sha256": "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp", "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1" }, "recipe": { "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.623", "deps": [ @@ -8982,28 +9530,30 @@ }, "ample-zen-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mjwall/ample-zen.git", - "sha256": "4a0b465fa71d47a725a31d8b654c6705b6b51ce6bb8567a61841a5d00a95e9a3", + "tag": "fetchFromGitHub", + "owner": "mjwall", + "repo": "ample-zen", + "sha256": "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa", "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd" }, "recipe": { "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1554", "deps": [] }, "at": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/at-el.git", - "sha256": "180955917cd8db65f58a42b6deff9e9b9e25f1cc8b3fb5dd0e4fd099de9c0438", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "at-el", + "sha256": "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1", "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc" }, "recipe": { "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140707.720", "deps": [ @@ -9013,28 +9563,30 @@ }, "osx-clipboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/osx-clipboard-mode.git", - "sha256": "bba42f6aa9ac0c69bda11db78ee369d3e29b6daa68e85f609e9343d1bd0bd6de", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "osx-clipboard-mode", + "sha256": "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4", "rev": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d" }, "recipe": { "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.217", "deps": [] }, "ac-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/ac-c-headers.git", - "sha256": "1e483885770f4695df195f6fd7f90d4eb364133a68326bb9045bbe724b90d9fc", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "ac-c-headers", + "sha256": "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y", "rev": "de13a1d35b311e6601556d8ef163de102057deea" }, "recipe": { "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.334", "deps": [ @@ -9043,14 +9595,15 @@ }, "tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7", "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.853", "deps": [ @@ -9061,14 +9614,15 @@ }, "helm-swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-swoop.git", - "sha256": "de00ac9f6bc4ed0ff3f4ab860fafe27c0918d9431303fc5620bc6206c42f7efc", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-swoop", + "sha256": "1dixg0yik08ad9qwcfis9vkg1h7zwqsisfr1zlgzabpzzm822mmd", "rev": "d953ad605c989c40da5bc0fcb2953104ea7210e6" }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1950", "deps": [ @@ -9078,14 +9632,15 @@ }, "skeletor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/skeletor.el.git", - "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.10", "deps": [ @@ -9099,28 +9654,30 @@ }, "css-comb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/channikhabra/css-comb.el.git", - "sha256": "641a187c8c385ee4f162ed346be311223296cb59373c6b4947e82527548e810b", + "tag": "fetchFromGitHub", + "owner": "channikhabra", + "repo": "css-comb.el", + "sha256": "0ljhar80kk7k54jz1xiq4r0w6s1wkacl7qz9wkvvbzhjb0z049hq", "rev": "980251dc5d3ce0e607498f8a793f6d67a77d9cda" }, "recipe": { "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150502.1528", "deps": [] }, "counsel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", - "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", + "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.519", "deps": [ @@ -9130,14 +9687,15 @@ }, "visual-fill-column": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/visual-fill-column.git", - "sha256": "42250fca9399ef5db123477ad6723f7677fd0f850d26d0cc8e7172800171f8d3", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "visual-fill-column", + "sha256": "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w", "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa" }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1751", "deps": [ @@ -9146,42 +9704,45 @@ }, "google-c-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/styleguide.git", - "sha256": "a6d5f9dcdcf525ca85e5f6f3d449879837f2b97f043f73f98a8a1849e92cb599", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "styleguide", + "sha256": "16dm5kllj64aibwp6gq4gywz4dwqhx4x9wznwn2wl9gmvkfgkmd6", "rev": "e1333014b5ffec70af81ace136c830856d13683e" }, "recipe": { "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1318", "deps": [] }, "android-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/android-mode.git", - "sha256": "399f0199f5a124dc5a12b5f7fd4557e3d32314bf3cbc12bbbb7f6f32deb87f43", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2", "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231" }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.744", "deps": [] }, "efire": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/efire.git", - "sha256": "db54758d39a1c52c1c7583ec822b4d9d8e36060c2049a2b52de32a91c6f651b0", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "efire", + "sha256": "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v", "rev": "91a644662afb352475efad0b377713656f131e5c" }, "recipe": { "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.1531", "deps": [ @@ -9190,28 +9751,30 @@ }, "highlight-escape-sequences": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/highlight-escape-sequences.git", - "sha256": "cfe7e33ba2e3c5c9edad64d4a3b09b008945308b510508652d3841c557404e93", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "highlight-escape-sequences", + "sha256": "14sf81bwah9q5mjhh1aiicq4b280kfqa7m34mpnwkig3l8xy7ryg", "rev": "083954e5c39b2cc10cfc12192099e76e2b84b072" }, "recipe": { "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2110", "deps": [] }, "hl-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/hl-indent.git", - "sha256": "4805bbfecf67d8f37240568f0fa31829051705224f8d07d334340e79bdee89c6", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "hl-indent", + "sha256": "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc", "rev": "e749f726ce589e04bb508160e7b290b61fb64d75" }, "recipe": { "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.1530", "deps": [ @@ -9221,14 +9784,15 @@ }, "undercover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "cc64a61caa1c47ed162f4d8bbd129397348707f4f69911da45966a022f24a316", + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "1qm6fzgmrdzhkajd60l4l890dlbxll96x41kx36wm97h4gz7aiyw", "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.1210", "deps": [ @@ -9239,14 +9803,15 @@ }, "dklrt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dklrt.git", - "sha256": "1a6af879dbad3fa2d42e7bd43e3bb0c77aa656045fe40d527058905a2cb57618", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dklrt", + "sha256": "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs", "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba" }, "recipe": { "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.741", "deps": [ @@ -9257,14 +9822,15 @@ }, "clojure-quick-repls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/symfrog/clojure-quick-repls.git", - "sha256": "f94f394f1a8f917f5532f4a256035bb392c3645ae5f154f136560b2c6684eaed", + "tag": "fetchFromGitHub", + "owner": "symfrog", + "repo": "clojure-quick-repls", + "sha256": "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr", "rev": "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9" }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.236", "deps": [ @@ -9274,28 +9840,30 @@ }, "rase": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/rase.git", - "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120928.1545", "deps": [] }, "js2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js2-mode.git", - "sha256": "6fad831cc06397a21b928334e065410a8068b9976972d3adc99a2b79df76697c", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "17bpfi6ppmbx1q23qa89jnwnh465s54gl1vp4djy9arqir76hwsc", "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c" }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.605", "deps": [ @@ -9305,28 +9873,30 @@ }, "yabin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/yabin.git", - "sha256": "f5d3619e1f72109d3afead6827db7e8e3e1cb0814478691fe2cc330b3fdfd738", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "yabin", + "sha256": "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm", "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5" }, "recipe": { "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140205.2151", "deps": [] }, "symon-lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/symon-lingr.git", - "sha256": "12f5ed02d84294ee73c84ddea56ed786111982450daefc920b6ee66d3b7d0b0c", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon-lingr", + "sha256": "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j", "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f" }, "recipe": { "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.842", "deps": [ @@ -9342,21 +9912,22 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.1438", "deps": [] }, "window-end-visible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/window-end-visible.git", - "sha256": "006542be695efee08e12d7bacfe59c3ab007c153b31ca63ad28c9a48422f33f0", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn", "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef" }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] @@ -9370,7 +9941,7 @@ }, "recipe": { "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1748", "deps": [ @@ -9380,14 +9951,15 @@ }, "spacegray-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruce/emacs-spacegray-theme.git", - "sha256": "4b53e3aedadca66b92d1d90d5640e795e19163f388a5569ea43bab9feab912a9", + "tag": "fetchFromGitHub", + "owner": "bruce", + "repo": "emacs-spacegray-theme", + "sha256": "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb", "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749" }, "recipe": { "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1431", "deps": [ @@ -9396,14 +9968,15 @@ }, "multi-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ReanGD/emacs-multi-compile.git", - "sha256": "1d29e61e184217c2014e62560166b36916be391d64d71880de3de7e296238c00", + "tag": "fetchFromGitHub", + "owner": "ReanGD", + "repo": "emacs-multi-compile", + "sha256": "004c4fbf5rrxvs01imv43lwvw5k9ndk02mk29q0w45s230gfca8x", "rev": "61a4a7b35cd78773305150f533f51587367378db" }, "recipe": { "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.1640", "deps": [ @@ -9412,56 +9985,60 @@ }, "scratch-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/scratch-log.git", - "sha256": "7eb3712024c8d53e31dcb66a8d8e7a83c21c0bfdcf4bf98c917118dab74539a6", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "scratch-log", + "sha256": "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk", "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0" }, "recipe": { "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.143", "deps": [] }, "clmemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/clmemo.git", - "sha256": "a1796c71f43d03d6e39f916aa26bd5fffb2c3572e90ba3a9a87257c6ef91487d", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "clmemo", + "sha256": "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1", "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf" }, "recipe": { "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.747", "deps": [] }, "rbenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rbenv.el.git", - "sha256": "506ce345674da0d5f34ed245944b012819b8a32e7cc77ba2d3d430eb8ccea079", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h", "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1" }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.149", "deps": [] }, "org-agenda-property": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/org-agenda-property.git", - "sha256": "9edd0db344b03254e85f9a2cbcbb2b13fcc5716b301690988d11cb9648c55a87", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "org-agenda-property", + "sha256": "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm", "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8" }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.1616", "deps": [ @@ -9470,42 +10047,45 @@ }, "standoff-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lueck/standoff-mode.git", - "sha256": "1f47d54b64d6d94bd41f890708bef0d6c5a93fc4629f60040628b321dc65d007", + "tag": "fetchFromGitHub", + "owner": "lueck", + "repo": "standoff-mode", + "sha256": "1fn97aw91g02hgz5c9dvnxh4zdd9wrdhs44s0gnj570za1m4cbiv", "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6" }, "recipe": { "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150628.1842", "deps": [] }, "phi-rectangle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-rectangle.git", - "sha256": "6447d0d0d0600c4dbf9669a44c39814c8a31528fea5b926c758da397d3294c34", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-rectangle", + "sha256": "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4", "rev": "0c12716afc71d803d1f39417469521dc465762d9" }, "recipe": { "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.54", "deps": [] }, "dart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/dart-mode.git", - "sha256": "8c36e46be3bb1b3b7295c8b4625046aab259b4a24d6b3841e4d77ffbcd51a7dd", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1pd7a76znzypwi0khssdlas5kcma8r865d68jmr3n6xvwdmy8dlc", "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367" }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150721.1854", "deps": [ @@ -9516,14 +10096,15 @@ }, "peek-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/erikriverson/peek-mode.git", - "sha256": "2bf7b8d0263e0ee54caa1cba3d4f747a74a3d2d8ea7dfadf6c497e40e935db86", + "tag": "fetchFromGitHub", + "owner": "erikriverson", + "repo": "peek-mode", + "sha256": "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb", "rev": "55a7dd011375330c7d57322257a5167516702c71" }, "recipe": { "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.1446", "deps": [ @@ -9538,21 +10119,22 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20081128.906", "deps": [] }, "refheap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Raynes/refheap.el.git", - "sha256": "280d33c837bdee2adaaeabfcfa12c3681e17037e65aefdb155d462c7a4887f22", + "tag": "fetchFromGitHub", + "owner": "Raynes", + "repo": "refheap.el", + "sha256": "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398", "rev": "d41f8efb8e913b29035f545914859e3f18287492" }, "recipe": { "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1602", "deps": [ @@ -9561,14 +10143,15 @@ }, "navorski": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/navorski.el.git", - "sha256": "b8ea7b60cbeafef04e6b55d18457acdba8bf0f785a962ef022ea9ae0775045c9", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l", "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b" }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.1224", "deps": [ @@ -9585,21 +10168,22 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1636", "deps": [] }, "manage-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/manage-minor-mode.git", - "sha256": "07f440ff816fad5a4a122297213565e7c92050678532da6a96d13773d83c9483", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "manage-minor-mode", + "sha256": "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07", "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e" }, "recipe": { "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.1100", "deps": [ @@ -9608,70 +10192,75 @@ }, "yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "c47b122d4aeefbb6d6fc061dc1a519ff4432e90672e620798f33e25c4d78a0a3", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "1pdyrs0cv688s39vqd20dgnvlddd8x1gj7lzzlpwr47fz8zxfm9i", "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.2333", "deps": [] }, "erc-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/erc-crypt.git", - "sha256": "d9d1b91963f986a018fd79142aaabf8566a77f1b31005bb2d47c1c67ba20f7c3", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1hzp42x6f73wsjr5n01i3dzsfrl5pym2l53rzlca11prcccvklfr", "rev": "5d548bab298a27ca5886392c129b14d0e93067be" }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1257", "deps": [] }, "log4e": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/log4e.git", - "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.705", "deps": [] }, "graphviz-dot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ppareit/graphviz-dot-mode.git", - "sha256": "2e3fdb4bd80015e4a4ebd457e50d00cc8cc0c9254ae54aef6a0cff19e150268b", + "tag": "fetchFromGitHub", + "owner": "ppareit", + "repo": "graphviz-dot-mode", + "sha256": "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf", "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84" }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.821", "deps": [] }, "pcomplete-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", - "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", "rev": "839740c90de857e18db2f578d6660951522faab5" }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140604.1147", "deps": [ @@ -9681,14 +10270,15 @@ }, "melpa-upstream-visit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/melpa-upstream-visit.git", - "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "melpa-upstream-visit", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd", "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.533", "deps": [ @@ -9697,14 +10287,15 @@ }, "php+-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/phpplus-mode.git", - "sha256": "648a2514b287ac585b920f379b830345f4487a36d0a657f969a6fe482249fe60", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "phpplus-mode", + "sha256": "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg", "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa" }, "recipe": { "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121129.1452", "deps": [] @@ -9717,7 +10308,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1534", "deps": [ @@ -9726,14 +10317,15 @@ }, "paxedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/paxedit.git", - "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.1808", "deps": [ @@ -9743,14 +10335,15 @@ }, "e2wm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-manager.git", - "sha256": "6841f88d208f048b9fbb153d43f0ef1c06b2c019d39a89336b062c71da74dde1", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-manager", + "sha256": "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw", "rev": "71543ce4502bdb09c888e24b3a80e47786785b88" }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150608.1923", "deps": [ @@ -9759,14 +10352,15 @@ }, "helm-emmet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-emmet.git", - "sha256": "6907c887ca9a5f0649fd057e6687355ce4dafb2ed74baadfd91a5e9478b17530", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-emmet", + "sha256": "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9", "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91" }, "recipe": { "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.129", "deps": [ @@ -9776,42 +10370,45 @@ }, "xmlgen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/xmlgen.git", - "sha256": "002ac9c84e7ec4bd53ab1f600032f7648e9f71e33c51a1430ee02bb3780465da", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "xmlgen", + "sha256": "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0", "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92" }, "recipe": { "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130219.419", "deps": [] }, "drupal-spell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-spell.git", - "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130520.1155", "deps": [] }, "helm-chronos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dxknight/helm-chronos.git", - "sha256": "11997a9e53a931105d769dde6ce800a43a6f5723975eb7f98941c77c9123b2b6", + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "helm-chronos", + "sha256": "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i", "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef" }, "recipe": { "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.1536", "deps": [ @@ -9821,28 +10418,30 @@ }, "expand-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/expand-line.git", - "sha256": "ffb87c442a332ec5aa09ec21750985857eb142b6a2597f110791959c6181e473", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "expand-line", + "sha256": "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z", "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372" }, "recipe": { "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2107", "deps": [] }, "org-ac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-ac.git", - "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140302.613", "deps": [ @@ -9853,15 +10452,15 @@ }, "omnisharp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OmniSharp/omnisharp-emacs.git", - "branchName": "master", - "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "tag": "fetchFromGitHub", + "owner": "OmniSharp", + "repo": "omnisharp-emacs", + "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm", "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1314", "deps": [ @@ -9883,21 +10482,22 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080502.1152", "deps": [] }, "company-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/company-racer.git", - "sha256": "3ecae70e51619aee0360b742223729e73b77ba3a8db8c167fe6ee9a46b31c19c", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "company-racer", + "sha256": "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4", "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00" }, "recipe": { "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150628.2133", "deps": [ @@ -9909,14 +10509,15 @@ }, "lang-refactor-perl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-lang-refactor-perl.git", - "sha256": "d2e10cf063a8738a2eeb356cba134ad6cf5c956ad60eaa8e0ce5b73d6d3cb38c", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-lang-refactor-perl", + "sha256": "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj", "rev": "691bd69639de6b7af357e3b7143563ececd9c497" }, "recipe": { "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131122.1527", "deps": [] @@ -9929,35 +10530,37 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1239", "deps": [] }, "gnuplot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/gnuplot-mode.git", - "sha256": "a12f7adfab804011429039c8c612f3ebe86ce9a9f3ab22908477e63d4ddd1fd7", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "gnuplot-mode", + "sha256": "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq", "rev": "296ff8d263513cdfb8e85b06e2441c751565b793" }, "recipe": { "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.139", "deps": [] }, "show-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smmcg/showcss-mode.git", - "sha256": "ad9ec20bae02365e56a6ee2e704ad7cf31e870b3cfc2f57bbb340dc0fd6a6858", + "tag": "fetchFromGitHub", + "owner": "smmcg", + "repo": "showcss-mode", + "sha256": "0n38dbyw039lpdxzbhngndqfhcfgsx570bpflrb5wdh2mq5w57md", "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039" }, "recipe": { "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1208", "deps": [ @@ -9966,28 +10569,30 @@ }, "picolisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/picolisp-mode.git", - "sha256": "2584dbeafc68de7bef5a25fe30cb7a5c1bafa0aee8d0c1ed5679e929bdf6215d", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "picolisp-mode", + "sha256": "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115", "rev": "1a537b14090813f46cbba54636d40365e1a8067e" }, "recipe": { "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.355", "deps": [] }, "highlight-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-numbers.git", - "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", "rev": "e1245b27a732ec43c1562f825533fe147759d24e" }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.807", "deps": [ @@ -9997,28 +10602,30 @@ }, "flash-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/flash-region.git", - "sha256": "2ec846275edf6ef7ecd4b4255d9f437da6d74d6759f11b4af9858b2d4da5e77c", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "flash-region", + "sha256": "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f", "rev": "261b3597b23cdd40e5c14262a5687bcc6c1d0901" }, "recipe": { "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130923.1317", "deps": [] }, "org-toodledo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-toodledo.git", - "sha256": "1b4c1078be473c088ce5cbb57fd6ba054502fdef7c3b3ede352eef66ad9d3803", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-toodledo", + "sha256": "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna", "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968" }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150301.513", "deps": [ @@ -10029,56 +10636,60 @@ }, "occur-context-resize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/occur-context-resize.el.git", - "sha256": "8c64ea472a8be03deba65b3bf85b275865dfb4e3b6bc6cac5e5eefa9e55e8f88", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "occur-context-resize.el", + "sha256": "1y67mfkmzjdwnah6knc1v9rxcvnzi3dxw9f5gaz4layy7ir61b8f", "rev": "e64898124528244134bd125aaa39e396406b01e8" }, "recipe": { "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140826.1449", "deps": [] }, "evil-surround": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timcharper/evil-surround.git", - "sha256": "3b7da258c343456acca4ec284ffc39372039b6f8d6116e2707a57e800d157e97", + "tag": "fetchFromGitHub", + "owner": "timcharper", + "repo": "evil-surround", + "sha256": "15vy2l6q0zm50wknw4fnz2v3j81p77y4ya7clk66lia3qdca4z9v", "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94" }, "recipe": { "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1418", "deps": [] }, "dts-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bgamari/dts-mode.git", - "sha256": "34ad4b8272c893d5e852e5ae3d99a0d9e7498c76a71cf1b054a8617717dc4e31", + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "dts-mode", + "sha256": "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l", "rev": "6ec1443ead16105234765f9b48df9b4aca562e61" }, "recipe": { "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.1804", "deps": [] }, "js2-highlight-vars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/js2-highlight-vars.el.git", - "sha256": "2f79aa5897929d5a29afc7b2bb7d80302e2eee5013484da7854e8e8a822a4dbd", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "js2-highlight-vars.el", + "sha256": "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g", "rev": "5857999e6a376810816a0bee71f6d235ffe8911d" }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.308", "deps": [ @@ -10087,42 +10698,45 @@ }, "processing-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.632", "deps": [] }, "csharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/csharp-mode.git", - "sha256": "02b7dfe91e0e59d929d1351c0ddd30e49e030fbc52042286a665ad878543b03a", - "rev": "d0d7ec3ca71fe4d89c33b2803dc6bb68b6b8c69e" + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "1xnfn7ag9xm1980h8hssac9n3ng6rf7ffqb67vjbjw14gb7vxd0l", + "rev": "a553430c3f55b12db3af3da14dd0a1b45e3277fb" }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151201.1630", + "version": "20151217.21", "deps": [] }, "evil-avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louy2/evil-avy.git", - "sha256": "34c952bcd4b21135478a8588aaf121ef2ce816c529944e5fab854ca8edb2dfe0", + "tag": "fetchFromGitHub", + "owner": "louy2", + "repo": "evil-avy", + "sha256": "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l", "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5" }, "recipe": { "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.248", "deps": [ @@ -10134,14 +10748,15 @@ }, "evil-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabesoft/evil-mc.git", - "sha256": "487bd0544681be37ad27ae57de4e5d6c02f712728d4e7568e75cf70110d46ee5", + "tag": "fetchFromGitHub", + "owner": "gabesoft", + "repo": "evil-mc", + "sha256": "0w5z644hx5h9rscq13aqgmbr4mlx2dx3p1q7qhc0jkffhmckk09k", "rev": "a56f83460a6a90dc504f5935b0ab105810a41179" }, "recipe": { "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.2032", "deps": [ @@ -10159,7 +10774,7 @@ }, "recipe": { "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140802.642", "deps": [ @@ -10176,7 +10791,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.706", "deps": [ @@ -10185,14 +10800,15 @@ }, "cherry-blossom-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inlinestyle/emacs-cherry-blossom-theme.git", - "sha256": "7ac6a2afdde616ed5644ba81aab7de0488f3484e385373e995fa67dc8c60376b", + "tag": "fetchFromGitHub", + "owner": "inlinestyle", + "repo": "emacs-cherry-blossom-theme", + "sha256": "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd", "rev": "eea7653e00f35973857ee23b27bc2fae5e753e50" }, "recipe": { "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2242", "deps": [ @@ -10201,14 +10817,15 @@ }, "wanderlust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/wanderlust.git", - "sha256": "a241b1729b95fdaa7f98380490203f0398042e259fe9e980087193a1dce9a66d", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "wanderlust", + "sha256": "1181fhazm2r9j9w3yc6cjm0j0lwgv94pz15qsdmg31z43w55l0qk", "rev": "912c443a912e037d898941397b747d3325aa01b3" }, "recipe": { "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1727", "deps": [ @@ -10217,14 +10834,15 @@ }, "private": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/private.git", - "sha256": "56737b7a1eacb81e0ba76b1d5b2c0a1ea826e76efea18ddfe1cb4bf558d309c4", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "private", + "sha256": "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm", "rev": "9266d01c095895cc3ee9de95bc20511e88353755" }, "recipe": { "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1957", "deps": [ @@ -10233,56 +10851,60 @@ }, "jquery-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/jquery-doc.el.git", - "sha256": "ecb0c47313989ed8af3b2167bb48bbdfb52f31f1160ee87bb36ea1e682bd2a29", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "jquery-doc.el", + "sha256": "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9", "rev": "24032284919b942ec27707d929bdd8bf48420062" }, "recipe": { "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.258", "deps": [] }, "mallard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-mode.git", - "sha256": "420d69f4c150ae61f75a3c941fc420e83c783f6c4766471e443320ebb466a3a3", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2", "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1" }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.2225", "deps": [] }, "i2b2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danlamanna/i2b2-mode.git", - "sha256": "686dbb91bb216de167f9823ea0fa5fe55de9d8c7a44b255e4174bb09def56486", + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "i2b2-mode", + "sha256": "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm", "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a" }, "recipe": { "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140709.2004", "deps": [] }, "ess-R-object-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-object-popup.el.git", - "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-object-popup.el", + "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0", "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130302.536", "deps": [ @@ -10292,14 +10914,15 @@ }, "solarized-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/solarized-emacs.git", - "sha256": "67a82b93e56d4e61be904255317e5358fcbfc8a23509fd8958585ce750e68935", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "1xws08ppzh5mz7s0j0pv393zk0hr10vdcb5hya5kfscq8wvkf4p1", "rev": "7a43652689de5188198c77715e2dbc111de760bf" }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.735", "deps": [ @@ -10309,28 +10932,30 @@ }, "tab-group": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/tab-group-el.git", - "sha256": "24430509a76df7e466b310f81240f0ee64cba4b3d04a56cb9ec154bddf7adb51", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "tab-group-el", + "sha256": "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4", "rev": "5a290ec2608e4100fb188fd60ecb77affcc3465b" }, "recipe": { "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.850", "deps": [] }, "pig-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/motus/pig-mode.git", - "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "tag": "fetchFromGitHub", + "owner": "motus", + "repo": "pig-mode", + "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx", "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" }, "recipe": { "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130913.124", "deps": [ @@ -10339,28 +10964,30 @@ }, "closure-lint-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/closure-lint-mode.git", - "sha256": "ca8e981668bc3f23a33163b572c684e26235dca371d0761ae8e4cbb2006e1c6c", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "closure-lint-mode", + "sha256": "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na", "rev": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5" }, "recipe": { "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101118.1524", "deps": [] }, "helm-jstack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/helm-jstack.git", - "sha256": "ef08b3fdd2b7144c08b3696e07882e3d64197f83aa77630f36cac48e36bb186e", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-jstack", + "sha256": "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g", "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4" }, "recipe": { "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.2322", "deps": [ @@ -10371,14 +10998,15 @@ }, "osx-trash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/osx-trash.el.git", - "sha256": "0eb04d1737d208e3dccd84f623af5346f796bf753705189cbd4bbe895cd302fe", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "osx-trash.el", + "sha256": "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah", "rev": "a8fe326624e27a0e128c68940c7a9efb001ceee6" }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.935", "deps": [ @@ -10387,14 +11015,15 @@ }, "org-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-readme.git", - "sha256": "0dcd617c281ef9675ca1fe829defbdc938777657b3a9d16c86f2500ab4087ae0", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d", "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d" }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.617", "deps": [ @@ -10407,14 +11036,15 @@ }, "org2jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/org2jekyll.git", - "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "org2jekyll", + "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf", "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.847", "deps": [ @@ -10432,35 +11062,37 @@ }, "recipe": { "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120304.1222", "deps": [] }, "bing-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/bing-dict.el.git", - "sha256": "74480bc2489f145f9c7e207b32252a21ef40dcf250a616628b9b8d3e0ac9cd27", - "rev": "85d94acc9a85f60125f00083af9702bca8bdbd19" + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "bing-dict.el", + "sha256": "0yjywdzrbp821d4krv1jxnpwpb156j020mzvmv4pkkd0l1ivzk7m", + "rev": "4d8713c0134b3b44cb7607802bb06a7be9a9a202" }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150621.1311", + "version": "20151216.1954", "deps": [] }, "django-manage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gopar/django-manage.git", - "sha256": "d7121d2c457f451c654a3533ac1b4d640c511ca27d3805eb2f81ebd9a968e1a9", + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "django-manage", + "sha256": "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv", "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398" }, "recipe": { "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.130", "deps": [ @@ -10469,56 +11101,60 @@ }, "ctable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-ctable.git", - "sha256": "c009d0aa7bc81f03d335738600b960c50c7139dda2feb74bf6fa490e97a59e01", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb", "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0" }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140304.1859", "deps": [] }, "elscreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/elscreen.git", - "sha256": "35b0dffdc054bc780ca660e4744a13e666dbb6be0c8431f80fd192894255b314", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "elscreen", + "sha256": "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m", "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61" }, "recipe": { "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.2000", "deps": [] }, "highlight-indent-guides": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarthFennec/highlight-indent-guides.git", - "sha256": "b2bbe3f3b530eb94d722150b98a8cd8d410eb86064328a005e5d7f7a4b66a182", + "tag": "fetchFromGitHub", + "owner": "DarthFennec", + "repo": "highlight-indent-guides", + "sha256": "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj", "rev": "4473af2bbeb80d50681a64b66f5891262cf52346" }, "recipe": { "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1427", "deps": [] }, "ivs-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ivs-edit.git", - "sha256": "6acf5b90ce8f5c9cf1da2e2ae0f4cb24ad06f48a08c7362c3bd2e4a59dbf46a4", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ivs-edit", + "sha256": "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva", "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b" }, "recipe": { "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140720.546", "deps": [ @@ -10535,121 +11171,129 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121026.1618", "deps": [] }, "pcmpl-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/pcmpl-git-el.git", - "sha256": "b3952a82c4f2b36e181dcf0f430fc66a6e714fe217cbce13acba3a34ee7a930d", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "pcmpl-git-el", + "sha256": "03ckgbp38fmsmh9wxjqpw97p2vkaqq7l63yg3lc6xczjqj12m5dk", "rev": "2db904452b7367a9bf84a926e886945fc9128fad" }, "recipe": { "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140218.2004", "deps": [] }, "leuven-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fniessen/emacs-leuven-theme.git", - "sha256": "b3d8802d2b232f61f5859911661765ac5e8e6eff49068a26361988201b67a1cf", + "tag": "fetchFromGitHub", + "owner": "fniessen", + "repo": "emacs-leuven-theme", + "sha256": "18nyb8bb16br2qpif33gz51sqzl3afh9mavzxrcqi40bgmfzpj0n", "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0" }, "recipe": { "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.952", "deps": [] }, "snippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pkazmier/snippet.el.git", - "sha256": "de90c27c4e55e9f1d6045532cd8112f380ea8fcb49080429ce9c9c97e572d9db", + "tag": "fetchFromGitHub", + "owner": "pkazmier", + "repo": "snippet.el", + "sha256": "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y", "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63" }, "recipe": { "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130210.1715", "deps": [] }, "ess": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-ess/ESS.git", - "sha256": "827d7cf4084e297c55bc75523385bbc3358507bc94c3a4ca2e0086403a03871a", - "rev": "680549abaaa3750de090c47049c392adcb25aaaa" + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "1j2i8n34kn6lkz70fc4c0sk0sxv348a61asc3wbz55a2hvys8z0a", + "rev": "837454b76475a4eb3256e288fe4149a927faefa9" }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151210.252", + "version": "20151217.744", "deps": [ "julia-mode" ] }, "ocp-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OCamlPro/ocp-indent.git", - "sha256": "53043c537e850398c0902ca94e5612e9d495ba9be668c65d381de41dadb11560", + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0r44bh9nd2f6r9vz4xzv6mri91lc4276znaj29l974q0f7i3b3ad", "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312" }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.332", "deps": [] }, "uuid": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-uuid.git", - "sha256": "f29708e97a9140fae71d4d90757b887c1a3b18f85611b9b330392ff6107fe464", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-uuid", + "sha256": "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj", "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe" }, "recipe": { "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120910.351", "deps": [] }, "launch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sfllaw/emacs-launch.git", - "sha256": "96b2c00c63f58666fd4c2570436a445399615f9cbf7d39065eb270d630105470", + "tag": "fetchFromGitHub", + "owner": "sfllaw", + "repo": "emacs-launch", + "sha256": "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1", "rev": "e7c3b573fc05fe4d3d322389079909311542e799" }, "recipe": { "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130619.1704", "deps": [] }, "hoa-pp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", - "sha256": "66d48935b1fbe094c4c061842db24a3c053a1ac2da451655a57cc418f9f0076b", + "tag": "fetchFromGitHub", + "owner": "hoaproject", + "repo": "Contributions-Emacs-Pp", + "sha256": "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l", "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e" }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.236", "deps": [ @@ -10665,7 +11309,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.845", "deps": [] @@ -10679,21 +11323,22 @@ }, "recipe": { "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1433", "deps": [] }, "mag-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/mag-menu.git", - "sha256": "fcd16991c6d0623bfff031e5e4430f4d91556ce99d71fad8c5ffaa7451b6e0cc", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "mag-menu", + "sha256": "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g", "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6" }, "recipe": { "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1350", "deps": [ @@ -10702,14 +11347,15 @@ }, "seethru": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Benaiah/seethru.git", - "sha256": "f9dd52ed7951bf827a141b893c8836ae4b1a2133c7b536601fa537bcb030a461", + "tag": "fetchFromGitHub", + "owner": "Benaiah", + "repo": "seethru", + "sha256": "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr", "rev": "d87e231f99313bea75b1e69e48c0f32968c82060" }, "recipe": { "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.1229", "deps": [ @@ -10718,14 +11364,15 @@ }, "helm-w32-launcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/helm-w32-launcher.git", - "sha256": "3659135cbc03984c199778c15820d7bac46860c67037932bde9b9e9c8fc29ced", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "helm-w32-launcher", + "sha256": "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq", "rev": "3e59ad62b89dd21d334af0203d445a83eb25dc5b" }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141223.1414", "deps": [ @@ -10736,14 +11383,15 @@ }, "org-iv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuangdash/org-iv.git", - "sha256": "c618fb5ecf1e89ede26883c7ba8db32e91e8470bfa9973294ea27bf9a51881d7", + "tag": "fetchFromGitHub", + "owner": "kuangdash", + "repo": "org-iv", + "sha256": "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6", "rev": "c45e5ab30183f7b1934f636758750ee2f8a05346" }, "recipe": { "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.914", "deps": [ @@ -10754,14 +11402,15 @@ }, "ac-ispell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-ispell.git", - "sha256": "cbff99f73616031e4d2b46cf63db3919577ca2e847d792a66d97045888c4b256", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-ispell", + "sha256": "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk", "rev": "22bace7387e9012002a6a444922f75f9913077b0" }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2126", "deps": [ @@ -10771,28 +11420,30 @@ }, "buffer-buttons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rpav/buffer-buttons.git", - "sha256": "782ffeaedcbf88aba6767c763e84dad41a20813f399ba58d7e2163795712aadc", + "tag": "fetchFromGitHub", + "owner": "rpav", + "repo": "buffer-buttons", + "sha256": "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq", "rev": "2feb8494fa7863b98256bc85da670d74a3a8a975" }, "recipe": { "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.839", "deps": [] }, "alect-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/alect-themes.git", - "sha256": "ffc2de69d84f008f6da905dbb14352124a5682317729e8a3b9ada9f89a89165a", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp", "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312" }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1324", "deps": [ @@ -10801,14 +11452,15 @@ }, "evil-exchange": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/evil-exchange.git", - "sha256": "1786faf8be44d0fefc2967b313014be47444e69340bc077c5755795d979382e5", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "evil-exchange", + "sha256": "1d9hxyplvjmv3hhgkp5snyssmddmca38r5v58bhba9gvk61lfcg9", "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b" }, "recipe": { "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.43", "deps": [ @@ -10818,14 +11470,15 @@ }, "markup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/markup.el.git", - "sha256": "115b4df1f26a5305be3c704a997ab4a5852c4f6eda4384a38873ce5d4b5825c5", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "markup.el", + "sha256": "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi", "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5" }, "recipe": { "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130207.1509", "deps": [] @@ -10838,21 +11491,22 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131210.1222", "deps": [] }, "dired-k": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-dired-k.git", - "sha256": "91d089ac1df104d639b87f9aa04c6e5b45d0654195fe7c6222360c9173022439", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s", "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7" }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.2036", "deps": [ @@ -10862,14 +11516,15 @@ }, "stack-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/commercialhaskell/stack-ide.git", - "sha256": "1ecc97de0c3165a1b201fcef2815e7fb3d36e70a6eb43c004eb3de1b7b70be91", + "tag": "fetchFromGitHub", + "owner": "commercialhaskell", + "repo": "stack-ide", + "sha256": "0m26b44gdxbpz6v0f27rx1x9frph19ykfvnr6716fnrm074d53ah", "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" }, "recipe": { "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.1023", "deps": [ @@ -10880,28 +11535,30 @@ }, "pcmpl-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JonWaltman/pcmpl-args.el.git", - "sha256": "7199b97dcbdd803d9397fd1de1da4a2e55831d2221948ed0a572129e8530d755", + "tag": "fetchFromGitHub", + "owner": "JonWaltman", + "repo": "pcmpl-args.el", + "sha256": "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy", "rev": "2ba03b3125ada8037585e545b88bd85b79da5c37" }, "recipe": { "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120912.24", "deps": [] }, "eprime-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AndrewHynes/eprime-mode.git", - "sha256": "4952a732abe4ed2913c5d7f37427294751d5da36b93e8942fa76e4bfbcd83ecc", + "tag": "fetchFromGitHub", + "owner": "AndrewHynes", + "repo": "eprime-mode", + "sha256": "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw", "rev": "17a481af26496be91c07139a9bfc05cfe722506f" }, "recipe": { "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140513.1316", "deps": [] @@ -10914,21 +11571,22 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100119.1548", "deps": [] }, "tco": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/tco.el.git", - "sha256": "98508310cff39dab988dd412d486931d1188294d728ea948a64d181e8d573ccf", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "tco.el", + "sha256": "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q", "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24" }, "recipe": { "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140412.812", "deps": [ @@ -10938,14 +11596,15 @@ }, "autobookmarks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/autobookmarks.git", - "sha256": "67268427f58dc0b4616854016855d5862d702d22701e5032bb47e78d229a0307", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "autobookmarks", + "sha256": "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7", "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b" }, "recipe": { "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1645", "deps": [ @@ -10955,14 +11614,15 @@ }, "hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/hayoo.el.git", - "sha256": "7478140af14f10b1bea5693fb4d234d46156c345196b99142951008520f45d5e", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "hayoo.el", + "sha256": "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l", "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984" }, "recipe": { "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140831.721", "deps": [ @@ -10972,28 +11632,30 @@ }, "dedukti-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rafoo/dedukti-mode.git", - "sha256": "e27ff030d37e261ac535cf0077c310a688e8cebabe11a3becba064927cec51c1", + "tag": "fetchFromGitHub", + "owner": "rafoo", + "repo": "dedukti-mode", + "sha256": "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2", "rev": "7d9f459c87c84f1067eb87542da4549de5e38650" }, "recipe": { "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.908", "deps": [] }, "project-persist-drawer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.622", "deps": [ @@ -11008,35 +11670,37 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140808.1635", "deps": [] }, "pianobar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agrif/pianobar.el.git", - "sha256": "2d046e443a2edf1564b3b074ac658a97b58c3b1871a79008b56d5c0de8c77214", + "tag": "fetchFromGitHub", + "owner": "agrif", + "repo": "pianobar.el", + "sha256": "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d", "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160" }, "recipe": { "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120128.1501", "deps": [] }, "image-archive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", - "sha256": "cb96826e6ffa740e0859f6ecc08b40bef04f4844e430effde9efee440a784c41", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0hacg0549vpgx7yyyc748i44zw5y825w1v7nb440wx7sdxp855nb", "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98" }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.18", "deps": [ @@ -11046,28 +11710,30 @@ }, "nummm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/nummm-mode.git", - "sha256": "bd0b97d2f18ee035c0040b1259e0035056fd6c9a93bf3c1712364ed475f51ec4", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "nummm-mode", + "sha256": "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx", "rev": "81951e12032274543c5f7a585b29bd93961e94e4" }, "recipe": { "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.414", "deps": [] }, "el-spice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vedang/el-spice.git", - "sha256": "85ecdd64a7e601e8575a2181aaca5aadf8bdc67773e80d526904598c276c7780", + "tag": "fetchFromGitHub", + "owner": "vedang", + "repo": "el-spice", + "sha256": "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri", "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d" }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.1338", "deps": [ @@ -11076,14 +11742,15 @@ }, "package-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/package-utils.git", - "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.606", "deps": [ @@ -11092,14 +11759,15 @@ }, "julia-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dennisog/julia-shell-mode.git", - "sha256": "08df93ffc6ac200df0853c6319c18e8a24ff3dff1bc630500616b1e086958a64", + "tag": "fetchFromGitHub", + "owner": "dennisog", + "repo": "julia-shell-mode", + "sha256": "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8", "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48" }, "recipe": { "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1252", "deps": [ @@ -11108,14 +11776,15 @@ }, "cycbuf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martinp26/cycbuf.git", - "sha256": "bcdc606bbe67ad97de8feda8fde0b97c5408c8f2ae455fc92657e71eaa46b1b4", + "tag": "fetchFromGitHub", + "owner": "martinp26", + "repo": "cycbuf", + "sha256": "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w", "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e" }, "recipe": { "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.1437", "deps": [] @@ -11125,11 +11794,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53137" + "rev": "53195" }, "recipe": { "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150306.1959", "deps": [ @@ -11145,7 +11814,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.120", "deps": [] @@ -11159,7 +11828,7 @@ }, "recipe": { "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.619", "deps": [ @@ -11171,28 +11840,30 @@ }, "seeing-is-believing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcinnamond/seeing-is-believing.git", - "sha256": "7b89fb8610f3acc23e831ea0baa160122dc2309d6616f6f913331ec9c8fde3a6", + "tag": "fetchFromGitHub", + "owner": "jcinnamond", + "repo": "seeing-is-believing", + "sha256": "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv", "rev": "a698443529ea26fba3fd0748fe10439be7721e96" }, "recipe": { "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.1229", "deps": [] }, "cdnjs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/cdnjs.el.git", - "sha256": "53062daa4ee4ebd92fe7cd35ffc43fa67e271d72809221e8508aa3f74164572b", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "cdnjs.el", + "sha256": "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk", "rev": "eac2b4d150907aeb2d568327d04775578c82887f" }, "recipe": { "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140217.1512", "deps": [ @@ -11205,28 +11876,30 @@ }, "pdb-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sixpi/pdb-mode.git", - "sha256": "9b5f985a3ddd6191086af42addd3ab6731b6b7f28679627de19b9fb69f515025", + "tag": "fetchFromGitHub", + "owner": "sixpi", + "repo": "pdb-mode", + "sha256": "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099", "rev": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a" }, "recipe": { "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150128.1151", "deps": [] }, "interval-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/interval-list.git", - "sha256": "5f7234a8484283cfc1aa217f1a545fdf9d6ceee7c8c1a1e88649539f89a866ff", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-list", + "sha256": "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz", "rev": "38af7ecf0a493ad8f487074938a2a115f3531177" }, "recipe": { "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150327.1218", "deps": [ @@ -11237,14 +11910,15 @@ }, "beginend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/beginend.git", - "sha256": "0de8996dd32ff4082ccc7d429bde5843c928692f514daff4dc648ed5429c92df", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p", "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd" }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.1201", "deps": [ @@ -11260,21 +11934,22 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1013", "deps": [] }, "recursive-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/recursive-narrow.git", - "sha256": "63386e45611da1eec9686e4b8b2335cf915f70ccea27375ee46bd8df94a747d6", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "recursive-narrow", + "sha256": "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33", "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922" }, "recipe": { "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1227", "deps": [] @@ -11287,21 +11962,22 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111222.1156", "deps": [] }, "shift-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/shift-text.git", - "sha256": "c49153f8360b05f4e36a75910d36ce6e9782bf46755bf0de91586564d2e255c3", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "shift-text", + "sha256": "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr", "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba" }, "recipe": { "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130831.1155", "deps": [ @@ -11311,42 +11987,45 @@ }, "vimgolf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "94b580d1d1e00368e92a36b5bd5b1814b40384302185a13e18e93bfd2683c5e2", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj", "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.1648", "deps": [] }, "palimpsest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielsz/Palimpsest.git", - "sha256": "dd0cd1212736778e81f455946ce7c18a281a4d58bacf47048df28436e03d78cc", + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "Palimpsest", + "sha256": "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq", "rev": "69fe61494bfd24305bf7e387fa716474918eafa2" }, "recipe": { "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130731.1021", "deps": [] }, "ac-geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xiaohanyu/ac-geiser.git", - "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130929.147", "deps": [ @@ -11362,21 +12041,22 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1550", "deps": [] }, "hound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryoung786/hound.el.git", - "sha256": "d2f418d4cd00346bf91a6342bcb19b9dff629e7352a1b1dcc45dd3823fb3a5be", + "tag": "fetchFromGitHub", + "owner": "ryoung786", + "repo": "hound.el", + "sha256": "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j", "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665" }, "recipe": { "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.1149", "deps": [ @@ -11386,14 +12066,15 @@ }, "tuareg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocaml/tuareg.git", - "sha256": "5d9e5b483f7fa92387ce9efccf4e9b9f5c9a61b868df80443f24416ac1b51be3", + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "1650j84yvvwci0b8zy40dsdp75ad5f4d9pvkf9kzd47dkafjsyca", "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2" }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.851", "deps": [ @@ -11402,42 +12083,45 @@ }, "twilight-anti-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", - "sha256": "d3f08b4a43f1936bcc659adef65d929e44873cdc847ef71ad03aaf7eda265a7c", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-anti-bright-theme", + "sha256": "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n", "rev": "c3a7b4177416031284da73f53b4dddaa27570bd7" }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.234", "deps": [] }, "benchmark-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dholm/benchmark-init-el.git", - "sha256": "b3c94c4bd6096115f824aef84bb9bdb88ff5d6c8b6406686ae5013b7f5adb418", + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "benchmark-init-el", + "sha256": "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2", "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178" }, "recipe": { "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.438", "deps": [] }, "octicons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-octicons.git", - "sha256": "7ca676d42e451a8ec7b19a7ce11f3e1f4b3c52ca2cd40b654607e0fc2a6ce736", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw", "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d" }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2240", "deps": [ @@ -11446,56 +12130,60 @@ }, "loc-changes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-loc-changes.git", - "sha256": "79030be31e6cddd1b33d6d04dd24c66085b71bc2d8d15874f819f027c8a289ed", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-loc-changes", + "sha256": "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94", "rev": "58000738accf2f80ea2bf210f7dea5914adb14ee" }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.1048", "deps": [] }, "go-stacktracer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samertm/go-stacktracer.el.git", - "sha256": "1e9c26152183c18a8a1369d7a8326fc537e55de665d0653aa7ed8ace9dd7b658", + "tag": "fetchFromGitHub", + "owner": "samertm", + "repo": "go-stacktracer.el", + "sha256": "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y", "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976" }, "recipe": { "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.1642", "deps": [] }, "initsplit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dabrahams/initsplit.git", - "sha256": "268c240e6a42ae807da540ead4f24c78ff6991d82d27036efc514706a303310c", + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "031i0fihcisizip069rdv28nkzvq9krd9sj0lmyq1bj2d8729316", "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68" }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1829", "deps": [] }, "downplay-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobias/downplay-mode.git", - "sha256": "88141dcdd72d8e3b3326d5512f83797c279f95d17756c9860519c1d3dce6fa68", + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548", "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb" }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1409", "deps": [] @@ -11509,21 +12197,22 @@ }, "recipe": { "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130816.1554", "deps": [] }, "math-symbols": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/math-symbols.git", - "sha256": "8a225117cd8a4009ea2935a9689fe7c4d6c7f7cc36aff7535c324f9340ec1eb2", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "math-symbols", + "sha256": "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la", "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764" }, "recipe": { "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1842", "deps": [ @@ -11532,14 +12221,15 @@ }, "ruby-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.140", "deps": [ @@ -11548,14 +12238,15 @@ }, "flycheck-google-cpplint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-google-cpplint.git", - "sha256": "f0cf357e97f84afaaba6e41e44d1574ca7601649a78148310955005fa28f112f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-google-cpplint", + "sha256": "0fykawnq9ch1vj76rsimwbmn2xxdamsnvbj4ahqaqhq7adb2wyrq", "rev": "dc23300757c6762c018d536a5831aef2486f7a17" }, "recipe": { "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140806.1125", "deps": [ @@ -11570,7 +12261,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1632", "deps": [ @@ -11579,28 +12270,30 @@ }, "rebox2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/rebox2.git", - "sha256": "41f73f7c0ebdad3ba70cddf1fd7adbf4ef9a2a90e0af9fdf3199890a894d48f0", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "rebox2", + "sha256": "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z", "rev": "00634eca420cc48657b81e40e599ff8548083985" }, "recipe": { "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121113.700", "deps": [] }, "alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/alchemist.el.git", - "sha256": "864717b68c3ad2c940d34c6a0314c6b1651c4f70df1d140a0ee24bbc2b20f720", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "1waspq1apxk4l6m9wshhjp44nj1sci1xvk9pah9gy977j74ng0yl", "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97" }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.49", "deps": [ @@ -11613,14 +12306,15 @@ }, "eopengrok": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/youngker/eopengrok.el.git", - "sha256": "f3d4e725c36c7a4c739576b46904484b8d59aaf7b95c4646fe180a7a013bebfb", + "tag": "fetchFromGitHub", + "owner": "youngker", + "repo": "eopengrok.el", + "sha256": "1yzb7c0pl2hqzr34cp5ryym5k3ab9026kd3njmrlqykcqcjygm7k", "rev": "1e471ee40145e73316ad5a965a44b46edbae68a3" }, "recipe": { "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.109", "deps": [ @@ -11632,28 +12326,30 @@ }, "pretty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akatov/pretty-mode.git", - "sha256": "e83518274f8199df364f34fdee53a87ed1e99c45ebd8a6c09f0d8e0f25c6d25f", + "tag": "fetchFromGitHub", + "owner": "akatov", + "repo": "pretty-mode", + "sha256": "0ccqym98c6zdyrparj5n97bpp9rspxb3z5lqfcrjypp0kn04z1ss", "rev": "3e0b88d3db20f89fda2cdce3f54371728dcfd05b" }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.1352", "deps": [] }, "function-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/function-args.git", - "sha256": "487907165dd444b9d6a20e840b77ea4f0d7538dce62d55228fd773cd0067ee54", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "function-args", + "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8", "rev": "25e447d8a8930a8c515077de57a7693c6a642514" }, "recipe": { "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.751", "deps": [ @@ -11662,14 +12358,15 @@ }, "dayone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/emacs-dayone.git", - "sha256": "25d989f8c68da2bd51a2d3c3987f1b1dc6d543b40ee3ec1d8d01ef292aa78a20", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "emacs-dayone", + "sha256": "084alwm2kvq1ilfyrqqfni1xbihx3dzrihykl98vv8ldqvw8kn95", "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d" }, "recipe": { "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.455", "deps": [ @@ -11680,14 +12377,15 @@ }, "splitjoin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-splitjoin.git", - "sha256": "da5c5c63175c171df6b766634fc68dc8107f64dfa3669d89c15eaea97d7431f0", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc", "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c" }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.932", "deps": [ @@ -11696,28 +12394,30 @@ }, "url-shortener": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuyang0/url-shortener.git", - "sha256": "a50b0b1ec254ceafffbb27848183e4e3f1eaa69f81530138f257c9154b37ccfd", + "tag": "fetchFromGitHub", + "owner": "yuyang0", + "repo": "url-shortener", + "sha256": "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0", "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88" }, "recipe": { "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.113", "deps": [] }, "frame-restore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/frame-restore.el.git", - "sha256": "581e94c8e7c6ed472e28eb0590e532c0495bb58a50fc187a0e40c6805e664e90", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx", "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8" }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140811.1609", "deps": [ @@ -11726,58 +12426,62 @@ }, "fortune-cookie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andschwa/fortune-cookie.git", - "sha256": "90996f701f96d0691f86681f9a88d03706ffb579b585b92c3b77b4c39ffa854c", + "tag": "fetchFromGitHub", + "owner": "andschwa", + "repo": "fortune-cookie", + "sha256": "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4", "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465" }, "recipe": { "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.35", "deps": [] }, "link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [] }, "bind-map": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-bind-map.git", - "sha256": "baf6863618424fc74721504fe9017a049f2478ea682b134fb338195e2ee37fd8", - "rev": "bb7a8b225879fc6a865464e5e63865653ae74427" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-bind-map", + "sha256": "18i2lq89pay4s58xvybmk7bs9haq5vx217wi25fzxgam6nwnzkhy", + "rev": "d47be94d236c819b5ca47d66551d23a0ee17ac33" }, "recipe": { "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1902", + "version": "20151217.1029", "deps": [ "emacs" ] }, "jumplist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ganmacs/jumplist.git", - "sha256": "d4230811c427ed1b509c69d887b17d4666cf2dde277ae70c86ac920190df7f7a", + "tag": "fetchFromGitHub", + "owner": "ganmacs", + "repo": "jumplist", + "sha256": "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl", "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502" }, "recipe": { "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.2145", "deps": [ @@ -11792,63 +12496,67 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1833", "deps": [] }, "button-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl", "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.754", "deps": [] }, "readline-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/monsanto/readline-complete.el.git", - "sha256": "a65a12e1947a2656ce5ae317ba93e25465112850fb9d2414829f5377552fabc8", + "tag": "fetchFromGitHub", + "owner": "monsanto", + "repo": "readline-complete.el", + "sha256": "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6", "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf" }, "recipe": { "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.937", "deps": [] }, "fill-column-indicator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpaker/Fill-Column-Indicator.git", - "sha256": "38eff1d0565ca7ff30d29cac933f6042e032cd0241208cb913ee7862f1d5783d", + "tag": "fetchFromGitHub", + "owner": "alpaker", + "repo": "Fill-Column-Indicator", + "sha256": "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq", "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6" }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1433", "deps": [] }, "mallard-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-snippets.git", - "sha256": "c2dba98a425cc148f7963a7c1f8d984ca0d94a0c11747339a5e4fa6a0f896762", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-snippets", + "sha256": "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2", "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc" }, "recipe": { "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131023.1351", "deps": [ @@ -11858,14 +12566,15 @@ }, "ido-gnus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/ido-gnus.git", - "sha256": "3716e0d07f51be352ffc48a2ee6bf580d13264bce8db55968f624bbb4be3cd45", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "ido-gnus", + "sha256": "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip", "rev": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089" }, "recipe": { "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140216.1046", "deps": [ @@ -11874,28 +12583,30 @@ }, "farmhouse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattly/emacs-farmhouse-theme.git", - "sha256": "7f551514979c5df0ead6abb3854d59df9ca7993f67a5948866170b3285728f22", + "tag": "fetchFromGitHub", + "owner": "mattly", + "repo": "emacs-farmhouse-theme", + "sha256": "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz", "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1" }, "recipe": { "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.2327", "deps": [] }, "serverspec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.655", "deps": [ @@ -11907,28 +12618,30 @@ }, "prognth": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/prognth.git", - "sha256": "955332b8f1f3b46cec6c7d9e558194c4590b93da406470ae1ccf8143e6d2fdeb", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "prognth", + "sha256": "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm", "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62" }, "recipe": { "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130920.1259", "deps": [] }, "butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AshtonKem/Butler.git", - "sha256": "73642b08f3ed6f0dcfc5e474361c1f64166dd18612de113cab04543861ea3bed", + "tag": "fetchFromGitHub", + "owner": "AshtonKem", + "repo": "Butler", + "sha256": "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg", "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016" }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.1908", "deps": [ @@ -11939,42 +12652,45 @@ }, "iflipb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrosdahl/iflipb.git", - "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1516", "deps": [] }, "ido-complete-space-or-hyphen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", - "sha256": "c66f9ee98281e0c5a0705368eedc2e611f29a19d45df13c94e476ce3ec13dc4a", + "tag": "fetchFromGitHub", + "owner": "doitian", + "repo": "ido-complete-space-or-hyphen", + "sha256": "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw", "rev": "3fe1fe1e1a743f8deb8f4025977647afecd58f14" }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130228.408", "deps": [] }, "bbdb-android": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-android.git", - "sha256": "5027710ede91d0f36752a175bebf72b0316bdea313c066dfb512ab51f40b521c", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-android", + "sha256": "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm", "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4" }, "recipe": { "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150706.24", "deps": [ @@ -11983,42 +12699,45 @@ }, "sift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/sift.el.git", - "sha256": "f8c3740afefdbc636ebc27662d8bbbdef6fc0a89ede76d62c00e222f99c559fe", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0v4glcpxp812554dggimv6srccwg7031iys4j7c0b97cm279jyhi", "rev": "a757745492124e5a021a4cc7e62d5349c21213c6" }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1123", "deps": [] }, "moz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/mozrepl.git", - "sha256": "808970f4ab8cdcf160aec0a3fcdcfc89a12d49bafff31ac117dda8048c6fea5b", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9", "rev": "57f278849e4246a992e731e188b221a2574fc81e" }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1206", "deps": [] }, "baidu-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-baidu-life.git", - "sha256": "ae94b5acc387e5553d9d05ff895674d1c4e233afc2065235c6767fee55e85303", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-baidu-life", + "sha256": "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f", "rev": "4cb251d44e97da54306af9d99444d9b8525f043e" }, "recipe": { "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.615", "deps": [ @@ -12027,14 +12746,15 @@ }, "use-package-chords": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/use-package-chords.git", - "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "use-package-chords", + "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz", "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" }, "recipe": { "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1528", "deps": [ @@ -12045,14 +12765,15 @@ }, "jekyll-modes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fred-o/jekyll-modes.git", - "sha256": "c34ca7de87533176ebc700127ebbec5af27aed24ef3a71d56c077da4856e255e", + "tag": "fetchFromGitHub", + "owner": "fred-o", + "repo": "jekyll-modes", + "sha256": "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c", "rev": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c" }, "recipe": { "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141117.714", "deps": [ @@ -12061,14 +12782,15 @@ }, "timer-revert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/timer-revert.git", - "sha256": "0acd5c46e41bc0481f5391a570d5daec8b25c29a217c5433943206fae8496c90", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q", "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45" }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150122.1432", "deps": [] @@ -12082,21 +12804,22 @@ }, "recipe": { "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141210.627", "deps": [] }, "helm-mt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfdeshom/helm-mt.git", - "sha256": "f4a96df13dd432ce52a5da88b77f1bf0cacfd49c8b473a7830c65977b0422b27", + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl", "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c" }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2320", "deps": [ @@ -12108,14 +12831,15 @@ }, "web-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/emacs-web-server.git", - "sha256": "e8e64c4cb210079d56771bf659b2fa6a2b0236986b844902cf04f440ae71fa68", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "emacs-web-server", + "sha256": "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05", "rev": "469cd3bc117bfb8da0c03a2a2fb185e80c81d068" }, "recipe": { "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140905.1906", "deps": [ @@ -12124,14 +12848,15 @@ }, "bpr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ilya-babanov/emacs-bpr.git", - "sha256": "292f8d0c8a6f179a2570d4eb2d415dfad8cb62b9eb65b6c7282c9a25219f4729", + "tag": "fetchFromGitHub", + "owner": "ilya-babanov", + "repo": "emacs-bpr", + "sha256": "01bh371c0ln0qw1wixw28gdyjk4v8griw464d671r26wsxjdiwqy", "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4" }, "recipe": { "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1415", "deps": [ @@ -12140,56 +12865,60 @@ }, "thumb-through": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/thumb-through.git", - "sha256": "967bb5f560bf63ccf43f1cde24a9c61f89ebccd60f9ed831574d738e7d66d75b", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "thumb-through", + "sha256": "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn", "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63" }, "recipe": { "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120118.2334", "deps": [] }, "darcula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/darcula-theme-emacs.git", - "sha256": "4f1c655b71a7afd131d97a2b92f53692a41301ab1271af2732bc5e4b015ea8c5", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "darcula-theme-emacs", + "sha256": "100aycjy47md09aw0wlp846py93zrvw6wafcmmha1vbc8p5v5nms", "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e" }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.435", "deps": [] }, "cm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/criticmarkup-emacs.git", - "sha256": "cad88a3292200d88276fd7a53af96729c828453cce1a7517d06bb50e7ab223c6", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1ii3n9x0xdbbs0bpa6nf7i2jij19czwkm9fpdwkqh390j8r8mn6a", "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0" }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141112.1915", "deps": [] }, "dynamic-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/dynamic-fonts.git", - "sha256": "dea6c666560df1ffd7cee22112427b5bb3c2d92643565deab802e0ff10bad83b", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh", "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82" }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140731.726", "deps": [ @@ -12200,42 +12929,45 @@ }, "ethan-wspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/glasserc/ethan-wspace.git", - "sha256": "449b5c11a486897a9c77a4967146b873c0104e33b0cc8b4f0e3b8632fe93b02a", - "rev": "acba9d4a8c25719ef7acfb0edd04e3339eb07312" + "tag": "fetchFromGitHub", + "owner": "glasserc", + "repo": "ethan-wspace", + "sha256": "098mfyw63b23h7jajaik1rfj307sxs82nnwf6b81j550kl2n05y6", + "rev": "477444d95adc2cb86c82e498cbaa5fbb1fc293a8" }, "recipe": { "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20140709.743", + "version": "20151217.2010", "deps": [] }, "ssh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/ssh-el.git", - "sha256": "6da77166f0d18a504978d14144142a596a00a299ddf751643ee22cd8f86cb0e5", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "ssh-el", + "sha256": "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd", "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1" }, "recipe": { "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120904.1542", "deps": [] }, "bbdb2erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/bbdb2erc.git", - "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.129", "deps": [ @@ -12244,28 +12976,30 @@ }, "whitespace-cleanup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whitespace-cleanup-mode.git", - "sha256": "7988261fc656c624b942a4885e86a45f0b6f5bf3d4531be34f4d4f90bd5fd097", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whitespace-cleanup-mode", + "sha256": "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r", "rev": "14eaf40e0e67539106d3636af440a167105be296" }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.647", "deps": [] }, "m-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/m-buffer-el.git", - "sha256": "84223cbaddcce66510e49654ceacdb61343116eac03441418fd79f9820449085", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "07v2mch8qd8s760gxx3c8fdqqsjpqpxacl5nsbiqvpsvccky66b3", "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0" }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1116", "deps": [ @@ -12275,70 +13009,75 @@ }, "yard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/yard-mode.el.git", - "sha256": "62be969f3ce113c605be94a4cf30ce692288a7e80d85c9deffbf7cad3eb80b29", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "yard-mode.el", + "sha256": "06mjjxa0blgxd8dbahgyni3b1rscbwjpxby5abrgfbb0fvs2bnfa", "rev": "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf" }, "recipe": { "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1244", "deps": [] }, "lodgeit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ionrock/lodgeit-el.git", - "sha256": "94abb5a54f39cb3e3b5d874d3f0fc414f1b9bce01de87827503dfe098ea8b6b1", + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "lodgeit-el", + "sha256": "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl", "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c" }, "recipe": { "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.849", "deps": [] }, "distinguished-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lokaltog/distinguished-theme.git", - "sha256": "3e2e18718c165c5dfaa00be0bb547a6ca1f0dad6225857ea9a3015e4bdc4e4ae", - "rev": "7fe66fbe6f808047a66d3174d1e2152fedb93ec6" + "tag": "fetchFromGitHub", + "owner": "Lokaltog", + "repo": "distinguished-theme", + "sha256": "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm", + "rev": "9b1d25ac59465a5016d187ea84b7614c95a29b3b" }, "recipe": { "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151007.448", + "version": "20151216.1415", "deps": [] }, "wavefront-obj-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abend/wavefront-obj-mode.git", - "sha256": "de051d41a7413f516ee2ffc796fece2c72bfcef01f2cf067a4062581b2f8887f", + "tag": "fetchFromGitHub", + "owner": "abend", + "repo": "wavefront-obj-mode", + "sha256": "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy", "rev": "75eedad052848e82cdd94064764956b906e6d6b2" }, "recipe": { "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1316", "deps": [] }, "pow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yukihr/emacs-pow.git", - "sha256": "01ce7da470aecabf151927bce9d009c3a205836c08283f89621dd05a6bf39f5d", + "tag": "fetchFromGitHub", + "owner": "yukihr", + "repo": "emacs-pow", + "sha256": "1qizc9vh7lazs66s80avbf4whyrcinav07lpzva27yqb1gkmwap2", "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140" }, "recipe": { "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.306", "deps": [ @@ -12348,14 +13087,15 @@ }, "memolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mikanfactory/memolist.el.git", - "sha256": "f56adb555e40471ca199d78b8eaa2004c83335faad7b4eee3c3b8a80b6cca4c9", + "tag": "fetchFromGitHub", + "owner": "mikanfactory", + "repo": "memolist.el", + "sha256": "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm", "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f" }, "recipe": { "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1221", "deps": [ @@ -12365,28 +13105,30 @@ }, "iasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RAttab/iasm-mode.git", - "sha256": "e5356cfc7d945e38661046a90a0f135ab1b888425c3a4734ddd2e19d220d82be", + "tag": "fetchFromGitHub", + "owner": "RAttab", + "repo": "iasm-mode", + "sha256": "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5", "rev": "6b404ff94bbfe971b3614007c8e5dcd5757c5727" }, "recipe": { "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1844", "deps": [] }, "marshal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/marshal.el.git", - "sha256": "37755db345001f7f1acfeb0d9826fc53c832ea8620f15c8b53f76dd3dc87903b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p", "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d" }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2057", "deps": [ @@ -12396,14 +13138,15 @@ }, "chinese-yasdcv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-yasdcv.git", - "sha256": "1638878007a282834b6babf599db4bb475fb7ec5d89fafcfe22dfe9b29323a9e", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-yasdcv", + "sha256": "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq", "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb" }, "recipe": { "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.816", "deps": [ @@ -12413,14 +13156,15 @@ }, "company-nand2tetris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1636", "deps": [ @@ -12432,14 +13176,15 @@ }, "zygospore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louiskottmann/zygospore.el.git", - "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "tag": "fetchFromGitHub", + "owner": "louiskottmann", + "repo": "zygospore.el", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z", "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140703.352", "deps": [] @@ -12452,21 +13197,22 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120426.2023", "deps": [] }, "eproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/eproject.git", - "sha256": "f9117dfb851fe714abb25007b727ff5faf8d8b25cf73a7990959e5fdec29e756", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "eproject", + "sha256": "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2", "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78" }, "recipe": { "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.2330", "deps": [ @@ -12475,42 +13221,65 @@ }, "bonjourmadame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/bonjourmadame.git", - "sha256": "c60d8758b446af66cfe9a4caef494f1c4f0448de9b9d1059758f6525926f57e9", + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "bonjourmadame", + "sha256": "1sapdy92arcgfmci17cvvr408kqw9x4yzjm4x77ndbs6nic8f3f6", "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b" }, "recipe": { "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.508", "deps": [] }, + "vdirel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "vdirel", + "sha256": "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v", + "rev": "aab19692e2c2084a0d5b554a96a64a2e3e2a3d09" + }, + "recipe": { + "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.55", + "deps": [ + "emacs", + "helm", + "org-vcard", + "seq" + ] + }, "scala-mode2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/scala-mode2.git", - "sha256": "7887edd7ac95398b59383ef2099aefdced36f555dd4b98b5a753a7d7afb7f7b0", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "scala-mode2", + "sha256": "1xyfxwrp2hlj49412ypl1mi5pxx6z4aw1hhzkgcwd3bfyyqdrg1k", "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f" }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150618.150", "deps": [] }, "show-marks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/show-marks.git", - "sha256": "8709d17f9803f0952fa820548128084d7c7b71a0e1e3cbe3fc8f3b6be9997397", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "show-marks", + "sha256": "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7", "rev": "97609566582e65eed0d0a854efa5c312f209115d" }, "recipe": { "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130805.949", "deps": [ @@ -12519,28 +13288,30 @@ }, "simple-rtm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbunkus/simple-rtm.git", - "sha256": "921b2dea7b716561aac9405287cee0972441a824a0fcedb7ac1f560f439f564a", + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "simple-rtm", + "sha256": "0dxfgpqjcdwk1yzxjg9nbw7aa56vp7jxxbpyp8j92wd7lwgpk6a5", "rev": "cff3e87bc2d440aa643c9f43bf99972668147231" }, "recipe": { "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140926.639", "deps": [] }, "rigid-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/rigid-tabs.el.git", - "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.1056", "deps": [ @@ -12556,7 +13327,7 @@ }, "recipe": { "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131010.154", "deps": [ @@ -12565,28 +13336,30 @@ }, "hc-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edran/hc-zenburn-emacs.git", - "sha256": "1322701d2ac920ee92d1a5fc6c51f7993ca24265d72463f8c4c7a8030f91ec65", + "tag": "fetchFromGitHub", + "owner": "edran", + "repo": "hc-zenburn-emacs", + "sha256": "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk", "rev": "fd0024a5191cdce204d91c8f1db99ba31640f6e9" }, "recipe": { "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.1133", "deps": [] }, "synonymous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/synonymous.el.git", - "sha256": "bccb0ba188b275ea7970f5a7a44b6a37f9adac1344c774eb642cca7deb74b60b", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "synonymous.el", + "sha256": "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw", "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4" }, "recipe": { "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.1034", "deps": [ @@ -12597,56 +13370,60 @@ }, "theme-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hadronzoo/theme-changer.git", - "sha256": "a812bee96ee38b689f528ceb8a68b75d1498d3a98153c6eb4c7b9ce35bb1555a", + "tag": "fetchFromGitHub", + "owner": "hadronzoo", + "repo": "theme-changer", + "sha256": "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8", "rev": "c28ea477e8277c03e14657f167695e3c4bf3c11f" }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130725.2119", "deps": [] }, "uncrustify-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/koko1000ban/emacs-uncrustify-mode.git", - "sha256": "55c5635a9b7be6c0506ee2a385406b180bf7fa273f339e54f38781e82481c60c", + "tag": "fetchFromGitHub", + "owner": "koko1000ban", + "repo": "emacs-uncrustify-mode", + "sha256": "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam", "rev": "73893d000361e95784911e5ec268ad0ab2a1473c" }, "recipe": { "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.859", "deps": [] }, "hl-sentence": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/hl-sentence.git", - "sha256": "babf6681e44a5e2a17669974bb75db2423fbfceca8af72c8ccee1c70515d4e5e", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs", "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89" }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140802.1120", "deps": [] }, "mynt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/crshd/mynt-mode.git", - "sha256": "aac24e44b98ef53114f966fefd6441e8e5b5d8399fef6f064ff5c6383e06b4a2", + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "mynt-mode", + "sha256": "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma", "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9" }, "recipe": { "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.1549", "deps": [ @@ -12655,14 +13432,15 @@ }, "svg-mode-line-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/svg-mode-line-themes.git", - "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "svg-mode-line-themes", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic", "rev": "80a0e01839cafbd66899202e7764c33231974259" }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1506", "deps": [ @@ -12671,28 +13449,30 @@ }, "tdd-status-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/algernon/tdd-status-mode-line.git", - "sha256": "0a895ac24250e090fddd138278babab81da60b29488ae74f81f2128912c17c6b", + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "tdd-status-mode-line", + "sha256": "01r34h3srli5bglss0zxnblpfbgzd45cvh3bg16i8dyyph9wgqyn", "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b" }, "recipe": { "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.1116", "deps": [] }, "processing-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140426.928", "deps": [ @@ -12701,14 +13481,15 @@ }, "namespaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/elisp-namespaces.git", - "sha256": "313f696729e167457b4646d99c4d3f0182aa533cec9c14876871ae5a294c9a58", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "elisp-namespaces", + "sha256": "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140", "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270" }, "recipe": { "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130326.1750", "deps": [] @@ -12721,35 +13502,37 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.938", "deps": [] }, "clevercss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/CleverCSS-Mode.git", - "sha256": "bda129acd83d11bfa6ba36c2e89b036f787331b9a799121f67e4b944edfa06a7", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "CleverCSS-Mode", + "sha256": "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx", "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc" }, "recipe": { "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.1955", "deps": [] }, "grizzl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/grizzl.git", - "sha256": "3cc4f6f8257fa4c552df7ff93abbe05ba2317e94c967013546e2c2ad410d9c79", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1y2vn7xxzphg1d1isvimygzndybb6z4cfhpbrciswv983lixwcpx", "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c" }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.30", "deps": [ @@ -12759,28 +13542,30 @@ }, "hyde": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nibrahim/Hyde.git", - "sha256": "0ab40ee83db247b3b5a085f95e9006156a862204d3365a6d6a168c55742f6f23", + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav", "rev": "640959dd6837487dd4545809d6cc9ef54283673d" }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.1225", "deps": [] }, "on-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michael-heerdegen/on-screen.el.git", - "sha256": "044517ab266c1c8a886841383274a5fe6e16a7383b3f5604c3e403743ce4dccf", + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "on-screen.el", + "sha256": "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy", "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27" }, "recipe": { "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.2308", "deps": [ @@ -12789,28 +13574,30 @@ }, "html-script-src": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/html-script-src.git", - "sha256": "d86b250d953d3d9014ae19d05ccc7acd951f24a4cb53da531275d5c5cde62724", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "html-script-src", + "sha256": "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh", "rev": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422" }, "recipe": { "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120403.1315", "deps": [] }, "shoulda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcwebbie/shoulda.el.git", - "sha256": "1145f4152a1344d1b38f42a38b79f3ecb84928943001af0a17d0500e893ae4a6", + "tag": "fetchFromGitHub", + "owner": "marcwebbie", + "repo": "shoulda.el", + "sha256": "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i", "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e" }, "recipe": { "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140616.1333", "deps": [ @@ -12825,35 +13612,37 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1907", "deps": [] }, "pabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/pabbrev.git", - "sha256": "d0b8442405823eddc5219b12758f7c1a0a410933ec72f139300e5dbe3ba9f881", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y", "rev": "d28cf8632d2691dc93afbb28500126242d37961c" }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.645", "deps": [] }, "tumblesocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gcr/tumblesocks.git", - "sha256": "82c99006a5a14d0ee7912bd84bd31a32ebf928652617c669d1ac1eab3e3bfebc", + "tag": "fetchFromGitHub", + "owner": "gcr", + "repo": "tumblesocks", + "sha256": "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2", "rev": "85a6cdc2db3390593fd886c474959b675460b310" }, "recipe": { "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140215.1447", "deps": [ @@ -12871,35 +13660,37 @@ }, "recipe": { "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.607", "deps": [] }, "auto-indent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/auto-indent-mode.el.git", - "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "auto-indent-mode.el", + "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y", "rev": "1a12448ce3a030ed905226450dfb01bba37f127c" }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140505.855", "deps": [] }, "main-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-mainline.git", - "sha256": "058b7ee04639807da7a16e3ee0abbcbe574cedc306fa9aade58898b900e5521b", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-mainline", + "sha256": "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5", "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f" }, "recipe": { "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.2006", "deps": [ @@ -12911,11 +13702,11 @@ "tag": "fetchsvn", "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143628" + "rev": "143722" }, "recipe": { "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.239", "deps": [ @@ -12926,56 +13717,60 @@ }, "pig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/motus/pig-mode.git", - "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "tag": "fetchFromGitHub", + "owner": "motus", + "repo": "pig-mode", + "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx", "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" }, "recipe": { "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140617.1258", "deps": [] }, "logstash-conf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/logstash-conf.el.git", - "sha256": "0af7d235a7e65e01307eb0fe15ecc6acf45fa80254d503ab14f3e838d81ffd16", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "logstash-conf.el", + "sha256": "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa", "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de" }, "recipe": { "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150308.718", "deps": [] }, "volume": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/volume-el.git", - "sha256": "6749fd85d47162b654ae0e0520d289cbb2521ff9903e17542c4bf168b05cb17a", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "volume-el", + "sha256": "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7", "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6" }, "recipe": { "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.1509", "deps": [] }, "evil-leader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-leader.git", - "sha256": "8a0ec0a9e26e195d8bcbd5f8ad23895dfe82915d647903185541243187af3a96", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3", "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf" }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.743", "deps": [ @@ -12984,28 +13779,30 @@ }, "niflheim-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/niflheim-theme/emacs.git", - "sha256": "b5231a609e2787e52fab56c24a7b725fa6dd4ac65f56c9102c9e5e4df1e0fb90", + "tag": "fetchFromGitHub", + "owner": "niflheim-theme", + "repo": "emacs", + "sha256": "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm", "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e" }, "recipe": { "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1021", "deps": [] }, "inf-mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/inf-mongo.git", - "sha256": "6832c1ea91247d223500297ae73b76f9ccbbd6b80f9fbd4ceccefaf68b5b19ea", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "inf-mongo", + "sha256": "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi", "rev": "2d910f2143610f12de9c573ee202a322cf579e85" }, "recipe": { "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131216.428", "deps": [] @@ -13018,35 +13815,37 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1851", "deps": [] }, "darktooth-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", - "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1922", "deps": [] }, "helm-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rubikitch/helm-anything.git", - "sha256": "4bbe4da505be42ff2916f805191cb2f10e161b4e91795e0294300e3d70c07f94", + "tag": "fetchFromGitHub", + "owner": "rubikitch", + "repo": "helm-anything", + "sha256": "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb", "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea" }, "recipe": { "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141126.431", "deps": [ @@ -13056,84 +13855,90 @@ }, "window-layout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-layout.git", - "sha256": "afcd8897476077497cf52f5327c55c6a828246df5ba9648045e7aa45568a9021", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-layout", + "sha256": "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg", "rev": "03ee615fc8fad5be4efec9c3febab8c851271257" }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.7", "deps": [] }, "draft-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gaudecker/draft-mode.git", - "sha256": "64d1330e69ce634228c14b40ca055b24c8a69e216613a95f2d6c6efb5ccba190", + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "draft-mode", + "sha256": "1451rdfgnvkc5mgsj4v646gadj14bc2wlh2bq4l44qyfd4737lb4", "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7" }, "recipe": { "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140609.956", "deps": [] }, "edit-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/edit-list.git", - "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100930.943", "deps": [] }, "grapnel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/grapnel.git", - "sha256": "6c6891b916a07414208fbc1812a02267254d4c5c05868175a45175796045745b", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c", "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf" }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131001.1034", "deps": [] }, "fcopy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/fcopy.git", - "sha256": "3671af137dddbfebd4d327a2407a63652e1a62b37f9653356c7beb11c341471a", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "fcopy", + "sha256": "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr", "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941" }, "recipe": { "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150304.803", "deps": [] }, "litable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/litable.git", - "sha256": "29553557c3f334ed0a2ab6969fdd39815120506fa0a6d6479d5bf24653087fd9", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "litable", + "sha256": "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99", "rev": "9065bade1ba42ad04d9839d58082b73da589dca6" }, "recipe": { "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.909", "deps": [ @@ -13142,14 +13947,15 @@ }, "ducpel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/ducpel.git", - "sha256": "db3e32038784fd6d08b363c25374c14802264f36c2d7e04a9d8dde2f5934a3d9", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz", "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32" }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140419.16", "deps": [ @@ -13158,14 +13964,15 @@ }, "sclang-extensions": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/sclang-extensions.git", - "sha256": "0d6616e2aeb78b5334f86b5a21e44a70facf2b404cd3f5910dbd6d8ebc0859a5", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "sclang-extensions", + "sha256": "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x", "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e" }, "recipe": { "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1639", "deps": [ @@ -13175,16 +13982,34 @@ "s" ] }, + "highlight-leading-spaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "highlight-leading-spaces", + "sha256": "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl", + "rev": "840db19d863dd97993fd9f893f5be501627b6354" + }, + "recipe": { + "sha256": "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.622", + "deps": [ + "emacs" + ] + }, "elfeed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1138", "deps": [ @@ -13193,14 +14018,15 @@ }, "org-dropbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/heikkil/org-dropbox.git", - "sha256": "bd45b3bf42a5ddf0f29d31a7169c0e72cfaa5dfb58d9d4365c9c54779ed54d4a", + "tag": "fetchFromGitHub", + "owner": "heikkil", + "repo": "org-dropbox", + "sha256": "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx", "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e" }, "recipe": { "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.2309", "deps": [ @@ -13211,14 +14037,15 @@ }, "resize-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dpsutton/resize-window.git", - "sha256": "f0b649ac1b75e962eed8992b11bf437359b583cbceee87c8fb8376bdc9d3390c", + "tag": "fetchFromGitHub", + "owner": "dpsutton", + "repo": "resize-window", + "sha256": "061lc8arwv7wmj98pii8ff6qk0sfhxhdh0f9dak5q8nazcvqgk41", "rev": "0bc23978d1084da5638becf93b66816edc4ece54" }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.2229", "deps": [ @@ -13227,14 +14054,15 @@ }, "kite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jscheid/kite.git", - "sha256": "e3a3abad2b99827f5659915caa2b5fe74fa353c85cebd18c27d08b4d41a4eb4c", + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "kite", + "sha256": "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd", "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144" }, "recipe": { "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130201.1338", "deps": [ @@ -13244,14 +14072,15 @@ }, "google-maps": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/google-maps.el.git", - "sha256": "a0d528677351b767c20e2192d3f484ad3b6dce7401b07c22661f884b4b7e71a0", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "google-maps.el", + "sha256": "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0", "rev": "90151ab59e693243ca8da660ce7b9ce361ea5126" }, "recipe": { "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130412.430", "deps": [] @@ -13265,21 +14094,22 @@ }, "recipe": { "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130207.1402", "deps": [] }, "forecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/forecast.el.git", - "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", "rev": "51526906140700f076bd329753abe7ae31b6da90" }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1635", "deps": [ @@ -13288,14 +14118,15 @@ }, "perl6-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hinrik/perl6-mode.git", - "sha256": "5ddbf7c949f5d2b9258b3c98b0614a2278581027806dbf664436bc41f4e0e418", + "tag": "fetchFromGitHub", + "owner": "hinrik", + "repo": "perl6-mode", + "sha256": "1ibnax9498jwcmkgm0jnl7q8qlwkgkp8nhp6zz7xr0x1d0dibcas", "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4" }, "recipe": { "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.1718", "deps": [ @@ -13305,56 +14136,60 @@ }, "tox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/tox.el.git", - "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141004.1603", "deps": [] }, "swap-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ekazakov/swap-buffers.git", - "sha256": "3939adc992ed01a3ab0724d00abd554ede23b4427907ed7a80a09b0c4e01c7ce", + "tag": "fetchFromGitHub", + "owner": "ekazakov", + "repo": "swap-buffers", + "sha256": "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r", "rev": "46ab31359b70d935add6c6e9533443116dc51103" }, "recipe": { "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.1639", "deps": [] }, "window-jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.1436", "deps": [] }, "org-screenshot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org-screenshot.git", - "sha256": "7ec85b7a6e07f114f7fea1722e4753d3fbb4986896afe4b73624e31afe46c62b", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org-screenshot", + "sha256": "0ay68vz1mqr46svy9bwnd2cb9yykad3jwwm1zvvi9w87drx5pj3y", "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb" }, "recipe": { "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.704", "deps": [ @@ -13363,14 +14198,15 @@ }, "init-open-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/init-open-recentf.el.git", - "sha256": "50d645d38b648291e01f55a1f37dd1cbbe2de0c44271ccf482eaddd4a0a76776", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "init-open-recentf.el", + "sha256": "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh", "rev": "f7999730ed8b02a9f4b9f884defd40a90772765b" }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.2223", "deps": [ @@ -13386,21 +14222,22 @@ }, "recipe": { "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100330.543", "deps": [] }, "date-field": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-date-field.git", - "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.1905", "deps": [ @@ -13411,84 +14248,90 @@ }, "regex-dsl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alk/elisp-regex-dsl.git", - "sha256": "fdb9021b1b5399ddcc54d72d15151fcf9650439bdf14df9edbe9241d4f9364b4", + "tag": "fetchFromGitHub", + "owner": "alk", + "repo": "elisp-regex-dsl", + "sha256": "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx", "rev": "ac89ab8b7691a165ef3007cb84417125cfc0632e" }, "recipe": { "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100124.428", "deps": [] }, "lemon-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/lemon-mode.git", - "sha256": "47fe920e81548c46633a6195521b8720d492f5b05dfa03b3fbbc541a4bcdd258", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "lemon-mode", + "sha256": "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7", "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430" }, "recipe": { "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130216.704", "deps": [] }, "atom-one-dark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonathanchu/atom-one-dark-theme.git", - "sha256": "deaf9f306eaabaa4ca1771e4fb08153e6178de487dfcc45965a7eeaa0a8b9815", + "tag": "fetchFromGitHub", + "owner": "jonathanchu", + "repo": "atom-one-dark-theme", + "sha256": "05cqic5amvm7cmcw9z3x93g7hq9y2l4gpr3i2z5a9fmadqq9zbyy", "rev": "5fe3c1463daa4736435eb0c4716d4bf29f25f0a6" }, "recipe": { "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.2245", "deps": [] }, "toggle-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/deadghost/toggle-window.git", - "sha256": "b978eb5117e936801ff3038345d73f2303ff0321f1ba0ad77dbbd21764540639", + "tag": "fetchFromGitHub", + "owner": "deadghost", + "repo": "toggle-window", + "sha256": "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r", "rev": "e82c60e543933880402ede11e9423e48a17dde53" }, "recipe": { "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.948", "deps": [] }, "slamhound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/slamhound.git", - "sha256": "8f20989698ac0b8849e906d20ffc518a67749567960ab2de22f30b5331f7b27f", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad", "rev": "f43dd49b63b2838081735ea1988f70de05389692" }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140506.1818", "deps": [] }, "syslog-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/syslog-mode.git", - "sha256": "c4e9090063061cf72763523f86888371365331cb549c569cb53c3180866ab7eb", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "syslog-mode", + "sha256": "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4", "rev": "c18661b3058f0ec00e6957c955559a762cb0062c" }, "recipe": { "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140217.1818", "deps": [ @@ -13497,56 +14340,60 @@ }, "evil-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-numbers.git", - "sha256": "ccea3c266c22f67896e5b96d9f1d1c56288e52c5cf05bafc8bd8548bbaf2c64a", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np", "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e" }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.751", "deps": [] }, "switch-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/switch-window.git", - "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.415", "deps": [] }, "zeal-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jinzhu/zeal-at-point.git", - "sha256": "6e1f4c56fe881662b5945ee38f53260f42f2d9b34eec0ac7faa9c46a50f05db3", + "tag": "fetchFromGitHub", + "owner": "jinzhu", + "repo": "zeal-at-point", + "sha256": "1csxy186mi59zb3hmv2fngcz4hhg4r9qzqsyjjsn45l8zrb4q7vf", "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb" }, "recipe": { "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.2107", "deps": [] }, "helm-robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-robe.git", - "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2155", "deps": [ @@ -13555,14 +14402,15 @@ }, "helm-flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/helm-flx.git", - "sha256": "fa9d207737c3e64b5728b89677dbcd074a59a8e5e606bca39ecacad8ea9fd529", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "helm-flx", + "sha256": "02aran1myhm43skv7rjinrjbrayj1ld1s5f604bbqil8swvrq5ba", "rev": "f634e85ee92f6a390da33d1a618a4c353e270762" }, "recipe": { "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1025", "deps": [ @@ -13573,14 +14421,15 @@ }, "ac-capf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-capf.git", - "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-capf", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da", "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2117", "deps": [ @@ -13590,56 +14439,60 @@ }, "lice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/lice-el.git", - "sha256": "7357fc317b6dc14b906c2ae17fcdc6cf2cea02397998d21692a0c51ead02b53a", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "0df5v401w9n2d64gxxgb34mb4dm2nxc8jx1cj9ir23cx9dqmxjrq", "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c" }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.2223", "deps": [] }, "mark-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs-mark-tools.git", - "sha256": "7f4792a649629f4a09e03b6df51bed9e259b4bd1286ce7da4679d604f4da9f4c", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz", "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c" }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130614.525", "deps": [] }, "xah-get-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-get-thing-or-selection.git", - "sha256": "e2740e45fc88221dbe3455d7b1f3168addc147c610b05bf007286a71edb77329", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-get-thing-or-selection", + "sha256": "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72", "rev": "d2dadc54417468cc42da72c4e02fd23e3fd0584a" }, "recipe": { "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.1630", "deps": [] }, "helm-gitignore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jupl/helm-gitignore.git", - "sha256": "0f43ea411395beaf9f53a84d1f11a99870183bc6d0386053a12f6290d4e5963c", + "tag": "fetchFromGitHub", + "owner": "jupl", + "repo": "helm-gitignore", + "sha256": "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g", "rev": "03aad6edb0ed4471c093230856f26719754e570b" }, "recipe": { "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.2256", "deps": [ @@ -13657,21 +14510,22 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.2025", "deps": [] }, "dkmisc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dkmisc.git", - "sha256": "89ec8c71084bdebed8e675168009600c0c692c842469b298c42a8575d10be7db", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkmisc", + "sha256": "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49", "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608" }, "recipe": { "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.515", "deps": [ @@ -13680,42 +14534,45 @@ }, "dedicated": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/dedicated.git", - "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090428.1431", "deps": [] }, "pixiv-novel-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", - "sha256": "add447df623bedb255dba19117e2f42bc67625ebcf32013f767f74711a16f691", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "pixiv-novel-mode.el", + "sha256": "14gn2qd72x3zfqzh2cngxcjpdiibyki1g4d1vdav5v9vcbglgm5d", "rev": "65809cf31816257d8c6c92868af6c30abf7b2043" }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.54", "deps": [] }, "edit-indirect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/edit-indirect.git", - "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141213.1205", "deps": [ @@ -13724,14 +14581,15 @@ }, "asn1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/asn1-mode.git", - "sha256": "923d44b1f11ef3ba37daa3d78f74398b23aaa7fc61952db1b74d94006dea2840", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "asn1-mode", + "sha256": "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj", "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5" }, "recipe": { "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.28", "deps": [ @@ -13741,14 +14599,15 @@ }, "soundklaus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/soundklaus.el.git", - "sha256": "b8c069ea09b04a462368fe8a940ee4caae41778c9cb8aa3851e6b7a86828b6bc", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "soundklaus.el", + "sha256": "1ipg4vvh6vgf0az8p31br1xkb8ndjmd6fybcx11r3c479sg0y6k7", "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058" }, "recipe": { "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150102.1521", "deps": [ @@ -13763,28 +14622,30 @@ }, "morlock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/morlock.git", - "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.1034", "deps": [] }, "helm-fuzzy-find": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-fuzzy-find.git", - "sha256": "cae06030c8f0be73808724c8622471720a645d2fcce73273e7cfdd6b70afb6fb", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-fuzzy-find", + "sha256": "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a", "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64" }, "recipe": { "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150613.549", "deps": [ @@ -13794,14 +14655,15 @@ }, "auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/auto-complete.git", - "sha256": "729e6a0ed96b742261775c16a0fac77f5032cbb7231a67af0996dce624bdeac8", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "1dp7gmrykln29axs1l180abi5ycnn3fzkg7qrlvsnrlkzl43zrji", "rev": "67df105a4210b114e01ec08368b8b6b07f28de77" }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.427", "deps": [ @@ -13811,28 +14673,30 @@ }, "psvn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/psvn.git", - "sha256": "a6013b3b8bd9c2f92b3a06d51fd1f51104e9dc2a401012b2b052dbfb2278e1cb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "psvn", + "sha256": "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6", "rev": "23048d302858fc3a52c118652bd83491a4956410" }, "recipe": { "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1242", "deps": [] }, "go-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toumorokoshi/go-snippets.git", - "sha256": "1658ee3e9a737dc6fac127a55b2de63fbf867ea40f0181c120205e432fef2636", + "tag": "fetchFromGitHub", + "owner": "toumorokoshi", + "repo": "go-snippets", + "sha256": "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n", "rev": "983eb74025030bf6d405f1ed63be3162cc28a528" }, "recipe": { "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.57", "deps": [ @@ -13841,14 +14705,15 @@ }, "sparql-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/sparql-mode.git", - "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "sparql-mode", + "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij", "rev": "303858e7f91829ec720141482c777460e66f310b" }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1114", "deps": [ @@ -13857,14 +14722,15 @@ }, "emamux-ruby-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emamux-ruby-test.git", - "sha256": "8c67302628f4da87bb02f6369c9867de6c8cba7644c714249d25101618a9ba30", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emamux-ruby-test", + "sha256": "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn", "rev": "23b73c650573b340351a919da3da416acfc2ac84" }, "recipe": { "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130812.1139", "deps": [ @@ -13874,28 +14740,30 @@ }, "expand-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/expand-region.el.git", - "sha256": "ca4a279f1b537bca9c468bfb74f0f86989c12ebdeae895b02dd5ff95a2b6a6b5", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "expand-region.el", + "sha256": "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1", "rev": "59f67115263676de5345581216640019975c4fda" }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.758", "deps": [] }, "auto-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/auto-compile.git", - "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1608", "deps": [ @@ -13906,14 +14774,15 @@ }, "ruby-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajvargo/ruby-refactor.git", - "sha256": "ca533e550f4bfe0c7eee9b922770a558840590b86d674e474d6cf83fc0205dc2", + "tag": "fetchFromGitHub", + "owner": "ajvargo", + "repo": "ruby-refactor", + "sha256": "0dk9vkrjncawf4j4y5dky215m0hgl266d9w6mr7g0rgy6m7wfcyq", "rev": "8be821e89dac15fa402dba211a27b843147e4d17" }, "recipe": { "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1207", "deps": [ @@ -13922,14 +14791,15 @@ }, "redpen-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karronoli/redpen-paragraph.el.git", - "sha256": "5d4d555bb2b081a2fe8ad298b67759338fd113de1dd1d1e077a9b6c053ac6868", + "tag": "fetchFromGitHub", + "owner": "karronoli", + "repo": "redpen-paragraph.el", + "sha256": "0s38mi9w1dm9fzhd3l8xvq9x33rkb5vvd66jibza50dhn9dmakax", "rev": "dcba4dc48593fedd48e398af50f6cdc60f453a07" }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.941", "deps": [ @@ -13939,28 +14809,30 @@ }, "tomatinho": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/konr/tomatinho.git", - "sha256": "d6dc78ec93ecd1ae11aaaf70b5529498fce53f3dac414be6474877393cdc7f28", + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "tomatinho", + "sha256": "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n", "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7" }, "recipe": { "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140120.1740", "deps": [] }, "r-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/r-autoyas.el.git", - "sha256": "727cee1460e64061594912a689dee553de69ff46371f9db818e892475b951436", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "r-autoyas.el", + "sha256": "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j", "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530" }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140101.910", "deps": [ @@ -13976,7 +14848,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101223.420", "deps": [] @@ -13989,63 +14861,67 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1608", "deps": [] }, "scad-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/openscad/openscad.git", - "sha256": "bf0270c3ac0da3802549da5d86fad78ffef0b990c2c86173ab55e282a32c026e", + "tag": "fetchFromGitHub", + "owner": "openscad", + "repo": "openscad", + "sha256": "0z1nf0hdm5q3b65y5jsg5f7qmzk2ilw24i3yg4r8dyygk5c40mr6", "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be" }, "recipe": { "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.2229", "deps": [] }, "ccc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.743", "deps": [] }, "search-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomoya/search-web.el.git", - "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.603", "deps": [] }, "helm-growthforecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daic-h/helm-growthforecast.git", - "sha256": "1862be9a0748d3975bce0933703b7f866846ae0c7223b57b7306251de39ee339", + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "helm-growthforecast", + "sha256": "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk", "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b" }, "recipe": { "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140119.2144", "deps": [ @@ -14054,56 +14930,60 @@ }, "id-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-id-manager.git", - "sha256": "80e829eee86d6e1b5c224d1ae774940cc46b67ed992d48470d6d7ffb36b8eb2f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-id-manager", + "sha256": "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40", "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09" }, "recipe": { "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150605.2239", "deps": [] }, "clips-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grettke/clips-mode.git", - "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131012.1601", "deps": [] }, "kivy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kivy/kivy.git", - "sha256": "ba696df188fc1f0fe4143544dffdce918e6d48cacc77d8a727c6892eace897d4", - "rev": "a87d082710a24c23038f69374cc1423d073ae505" + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "0mk5z0kxacjdcd64vq8ryg0bdb2230141kfxka7dphjl4q7wdfhi", + "rev": "2d1b4664d2e733a46db3cfeb1f2c052fa86e7cf5" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140524.757", "deps": [] }, "mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/mpv.el.git", - "sha256": "ac7b75fdc868976b2a3c84f00a2ad0c714c91bdf35249b273f57dbe08efa248b", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm", "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06" }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.318", "deps": [ @@ -14116,14 +14996,15 @@ }, "go-dlv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/go-dlv.el.git", - "sha256": "5be34ee2bf4d16af3d8a572d142c13f285b9736e0117a7a2b6035a5b0b0c0a72", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "go-dlv.el", + "sha256": "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv", "rev": "8d5a0076b3d43e7af61149370e583c0d15cb2dd1" }, "recipe": { "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.259", "deps": [ @@ -14132,56 +15013,60 @@ }, "column-enforce-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/column-enforce-mode.git", - "sha256": "f05c31b1ec7a28aea413169160761fc73a91558d2196416a5a1aee013a7d23fd", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "column-enforce-mode", + "sha256": "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr", "rev": "f43263e50ae83db099d83ea445f93e248a3207a0" }, "recipe": { "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1149", "deps": [] }, "busybee-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/busybee-theme.git", - "sha256": "9da5f28e779b4d53512954501b8bfdc1d3c679d2808e87aad796eb9fdd41e987", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "busybee-theme", + "sha256": "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx", "rev": "70850d1781ff91c4ce125a31ed451d080f8da643" }, "recipe": { "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130920.1142", "deps": [] }, "erlang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/erlang/otp.git", - "sha256": "30f8dc5e1cbe811f93ed832609243934c69acbbe7df460fd9ee2c32bc12a17fd", - "rev": "a16b7d63cc665dca90305b146c15de04487808db" + "tag": "fetchFromGitHub", + "owner": "erlang", + "repo": "otp", + "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk", + "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" }, "recipe": { "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.357", "deps": [] }, "cssh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/cssh.git", - "sha256": "2aa8a1eec42d3ad39710662dbd48fe5db27b31a08085e430fa2ebb738087c2f5", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "cssh", + "sha256": "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a", "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f" }, "recipe": { "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150810.1209", "deps": [] @@ -14194,21 +15079,22 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1301", "deps": [] }, "concurrent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150309.2252", "deps": [ @@ -14217,28 +15103,30 @@ }, "yari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hron/yari.el.git", - "sha256": "ee6ec58601e34035642878a6408de0fdaf8765d99b9cf4c257dcdd6681342a71", + "tag": "fetchFromGitHub", + "owner": "hron", + "repo": "yari.el", + "sha256": "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf", "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9" }, "recipe": { "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.139", "deps": [] }, "cobra-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Nekroze/cobra-mode.git", - "sha256": "0ffdd6be72df3109acfcf329b69c2810ecd258e41f1075ccfd80cee156731baf", + "tag": "fetchFromGitHub", + "owner": "Nekroze", + "repo": "cobra-mode", + "sha256": "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp", "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01" }, "recipe": { "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140116.1516", "deps": [] @@ -14251,49 +15139,52 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1610", "deps": [] }, "textile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juba/textile-mode.git", - "sha256": "8b08d37cd4dd99b5124a67ffd0c7131c3bb698d23831def8b27a9823295a3d49", + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "textile-mode", + "sha256": "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2", "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31" }, "recipe": { "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.253", "deps": [] }, "xterm-title": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/xterm-title.git", - "sha256": "d4c5d4452ccadd7ee41d87764b614fbd39d2aa79a768bf2c45f25c3efcc98b19", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-title", + "sha256": "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl", "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c" }, "recipe": { "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1223", "deps": [] }, "helm-zhihu-daily": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", - "sha256": "00a507245d2865fc6337835a5fd41eb7bd081341f9a6c553891f2ac0dfff8f6c", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g", "rev": "c084d2505621dbb71d83ec10550fa0801623cafc" }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.319", "deps": [ @@ -14304,42 +15195,45 @@ }, "vector-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/vector-utils.git", - "sha256": "96f4ed12f6dadbd5774b26a6fabcedcdd47f03d376b4e6c7ac44fe15376242c2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "vector-utils", + "sha256": "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf", "rev": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21" }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "darkburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gorauskas/darkburn-theme.git", - "sha256": "6e63585a54ebbc230a70105ac1c3952217d304f8a5cb9fdd71588308bfeb79a7", + "tag": "fetchFromGitHub", + "owner": "gorauskas", + "repo": "darkburn-theme", + "sha256": "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf", "rev": "a0151684ae4fa7c364115188422f6c3425d1594c" }, "recipe": { "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.300", "deps": [] }, "bongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/bongo.git", - "sha256": "0adef70763f6c47447f90c0b8b26a4d2bb37c57385613b5ecf0444c17876123e", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha", "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d" }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1009", "deps": [ @@ -14354,21 +15248,22 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130906.18", "deps": [] }, "caskxy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/caskxy.git", - "sha256": "f5aafdcbb74293ecb5464653586a1953a12c3e140d59cb53a48d4e246fff8a22", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3", "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e" }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140513.1039", "deps": [ @@ -14378,42 +15273,45 @@ }, "aurora-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bdd/aurora-config.el.git", - "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "tag": "fetchFromGitHub", + "owner": "bdd", + "repo": "aurora-config.el", + "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28", "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.403", "deps": [] }, "twittering-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hayamiz/twittering-mode.git", - "sha256": "eff9151fbc33a09030cd2899be09c08a2396a158c46fafc346e7a5512b1df503", + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "02c9z229ayqnmlvja5a2fz3vk8914v9v8akin57q8a0gyzn2bli5", "rev": "97197cdd3cc005000dc2599f67c754d74fab5972" }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1203", "deps": [] }, "rtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "351389ddd31ad78a5055be8c6ed7b0143a346a048ff1c8e788d5d0ef0bc9ba69", - "rev": "71f5031cdd1faae9a5b3ec0de9053f9da2e63cd8" + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0pdjbjg81xy41ybrmc2aznb2gv3pic5a0l0gn2yg2hzdbrgfyswn", + "rev": "c68e490fea320c62da44a06fe216fb073f1ebf89" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.147", "deps": [] @@ -14427,7 +15325,7 @@ }, "recipe": { "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.940", "deps": [ @@ -14437,14 +15335,15 @@ }, "skewer-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/skewer-mode.git", - "sha256": "91df5c6b9e18bcb5f711446e703c5ae6116afd9d5a7d4af765e2430a1a844d8d", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "skewer-mode", + "sha256": "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20", "rev": "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2" }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1504", "deps": [ @@ -14455,14 +15354,15 @@ }, "yesql-ghosts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/yesql-ghosts.git", - "sha256": "353d3830d34591c54dee2e69418e5e85fdc629f3047a96325b81a86bfadcdbbb", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "yesql-ghosts", + "sha256": "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m", "rev": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb" }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.637", "deps": [ @@ -14473,14 +15373,15 @@ }, "latex-extra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/latex-extra.git", - "sha256": "e7280e43a887e5630c9e4246f1db982b616cb4dcda0a7d8076ad4232c6e8611a", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "latex-extra", + "sha256": "06k1x3334hmdfs07s2nsvjs6qq9bk3dz2ij2kq667rc7m11hwa77", "rev": "b4ca0185b7046b1d4e2ef90082f23e9e774d626d" }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.322", "deps": [ @@ -14490,14 +15391,15 @@ }, "minizinc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00nlight/minizinc-mode.git", - "sha256": "306aa28188753c985dc9bfe8cf0baea5bf0d169261cfe3bbd81e0e39e06f7901", + "tag": "fetchFromGitHub", + "owner": "m00nlight", + "repo": "minizinc-mode", + "sha256": "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c", "rev": "98064f098e6871382614fcf3c99520f7a526af0a" }, "recipe": { "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.758", "deps": [ @@ -14512,21 +15414,22 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.826", "deps": [] }, "travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-travis.git", - "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.638", "deps": [ @@ -14538,14 +15441,15 @@ }, "mocha-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cowboyd/mocha-snippets.el.git", - "sha256": "3587f6340948e402accdf473a86fea45468c1b6c84684c922e2df467cd8832ae", + "tag": "fetchFromGitHub", + "owner": "cowboyd", + "repo": "mocha-snippets.el", + "sha256": "06c92q1wrj6b8d8k7i10d4gcy5liag3x4f4chh510c4d3wi0f6sp", "rev": "b8d321eda797e8382f0033901694860fe52f19a9" }, "recipe": { "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.1000", "deps": [ @@ -14554,28 +15458,30 @@ }, "calfw-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/calfw-gcal.el.git", - "sha256": "b18f1c0d7022fdc77064bf0729da7e54daee5e326dee7e063874cd4522cbc592", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "calfw-gcal.el", + "sha256": "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi", "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870" }, "recipe": { "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120111.400", "deps": [] }, "project-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/project-explorer.git", - "sha256": "a90012bae8d319d0b14e6cc6539b44a50a03403cb87e67d95fa586cf2ed1a025", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "project-explorer", + "sha256": "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd", "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9" }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150503.1914", "deps": [ @@ -14593,35 +15499,37 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1603", "deps": [] }, "ant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/ant-el.git", - "sha256": "072a4894a3f9bec68560ab85cffe1bc7be380b8d466b903bfb7b67cc23808abc", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "ant-el", + "sha256": "1g4ah0iwqrvvzcxr0ss6il5kign73gzcz1dbc22wdgprlfa4hah7", "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49" }, "recipe": { "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.107", "deps": [] }, "ac-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-helm.git", - "sha256": "d06d3ed72e0d8962f3888c7323265040c21e3ebf4f2fb0056cb081f0696ded6f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6", "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07" }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140919.1117", "deps": [ @@ -14633,14 +15541,15 @@ }, "node-resolver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/meandavejustice/node-resolver.el.git", - "sha256": "a70ad08ca75a91a907168afd5c72049f23e0d15ac2024828e34b4da600c0f5b1", + "tag": "fetchFromGitHub", + "owner": "meandavejustice", + "repo": "node-resolver.el", + "sha256": "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7", "rev": "ef9d0486907a746a80b02ffc6208a09c168a9f7c" }, "recipe": { "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140930.1223", "deps": [ @@ -14649,14 +15558,15 @@ }, "rainbow-delimiters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-delimiters.git", - "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-delimiters", + "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd", "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.217", "deps": [] @@ -14669,21 +15579,22 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.1028", "deps": [] }, "evil-annoying-arrows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/endrebak/evil-annoying-arrows.git", - "sha256": "ee78ab554f0e45041651c89e45fd255772763eef1511dac51388f6ed4150cb15", + "tag": "fetchFromGitHub", + "owner": "endrebak", + "repo": "evil-annoying-arrows", + "sha256": "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f", "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f" }, "recipe": { "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1618", "deps": [ @@ -14692,14 +15603,15 @@ }, "dired-hacks-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -14708,28 +15620,30 @@ }, "twig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/moljac024/twig-mode.git", - "sha256": "4aa3b7cc35886992f27b77c7b2d673d6fdaa19e2c18bdeb562c7c3e1058c7573", + "tag": "fetchFromGitHub", + "owner": "moljac024", + "repo": "twig-mode", + "sha256": "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa", "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6" }, "recipe": { "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130220.1250", "deps": [] }, "genrnc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-genrnc.git", - "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140612.737", "deps": [ @@ -14741,14 +15655,15 @@ }, "unicode-progress-reporter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", - "sha256": "b8528151d1697c4e9ec511527aadd758d502481ef84ec58d71c2d46080abd922", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-progress-reporter", + "sha256": "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4", "rev": "5e66724fd7d15743213b082474d798117b194494" }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -14761,42 +15676,45 @@ }, "faff-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/WJCFerguson/emacs-faff-theme.git", - "sha256": "db88dcaa1cf45a9bdc224d89448f10f38a152c6e9ee1d49eb0201e780c7285e9", + "tag": "fetchFromGitHub", + "owner": "WJCFerguson", + "repo": "emacs-faff-theme", + "sha256": "1sc5f867h7i0n2gd9qcydqn1b2pk227l92ad4bf9nnpl3jmdr26v", "rev": "8ec2bee09b386c711b0753ab12ace926d06fca7e" }, "recipe": { "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.717", "deps": [] }, "fm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fm.git", - "sha256": "7ae3ebd7b5780ffc89dfb51950584d87dc201fbeab7cac41f83c524996fe64ba", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fm", + "sha256": "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs", "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59" }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130126.1818", "deps": [] }, "company-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-anaconda.git", - "sha256": "d82eeacf709b6d86f9dc9007a72b02e0c40ff4f2d4f33be611d2bda2be88fc8b", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1369k2wcf5mgbnxsp6dn9vrml8dzq7lgv3a1918jhgmlxicn4dm1", "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7" }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.523", "deps": [ @@ -14809,28 +15727,30 @@ }, "inlineR": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/inlineR.el.git", - "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "inlineR.el", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q", "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120520.932", "deps": [] }, "evil-tutor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-tutor.git", - "sha256": "bab3fdd9f65c8d6f62dd787ab67437ffd3e7331ab5b700470facad29ab95c396", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx", "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28" }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150103.50", "deps": [ @@ -14839,14 +15759,15 @@ }, "flycheck-dmd-dub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", - "sha256": "d5865e86098fd1e5f429ee068fd4ba97d65cf0a5c34d875a4c7783dbdc0698ad", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "flycheck-dmd-dub", + "sha256": "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j", "rev": "1acd7e3683ed55ac11f013e325c1cbf19be8ad66" }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.822", "deps": [ @@ -14855,14 +15776,15 @@ }, "evil-visualstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-visualstar.git", - "sha256": "a035ef65b14bff6b936ba76cd3d6e25ab944b4dec3a61dbdbd91e8187e9ba49e", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "17m4kdz1is4ipnyiv9n3vss49faswbbd6v57df9npzsbn5jyydd0", "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec" }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.1610", "deps": [ @@ -14871,14 +15793,15 @@ }, "hlinum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/hlinum-mode.git", - "sha256": "04d757d07653dd788bca7e0fa10d4a81ba377bb94bd381574e7194bffb4c887b", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "hlinum-mode", + "sha256": "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4", "rev": "22218c9883a2de6468bf6ad13864b50b44c93592" }, "recipe": { "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2133", "deps": [ @@ -14887,14 +15810,15 @@ }, "rainbow-identifiers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-identifiers.git", - "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.926", "deps": [ @@ -14903,14 +15827,15 @@ }, "demangle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/demangle-mode.git", - "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1453", "deps": [ @@ -14920,16 +15845,17 @@ }, "github-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/github-clone.el.git", - "sha256": "ac21881cb359e8614869527e3e182b6768f8c70121369233e3097c643e8b03e6", - "rev": "93e6604c2137b308adeb5cf1653c25b445ee143a" + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "github-clone.el", + "sha256": "1w1w3rmfj7bj721v0f3bg8hjadipa1z8yf62xpn3ypfr0wa6hnhy", + "rev": "36202b802f6d0e4a9da63e5d93d99b6171407e4a" }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150705.1905", + "version": "20151217.230", "deps": [ "emacs", "gh", @@ -14938,28 +15864,30 @@ }, "shrink-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", - "sha256": "9397acde96bd985a3781f57ffdd8486e42324bb37e2692be27982bca720839be", + "tag": "fetchFromGitHub", + "owner": "jcpetkovich", + "repo": "shrink-whitespace.el", + "sha256": "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m", "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7" }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.1415", "deps": [] }, "helm-git-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenbeese/helm-git-files.git", - "sha256": "2039fe70e88744a4459e74792a0f8a4c592f4b98bf71d8e8669730406644a4f7", + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-git-files", + "sha256": "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw", "rev": "43193960774069369ac6964bbf7c026900206fa8" }, "recipe": { "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141212.717", "deps": [ @@ -14968,42 +15896,45 @@ }, "hi2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nilcons/hi2.git", - "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.1431", "deps": [] }, "deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.1857", "deps": [] }, "eshell-did-you-mean": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-did-you-mean.git", - "sha256": "6f6d49ab37747e8e58039d9a70257b317653ad7861feb0d9d590d83219d41c6c", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-did-you-mean", + "sha256": "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg", "rev": "7cb6ef8e2274d0a50a9e114d412307a6543533d5" }, "recipe": { "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.1452", "deps": [ @@ -15013,42 +15944,45 @@ }, "bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150321.413", "deps": [] }, "urlenc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/urlenc-el.git", - "sha256": "845bf1ecb99a1e148040e525e2177203222b7dc9e4c5464b84a711e3c8069977", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "urlenc-el", + "sha256": "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4", "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac" }, "recipe": { "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140116.856", "deps": [] }, "bbdb-": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/bbdb-.git", - "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", "rev": "2839e84c894de2513af41053e80a277a1b483d22" }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140221.1754", "deps": [ @@ -15059,14 +15993,15 @@ }, "ace-pinyin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-pinyin.git", - "sha256": "fd4fef31d0c3085ccd2a087dbd3bb4a45d046dcaf8657fd73fee886f856bec02", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-pinyin", + "sha256": "00pcdf2nz27f7zbpyrgqr9nh8pd4nhxvsz885b6mq263s0qyykzx", "rev": "d7c8fed8ab6f6fbbbcb95bcd74516c30d05dcdfa" }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1517", "deps": [ @@ -15076,28 +16011,30 @@ }, "vc-auto-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/vc-auto-commit.git", - "sha256": "e74826b55567f9fdf62c1b89606a218349b2a917ccbf47c81ab995b5c9158a14", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "vc-auto-commit", + "sha256": "081cyicwyx1jdjkk5xp9pgy4xqnawwznkxz2pc570xxf06yx46cs", "rev": "b23ee2727495b89d0a979a7420ce3a313434fdfe" }, "recipe": { "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.303", "deps": [] }, "etable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/ETable.git", - "sha256": "beaf4cf590093a0eb301b7ad04f37ebb45a64f0fab7ae6293ee1a7c6d70a66cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "ETable", + "sha256": "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy", "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e" }, "recipe": { "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150327.1216", "deps": [ @@ -15108,28 +16045,30 @@ }, "gplusify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/gplusify.git", - "sha256": "01e3eebcfaf7a68b069e37d4ad7ca9472ae49b18758a4599e2c61e8a008083d0", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gplusify", + "sha256": "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1", "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2" }, "recipe": { "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.1444", "deps": [] }, "prop-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/prop-menu-el.git", - "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "prop-menu-el", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc", "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.618", "deps": [ @@ -15139,14 +16078,15 @@ }, "esqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.606", "deps": [ @@ -15155,56 +16095,60 @@ }, "green-phosphor-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aalpern/emacs-color-theme-green-phosphor.git", - "sha256": "b0ad76b2a8a4be8c0f85c10338ee911a643d121f319dae514a2bfefa34a170bb", + "tag": "fetchFromGitHub", + "owner": "aalpern", + "repo": "emacs-color-theme-green-phosphor", + "sha256": "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp", "rev": "fa42f598626adfdc5450e5c380fa2d5df6110f28" }, "recipe": { "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.947", "deps": [] }, "cypher-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/cypher-mode.git", - "sha256": "141572679e97cb1e8140c2170f7aaa85129f2a0c7a30e96b4049cbb48750faa0", + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "cypher-mode", + "sha256": "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf", "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6" }, "recipe": { "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.542", "deps": [] }, "bbcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/bbcode-mode.git", - "sha256": "c7fae8b84a35c5428b55a112442ac45621a52cc91a0bdbe84f528d301d11379e", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7", "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae" }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141103.1541", "deps": [] }, "ob-kotlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-kotlin.git", - "sha256": "c7bb65703bab660f8b1fea0714770747ccbd112f1b50ce67b338827ac4e39205", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-kotlin", + "sha256": "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7", "rev": "c494f50184d25e196c009bf5cc105c4931b9464d" }, "recipe": { "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.814", "deps": [ @@ -15213,28 +16157,30 @@ }, "fold-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fold-dwim.git", - "sha256": "219a7922278b25f9b836ac1d686d17008bc942f391aa5a54375cab3074e4e1fb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1", "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b" }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140208.1037", "deps": [] }, "cake-inflector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake-inflector.git", - "sha256": "14749dfef78173160d9e6d5e53c8db2dd7a23dada8afac24a1af573924b0ed8d", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4", "rev": "a91cecd533930bacf1dc30f5209831f79847abda" }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.358", "deps": [ @@ -15243,28 +16189,30 @@ }, "kwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/reactormonk/kwin-minor-mode.git", - "sha256": "9e6984bcb2ef61f5d7496cdb021ccadcbd1a293bcbea5a08f4702472e3732b47", + "tag": "fetchFromGitHub", + "owner": "reactormonk", + "repo": "kwin-minor-mode", + "sha256": "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy", "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566" }, "recipe": { "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150308.1312", "deps": [] }, "purescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dysinger/purescript-mode.git", - "sha256": "271ed4bc574cc9f4803b54003b19d5086f2d61772ca58082e1e5d315b44c29aa", + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864", "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf" }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.2028", "deps": [] @@ -15277,21 +16225,22 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.834", "deps": [] }, "rectangle-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", - "sha256": "0913a861ebcc2a946eae67882e4118a936d8a5b383c13f2461acea669b5cda93", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9", "rev": "81071e62862c0062b8559eb217e6658878c34a1e" }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.1428", "deps": [ @@ -15301,14 +16250,15 @@ }, "helm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-R.el.git", - "sha256": "9991a8fe5147c327955a0c29613322499d0ab2cf8535d181e784245bf307375a", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-R.el", + "sha256": "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr", "rev": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2" }, "recipe": { "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120819.1914", "deps": [ @@ -15318,14 +16268,15 @@ }, "mingus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pft/mingus.git", - "sha256": "9de9b14e5313990554578139297e4add32c515d51891658871a205c8fae2fdb4", + "tag": "fetchFromGitHub", + "owner": "pft", + "repo": "mingus", + "sha256": "0r4jh58pls859fljb6qm49l4imfxxif9mxsmjgwan0czfhq33xqh", "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4" }, "recipe": { "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1317", "deps": [ @@ -15334,28 +16285,30 @@ }, "hippie-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hippie-namespace.git", - "sha256": "d9552498eb4b8af1018ae734fcf0e242754e569b0d71fb3b48e001c898e742c7", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hippie-namespace", + "sha256": "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc", "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49" }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "sbt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/sbt-mode.git", - "sha256": "d2d940ba293683c78712c46484fff8c54221b128d5912d34cfc342c699f32a63", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "sbt-mode", + "sha256": "1l6l90lhqk56l20dhy19snn0fz4di03j714d2v07yl19q64gfk6c", "rev": "209a396babd0a302cbb5a32f16525aabb409528b" }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.242", "deps": [ @@ -15364,14 +16317,15 @@ }, "evil-easymotion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/evil-easymotion.git", - "sha256": "a65a10e383c9703db833e38dcd71e2027deaf25fdf5a1b99497c156f2c0cc7b1", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "evil-easymotion", + "sha256": "17qb3qnnn2f8jj2mi8735ymnw8rhpj6w3l61lhqfrkc0m6vq1vhy", "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79" }, "recipe": { "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2259", "deps": [ @@ -15381,14 +16335,15 @@ }, "org-dashboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/org-dashboard.git", - "sha256": "4536ff0b128a4aa2abb28f561051dc277905538119cdce11a5e3299646880edb", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "org-dashboard", + "sha256": "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5", "rev": "b523aefb5822c1f09a70bc429579c2959929782b" }, "recipe": { "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.502", "deps": [ @@ -15397,28 +16352,30 @@ }, "shpec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shpec/shpec-mode.git", - "sha256": "390093d68134f1a008a724a5dd0493b88b17dcd1dee4e4aaf57c12de0e278a93", + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn", "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754" }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.422", "deps": [] }, "jonprl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/jonprl-mode.git", - "sha256": "5a2e21fbe4d4146e2566d5152f087ea56c9e13c31afe154a9b9be6c6d4fc3b68", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "jonprl-mode", + "sha256": "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx", "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10" }, "recipe": { "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.342", "deps": [ @@ -15429,14 +16386,15 @@ }, "anything-replace-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-replace-string.git", - "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-replace-string", + "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k", "rev": "1962f24243d6013bcef7e8d23136277d42e13130" }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140317.536", "deps": [ @@ -15451,21 +16409,22 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1834", "deps": [] }, "discover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/discover.el.git", - "sha256": "6ad242aa6a06d4878d7f707054cbe6ca056d22152848cabad1999e016116f038", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka", "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df" }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.1539", "deps": [ @@ -15474,14 +16433,15 @@ }, "ob-elixir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-elixir.git", - "sha256": "79ac6816302e9fcdd0bcebf5cf3bb5a1afcf5e04c59e5748478f1615958d6c98", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-elixir", + "sha256": "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk", "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210" }, "recipe": { "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.647", "deps": [ @@ -15490,43 +16450,45 @@ }, "ledger-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ledger/ledger.git", - "branchName": "next", - "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1742", "deps": [] }, "eshell-autojump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/eshell-autojump.git", - "sha256": "82411271983f24f39a271bbc68b754b51cf4be90d03ced6ca80ad2d0e7fb998d", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2", "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43" }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.224", "deps": [] }, "company-restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-restclient.git", - "sha256": "a5e7b4babbd51bc77b0d478d051818db7bfeed760ae19b3897fd83508e4f0211", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5", "rev": "752f39490178832f6a09abd82e10d9356636350a" }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.601", "deps": [ @@ -15539,14 +16501,15 @@ }, "ac-cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake.git", - "sha256": "ae7cd5dc6833cd780bfbac478b2fea7850f66dcfe64412c4d32218bfd3b297d2", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake", + "sha256": "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f", "rev": "f34c9e3ba8cb962e4708c8f53b623e1922500176" }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140315.1129", "deps": [ @@ -15556,14 +16519,15 @@ }, "ddskk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.552", "deps": [ @@ -15579,35 +16543,37 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.657", "deps": [] }, "org-tree-slide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/takaxp/org-tree-slide.git", - "sha256": "85cca95c04cce82c87613e546b75e199615a54a600939c1cf0eb4b0e79ef4c29", + "tag": "fetchFromGitHub", + "owner": "takaxp", + "repo": "org-tree-slide", + "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45", "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" }, "recipe": { "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.253", "deps": [] }, "org-transform-tree-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", - "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.833", "deps": [ @@ -15617,14 +16583,15 @@ }, "asilea": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/asilea.git", - "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.925", "deps": [ @@ -15640,22 +16607,22 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1003", "deps": [] }, "ox-reveal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yjwen/org-reveal.git", - "branchName": "stable", - "sha256": "9b6270464def71e1ee275a83442d420de5177eb1e44cbc1a3c447f0b1e312eb7", + "tag": "fetchFromGitHub", + "owner": "yjwen", + "repo": "org-reveal", + "sha256": "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p", "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd" }, "recipe": { "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.106", "deps": [ @@ -15664,28 +16631,30 @@ }, "demo-it": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/howardabrams/demo-it.git", - "sha256": "229e1314efdc452738fbd1e82ee626150de8ef03a0a24f2c136dd9c6f47244ea", + "tag": "fetchFromGitHub", + "owner": "howardabrams", + "repo": "demo-it", + "sha256": "0ws46aq5nl6ayhfrg9lm12i53v99a7pbfwb65rn9xsy4176k7zqb", "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c" }, "recipe": { "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1429", "deps": [] }, "helm-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-package.git", - "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.248", "deps": [ @@ -15695,14 +16664,15 @@ }, "dired-filter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.1336", "deps": [ @@ -15712,84 +16682,90 @@ }, "mmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/mmm-mode.git", - "sha256": "884a10fa62940123c4181c04d7d82e5e4349bf75417bd04724154167d62ece79", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "mmm-mode", + "sha256": "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9", "rev": "c9a857a638701482931ffaaee262b61ce53489f3" }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1916", "deps": [] }, "revive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/revive.git", - "sha256": "2107ab8d3a44ca8fe508e0fbbffc91f02727c99c1e39fadf17d4fced0a53fa0c", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "revive", + "sha256": "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1", "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818" }, "recipe": { "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.1755", "deps": [] }, "smart-tab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genehack/smart-tab.git", - "sha256": "84564063ecdce590bf6509b4b3b79f4cd33ff91aa3d46396a4194ee4d7852f2a", + "tag": "fetchFromGitHub", + "owner": "genehack", + "repo": "smart-tab", + "sha256": "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4", "rev": "28918a72045811294ecb33f666ba23fe66c169af" }, "recipe": { "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.1117", "deps": [] }, "man-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/man-commands.git", - "sha256": "db9577297237bbd0eecb1f5d427d1e513700a31e26f91ffe1c8f324370006d70", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "man-commands", + "sha256": "0w3d01q46clg3kz1zy963sih0dsi3ryl4p8zrgpd1frpf8lpg5fv", "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211" }, "recipe": { "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130627.1853", "deps": [] }, "helm-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/helm-git.git", - "sha256": "2e2d1635a583a173d9422383af038b1baacdfacd32f4bd4080dc8e6b94777bd4", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "helm-git", + "sha256": "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn", "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55" }, "recipe": { "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120630.1603", "deps": [] }, "git-lens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-lens.git", - "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", "rev": "1feacc217c58fd4a41f9378eb09658f664036509" }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.214", "deps": [ @@ -15798,28 +16774,30 @@ }, "emacs-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-setup.git", - "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120727.926", "deps": [] }, "interaction-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michael-heerdegen/interaction-log.el.git", - "sha256": "546385d25e675d526c68dc82b04d35d441d36a69100a8b74c9add0fb6527b549", + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "interaction-log.el", + "sha256": "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl", "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f" }, "recipe": { "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.1210", "deps": [ @@ -15828,14 +16806,15 @@ }, "ac-emmet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-emmet.git", - "sha256": "4f080ce79ee28bfa173bc56a1baba9c9f93bba92f5d49049c4473d395dc570d2", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-emmet", + "sha256": "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g", "rev": "88f24876ee3b759978d4614a758280b5d512d543" }, "recipe": { "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.1058", "deps": [ @@ -15851,21 +16830,22 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.733", "deps": [] }, "highlight-quoted": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-quoted.git", - "sha256": "0a492d3a6ad5d80e90519dd29264f82456080dba276b4f168e9d7efd6153136f", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "0vqkadhzszlxiqb4ysr7p86hhmi4z1j95llxa680xn6md8x2sj8a", "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f" }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140916.1322", "deps": [ @@ -15874,14 +16854,15 @@ }, "org-wc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dato/org-wc.git", - "sha256": "28e129c8edea383d8a01b015b434ab6c9e1faee4b80b610bf27af40ec2832a56", + "tag": "fetchFromGitHub", + "owner": "dato", + "repo": "org-wc", + "sha256": "0miahg10xx3sy85n22xqwjp1z7kcmcsb85dh0653sf7axp42kq98", "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8" }, "recipe": { "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141101.120", "deps": [] @@ -15895,35 +16876,37 @@ }, "recipe": { "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140509.722", "deps": [] }, "wordsmith-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/wordsmith-mode.git", - "sha256": "d000091c7e22e7301cdbe57d0a7c2621e4d4d8d3b71b180bfc208ba807f54b34", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h", "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf" }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.436", "deps": [] }, "makey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/makey.git", - "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", "rev": "a61781e69d3b451551e269446e1c5f624ab81137" }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131231.830", "deps": [ @@ -15939,21 +16922,22 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140130.2016", "deps": [] }, "magit-gitflow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jtatarik/magit-gitflow.git", - "sha256": "00524486775639f7de4a082bf10946e1c97b0e682eff6d616536c15535373d52", + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "10c1qd1l92h0z7mz7j004bx3fc9p6ij3m732lwmni9vlfbishbb4", "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9" }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.239", "deps": [ @@ -15963,28 +16947,30 @@ }, "wsd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/wsd-mode.git", - "sha256": "eb751ef9994b0df2d67a87a1d48f5fd0f816c2a5aebf68651184d3aa3aa53503", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "1jqm4ysakdnb8lp3kj1d4cr0krnwvm7b5i70sfkx8ps0f9k7dhjb", "rev": "a5b012607793a5edc9d54b30e04f4a324144e930" }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.1230", "deps": [] }, "rubocop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/rubocop-emacs.git", - "sha256": "7329265be66994d2a214a67395ff95823773d7ba308309b777a4714cf204bff8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk", "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956" }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.2337", "deps": [ @@ -15994,14 +16980,15 @@ }, "planet-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cmack/emacs-planet-theme.git", - "sha256": "f8cfdca190055945f87d29f0d57c304ec5b3018694800e73ba982b8f0a6f9f60", + "tag": "fetchFromGitHub", + "owner": "cmack", + "repo": "emacs-planet-theme", + "sha256": "0q4zdw58yawqp9rhx04lhq0v7iaf61ydbw19gpw4an85j2hxrkzq", "rev": "e2bd6645535a3044fceafb1ce5d296cc111d5f2a" }, "recipe": { "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150627.951", "deps": [ @@ -16010,14 +16997,15 @@ }, "ert-runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-runner.el.git", - "sha256": "6fef3cc63cb122657a82b99fc36ed9870d408f782442299f011bd526b85f4304", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-runner.el", + "sha256": "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933", "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b" }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.313", "deps": [ @@ -16031,14 +17019,15 @@ }, "coffee-fof": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/coffee-fof.git", - "sha256": "77b8af71bb821eb017e7c7bf2886d029c0372ba846f2ce315c2b83a90c421b04", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "coffee-fof", + "sha256": "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p", "rev": "211529594bc074721c6cbc4edb73a63cc05f89ac" }, "recipe": { "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131012.730", "deps": [ @@ -16047,42 +17036,45 @@ }, "zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/zenburn-emacs.git", - "sha256": "a7b05262fd0177e09e3a3a0cfd5bdbda7267818039f8b283d160b640a4a614e6", - "rev": "ded76bfc1d9a5ff9e0deb3b695922c02c17c7d61" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "zenburn-emacs", + "sha256": "14m4azwy6h8d9gw764ikddnis13armxagpfvj6v97773v56ankgg", + "rev": "fc77c5382f2074f8defe39541b4bfc568cd67ca7" }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151101.1358", + "version": "20151218.1441", "deps": [] }, "web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/web-mode.git", - "sha256": "776a4dae7b7234e80d5083feebb6a1e63a12ebde5a1c15b9e0eae0d16ae907b2", - "rev": "79b921e13444c8f4da9ec89a45a1bfa0eb85aaa6" + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "1k3kwcr4q6j0ljxj8hqfy466nw12v5j7yrszg2brmgfxz2285k63", + "rev": "71aebc9f003dccce021be917deb58e9c0dd5c704" }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151213.757", + "version": "20151218.1600", "deps": [] }, "helm-filesets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gcla/helm-filesets.git", - "sha256": "5ec466ca01d9ff1eaf97621289cc56afd49c8f605b91eccb64ad600228553ff1", + "tag": "fetchFromGitHub", + "owner": "gcla", + "repo": "helm-filesets", + "sha256": "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9", "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa" }, "recipe": { "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1335", "deps": [ @@ -16092,28 +17084,30 @@ }, "gitconfig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "helm-sheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-sheet.git", - "sha256": "fd379699a597dc3c58994879de475ace5da049fe31ff22b16d1812771fc39603", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-sheet", + "sha256": "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx", "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463" }, "recipe": { "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130630.739", "deps": [ @@ -16122,42 +17116,44 @@ }, "tao-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/11111000000/tao-theme-emacs.git", - "sha256": "f581fe13092ad7aac9ac3ae750a037a14ff73b15934e80fe002d17fc28fd767b", - "rev": "48df99623bd183d17961eef73293c62a1045c708" + "tag": "fetchFromGitHub", + "owner": "11111000000", + "repo": "tao-theme-emacs", + "sha256": "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh", + "rev": "48a69f5568b2d16496960aa92b312cd02be80ecc" }, "recipe": { "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151126.758", + "version": "20151217.1040", "deps": [] }, "ahg": { "fetch": { "tag": "fetchhg", "url": "https://bitbucket.com/agriggio/ahg", - "sha256": "1kh7a9hyw24qrlp4ngvy2548a95l5k89k7nb3h75sk9pabw078cf", - "rev": "c3d9a903e3a3" + "sha256": "04ngls59336lyjbwcxz6qdddpaijh51zds8m666vgwjihniv7skg", + "rev": "bc4ab0720d4a" }, "recipe": { "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151030.937", + "version": "20151218.213", "deps": [] }, "isearch-dabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/isearch-dabbrev.git", - "sha256": "2b7beb8d53ba7b757d9a1a26a9faabb21c95a3b9201f8603d7bb29ae4c40a09d", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "isearch-dabbrev", + "sha256": "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb", "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8" }, "recipe": { "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141224.22", "deps": [ @@ -16166,14 +17162,15 @@ }, "helm-bm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-bm.git", - "sha256": "df2df8040202cd8d1371ce5abd838b2dd35a2fed482114607daebf846b3c9dbd", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-bm", + "sha256": "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz", "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd" }, "recipe": { "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131224.905", "deps": [ @@ -16185,42 +17182,45 @@ }, "tornado-template-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paradoxxxzero/tornado-template-mode.git", - "sha256": "62e85fe5668e775c11621c3db19289689eb5a82b7ba59801f7c8428c18237c83", + "tag": "fetchFromGitHub", + "owner": "paradoxxxzero", + "repo": "tornado-template-mode", + "sha256": "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv", "rev": "667c0663dbbd279b6c345446b9f2bc50eb52b747" }, "recipe": { "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.408", "deps": [] }, "mwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/mwim.el.git", - "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.1436", "deps": [] }, "launchctl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pekingduck/launchctl-el.git", - "sha256": "d2aaebcb95d00fdd0f79f4c9380c121f32f25ad7343fda06dd4fe1b3e03a9f94", + "tag": "fetchFromGitHub", + "owner": "pekingduck", + "repo": "launchctl-el", + "sha256": "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj", "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4" }, "recipe": { "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150518.809", "deps": [ @@ -16229,14 +17229,15 @@ }, "transmission": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/transmission.git", - "sha256": "760f34f89c8b4b056a00019395d4c6c4a5331804566941d158e34c4c0328de4c", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "0k6y501lqk73b38l2san0hc379f4qva9b4q101m0ajwbkkw383vn", "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.343", "deps": [ @@ -16246,28 +17247,30 @@ }, "ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rcoedo/emacs-ghq.git", - "sha256": "846a64613fb39c70beb645a4770560018be97cb4c2c29b19820515d33c30efb5", + "tag": "fetchFromGitHub", + "owner": "rcoedo", + "repo": "emacs-ghq", + "sha256": "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf", "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24" }, "recipe": { "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.318", "deps": [] }, "soft-charcoal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-charcoal-theme.git", - "sha256": "9533f4b9473250f1ff562b5ffa178e264526cfc5e69c639801fce927ed35051c", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-charcoal-theme", + "sha256": "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm", "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f" }, "recipe": { "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.1143", "deps": [] @@ -16281,7 +17284,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.854", "deps": [ @@ -16290,14 +17293,15 @@ }, "xah-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/lookup-word-on-internet.git", - "sha256": "7a547753b93de4a8116401a972c452b63619dfd0efa53f6eb26ccb2513e7bea9", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "lookup-word-on-internet", + "sha256": "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s", "rev": "75590c52af87e635b2f19640095b805fdb3e5d8b" }, "recipe": { "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1346", "deps": [] @@ -16310,7 +17314,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.924", "deps": [] @@ -16324,21 +17328,22 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.640", "deps": [] }, "nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -16347,28 +17352,30 @@ }, "monky": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/monky.git", - "sha256": "3d8bc1962ee4f30e5fa7d029b02ec07018a56675d39b90ecb077528b565efb48", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "monky", + "sha256": "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh", "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482" }, "recipe": { "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.218", "deps": [] }, "pythonic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pythonic.git", - "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.416", "deps": [ @@ -16387,21 +17394,22 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.5", "deps": [] }, "emms-mode-line-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", - "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-mode-line-cycle", + "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938", "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.946", "deps": [ @@ -16411,14 +17419,15 @@ }, "ember-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ronco/ember-yasnippets.el.git", - "sha256": "64c434b6aa5192681614503b98873c114295125759f6856ff949543c1e043618", + "tag": "fetchFromGitHub", + "owner": "ronco", + "repo": "ember-yasnippets.el", + "sha256": "14049ldvyxn6w06aw6slvxdb68idars3ynka90lm0piyjpn0fy16", "rev": "650a6d31748175aa7df074bcfffd433a0b072ab5" }, "recipe": { "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1126", "deps": [ @@ -16427,56 +17436,60 @@ }, "go-errcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-errcheck.el.git", - "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-errcheck.el", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3", "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1335", "deps": [] }, "lexbind-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spacebat/lexbind-mode.git", - "sha256": "3675f14da51b1711dfd3f9d3ff819d6b9309326de28a956e719a2b9d219614d7", + "tag": "fetchFromGitHub", + "owner": "spacebat", + "repo": "lexbind-mode", + "sha256": "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932", "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d" }, "recipe": { "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.929", "deps": [] }, "minimal-session-saver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/minimal-session-saver.git", - "sha256": "48a001446daeac6423488aaee4452017afa1f7fba92c2ff2eaf0d456a5bdd8cc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "minimal-session-saver", + "sha256": "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm", "rev": "cf654ac549850746dc21091746e4bcc1aef7668e" }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "flymake-vala": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daniellawrence/flymake-vala.git", - "sha256": "fd0b64747c75ee9eb50a99e689556620dbe8465eccbe86b27142edee87380441", + "tag": "fetchFromGitHub", + "owner": "daniellawrence", + "repo": "flymake-vala", + "sha256": "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf", "rev": "c3674f461fc84fb0300cd3a562fb903a59782745" }, "recipe": { "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150326.31", "deps": [ @@ -16485,14 +17498,15 @@ }, "popup-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-popup-complete.git", - "sha256": "b11301df4c14431a70ed1c62f5c9f473e8e3febfd46bdd979d4d1b1badd4ef4f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-popup-complete", + "sha256": "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b", "rev": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca" }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.2108", "deps": [ @@ -16501,14 +17515,15 @@ }, "cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake2.git", - "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.742", "deps": [ @@ -16524,14 +17539,15 @@ }, "helm-rhythmbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrBliss/helm-rhythmbox.git", - "sha256": "333341c7797a4e4f79da40b0593102d77737697c0c09af7dfd2443190400ae16", + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "helm-rhythmbox", + "sha256": "05mf0021jhr4zmysy28cgilkfxyp08qmkc20v9wlykksg73l2crk", "rev": "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98" }, "recipe": { "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150813.808", "deps": [ @@ -16541,14 +17557,15 @@ }, "async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/emacs-async.git", - "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "emacs-async", + "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp", "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.456", "deps": [ @@ -16558,16 +17575,17 @@ }, "gotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/gotest.el.git", - "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", - "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.950", + "version": "20151218.249", "deps": [ "emacs", "f", @@ -16577,14 +17595,15 @@ }, "ede-compdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randomphrase/ede-compdb.git", - "sha256": "0a785f8f8a976d894ed9d542f7122ea691283486c0bace9d16adc2888b65c27b", + "tag": "fetchFromGitHub", + "owner": "randomphrase", + "repo": "ede-compdb", + "sha256": "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m", "rev": "d6d8466cd62876fc90adeff5875a1a584fd846cd" }, "recipe": { "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1533", "deps": [ @@ -16595,14 +17614,15 @@ }, "floobits": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Floobits/floobits-emacs.git", - "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1836", "deps": [ @@ -16612,56 +17632,60 @@ }, "md-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomas11/md-readme.git", - "sha256": "836d88feb65f49fdb9dc01a356c6a6dcb397d1401b12a611aec159e5d7b80fc9", + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "md-readme", + "sha256": "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3", "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec" }, "recipe": { "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.159", "deps": [] }, "annoying-arrows-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/annoying-arrows-mode.el.git", - "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "annoying-arrows-mode.el", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02", "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1102", "deps": [] }, "foreign-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/foreign-regexp.el.git", - "sha256": "fca3272a37d16bbfd6f48e9e20b80aecae9033636576ddb4acd2ae49e1523332", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "foreign-regexp.el", + "sha256": "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5", "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e" }, "recipe": { "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140823.1942", "deps": [] }, "wilt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sixty-north/emacs-wilt.git", - "sha256": "a51e30d46f4466172d371b544f4019eb052777f1b54cc3c33533caea69973ffb", + "tag": "fetchFromGitHub", + "owner": "sixty-north", + "repo": "emacs-wilt", + "sha256": "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd", "rev": "5febe367c6c3729848654358af4d17ee2987da8d" }, "recipe": { "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.718", "deps": [ @@ -16672,14 +17696,15 @@ }, "airplay": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/airplay-el.git", - "sha256": "8499df3a59b1cf947ebb23d30890f43048383a06df8b7a6bf4f170b284390c98", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "airplay-el", + "sha256": "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7", "rev": "bd690aafcae3a887946e1bba8327597932d964ad" }, "recipe": { "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130212.626", "deps": [ @@ -16697,21 +17722,22 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130602.748", "deps": [] }, "weibo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austin-----/weibo.emacs.git", - "sha256": "f0ed5faab006636b836bee87f680adcd328d04cd5311a4ad49694676a58f8541", + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh", "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390" }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.1642", "deps": [ @@ -16720,28 +17746,30 @@ }, "volatile-highlights": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/volatile-highlights.el.git", - "sha256": "ab3d1dc60b3f087b2a2b6a7c56fb660098e710167959ba7ec522bfa65272d30a", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "volatile-highlights.el", + "sha256": "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf", "rev": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24" }, "recipe": { "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.40", "deps": [] }, "bbdb-china": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-china.git", - "sha256": "101284a21d1b33c5b0292047f70e0913a26eaccb463b318c0adeec876541f59c", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-china", + "sha256": "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn", "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c" }, "recipe": { "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.2056", "deps": [ @@ -16751,56 +17779,60 @@ }, "grep-a-lot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ZungBang/emacs-grep-a-lot.git", - "sha256": "9c1a5212b15ae93316f19708f5ffae818d0a835c30914aac7ddf469aab3002b9", + "tag": "fetchFromGitHub", + "owner": "ZungBang", + "repo": "emacs-grep-a-lot", + "sha256": "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw", "rev": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad" }, "recipe": { "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131006.847", "deps": [] }, "stan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.2215", "deps": [] }, "parse-csv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrc/el-csv.git", - "sha256": "5a2071adad5edd42db44a46765a2205d060d24b3bbf74875c4adf6d958b80cfd", + "tag": "fetchFromGitHub", + "owner": "mrc", + "repo": "el-csv", + "sha256": "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s", "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd" }, "recipe": { "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140203.316", "deps": [] }, "edts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "1278403c6e98af9b9907c85eb46e935bacff34abeba3ae40f80455cc1abd2831", + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv", "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.710", "deps": [ @@ -16816,28 +17848,30 @@ }, "unison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/impaktor/unison-mode.git", - "sha256": "d11e3845374bb491d898e3a3826639212d485eedf098b7b6e85baed909021051", + "tag": "fetchFromGitHub", + "owner": "impaktor", + "repo": "unison-mode", + "sha256": "0l8h084xkbjvx2vbg67hxmg4hb9175k858z3k3c93d2b6x2kh7ni", "rev": "7e1bfee1a6796cc749a583605a9c948eccbc8cc5" }, "recipe": { "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.614", "deps": [] }, "avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/avy.git", - "sha256": "ef7382ab4751b7989f269f1931632244ba3afdf0157c27091907627b6788a6ed", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "1vd6i1kpnqh7344jfz0my3ykmfj449ik26cz4sgridsi8ymq4wzg", "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef" }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.756", "deps": [ @@ -16847,14 +17881,15 @@ }, "marmalade": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/marmalade.git", - "sha256": "78617a9d2005e419aab6e38fb59ec8bbfc4e897407a638d3923cd7fc1d52e3ea", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl", "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39" }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110602.1822", "deps": [ @@ -16870,7 +17905,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1212", "deps": [ @@ -16879,42 +17914,45 @@ }, "aurora-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xzerocode/aurora-theme.git", - "sha256": "26e201d8002ae5d45a0ecfac9fe9e711ccecea0bcfd8422417f2d561da3356fc", + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "aurora-theme", + "sha256": "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6", "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79" }, "recipe": { "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1302", "deps": [] }, "systemtap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/systemtap-mode.git", - "sha256": "f9ddb0fb74bfd4593251e023bd120229331e53257273f3d647abeba2cb02009d", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "systemtap-mode", + "sha256": "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd", "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9" }, "recipe": { "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1340", "deps": [] }, "evil-dvorak": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jbranso/evil-dvorak.git", - "sha256": "058408c00be4116f82b23dc9c66125622382587e0fa1c03dce835c522c056b49", + "tag": "fetchFromGitHub", + "owner": "jbranso", + "repo": "evil-dvorak", + "sha256": "0jbb0ln54p43rqyw188ggrc848v24mhwdj9xna16y4g41g00i105", "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b" }, "recipe": { "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.726", "deps": [ @@ -16927,28 +17965,30 @@ }, "shadow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/shadow.el.git", - "sha256": "bcebe1a23988ac97ba7d888983001dcc1d3e168cec8cdad1eeaec69cb5042ac4", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "shadow.el", + "sha256": "1i1a0jsrrimfxv8xm37cihb3w7fc3l0872c8gnx9gb4876if3sxw", "rev": "eafc93b090895102ac299220a84ec99244f633af" }, "recipe": { "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110507.224", "deps": [] }, "zop-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/zop-to-char.git", - "sha256": "efb045f400fff42dc9685088c22394dad6269cc3409f29ede6701d1837ef14bf", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "zop-to-char", + "sha256": "1gqlxwvih7bhwvnjk7s0qff2dmnsjhiw522hd34jvx7z03s4bc7g", "rev": "e1b4080286d7c905119eac745b8b7aaca2784844" }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.247", "deps": [ @@ -16957,42 +17997,45 @@ }, "phoenix-dark-mono-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/j0ni/phoenix-dark-mono.git", - "sha256": "318b15eb1520c8d9ba8e5981007a77742f922f58acd1e13428b7a6cac21be6b9", + "tag": "fetchFromGitHub", + "owner": "j0ni", + "repo": "phoenix-dark-mono", + "sha256": "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri", "rev": "dafb65c542605145d6b1702aae5b195b70f98285" }, "recipe": { "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130306.1415", "deps": [] }, "connection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [] }, "gmail-message-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/gmail-mode.git", - "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140815.1016", "deps": [ @@ -17001,42 +18044,45 @@ }, "rust-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rust-lang/rust-mode.git", - "sha256": "125b671fa783b3c5bd2bbb4a1fee2ffece51383475e195d45ebc68eed4cb7afb", - "rev": "b874bbe927e460695bd0bb7caf53b5dd8fe57a85" + "tag": "fetchFromGitHub", + "owner": "rust-lang", + "repo": "rust-mode", + "sha256": "0vnf3y92s5rwwqifn1gfvhi609a5ir32dhyzgs9d2gacri7z75lw", + "rev": "061e6d8a3a9104570144f1eacb729e3211cb03cd" }, "recipe": { "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1303", + "version": "20151215.2134", "deps": [] }, "bug-reference-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/bug-reference-github.git", - "sha256": "8b20d2efc2e13e6c154cfaf6d2f1c98c61d6d2f989c0d7306e81e8c8ab81d474", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "bug-reference-github", + "sha256": "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr", "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd" }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131202.1503", "deps": [] }, "clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1238", "deps": [ @@ -17045,14 +18091,15 @@ }, "utop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/diml/utop.git", - "sha256": "3f85dd7eac8dd50482ed9cb410b2b929cc8d6da599745f842089eac2c4a6e1c2", + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "034hn9rf6jh8kk07jdhvk03dlxm9v0asypjdhkkslgwfj3hp7yz2", "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5" }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.447", "deps": [ @@ -17061,14 +18108,15 @@ }, "with-editor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.705", "deps": [ @@ -17079,14 +18127,15 @@ }, "evil-jumper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-jumper.git", - "sha256": "08d774fc23eecd49fe8e2ea8662061a620408d248c5301ff36a3aa0a00aa92f8", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-jumper", + "sha256": "1y4jm800mam36vzh2lwc4j6l0856c4h6da1fivz4kkgf4gy79mq8", "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2" }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1002", "deps": [ @@ -17096,28 +18145,30 @@ }, "lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lugecy/lingr-el.git", - "sha256": "8038b25560e872e5e4a8104ebc7a1d48e6f0607f9b0f8d25e4391d3f26047d66", + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40", "rev": "4215a8704492d3c860097cbe2649936c22c196df" }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100807.1231", "deps": [] }, "auto-complete-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/auto-complete-sage.git", - "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", "rev": "a61a4e58b14134712e0737280281c0b10e56da93" }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1257", "deps": [ @@ -17127,14 +18178,15 @@ }, "rich-minority": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/rich-minority.git", - "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "rich-minority", + "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3", "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.600", "deps": [ @@ -17143,28 +18195,30 @@ }, "el-spy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/el-spy.git", - "sha256": "f6866b464ca98c3f9d9078774de9339357bfaf9052595438f0ab9df56d1cd404", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "el-spy", + "sha256": "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn", "rev": "b1dead9d1877660856ada22d906ac4e54695aec7" }, "recipe": { "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131226.1408", "deps": [] }, "marcopolo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/marcopolo.git", - "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150326.1118", "deps": [ @@ -17183,63 +18237,67 @@ }, "recipe": { "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120531.1636", "deps": [] }, "el-mock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/el-mock.el.git", - "sha256": "a9ae84c5bc965ea4a8cb3d1fb68655d48777ceb31c2adfd3dc8e6ef053209601", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "el-mock.el", + "sha256": "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm", "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39" }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.521", "deps": [] }, "smart-newline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/smart-newline.el.git", - "sha256": "467f958f35ef88eac38c02dbab506e629e6b104a176227891c9b4dea39c3ec75", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "smart-newline.el", + "sha256": "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg", "rev": "f5f5ff033645aea0652aa375b034746754a38b1e" }, "recipe": { "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131207.2140", "deps": [] }, "fringe-current-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyanagi/fringe-current-line.git", - "sha256": "6108e2f95042f2834c6dfa9acb59103a88c8fb4d3ac927c377138614d7b7947f", + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "fringe-current-line", + "sha256": "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231", "rev": "0ef000bac76abae30601222e6f06c7d133ab4942" }, "recipe": { "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140110.2211", "deps": [] }, "vertica": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/vertica-el.git", - "sha256": "325c546cb1a96c56ddaddcc7beb07841996c77a38efb07296fb9eda1bb0ae7d6", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "vertica-el", + "sha256": "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j", "rev": "3c9647b425c5c13c30bf0cba483646af18196588" }, "recipe": { "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131217.911", "deps": [ @@ -17248,14 +18306,15 @@ }, "hydra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/hydra.git", - "sha256": "d28da7ce564a639003d29433d7265defa28a3b9fb613210a1e55c0e8e952e136", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "0dp1ablyih2m3q5224xnkwxqm8pgblkdfcwls81r0qsaav7ag3fj", "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199" }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.617", "deps": [ @@ -17264,56 +18323,60 @@ }, "xmlunicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ndw/xmlunicode.git", - "sha256": "6f853574d262d1a16819b61d68da8a98d6b2061edcd914aac86a1bf06b2f3678", + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "xmlunicode", + "sha256": "0y1n5xmz06var2m19nfw3q3b5mlqibd6h7dn35la3lb2s9s3b1bg", "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21" }, "recipe": { "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1113", "deps": [] }, "pony-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidmiller/pony-mode.git", - "sha256": "d28ed9149832838a4c6000a897aa0b942a47b2d90b94fe89c15c607d94eb2512", + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "pony-mode", + "sha256": "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr", "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7" }, "recipe": { "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.502", "deps": [] }, "browse-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", - "sha256": "d3302bcb998575191ffa0ee1d86ea01e9a82befe008e3660cacd2ea0434f33ac", + "tag": "fetchFromGitHub", + "owner": "browse-kill-ring", + "repo": "browse-kill-ring", + "sha256": "06mdrjc4jq7pj8vmg91dair138kmhvaa9gi5icc56120jmfb6kn2", "rev": "66b5a0872b4278b49a815fc759c3eb48aebe10bf" }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.832", "deps": [] }, "auto-shell-command": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/auto-shell-command.git", - "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "auto-shell-command", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6", "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150416.1257", "deps": [ @@ -17323,14 +18386,15 @@ }, "gerrit-download": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/gerrit-download.el.git", - "sha256": "a4c77027e6d9e78b8f4ef5569643734748aced9c7b256f2fe8a7cc57c1f508b2", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "gerrit-download.el", + "sha256": "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4", "rev": "d568acc7c5935188c9bc19ba72719a6092d9f6fd" }, "recipe": { "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.908", "deps": [ @@ -17340,14 +18404,15 @@ }, "emms-player-mpv-jp-radios": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-mpv-jp-radios.git", - "sha256": "115f86d16945f4801b2c901a52e7c47485112818584a35650dbc127c677fb01b", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-mpv-jp-radios", + "sha256": "06xhgxkpq4mw1mjkajjq30l131blqkkm46lh5hdq1x25d78qcpqi", "rev": "325d78e161cacbd8279d53a0e786fdb5914f85d1" }, "recipe": { "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.617", "deps": [ @@ -17359,14 +18424,15 @@ }, "paren-completer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/MatthewBregg/paren-completer.git", - "sha256": "0d47deec35c632ab6d1f1d0d0165e459d2a1cfd28bb942f54e5eb32628ab4fa7", + "tag": "fetchFromGitHub", + "owner": "MatthewBregg", + "repo": "paren-completer", + "sha256": "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8", "rev": "afb6d596ffac85b3457178cfdb384cd2a382b120" }, "recipe": { "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150711.1723", "deps": [ @@ -17375,14 +18441,15 @@ }, "shelldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", - "sha256": "d91cb51799e19d15a5bfeb97510b6ed4102919e47babf08b529e7f01c88dfe18", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "0i6xp6g3ggs4fkr410blxa4mkb1y05pcygkdbvb7y3gh878q5b5k", "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3" }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2125", "deps": [ @@ -17392,14 +18459,15 @@ }, "malabar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m0smith/malabar-mode.git", - "sha256": "8c09e75bfeb8e8fc81b24a9f5ce953f37b121386168c7c0ace562cc9b3e9a57a", + "tag": "fetchFromGitHub", + "owner": "m0smith", + "repo": "malabar-mode", + "sha256": "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l", "rev": "830f38efae813db4388da6b4abd386eb0a4e861c" }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1255", "deps": [ @@ -17409,14 +18477,15 @@ }, "fullframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/fullframe.git", - "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.505", "deps": [ @@ -17425,42 +18494,45 @@ }, "cperl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/cperl-mode.git", - "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "cperl-mode", + "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6", "rev": "06f5668653a114991836139344dbe8f0674577af" }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140309.422", "deps": [] }, "handlebars-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielevans/handlebars-mode.git", - "sha256": "776070c6abb6ec9bfdb9711205a85ed0d37b422bd1b274aaa8724f73ed1c8470", + "tag": "fetchFromGitHub", + "owner": "danielevans", + "repo": "handlebars-mode", + "sha256": "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p", "rev": "81f6b73fea8f397807781a1b51568397af21a6ef" }, "recipe": { "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150211.1149", "deps": [] }, "helm-git-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-git-grep.git", - "sha256": "d93b88b594f63d7448432c629808266623b196374aed9c425f5f07a4da7ae5d6", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-git-grep", + "sha256": "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr", "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86" }, "recipe": { "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140222.2022", "deps": [ @@ -17469,14 +18541,15 @@ }, "ido-select-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/ido-select-window.git", - "sha256": "d0bbcac666d1e5dd9ba13e2eb3b898d2ae1c919ceede1e9272062121c835d350", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "ido-select-window", + "sha256": "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f", "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" }, "recipe": { "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131220.1447", "deps": [ @@ -17491,21 +18564,22 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1635", "deps": [] }, "wgrep-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140528.1627", "deps": [ @@ -17520,63 +18594,67 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130822.532", "deps": [] }, "tabbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dholm/tabbar.git", - "sha256": "7d487fbb6189b8eb520c25ddb985bcef407a95b82129fd7355f2d1f0a2b54358", + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "tabbar", + "sha256": "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x", "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded" }, "recipe": { "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.343", "deps": [] }, "pretty-symbols": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/drothlis/pretty-symbols.git", - "sha256": "60208b979981fbb6fa213f3e442f93a49e7101af4918073d823558655ca200b8", + "tag": "fetchFromGitHub", + "owner": "drothlis", + "repo": "pretty-symbols", + "sha256": "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830", "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956" }, "recipe": { "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.459", "deps": [] }, "comment-dwim-2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyferre/comment-dwim-2.git", - "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", "rev": "8cedecde018b5872195bfead6511af822776a430" }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.1749", "deps": [] }, "dom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/dom.el.git", - "sha256": "a2d6b6f1a40e9d829a71560b27d2a7531d5b72480958baf447adb739b110ad98", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "dom.el", + "sha256": "165d22qkkdxd8zsbln0991r5n7aklz92f2snf6d8578flkqvdmm2", "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6" }, "recipe": { "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.1810", "deps": [ @@ -17585,14 +18663,15 @@ }, "s-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-s-buffer.git", - "sha256": "0565383db76e415e7f00f07ec9b5060ba25e58c4c0660816b73b0ae98049cf1a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-s-buffer", + "sha256": "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85", "rev": "f95d234282377f00a2c3a9846681080cb95bb1df" }, "recipe": { "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1624", "deps": [ @@ -17602,42 +18681,45 @@ }, "ctags-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/helm-etags-plus.git", - "sha256": "a29adec5d4893d563888fa4c7cabe2967d0d31871f991fd929465811e9980c80", + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "helm-etags-plus", + "sha256": "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2", "rev": "eeed834b25a1c084b2c672bf15e4f96ee3df6a4e" }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.2214", "deps": [] }, "pcsv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", - "sha256": "4e212f945e58a53810a3c0ef0aa9b51da8f2ad76815fcf76a16a38f999cc5729", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af", "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0" }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.531", "deps": [] }, "projectile-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anshulverma/projectile-speedbar.git", - "sha256": "94472999394b672ec75c8cdbefffedd2fff6187c4c779e5bc625beb7962f6854", + "tag": "fetchFromGitHub", + "owner": "anshulverma", + "repo": "projectile-speedbar", + "sha256": "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la", "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16" }, "recipe": { "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.1353", "deps": [ @@ -17646,14 +18728,15 @@ }, "helm-unicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/helm-unicode.git", - "sha256": "6fdaef3f969894c5789050944ba446c37f29909d2bf777001eef0d61fad2f6fa", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg", "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa" }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1354", "deps": [ @@ -17663,28 +18746,30 @@ }, "base16-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkaito/base16-emacs.git", - "sha256": "59d316cc71bd647f4c90e7688ef508a2aff99ae4e3a4a495a4b36f0864034498", + "tag": "fetchFromGitHub", + "owner": "mkaito", + "repo": "base16-emacs", + "sha256": "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr", "rev": "18693adea42ec2667534651c28c32934bc1bcec0" }, "recipe": { "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.911", "deps": [] }, "xah-fly-keys": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-fly-keys.git", - "sha256": "36708da17c4d9114a47003d857002e706d1a12b7ea9137d9e28b5aa589481431", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-fly-keys", + "sha256": "0c8l924sanlbwbckg4ganw91lvbh5q05gn03f2j194adgjhqsw1n", "rev": "83d0da590640dda6d175cf88e83062717e39ed50" }, "recipe": { "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.348", "deps": [] @@ -17697,21 +18782,22 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110616.1219", "deps": [] }, "company-quickhelp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/company-quickhelp.git", - "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.519", "deps": [ @@ -17722,14 +18808,15 @@ }, "fxrd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/msherry/fxrd-mode.git", - "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "tag": "fetchFromGitHub", + "owner": "msherry", + "repo": "fxrd-mode", + "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b", "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1328", "deps": [ @@ -17738,14 +18825,15 @@ }, "gnus-desktop-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/gnus-desktop-notify.git", - "sha256": "992aea09c651de17ecb102ed7d9d0084e2637f2c74b6afe2446753e22cbc8c7a", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "gnus-desktop-notify", + "sha256": "0ylcphnf4lv78kiazdkl5izn7ql402fpvv82n7n1gpjiqq4ylalr", "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b" }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.854", "deps": [ @@ -17754,14 +18842,15 @@ }, "abyss-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/emacs-abyss-theme.git", - "sha256": "1a72a705e58f709505dfca8d12b6e59f0b7bd013fe063404f03b8e1900938f89", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "emacs-abyss-theme", + "sha256": "12cgjc01k3ivy02381py2g87n2wzwnv153favw2raw4gwl2sfwhs", "rev": "7971da041f5fb608e32cdac9259b53c87013c04f" }, "recipe": { "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.608", "deps": [ @@ -17770,14 +18859,15 @@ }, "js-comint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/js-comint.git", - "sha256": "3b313ca577447321f5245fe7cffb507eb038275ba7da30eefc87db67894c0442", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "0hh49j4ngnw7zkp31nm7bckkic3ya3xwzrsz4ksj2ws4fyjkqc9v", "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73" }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.2038", "deps": [ @@ -17786,14 +18876,15 @@ }, "orglue": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/orglue.git", - "sha256": "e60b8642c9e3685864e4573a77ee240e1325f51931d1ee93b09275aa6f5310f0", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "orglue", + "sha256": "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6", "rev": "4732f8bfd6866e20230b36e5971f2492827c6944" }, "recipe": { "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.713", "deps": [ @@ -17804,56 +18895,60 @@ }, "qml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/qml-mode.git", - "sha256": "4e0e8f6395d42f50c081f6acda37f6eb3951ee75e5130fe09310f7a688775e9c", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "qml-mode", + "sha256": "172yfy4adxqhjgh0y4z5fpp52fgbyqvxmb7nh7050byljmiqy3jf", "rev": "5e8fb8819e2d7f6fdbb5609a19570db6eaa6a83a" }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130427.1008", "deps": [] }, "org-journal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/emacs-journal.git", - "sha256": "33b199ff09579b4c58a17df0b0d707d7ef8cdcaea8b9f4a8f48a1f7eb6ff94f8", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0j6c2ykcm0yscfx5fjnbx53x4jvjc7c0lsgidlnn3a2mwynrc234", "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1" }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.949", "deps": [] }, "selectric-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rbanffy/selectric-mode.git", - "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.918", "deps": [] }, "circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.344", "deps": [ @@ -17862,14 +18957,15 @@ }, "blgrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/blgrep.git", - "sha256": "a0f62ec8ec32d092c0c2383761b44e649978841d300aafdcf9a1a18095e754df", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "blgrep", + "sha256": "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0", "rev": "605beda210610a5829750a987f5fcebea97af546" }, "recipe": { "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150401.916", "deps": [ @@ -17878,28 +18974,30 @@ }, "sublime-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/owainlewis/emacs-color-themes.git", - "sha256": "a9ec93ea3c10d4f5807f7cdaaaece2a40456f17b754b0bb0d2fd61df5f15bbf3", + "tag": "fetchFromGitHub", + "owner": "owainlewis", + "repo": "emacs-color-themes", + "sha256": "0gnxc9i544g6202s205jkjsfyzbybiqsdaxmfxcwj8la7ga6h2bf", "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0" }, "recipe": { "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.203", "deps": [] }, "evm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/evm.el.git", - "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", "rev": "d0623b2355436a5fd9f7238b419782080c79196b" }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141007.656", "deps": [ @@ -17909,14 +19007,15 @@ }, "snakemake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/snakemake-mode.git", - "sha256": "2724143dd987c019a4ba0b6eec316004a1bab422115a3b47ac51522c15689f5c", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "snakemake-mode", + "sha256": "0ymgiqfz33b0iyc6y9m8mb76q3jrccxlh7sbpqn8hj31iwlqyr48", "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a" }, "recipe": { "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.2203", "deps": [ @@ -17925,14 +19024,15 @@ }, "nameless": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/Nameless.git", - "sha256": "7a8e061545c3bb84dfeb3309f82f3579496f28bef5577e22075cb0bc41da608f", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "Nameless", + "sha256": "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks", "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448" }, "recipe": { "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.639", "deps": [ @@ -17941,28 +19041,30 @@ }, "epresent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/epresent.git", - "sha256": "415e6ec2f5f72dc2967022e009e326e6cc514b23848d8497fda2d599e5172702", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "epresent", + "sha256": "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw", "rev": "c185826a464f780467dff240fd63ec385bd1d9c2" }, "recipe": { "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.810", "deps": [] }, "truthy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/truthy.git", - "sha256": "639642c72c810ab8a35be74928c07f454895d0273755dc7edd8342ce61368e1e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm", "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69" }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -17971,28 +19073,30 @@ }, "php-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-mode.git", - "sha256": "29f5668158a753d55e31c82a8f25ee06d429d7b9b52ee266415003c42b7696ca", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-mode", + "sha256": "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6", "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa" }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2230", "deps": [] }, "helm-bibtexkey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenbeese/helm-bibtexkey.git", - "sha256": "5eb06aac13c91e9f70c80b64642dc93de3c5e9bdad3db1f0de152b9acc08c0be", + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-bibtexkey", + "sha256": "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9", "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f" }, "recipe": { "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140214.904", "deps": [ @@ -18001,14 +19105,15 @@ }, "sotlisp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", - "sha256": "38bd7fd3ebd26fdaeeb4c3c291db72d7495791529bb37f721ec996632dd208af", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69", "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413" }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.934", "deps": [ @@ -18017,14 +19122,15 @@ }, "helm-spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-spaces.git", - "sha256": "6b28370ffce75428111e7256c59f75984c4d4fc292f77c2fc34e06cd7e78876b", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b", "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828" }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1100", "deps": [ @@ -18034,14 +19140,15 @@ }, "logito": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/logito.git", - "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120225.1455", "deps": [ @@ -18050,16 +19157,17 @@ }, "slack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuya373/emacs-slack.git", - "sha256": "6bbcaf113fe2e1e346379c24e2e792a5bf9a0e9caed427915945d93c9ff24750", - "rev": "0876db049fcb8b4f901ee40fc382c01c5477f024" + "tag": "fetchFromGitHub", + "owner": "yuya373", + "repo": "emacs-slack", + "sha256": "1xpkcabi0cnk895fkg8ssaz7m3bc9x5i77v6a9mwdyjjxikcmgi2", + "rev": "861b250458606039301480bcf8c166b1a2ce174b" }, "recipe": { "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.2102", + "version": "20151218.347", "deps": [ "alert", "circe", @@ -18071,42 +19179,45 @@ }, "auto-save-buffers-enhanced": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kentaro/auto-save-buffers-enhanced.git", - "sha256": "229ebe2f1318ce7ba11fec13ddef9f75747e0ac07fe78568907872b5ef1a5c81", + "tag": "fetchFromGitHub", + "owner": "kentaro", + "repo": "auto-save-buffers-enhanced", + "sha256": "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2", "rev": "caf594120781a323ac37eab82bcf87f1ed4c9c42" }, "recipe": { "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.2149", "deps": [] }, "programmer-dvorak": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yangchenyun/programmer-dvorak.git", - "sha256": "006cb6558f3fde69f8a78504a17bade48b84aa590ac31a3571fe5ed006a974fa", + "tag": "fetchFromGitHub", + "owner": "yangchenyun", + "repo": "programmer-dvorak", + "sha256": "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00", "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350" }, "recipe": { "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150426.2037", "deps": [] }, "gold-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/gold-mode-el.git", - "sha256": "3b2f67e79919a00b6073e66a819127205f26be495ef184c85085baeb334e3651", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "gold-mode-el", + "sha256": "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q", "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1" }, "recipe": { "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.2106", "deps": [ @@ -18115,14 +19226,15 @@ }, "org-tracktable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tty-tourist/org-tracktable.git", - "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "tag": "fetchFromGitHub", + "owner": "tty-tourist", + "repo": "org-tracktable", + "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx", "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.1441", "deps": [ @@ -18138,21 +19250,22 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080329.2159", "deps": [] }, "electric-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/electric-operator.git", - "sha256": "dcb7a08d971d02b7291c6fa4564981f36d5067dcd118f06f9f4a98583fff8a17", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "15k9jc8c7d1wq8lrmdpdk52a7krla0irb2anbllz7kmdj1cp6311", "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868" }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1536", "deps": [ @@ -18163,28 +19276,30 @@ }, "duplicate-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/duplicate-thing.git", - "sha256": "91ba8f93a573b66c89db57947cbd967329e2df8e48b61bd833c5105751e551e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "duplicate-thing", + "sha256": "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli", "rev": "f6ed0232fd0653621afe450d53775a32a9d0e328" }, "recipe": { "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120515.1148", "deps": [] }, "owdriver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/owdriver.git", - "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141011.938", "deps": [ @@ -18195,14 +19310,15 @@ }, "color-identifiers-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ankurdave/color-identifiers-mode.git", - "sha256": "1b1a981fb25f652d1b5887a4bcb95bced2715a3349253ef5fced8f50388a2855", + "tag": "fetchFromGitHub", + "owner": "ankurdave", + "repo": "color-identifiers-mode", + "sha256": "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv", "rev": "e35ee05588d84517193db07d94ce7f29ace10ef6" }, "recipe": { "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.2004", "deps": [ @@ -18219,7 +19335,7 @@ }, "recipe": { "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.2350", "deps": [] @@ -18232,35 +19348,37 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.918", "deps": [] }, "spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/spotify-el.git", - "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1003", "deps": [] }, "vi-tilde-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/vi-tilde-fringe.git", - "sha256": "0baa23af0ddd92ecb98f9ce288e4d9a818c779d46d117546435ed2d5572fc252", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "vi-tilde-fringe", + "sha256": "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z", "rev": "f1597a8d54535bb1d84b442577b2024e6f910308" }, "recipe": { "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.2142", "deps": [ @@ -18269,14 +19387,15 @@ }, "babel-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hung-phan/babel-repl.git", - "sha256": "a1aa0eb08410d25cd835abfea5c4244eaadafd11bc0af7545d61fb89f81c52a7", + "tag": "fetchFromGitHub", + "owner": "hung-phan", + "repo": "babel-repl", + "sha256": "19sj3kw8kyv1bmagf2mw27yxmajf4k2abzmb6pc5rlhhhjq0xam1", "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e" }, "recipe": { "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.1000", "deps": [ @@ -18285,14 +19404,15 @@ }, "spotlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benmaughan/spotlight.el.git", - "sha256": "08f3c6fdfe534af7e7f3ec144cc09202ce42dd21ac214ed3c5feee2614a37616", + "tag": "fetchFromGitHub", + "owner": "benmaughan", + "repo": "spotlight.el", + "sha256": "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8", "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68" }, "recipe": { "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.255", "deps": [ @@ -18309,49 +19429,52 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131010.2258", "deps": [] }, "shadchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/VincentToups/shadchen-el.git", - "sha256": "eda47fd25aed9ac3a58b5840e76aec3028ab0a8907e2b9cf88a7c9b5f02b97fc", + "tag": "fetchFromGitHub", + "owner": "VincentToups", + "repo": "shadchen-el", + "sha256": "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8", "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f" }, "recipe": { "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.1239", "deps": [] }, "mustache-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mustache/emacs.git", - "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.932", "deps": [] }, "persistent-soft": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/persistent-soft.git", - "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1253", "deps": [ @@ -18361,14 +19484,15 @@ }, "prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.816", "deps": [ @@ -18377,56 +19501,60 @@ }, "chef-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpasternacki/chef-mode.git", - "sha256": "4a954cda3f4a54ac4983c7af43bd1cc10060ab3a1d98a7d8ff9e865c629edad6", + "tag": "fetchFromGitHub", + "owner": "mpasternacki", + "repo": "chef-mode", + "sha256": "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa", "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42" }, "recipe": { "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111121.900", "deps": [] }, "simplenote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/simplenote.el.git", - "sha256": "2926ccf7a5614d9e1f8aafb985ea657f9036499ac228351af351b6f786df0477", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "simplenote.el", + "sha256": "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9", "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078" }, "recipe": { "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141118.840", "deps": [] }, "key-combo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/key-combo.git", - "sha256": "4e5234cdeb340efb4945a11502d0730d4bd3b95771aac77ba7e7d84741d147c7", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "key-combo", + "sha256": "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf", "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754" }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.939", "deps": [] }, "white-sand-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/white-sand-theme.git", - "sha256": "b627cba32c8e31e5f460b7a541124851127ee5c4926e3a01722894b6cb13096a", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "white-sand-theme", + "sha256": "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn", "rev": "97621edd69267dd143760d94393db2c2558c9ea4" }, "recipe": { "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1048", "deps": [ @@ -18435,14 +19563,15 @@ }, "company-irony-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hotpxl/company-irony-c-headers.git", - "sha256": "5c6466bc183691e2eac3076c08acf0032ce606887b13b7b4a37b22a7720ef2e8", + "tag": "fetchFromGitHub", + "owner": "hotpxl", + "repo": "company-irony-c-headers", + "sha256": "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i", "rev": "ba304fe7eebdff90bbc7dea063b45b82638427fa" }, "recipe": { "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.409", "deps": [ @@ -18453,28 +19582,30 @@ }, "eshell-prompt-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/eshell-prompt-extras.git", - "sha256": "c9ca24798143e3dd85fd598e14d14e6fc1d67c3e05c5c592b7bb8cf4cb5f4e64", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "eshell-prompt-extras", + "sha256": "0r2fbz5z935vny9cbi857ryddhbg9v8i93jrzn2xvqs3h5wj9jn9", "rev": "0b7670972b6b424b4a15a88b1733b99324dcf387" }, "recipe": { "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.159", "deps": [] }, "magit-filenotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-filenotify.git", - "sha256": "26c77a487e3f174374d65f80c67a3532ddaf6e5b9cc01932de7c4ea985042785", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r", "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4" }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1740", "deps": [ @@ -18484,56 +19615,60 @@ }, "xterm-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/xterm-color.git", - "sha256": "de02f00f1d46e0310a3ca5b3ee4a73195ce0df37bc19107aa9e8ea2099bc8e18", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny", "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39" }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.846", "deps": [] }, "cp5022x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/awasira/cp5022x.el.git", - "sha256": "1fdebde08a8756defd8752c60cb8a1ad5145ce1c838b68706a2c660514e9c7fc", + "tag": "fetchFromGitHub", + "owner": "awasira", + "repo": "cp5022x.el", + "sha256": "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz", "rev": "ea7327dd75e54539576916f592ae1be98179ae35" }, "recipe": { "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120323.1835", "deps": [] }, "sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cnngimenez/sqlite.el.git", - "sha256": "b18c04fa7a3bac3d82ebc968af65bdd76c4959ac5954c68cd31d5bc1aa25ae57", + "tag": "fetchFromGitHub", + "owner": "cnngimenez", + "repo": "sqlite.el", + "sha256": "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d", "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986" }, "recipe": { "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.15", "deps": [] }, "phpunit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/phpunit.el.git", - "sha256": "5b0643e019e0660ff6931e137ad131215f686f0936a7a6ad06c7df9ae14fe205", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6", "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f" }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.454", "deps": [ @@ -18550,21 +19685,22 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101125.1355", "deps": [] }, "org-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-gcal.el.git", - "sha256": "1f8bf9693fb5e8675a001c5bbf3a5a352b55d56721adccad4cc325c27df54348", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1fg5qd1jswbdykx2aghpv79y5fccxcrwhwm81cnfh8s4fsq5nyfi", "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0" }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.2148", "deps": [ @@ -18577,14 +19713,15 @@ }, "evil-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antono/evil-rails.git", - "sha256": "911ff8bb72de512a90fbb70949c7023ee40c80e0777a860098ec962b7fe92d8b", + "tag": "fetchFromGitHub", + "owner": "antono", + "repo": "evil-rails", + "sha256": "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi", "rev": "6a9375bf7f5823c8138e679249c4e2ce58f2e93a" }, "recipe": { "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.646", "deps": [ @@ -18594,28 +19731,30 @@ }, "pcmpl-pip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/pcmpl-pip.git", - "sha256": "a8d857482e1fcc6347f0c32e9e90f265645641826937b60e18e0bee45709ff92", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "pcmpl-pip", + "sha256": "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58", "rev": "b775bef9fa3ae9fb8015409554ecdd165c4bc325" }, "recipe": { "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.348", "deps": [] }, "helm-rubygems-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neomantic/helm-rubygems-org.git", - "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "tag": "fetchFromGitHub", + "owner": "neomantic", + "repo": "helm-rubygems-org", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0", "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140826.656", "deps": [ @@ -18626,14 +19765,15 @@ }, "ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ag.el.git", - "sha256": "04f01565d6b032fda4c7d4a8d557d3dcfc3ce802ca7c802520a9fd804aa66393", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ag.el", + "sha256": "04rvj7arjmg12vimf55yzj2md1blncksl8q15jrdbzddhrbdjvg4", "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0" }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1750", "deps": [ @@ -18644,28 +19784,30 @@ }, "smartscan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/smart-scan.git", - "sha256": "b79030438356b3ff3794b6b6ec5c3d7260bfb57ec9dd8884e17e1801adeb6ca4", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "smart-scan", + "sha256": "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p", "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3" }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.939", "deps": [] }, "propfont-mixed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/propfont-mixed.git", - "sha256": "fcef75491a5270479c4649e40ca6dfc7007873f10c04a421c574f9f20ff047b2", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "propfont-mixed", + "sha256": "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v", "rev": "0b461ef4754a469610dba71874a34b6da42176bf" }, "recipe": { "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.1611", "deps": [ @@ -18675,14 +19817,15 @@ }, "jenkins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/jenkins.el.git", - "sha256": "e44b893caaeeca57a2bb2568737b8d76e1050aa878da6afa89e4a9a02fa99c5f", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "jenkins.el", + "sha256": "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs", "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79" }, "recipe": { "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2108", "deps": [ @@ -18693,14 +19836,15 @@ }, "el-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init.git", - "sha256": "f63e820fa9e7949044ff74b2f3e89786d97a4f3398a53816d815a7a3c9fc77bb", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "01yxv5kladg04rqglrzrh3vdf435g3m0hnv8ay9zkwgggcnqiknw", "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072" }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.420", "deps": [ @@ -18711,28 +19855,30 @@ }, "todotxt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/avillafiorita/todotxt-mode.git", - "sha256": "7cf723972f71cd857ed129f11f67d49a88813453f2d47688d7fcfbe56d4eb134", + "tag": "fetchFromGitHub", + "owner": "avillafiorita", + "repo": "todotxt-mode", + "sha256": "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7", "rev": "dc6ae151edee88f329ba7abc5d39b7440002232f" }, "recipe": { "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.904", "deps": [] }, "alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/alert.git", - "sha256": "5ff43b167c4b20d60c6a0c8176def479f7d86a50214e9dea6df62f129e74fe7c", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "alert", + "sha256": "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z", "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce" }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.959", "deps": [ @@ -18742,28 +19888,30 @@ }, "slime-ritz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pallet/ritz.git", - "sha256": "7ff352d5040cab189a14147f50634097f6c2cd451c5d32110660416b45e7b411", + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz", "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667" }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130218.1737", "deps": [] }, "buffer-flip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/buffer-flip.el.git", - "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1050", "deps": [ @@ -18778,7 +19926,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100504.329", "deps": [] @@ -18791,7 +19939,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.952", "deps": [ @@ -18806,21 +19954,22 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.621", "deps": [] }, "company-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsukimizake/company-dcd.git", - "sha256": "34237a92c5549f866da486f767486946fa5375773e45e45838f2658665d27161", + "tag": "fetchFromGitHub", + "owner": "tsukimizake", + "repo": "company-dcd", + "sha256": "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl", "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2" }, "recipe": { "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.604", "deps": [ @@ -18834,14 +19983,15 @@ }, "focus-autosave-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vifon/focus-autosave-mode.el.git", - "sha256": "cba9ac81a4c923dba9d17914665789d6e4310ca156b8691242dc4d19b285bdcc", + "tag": "fetchFromGitHub", + "owner": "vifon", + "repo": "focus-autosave-mode.el", + "sha256": "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb", "rev": "592e2c0642ee86b2000b728ea346de084447dda8" }, "recipe": { "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.442", "deps": [ @@ -18850,28 +20000,30 @@ }, "bert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/bert-el.git", - "sha256": "4e17f0aa6193b05a22c32a75d94b4ffd811d82842e46a91f810f7a3d015b3f1a", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "bert-el", + "sha256": "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf", "rev": "a3eec6980a725aa4abd2019e4c00246450260490" }, "recipe": { "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.414", "deps": [] }, "tern-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/tern-django.git", - "sha256": "9beb4691af7e824d45de5ccd50f43e9decd3a27287e81d42d181991c9872004c", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "1yb416py93sxnkfnfnbwrlfg68gkp97wpfsrdpc83sai888p44wc", "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86" }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1327", "deps": [ @@ -18888,35 +20040,37 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100504.350", "deps": [] }, "pager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/pager.git", - "sha256": "a1202cdca6c8c4ba9748d8afe853a9f9751d18f957e09fea3b2af57cfe8a05b7", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pager", + "sha256": "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851", "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d" }, "recipe": { "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100330.1331", "deps": [] }, "ido-ubiquitous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1816", "deps": [ @@ -18928,28 +20082,30 @@ }, "merlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "e4068a7297579b9d4f86b8f67b43cdc96656a8120cafa197c5d92551143aafb3", + "tag": "fetchFromGitHub", + "owner": "the-lambda-church", + "repo": "merlin", + "sha256": "00rmhvj2a7vxmqlr47f0x2nzkyy0ppx0h7ql4hp9iyxqpan7rrha", "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.525", "deps": [] }, "org-multiple-keymap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-multiple-keymap.el.git", - "sha256": "cc6422cd2e7d14a5797edf35e35f42bdedcd024dad83668e8de20d054006e976", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-multiple-keymap.el", + "sha256": "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3", "rev": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8" }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.2006", "deps": [ @@ -18960,14 +20116,15 @@ }, "bbdb-handy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-handy.git", - "sha256": "81e1e452762a24095b2ba14d94deab576b52410d07c432d4778a889dd8a9f7c3", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-handy", + "sha256": "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0", "rev": "67936204488b539fac9b4a7bfbf11546f3b13de2" }, "recipe": { "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1952", "deps": [ @@ -18976,56 +20133,60 @@ }, "preproc-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/preproc-font-lock.git", - "sha256": "ed06ad6d9fd8c7014539058732cd9e0f1b5122c3a94a2f37c3d684af706a2e7b", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "preproc-font-lock", + "sha256": "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd", "rev": "565fda9f5fdeb0598986174a07e9fb09f7604397" }, "recipe": { "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1418", "deps": [] }, "vagrant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ottbot/vagrant.el.git", - "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "tag": "fetchFromGitHub", + "owner": "ottbot", + "repo": "vagrant.el", + "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh", "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141125.2159", "deps": [] }, "tramp-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randymorris/tramp-term.el.git", - "sha256": "37aa886d912b5163af049d7480c02cd287088150daeab74c3f1227a21234fd31", + "tag": "fetchFromGitHub", + "owner": "randymorris", + "repo": "tramp-term.el", + "sha256": "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip", "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf" }, "recipe": { "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1545", "deps": [] }, "windsize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grammati/windsize.git", - "sha256": "4184e5352c74edf14664a5255b40230c91d44c92360d7bac8d852da84c713242", + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121", "rev": "beb6376fdf52afa6f220c89032448460faf76e7f" }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.740", "deps": [] @@ -19038,63 +20199,67 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140307.328", "deps": [] }, "uuidgen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kanru/uuidgen-el.git", - "sha256": "7c1da219c0fe7fb318bf562b4ae3a2616eea9c49515a25a774302dc1ee366ea5", + "tag": "fetchFromGitHub", + "owner": "kanru", + "repo": "uuidgen-el", + "sha256": "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw", "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22" }, "recipe": { "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140918.1801", "deps": [] }, "anti-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/anti-zenburn-theme.git", - "sha256": "d5fe8723188344c68f86953d1333e0d0c9ef8486ba14c95294b66548e6ff0fb3", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "1cqgzzk4hrdnji9cj55shs2fzjfhw0ri6gcmhs7wci4330iqgznm", "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59" }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1846", "deps": [] }, "sws-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150317.1445", "deps": [] }, "impatient-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netguy204/imp.el.git", - "sha256": "b1171f36a5a2350d1e13c1e2fd41bd22c7ab75e8c0a906c01c9a54f2c35be06e", + "tag": "fetchFromGitHub", + "owner": "netguy204", + "repo": "imp.el", + "sha256": "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj", "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0" }, "recipe": { "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.447", "deps": [ @@ -19105,14 +20270,15 @@ }, "ibuffer-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-projectile.git", - "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-projectile", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc", "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1037", "deps": [ @@ -19121,16 +20287,17 @@ }, "lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic.git", - "sha256": "728e6eac3089a694b29061bd31d7b74b07094d651306341f391f73c1eed98a8e", - "rev": "e27c3f3b2a44777157da02b8ab6f87391ce25913" + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "1lb7sxnnz1hi4xlf1q0ldvzig48dfmf6ki2p8b0mxk3lm4i3m1js", + "rev": "37f9fedb44c5feaeb14279ab3e8113f69cdf19a7" }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151102.239", + "version": "20151218.1029", "deps": [ "dash", "emacs", @@ -19141,42 +20308,45 @@ }, "hgignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omajid/hgignore-mode.git", - "sha256": "601f2d0dc3da7847c82bff7980c472681e41b8441f2fb1a00b891e84154a151a", + "tag": "fetchFromGitHub", + "owner": "omajid", + "repo": "hgignore-mode", + "sha256": "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0", "rev": "054c370c6df1b789f0d9907b30b54ef2287aafbe" }, "recipe": { "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.1300", "deps": [] }, "ubuntu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/ubuntu-theme.git", - "sha256": "2c0fb1f7928a5e3042e9d250cfde70292c2cee2ebce47cc1e787c90dd80d0ded", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "ubuntu-theme", + "sha256": "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc", "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69" }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1006", "deps": [] }, "lfe-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rvirding/lfe.git", - "sha256": "939e5fc7a773120a9dd4789d7d757336b42c8b1a8d0c3d3d31fd6ebb65b5b74c", + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "1i0nw7b19c26v6lnv8zjmcvirjbh7hfb1magr49ric3gpwlblnv7", "rev": "b0921aacf954e68689c181ec1c4651b02dc51855" }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1835", "deps": [] @@ -19190,21 +20360,22 @@ }, "recipe": { "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080305.234", "deps": [] }, "mo-vi-ment-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AjayMT/mo-vi-ment.git", - "sha256": "d66eb7686aabd7ac827201852a6e28a1af9b5d584dd43e23e9a895f113651a4c", + "tag": "fetchFromGitHub", + "owner": "AjayMT", + "repo": "mo-vi-ment", + "sha256": "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn", "rev": "f45b014261f8fab19254920bd1d92f3a83263411" }, "recipe": { "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.133", "deps": [] @@ -19217,21 +20388,22 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "flycheck-d-unittest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-d-unittest.git", - "sha256": "4d91af5279adfbb8523ce995ebd5a61e40de1670e7e592876b99f1be3a55e1e4", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-d-unittest", + "sha256": "1r71alxbxwcrdf3r5rg7f0bdwh0ylvayp5g97i9biyxdg59az4ad", "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311" }, "recipe": { "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.109", "deps": [ @@ -19241,28 +20413,30 @@ }, "crontab-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/crontab-mode.git", - "sha256": "2db95b55c0a3168d4566d5a083c2ebd20bf28947514908e246015304d1842de5", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "crontab-mode", + "sha256": "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d", "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e" }, "recipe": { "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090510.1555", "deps": [] }, "term+key-intercept": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-ki-el.git", - "sha256": "44be77010ea236afdf904a06f8a2e420cc08f138d358ba8132bc8c6736238726", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-ki-el", + "sha256": "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w", "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" }, "recipe": { "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.150", "deps": [ @@ -19272,28 +20446,30 @@ }, "nyan-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/nyan-prompt.git", - "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "nyan-prompt", + "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp", "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.8", "deps": [] }, "keymap-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keymap-utils.git", - "sha256": "87917c9ab29e61a95d5651385e74310a3cc25ea6df0d83b8b4c9f3451f226ca2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "18kc48glbwy9njw863fzlrgc4g0a65s5wf2iarfsjqcynad7r4c7", "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313" }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.526", "deps": [ @@ -19309,7 +20485,7 @@ }, "recipe": { "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141107.1717", "deps": [ @@ -19318,42 +20494,45 @@ }, "spray": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ian-kelling/spray.git", - "sha256": "4975f769e9ad020fb21cbea52f4fd077391eb5ba9d9945bc37a07d6039e37e3b", + "tag": "fetchFromGitHub", + "owner": "ian-kelling", + "repo": "spray", + "sha256": "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9", "rev": "11623f45955a18115459a2c18dc95bc967980a53" }, "recipe": { "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150626.145", "deps": [] }, "xcscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dkogan/xcscope.el.git", - "sha256": "aa08ae44578b6a8f4f1d0db8e52efebec03ffc476d4486b39e8c63a764f4c6f1", + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1wf6yijafqwcksrqci3d8zy3zh5yzqpfbf0d3m7qyslbax2aw25a", "rev": "d845a033058ccb83e32dd9648885e8f608bb6258" }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1637", "deps": [] }, "helm-mu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-mu.git", - "sha256": "53c2ed40653c1fa2c281cab124dfcad5706ffcf6715171e98d80c405581ca274", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-mu", + "sha256": "0x523ic0bi40iplp2lbiyvy6yw6mrbgj9cfah71a47rwcm0fvhjk", "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5" }, "recipe": { "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.1144", "deps": [ @@ -19362,28 +20541,30 @@ }, "org-cliplink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/org-cliplink.git", - "sha256": "b37e9b8e493f38e6f149d0b393296f0ebfe8d79a6810575b6e24d936aa29d438", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "org-cliplink", + "sha256": "1hc8yrfnla66p9lqvcnql51xa5pdmaqpka60nvfnyc5h40jyjsfd", "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2" }, "recipe": { "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.51", "deps": [] }, "flymake-cppcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-cppcheck.git", - "sha256": "c758dd31e6499f225d0720b89c574fb3eb346d9fef4908eadbc40e9d36634bbd", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-cppcheck", + "sha256": "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m", "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03" }, "recipe": { "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.757", "deps": [ @@ -19392,14 +20573,15 @@ }, "weechat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-kenny/weechat.el.git", - "sha256": "6721df4ab04dee9f40f1be832073abab2845e4cf05f37186897a85030c227cb4", + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k", "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185" }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.647", "deps": [ @@ -19411,14 +20593,15 @@ }, "psci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-psci.git", - "sha256": "560f502edc8b23091b0055482a2fbf3333fb0c3f5cbb62cbcef1f15dde0a4322", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-psci", + "sha256": "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn", "rev": "64dc931b4fe2a7507b8ac81423b12f7dcda2067a" }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.1401", "deps": [ @@ -19431,42 +20614,60 @@ }, "chicken-scheme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dleslie/chicken-scheme.el.git", - "sha256": "a572e151b335fd1f81beb4cc5923ecf4dc7b19e4a314f2b2822aee94f2a6c148", + "tag": "fetchFromGitHub", + "owner": "dleslie", + "repo": "chicken-scheme.el", + "sha256": "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5", "rev": "19b0b08b5592063e852cae094b394c7d1f923639" }, "recipe": { "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1339", "deps": [] }, "ample-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/ample-theme.git", - "sha256": "e67f5858dda1a9095eaee82380c7ebb233aa061a369929334895f19b1e772d15", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "ample-theme", + "sha256": "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw", "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382" }, "recipe": { "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.1301", "deps": [] }, + "ob-restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alf", + "repo": "ob-restclient.el", + "sha256": "0gd2n7dgaasl0clx71gsdm74xxm03qr5yrin8vz3q7wvkfn4bzdf", + "rev": "fc5684186275146bba667325c8c33bf7d6011552" + }, + "recipe": { + "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151207.1503", + "deps": [] + }, "cmake-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/cmake-font-lock.git", - "sha256": "4e9397d97ce32abc5b01a05e0a7f76dafe501a4522cde098a9ec1952ea78130c", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "cmake-font-lock", + "sha256": "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf", "rev": "982b753e0228bb5189e3bf2283afad9197d93c37" }, "recipe": { "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1527", "deps": [ @@ -19475,14 +20676,15 @@ }, "go-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/go-scratch.el.git", - "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "go-scratch.el", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm", "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150809.2340", "deps": [ @@ -19498,21 +20700,22 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1604", "deps": [] }, "vala-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gopar/vala-snippets.git", - "sha256": "d822678ce6e77cec72c0734e972417cfde8b26d61e19370237d3914ad1574c47", + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "vala-snippets", + "sha256": "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq", "rev": "671439501060449bd100b9fffd524a86064fbfbb" }, "recipe": { "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.2252", "deps": [ @@ -19521,56 +20724,60 @@ }, "plenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karupanerura/plenv.el.git", - "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.116", "deps": [] }, "random-splash-image": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kakakaya/random-splash-image.git", - "sha256": "e44bcae6d89d4061b0432d713b41f19fe8b2e6d4e4cfd8c754f496f5397b2778", + "tag": "fetchFromGitHub", + "owner": "kakakaya", + "repo": "random-splash-image", + "sha256": "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll", "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22" }, "recipe": { "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2030", "deps": [] }, "typescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/typescript.el.git", - "sha256": "ac44cee87338ca5164ec694ede19f2b8a34bd37c1796d4965592698000cac19b", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "typescript.el", + "sha256": "16y1r8080scjanbd95hpgk9lp8xqy8cxwkk9xij53jiqfglcwi5c", "rev": "49241bcc1f60b3787ccd9448a559f792156907a9" }, "recipe": { "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.2028", "deps": [] }, "git-gutter+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-plus.git", - "sha256": "9da139c6b30eee2733e0f732b95efc3cb75f4561f4f3a165e943586678e7a92c", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q", "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975" }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1123", "deps": [ @@ -19580,14 +20787,15 @@ }, "wrap-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/wrap-region.git", - "sha256": "032967c69689a8bece8d73ded30004e49a02e5efeea86ded792b5adb0b5a6262", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "wrap-region", + "sha256": "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n", "rev": "0eff3165db36464d28ed303ab25b715307cbdee0" }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.120", "deps": [ @@ -19596,42 +20804,45 @@ }, "flymake-gjshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-gjshint-el.git", - "sha256": "1e4e0a5f031148e05e305d2cbd6429d06d4022fe5649a141229b46d45f58ec34", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-gjshint-el", + "sha256": "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24", "rev": "dc957c14cb060819585de8aedb330e24efa4b784" }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130327.732", "deps": [] }, "smotitah": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/smotitah.git", - "sha256": "583703125b87fef3b0d94dbc871b082e08a7b7bd0c7fde4fe0fc63bd4df4ff68", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "smotitah", + "sha256": "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx", "rev": "f9ab562128a5460549d016913533778e8c94bcf3" }, "recipe": { "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.430", "deps": [] }, "org-dotemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/org-dotemacs.git", - "sha256": "c76ba5052f5042a773496001a7f20a86bfcc603adf15b982e297586442b3f997", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "org-dotemacs", + "sha256": "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7", "rev": "99a066508fedf8c80a3bfef08e015e612499d417" }, "recipe": { "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1222", "deps": [ @@ -19641,56 +20852,60 @@ }, "rnc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TreeRex/rnc-mode.git", - "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "tag": "fetchFromGitHub", + "owner": "TreeRex", + "repo": "rnc-mode", + "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih", "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121227.1702", "deps": [] }, "pangu-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/pangu-spacing.git", - "sha256": "698db552a307f17d85401e2f7e33ec2120217cf462e147654c74fc6eeb2fa4e6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li", "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb" }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.224", "deps": [] }, "protobuf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/protobuf.git", - "sha256": "761e69a84eab02c6d7aa506fb781f9d245fca3da7309fc7dc8cdfaaece9d85fa", - "rev": "dc633398af5c87e1fe1ffcedaebd697c4775c918" + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "023654g10pwx6h88jiwqdfskq663cc06dvr9pf6l1xjqm28wra34", + "rev": "43f9cb1e6f535e3a57bab517f8041beb2b3b1c51" }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150521.2211", "deps": [] }, "metaweblog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/metaweblog.el.git", - "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141130.805", "deps": [ @@ -19699,14 +20914,15 @@ }, "imenus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/imenus.el.git", - "sha256": "b016d0cb770331681fb33ac922df5dc1c22af8f8c79c9d39c3647e15137c8c82", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "0wi346m05b18i14xxih4qvwdrfcgv30gdvxjjcn6vd7gr0wdk2ns", "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd" }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150107.1139", "deps": [ @@ -19715,14 +20931,15 @@ }, "systemd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/systemd-mode.git", - "sha256": "7224f5e9e09e02e914d35585a01b6022993271d3e06444fc5d978cf8a3e61d38", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0f0xwsizi34pbpy48r70sdqk5692c0ds11amscafj0lyw3lza93j", "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76" }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.2332", "deps": [ @@ -19731,14 +20948,15 @@ }, "sourcegraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sourcegraph/emacs-sourcegraph-mode.git", - "sha256": "19e197b244340431f2ab91fab55faa5554d66b90cfd2ab67bb5523e0a13c3ba2", + "tag": "fetchFromGitHub", + "owner": "sourcegraph", + "repo": "emacs-sourcegraph-mode", + "sha256": "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r", "rev": "554c55734c23588fce66a8fa966945509b03d395" }, "recipe": { "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.2127", "deps": [ @@ -19747,14 +20965,15 @@ }, "wordnut": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/wordnut.git", - "sha256": "33b1e34b3c01c50e0ae91c7576a13aedd833c55cc4ab2474a197b109afcdfd1d", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "wordnut", + "sha256": "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj", "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169" }, "recipe": { "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.1657", "deps": [ @@ -19769,7 +20988,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1335", "deps": [] @@ -19783,35 +21002,37 @@ }, "recipe": { "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120507.207", "deps": [] }, "seclusion-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dleslie/seclusion-mode.git", - "sha256": "6988d7332164c8f9f49ad59e14d16a58442d922e7c417272fd2e571e25879295", + "tag": "fetchFromGitHub", + "owner": "dleslie", + "repo": "seclusion-mode", + "sha256": "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239", "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0" }, "recipe": { "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121118.1753", "deps": [] }, "auto-highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gennad/auto-highlight-symbol.git", - "sha256": "ace89797051218920a964942b7b997d79d6d6dca5a4e6c29b4df5b8c4357d149", + "tag": "fetchFromGitHub", + "owner": "gennad", + "repo": "auto-highlight-symbol", + "sha256": "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c", "rev": "26573de912d760e04321b350897aea70958cee8b" }, "recipe": { "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130313.443", "deps": [] @@ -19824,21 +21045,22 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.345", "deps": [] }, "flycheck-clangcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kumar8600/flycheck-clangcheck.git", - "sha256": "c2a03f82c01fec22b9dc5380eda40a41b9333540f6f73ee5232854e4b8f0d619", + "tag": "fetchFromGitHub", + "owner": "kumar8600", + "repo": "flycheck-clangcheck", + "sha256": "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck", "rev": "24a9424c484420073a24443a829fd5779752362b" }, "recipe": { "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.210", "deps": [ @@ -19849,28 +21071,30 @@ }, "lisp-extra-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/lisp-extra-font-lock.git", - "sha256": "4dda2a21fe0400d2b9f81d14cff73abe41e6620e958476f25ab112bf9c845ee4", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "lisp-extra-font-lock", + "sha256": "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd", "rev": "ff34c8519653824cf4a40979538b334cd2653892" }, "recipe": { "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150129.1516", "deps": [] }, "helm-rb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/helm-rb.git", - "sha256": "b34ca30bc5c1eb917ca3a85a03343fee4eff60316b847fec2d410ef46e7e71de", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "helm-rb", + "sha256": "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid", "rev": "4949d646420a9849af234dacdd8eb34a77c662fd" }, "recipe": { "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.1039", "deps": [ @@ -19880,28 +21104,30 @@ }, "splitter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130705.250", "deps": [] }, "w3m": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/w3m.git", - "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" }, "recipe": { "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121224.1947", "deps": [] @@ -19914,35 +21140,37 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1550", "deps": [] }, "pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/statmobile/pydoc.git", - "sha256": "9185e12f5bbb45bdf0884d19c3b01f8b74b546424df4225cbacfe062ebd48907", + "tag": "fetchFromGitHub", + "owner": "statmobile", + "repo": "pydoc", + "sha256": "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7", "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8" }, "recipe": { "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.2045", "deps": [] }, "ov": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/ov.el.git", - "sha256": "a506897ae3286981c6df49e83b557c0cb939bbf5e07d42a3f46bcd5648bfb4c7", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2", "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38" }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.28", "deps": [ @@ -19958,21 +21186,22 @@ }, "recipe": { "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120205.507", "deps": [] }, "ibuffer-vc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-vc.git", - "sha256": "3153d7a4cd775bae0c1b5142565e15c05dd619dbaee159ae026818c7bf3caae5", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp", "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b" }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1520", "deps": [ @@ -19981,56 +21210,60 @@ }, "kanji-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wsgac/kanji-mode.git", - "sha256": "d7bd8f4107393894ca143c8c982b526f530c896ba7241565e25c585358a684b8", + "tag": "fetchFromGitHub", + "owner": "wsgac", + "repo": "kanji-mode", + "sha256": "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz", "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962" }, "recipe": { "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.225", "deps": [] }, "dired-dups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/dired-dups.git", - "sha256": "d1026902e20accb18f4619d7210bdd0862f7067f022e53b0e8f10d22f9bf95d1", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "dired-dups", + "sha256": "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni", "rev": "694ad128c822c59348ced16c4a0c1356d43da47a" }, "recipe": { "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130527.1625", "deps": [] }, "edebug-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ScottyB/edebug-x.git", - "sha256": "62e1b2c0b8f65fe121aec0d84723e93e3c34abfaf2baac347aa98919a28bf1fd", + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "edebug-x", + "sha256": "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2", "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46" }, "recipe": { "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130616.125", "deps": [] }, "servant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/servant.el.git", - "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140216.619", "deps": [ @@ -20046,14 +21279,15 @@ }, "moz-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RenWenshan/emacs-moz-controller.git", - "sha256": "085ef98174a4ee9abd48873780e9abf202a5d19379b5f03895b09b46c7b05a3b", + "tag": "fetchFromGitHub", + "owner": "RenWenshan", + "repo": "emacs-moz-controller", + "sha256": "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8", "rev": "46f665c03574fa922de767fc29795e0db4a7c5c6" }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2006", "deps": [ @@ -20062,56 +21296,60 @@ }, "bitlbee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/elisp.git", - "sha256": "7a3dc9264c8346cd84b7f157de42bfdb9412c582e766651681042a08f22cddb2", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "elisp", + "sha256": "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs", "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e" }, "recipe": { "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.1218", "deps": [] }, "dired-efap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/dired-efap.git", - "sha256": "13e4368ca0b2760077581248eb54cc8a7c2d6baa0d4d09956cdb6648152fa69c", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv", "rev": "624757b2e54d9a13e2183118d6c113e37684b90c" }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140122.1056", "deps": [] }, "form-feed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/form-feed.git", - "sha256": "74e90a4b7555d23d2861285dd8f61c600673bbf26f664ecce2ee1c055742b27a", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "0ymj89bha77fwb64wrkgyaxp61k03kvdhp98c4l3vljmfm5hmsbl", "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720" }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.756", "deps": [] }, "auto-complete-nxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-nxml.git", - "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-nxml", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y", "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140220.2258", "deps": [ @@ -20126,49 +21364,52 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1551", "deps": [] }, "ws-butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/ws-butler.git", - "sha256": "a2840fb726437dce805021c1ee593ad730fa36d125d9d03611511408b65d5ef4", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152", "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57" }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.959", "deps": [] }, "nsis-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/nsis-mode.git", - "sha256": "b7874cb823c778769ea84671f213fc741eb182f904f97d9c2bedd64df9aa00f1", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp", "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06" }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.746", "deps": [] }, "cucumber-goto-step": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gstamp/cucumber-goto-step.git", - "sha256": "7d966792621cbe5a9ce1adfb96edfb07a43fbd51b585b89b8dc06a31a2a297a0", + "tag": "fetchFromGitHub", + "owner": "gstamp", + "repo": "cucumber-goto-step", + "sha256": "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx", "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa" }, "recipe": { "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.2319", "deps": [ @@ -20177,14 +21418,15 @@ }, "strie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hackscience/strie.el.git", - "sha256": "bc2efad0c9dce6d86e97dd144b757b478f3c9d33a1bea0c9785b945b4e6efaf5", + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "strie.el", + "sha256": "1xgsdr75p52vg34s1gm16ffkr3s7gdsln56xjxpdirnwr78glbmw", "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7" }, "recipe": { "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.812", "deps": [] @@ -20198,35 +21440,37 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.1431", "deps": [] }, "obsidian-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/obsidian-theme.git", - "sha256": "0172da03a8c0a09daf35b8d12a9bd8a5ba432e2b03a40725baaa739e780c6203", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "obsidian-theme", + "sha256": "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1", "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92" }, "recipe": { "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.1143", "deps": [] }, "firecode-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-firecode-theme.git", - "sha256": "d541500e0a432ac40d6b98a7da690b094d1ce0cda40dba7a430e04accc8e146d", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-firecode-theme", + "sha256": "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm", "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626" }, "recipe": { "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -20235,28 +21479,30 @@ }, "less-css-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/less-css-mode.git", - "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "less-css-mode", + "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn", "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150511.519", "deps": [] }, "snapshot-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrBliss/snapshot-timemachine.git", - "sha256": "f508c041c55c8146866a0640827d06e86e8e1e6e57c33823a31946910caacb9e", + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "snapshot-timemachine", + "sha256": "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m", "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773" }, "recipe": { "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1300", "deps": [ @@ -20266,14 +21512,15 @@ }, "python-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/python-x.el.git", - "sha256": "62e77dada58c7b8e4e06ff54441411c3d07e8403fcea09b47eb66a22e3f81a2a", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "0ahsz3ij4smngss0kspw0f27xl6324a48m7z0r78wywclnnpvrv2", "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a" }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.909", "deps": [ @@ -20284,28 +21531,30 @@ }, "el-spec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/el-spec.git", - "sha256": "c6ba965ea64bd9f9cf6b200eb7cc68cb23c2c48e98ea49434e2895fbc1d86d02", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "el-spec", + "sha256": "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az", "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" }, "recipe": { "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121018.204", "deps": [] }, "slime-annot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arielnetworks/cl-annot.git", - "sha256": "5c63ce9db677dd8c03c8b2987cf5d39bcb03892792846677f4cb14285d8fa33d", + "tag": "fetchFromGitHub", + "owner": "arielnetworks", + "repo": "cl-annot", + "sha256": "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n", "rev": "c99e69c15d935eabc671b483349a406e0da9518d" }, "recipe": { "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.2108", "deps": [ @@ -20314,14 +21563,15 @@ }, "ruby-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/ruby-test-mode.git", - "sha256": "ace5b3115fb0bffb51cf28b48c480debecbf7ee5f94f0e881d0b434e80cdd019", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "ruby-test-mode", + "sha256": "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc", "rev": "b7a652b5d0492a3c712090787faa5f206c2af5fb" }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.218", "deps": [ @@ -20330,14 +21580,15 @@ }, "font-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/font-utils.git", - "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.1251", "deps": [ @@ -20347,14 +21598,15 @@ }, "digistar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/digistar-mode.git", - "sha256": "ba1d51dba40a6776175d491e7047d6566bcb1c204d6000b6456e72a3fc755866", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "digistar-mode", + "sha256": "0rjqfpya6wkf8nv00q2d40fcnssnsr3p07j9blbpcrqalkdm27ds", "rev": "fcc0447b9ad97ac76f86de7485e0947440966d3f" }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.1922", "deps": [] @@ -20368,21 +21620,22 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2228", "deps": [] }, "phi-autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-autopair.git", - "sha256": "a5df86ea9306eba430df27bf90cf516e768c99548646e8db04e8e3dc9b35e091", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-autopair", + "sha256": "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5", "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08" }, "recipe": { "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.423", "deps": [ @@ -20397,49 +21650,52 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090208.2238", "deps": [] }, "navi2ch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naota/navi2ch.git", - "sha256": "1ad8b269ca7d917e450ef2e8ca6c634ea39cad8351ce5a74162c06b3282e30d5", + "tag": "fetchFromGitHub", + "owner": "naota", + "repo": "navi2ch", + "sha256": "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m", "rev": "faebfd15184de9df6903eae436dafb52c38ee86e" }, "recipe": { "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.2116", "deps": [] }, "dired-filetype-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/dired-filetype-face.git", - "sha256": "4ea5150d4251d26df3b0a4a4de4b2e1558bf22f1c5a8b28d4e6799299ffe2dea", - "rev": "a54efd4c127067c90ea1181e1c40beb8aa80abbb" + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "dired-filetype-face", + "sha256": "0v6n4ymlnphzmqaqlfbxvf24dh1pa0xy37xhz9xfjkk02l02wsgf", + "rev": "c51bb2d5fba8964b86e63242c247c4688441b9db" }, "recipe": { "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.2210", + "version": "20151216.2057", "deps": [] }, "pandoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/pandoc-mode.git", - "sha256": "37340478289bfa5fd9693332c82edc8871f20968a62c661a4ef72f2b1b2d4f00", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "0aj509yjqgq8bxrvdq5x3d1sfj0dgwwh6kg7f20vapz9qxjdjvdg", "rev": "23444375a60f44b3439994e969d8aa7acf220f8c" }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.513", "deps": [ @@ -20449,28 +21705,30 @@ }, "highlight-parentheses": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-parentheses.el.git", - "sha256": "7280d58782e7e73df9ae5410f46d6bab37672ecd66d7aa0edd883f295c833e22", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-parentheses.el", + "sha256": "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r", "rev": "a821a314942f409cd69660d816cd9a0aebd1ae8f" }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.116", "deps": [] }, "elx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/elx.git", - "sha256": "006ff5c18c313011d8e67b59496192d29164d683bc15e0b47b25d2601a6190d5", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "1mchc4d61li5gfsf05dwhgb694fjj9hljnbvwvc12c1iik0zavq0", "rev": "a8dff14f0626f729e745092dd88a1801c6239710" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.639", "deps": [ @@ -20479,14 +21737,15 @@ }, "bibslurp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/bibslurp.git", - "sha256": "032ae8f0535712055dd9182bb4e790631a08501d4924c6df0b1cb319dd60e391", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "bibslurp", + "sha256": "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823", "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189" }, "recipe": { "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1746", "deps": [ @@ -20496,14 +21755,15 @@ }, "ensime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ensime/ensime-emacs.git", - "sha256": "fbcea8e51a0ea08a2a1e782ec5628e586e12aaa02c3da2b20522ebfb1012ba0a", + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "ensime-emacs", + "sha256": "0mzw17s831r8m4kbs2d5p15c86v7w1y7barzqwcj76sdbb7wfkmy", "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca" }, "recipe": { "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1416", "deps": [ @@ -20518,16 +21778,17 @@ }, "hyai": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/hyai.git", - "sha256": "8f9b414aeed5bd347cf8c1ee0b723bd6d6f4adfb729fc02bfac46a2f5399e149", - "rev": "20f1cba4a3420bff42a6d23f84c51539b618c009" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "hyai", + "sha256": "0d3kdpwzr1gs0q986pkj8b9av9knzbh1ax9ybhn0k66hi55hn7bc", + "rev": "9c229e6bbccb8481b3889643d02de9869956875c" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.624", + "version": "20151218.610", "deps": [ "cl-lib", "emacs" @@ -20535,14 +21796,15 @@ }, "hackernews": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clarete/hackernews.el.git", - "sha256": "08edfb412805a397097cfe3165713b1e26ebae23ff151a226cdfbe3e4e1d61e5", + "tag": "fetchFromGitHub", + "owner": "clarete", + "repo": "hackernews.el", + "sha256": "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl", "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd" }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.1017", "deps": [ @@ -20551,14 +21813,15 @@ }, "powerline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/powerline.git", - "sha256": "9a9b7ea855082e87ecb0bc0023c9e56fd332d60c44abd2cd207f8e9bfe36d66e", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570", "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c" }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1649", "deps": [ @@ -20567,14 +21830,15 @@ }, "helm-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/helm-sage.git", - "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2234", "deps": [ @@ -20585,14 +21849,15 @@ }, "skewer-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/skewer-less.git", - "sha256": "0a2050aee6eced6083bf553deb41edc5367e8fa79ebe8ea096635a557e3fe598", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "skewer-less", + "sha256": "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a", "rev": "5a48dfa627c91f5f94150fab04cd66e890e3929f" }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.822", "deps": [ @@ -20607,21 +21872,22 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140630.947", "deps": [] }, "flymake-perlcritic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", - "sha256": "72c6a8eac6fbeffafce76724527896f22e55f4615cc952040a7a80fb481694b8", + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj", "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6" }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120328.314", "deps": [ @@ -20636,7 +21902,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] @@ -20649,7 +21915,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.1428", "deps": [ @@ -20658,14 +21924,15 @@ }, "emamux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-emamux.git", - "sha256": "40416e8fdb31184f24f85b02747f4831f9445ab26fe42b0a6daeea6c1fdf9fa2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1x88blaf7f1nwqm20jlcx4xh9almz0570dck87qf27lljrbfikpn", "rev": "1bb88275e472e131c4c14590b48e2016861724a5" }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.2302", "deps": [ @@ -20675,42 +21942,45 @@ }, "itail": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/itail.git", - "sha256": "290b1162e74b6e327c275ccb89991ca731de638e30c51af2f6104934ab41e9ab", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "itail", + "sha256": "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9", "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1" }, "recipe": { "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1035", "deps": [] }, "rings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/konr/rings.git", - "sha256": "77ba4a7b1501a208724053b30e4df75bca8ae8080d091b5d5daa78560961ba46", + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "rings", + "sha256": "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp", "rev": "1655dbf88ad877f54d67fab49f292945f70708eb" }, "recipe": { "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140102.1736", "deps": [] }, "kill-or-bury-alive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", - "sha256": "05460a9185d6bcf4d8aaad374316a1830bbab278ecb241ecb50df6e8e071c5f0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "kill-or-bury-alive", + "sha256": "0z9jlps979c1pza9wqfy2v9jx9awwfccdnrdlz535r49qv5lmih4", "rev": "04fa76e5baa2fbdfac77c38007a8dacbf0a3f9bc" }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.100", "deps": [ @@ -20720,28 +21990,30 @@ }, "hiwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshida-mediba/hiwin-mode.git", - "sha256": "137bdf828646a1aa08f3b1cbaf03a5a35d2b1d5b75a6f843ebb733fbf4a4eb9c", + "tag": "fetchFromGitHub", + "owner": "yoshida-mediba", + "repo": "hiwin-mode", + "sha256": "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk", "rev": "6ee8ed051405653bd9b7332d7e9fbb591d954051" }, "recipe": { "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.327", "deps": [] }, "ggtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/ggtags.git", - "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1544", "deps": [ @@ -20757,21 +22029,22 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140307.1044", "deps": [] }, "ac-cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake2.git", - "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140320.208", "deps": [ @@ -20781,14 +22054,15 @@ }, "elog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/elog.git", - "sha256": "fa3c6ce3c473d363caec46267e23ebebdfe059858a8970a06e3170329e87dba7", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "elog", + "sha256": "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s", "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98" }, "recipe": { "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1937", "deps": [ @@ -20797,42 +22071,45 @@ }, "cfengine-code-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cfengine/core.git", - "sha256": "e9632d27fbe81cd6af1d0ff19a7afd8b2e19ef25c545b5285f2fefb52cfe1598", - "rev": "085be03ef175c95197c9e41917098e17007ba6ab" + "tag": "fetchFromGitHub", + "owner": "cfengine", + "repo": "core", + "sha256": "1z68f6x0ycpsiszlv7mwh2vcsrvl97nk0wzsn9q858yyki7slya1", + "rev": "ccaf5d1c5225ab4b50212273d45fb20b8034795e" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.611", "deps": [] }, "rpm-spec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bjorlykke/rpm-spec-mode.git", - "sha256": "5b6f7dc05c98a51e110523227fc16ee14693f8947bffe6a61dc391a91d362b07", + "tag": "fetchFromGitHub", + "owner": "bjorlykke", + "repo": "rpm-spec-mode", + "sha256": "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv", "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1" }, "recipe": { "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150411.1055", "deps": [] }, "jscs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/papaeye/emacs-jscs.git", - "sha256": "650f62973382801094ad42f10c3d250b183f0909e040ca06eda9b8824d2b4806", + "tag": "fetchFromGitHub", + "owner": "papaeye", + "repo": "emacs-jscs", + "sha256": "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy", "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf" }, "recipe": { "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1249", "deps": [ @@ -20842,14 +22119,15 @@ }, "fm-bookmarks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/fm-bookmarks.el.git", - "sha256": "239ff1786f814ea24cdef8de8ecdd9348b3da6eaa2bd016b82ed521b1c740425", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "fm-bookmarks.el", + "sha256": "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3", "rev": "e1440334a4fe161bd8872996b6862d079d8eb24e" }, "recipe": { "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.803", "deps": [ @@ -20859,14 +22137,15 @@ }, "corral": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nivekuil/corral.git", - "sha256": "dcfb6994ba64224c8e64629519f002c22499966dd03d28313d556e38d3eb32e1", + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "1q9jxg9khvjm7lqjhgfhdnb9j9620bq1k5b2cj74q8k4paa6kyyw", "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f" }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1809", "deps": [] @@ -20879,21 +22158,22 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1226", "deps": [] }, "cacoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-cacoo.git", - "sha256": "45f2ad464ea9f76e1c66eababee9aa856e7d083ea2f03d9868181aa616b897ef", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx", "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c" }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120319.1859", "deps": [ @@ -20902,28 +22182,30 @@ }, "widget-mvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-widget-mvc.git", - "sha256": "70c7189dbadd43e4d0bb4dece49f9edda18e57a27a6dd28c5b778475c88bf963", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-widget-mvc", + "sha256": "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz", "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783" }, "recipe": { "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.2206", "deps": [] }, "sprintly-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sprintly/sprintly-mode.git", - "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121006.34", "deps": [ @@ -20932,14 +22214,15 @@ }, "org-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/groksteve/org-alert.git", - "sha256": "7b4328d690058cd3552f02415ea4f2aeb29e183dc3e981079969fbfa448efb7b", + "tag": "fetchFromGitHub", + "owner": "groksteve", + "repo": "org-alert", + "sha256": "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv", "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf" }, "recipe": { "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.537", "deps": [ @@ -20950,28 +22233,30 @@ }, "dtrace-script-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/dtrace-script-mode.git", - "sha256": "8ea6f445fa1829deea125ad078cced03b5d087aa84f42cdd6a71b42ef2e88eae", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "dtrace-script-mode", + "sha256": "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf", "rev": "801af1ef16075d31a19830ebb8404bbf3a322f10" }, "recipe": { "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150214.23", "deps": [] }, "multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-multi.git", - "sha256": "bd4bebeb7c3243fad37f4fe2b7b7621495c9ce75a4e16d390f0f02fcaa61b038", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx", "rev": "0987ab71692717ed457cb3984de184db9185806d" }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131013.1044", "deps": [ @@ -20980,42 +22265,45 @@ }, "eclipse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/eclipse-theme.git", - "sha256": "bc54027937aa0a82e28624aeb76097ba878a1ffe07b394b78201923b5133aaef", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "eclipse-theme", + "sha256": "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w", "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427" }, "recipe": { "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.801", "deps": [] }, "json-reformat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/json-reformat.git", - "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1100", "deps": [] }, "unicode-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-whitespace.git", - "sha256": "1995620e374e660bf7cb5651c344d539cb3477eaa9541bab2240de591d205798", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz", "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe" }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -21027,14 +22315,15 @@ }, "kakapo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/listx/kakapo-mode.git", - "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "tag": "fetchFromGitHub", + "owner": "listx", + "repo": "kakapo-mode", + "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40", "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.2352", "deps": [ @@ -21049,35 +22338,37 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1841", "deps": [] }, "pretty-sha-path": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/pretty-sha-path.el.git", - "sha256": "e2b2775316e34d67a382059f51269a1475b916f32752efb3eb7164e32e9decb8", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "pretty-sha-path.el", + "sha256": "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd", "rev": "a2b43dd9de423a38d67cda2e3bd9412f7d363257" }, "recipe": { "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.1226", "deps": [] }, "omni-tags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", - "sha256": "5fbfc42962288a8fe35c8489355c3043a27c751c4d91b3f4ea66bcd22856fdf6", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5", "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4" }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.1253", "deps": [ @@ -21087,14 +22378,15 @@ }, "hcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-hcl-mode.git", - "sha256": "87f3f5c568e2694eae1c6e8e83adfdfe5bff63cbedfab5004ebc7560d9765b94", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-hcl-mode", + "sha256": "1vf5130bj1ii9j8qq9vdw0ga0qgfk8brjz34ysfmz9l2ihlcxvl0", "rev": "5a5e490509452a1882bea43952e248682577ed2d" }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2249", "deps": [ @@ -21103,44 +22395,47 @@ }, "polymode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/polymode.git", - "sha256": "e1a9c583f74940b92b5b4deb8f07245696372305a76a54deaf16adff79d39c94", - "rev": "b9dc94728e168e0d9365ac6a94c81bdf93df66f3" + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "polymode", + "sha256": "0dlgmp1vmpvfjx19jz52xjmpg0fi1d0gy3zz7rsyjdkdw8dmr1v6", + "rev": "af589492a49b4703d390a7a91b281cf0d10d91a7" }, "recipe": { "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151013.1014", + "version": "20151216.733", "deps": [ "emacs" ] }, "restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashky/restclient.el.git", - "sha256": "7d4fc3e9d3b5348c419c2ad49a1ce0204a6a8a819b28bec238b4f524c1a94422", + "tag": "fetchFromGitHub", + "owner": "pashky", + "repo": "restclient.el", + "sha256": "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx", "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad" }, "recipe": { "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.1712", "deps": [] }, "lentic-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic-server.git", - "sha256": "775dab63ede9cb4b4b5f523192329324222dad2836eb7f746b3d8740249b91b2", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic-server", + "sha256": "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv", "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff" }, "recipe": { "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.826", "deps": [ @@ -21156,21 +22451,22 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120508.1320", "deps": [] }, "emms-soundcloud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/emms-soundcloud.git", - "sha256": "8dfecf457196c610a0db8166d2411a38e3e65568d0ba35a10d4a55e9ca5aa55b", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emms-soundcloud", + "sha256": "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld", "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b" }, "recipe": { "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131221.545", "deps": [ @@ -21180,56 +22476,60 @@ }, "abl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/afroisalreadyinu/abl-mode.git", - "sha256": "0ed55827c3ba2b6bc54f82f78349f99b0c5204e1acb5d13eb5b77143b0f93920", + "tag": "fetchFromGitHub", + "owner": "afroisalreadyinu", + "repo": "abl-mode", + "sha256": "081rz6q46wdpnlzd3ddcw425434vz54q7xw29z2nnaxsqckmim8f", "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb" }, "recipe": { "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.335", "deps": [] }, "page-break-lines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/page-break-lines.git", - "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150226.1017", "deps": [] }, "kpm-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/KMahoney/kpm-list.git", - "sha256": "1d944ff50c5220c93357efbb4b4287dbb773008e15055ca280d77aca688f30d5", + "tag": "fetchFromGitHub", + "owner": "KMahoney", + "repo": "kpm-list", + "sha256": "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x", "rev": "397912496d42e57c261ff6d33edc8fc029479b8b" }, "recipe": { "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.348", "deps": [] }, "edbi-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-sqlite.git", - "sha256": "c27f6757ca20befa2ce00029e62390055751df1e27e4be9ab730620687dbe6d5", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-sqlite", + "sha256": "0xnaj2f9zvnc6abjkaa23j6ga4anmq676aplws0n01y7qz6w0xk8", "rev": "929009365529b56daec172b87d7632240b15be1f" }, "recipe": { "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -21239,28 +22539,30 @@ }, "rope-read-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/rope-read-mode.git", - "sha256": "1a3b483b87bb8b857c1d988796cb661702b663a0941f7a7071c66c6a119ab9d6", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "1mmrk88nlv66f5q7l7wll1ivc0hpcv5rd1wq3my8b2xvhwxlhfqs", "rev": "8837e18405f96aab34821e890141ecf6b749bb73" }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1705", "deps": [] }, "desktop+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/desktop-plus.git", - "sha256": "50cc77e0a38624833fb6364d3191a038a7f0fd08262c0e9b6f6d52912e211aec", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2", "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd" }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1440", "deps": [ @@ -21271,28 +22573,30 @@ }, "smart-indent-rigidly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/smart-indent-rigidly.git", - "sha256": "5143da5cdbb61e0b6c9f3ed7b0fe1f6e6d69de8c7f8a4dd97da9a962c4ebb060", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "smart-indent-rigidly", + "sha256": "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi", "rev": "323d1fe4d0b81e598249aad01bc44adb180ece0e" }, "recipe": { "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.1815", "deps": [] }, "colemak-evil": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/patbl/colemak-evil.git", - "sha256": "c211d3486b8c0e4e1cb959b58597916c1c6a4fca1a9e1b57af955379516b39ee", + "tag": "fetchFromGitHub", + "owner": "patbl", + "repo": "colemak-evil", + "sha256": "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci", "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228" }, "recipe": { "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1812", "deps": [ @@ -21301,15 +22605,15 @@ }, "elnode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/elnode.git", - "branchName": "melpa", - "sha256": "1c22485d6b9aca32157e5025199de5bea27d515f27a7d9484468a8f976916c5c", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elnode", + "sha256": "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw", "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9" }, "recipe": { "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140203.1706", "deps": [ @@ -21325,56 +22629,60 @@ }, "bash-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/szermatt/emacs-bash-completion.git", - "sha256": "2464bf180b5a39e552bbd5f72d676246d5731660ca527123cb86259f7d2efa55", + "tag": "fetchFromGitHub", + "owner": "szermatt", + "repo": "emacs-bash-completion", + "sha256": "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg", "rev": "1659c7ca38e2cf591525a3d0b9d97461de33916d" }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.928", "deps": [] }, "php-refactor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/keelerm84/php-refactor-mode.el.git", - "sha256": "fd01f8fbef37092496e5cbe035236182cc44fbae265c152547c5ee1b49ce40bb", + "tag": "fetchFromGitHub", + "owner": "keelerm84", + "repo": "php-refactor-mode.el", + "sha256": "163albjkq7ldc9fki368540m7nl58qa70wfpff08gx3gsvywfnyi", "rev": "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61" }, "recipe": { "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140920.1611", "deps": [] }, "perlbrew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kentaro/perlbrew.el.git", - "sha256": "46e0f44b1063c4eb403566bedb6551c9e6e896befa3fdbbab1f4b9dff165e071", + "tag": "fetchFromGitHub", + "owner": "kentaro", + "repo": "perlbrew.el", + "sha256": "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26", "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3" }, "recipe": { "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130127.524", "deps": [] }, "download-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/download-region.git", - "sha256": "d94ebef9f11146dddf22903d0e8092b7981ac6a10760ca9adabedc1573f9873d", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "download-region", + "sha256": "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr", "rev": "51fc808e10803f695ea3d24c22e1af27e080903d" }, "recipe": { "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.232", "deps": [ @@ -21383,14 +22691,15 @@ }, "swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/emacs-swoop.git", - "sha256": "2929778655ddf5c1992f3bd2035c40a4ea76394760afef1713d0fdd3a3b31aac", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-swoop", + "sha256": "0qp078q9jrfm0k8sjq6qglfilwgqy1n0bbhyjk3hrf7rjxlkfkx7", "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf" }, "recipe": { "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1610", "deps": [ @@ -21402,28 +22711,30 @@ }, "angular-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/angularjs-mode.git", - "sha256": "9e20566b3a6aca00f1379974bdf180febee88db3af996bb549ab68a1b2bfa63a", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "angularjs-mode", + "sha256": "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377", "rev": "8720cde86af0f1859ccc8580571e8d0ad1c52cff" }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1527", "deps": [] }, "vertigo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/vertigo.el.git", - "sha256": "542c531de9f0bce41baa6aa28d33fcf661354fb2b8a5c75fe979178cd723086d", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "vertigo.el", + "sha256": "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l", "rev": "fecc566e9039408303f9b1c979624d546152b7df" }, "recipe": { "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2213", "deps": [ @@ -21432,14 +22743,15 @@ }, "flycheck-ats2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/drvink/flycheck-ats2.git", - "sha256": "d0866dac7619eb56a7efa8b0f43b1ff89a4784d9a71f850355b5e38ccd466f3d", + "tag": "fetchFromGitHub", + "owner": "drvink", + "repo": "flycheck-ats2", + "sha256": "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c", "rev": "431e46d5bbd20941c26270c7ba6872c86451348b" }, "recipe": { "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.807", "deps": [ @@ -21449,28 +22761,30 @@ }, "supergenpass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ober/sgpass.git", - "sha256": "618c7169151e612671e343c506a90883d83102ad313fce6153830835bfd50254", + "tag": "fetchFromGitHub", + "owner": "ober", + "repo": "sgpass", + "sha256": "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331", "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a" }, "recipe": { "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130329.48", "deps": [] }, "iodine-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/srdja/iodine-theme.git", - "sha256": "6356a29d707b82390bee429dd60a1dea518189e3f47a18fecc041ee690eaee93", + "tag": "fetchFromGitHub", + "owner": "srdja", + "repo": "iodine-theme", + "sha256": "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3", "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999" }, "recipe": { "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1139", "deps": [ @@ -21479,14 +22793,15 @@ }, "mkdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajtulloch/mkdown.el.git", - "sha256": "b372e045dbe74cf1e528c658d8effceb70ba5384204aefad210407eb988808b4", + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "mkdown.el", + "sha256": "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk", "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e" }, "recipe": { "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140517.918", "deps": [ @@ -21495,14 +22810,15 @@ }, "ctxmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-ctxmenu.git", - "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.1542", "deps": [ @@ -21513,14 +22829,15 @@ }, "python-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-python-environment.git", - "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-python-environment", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk", "rev": "401006584e32864a10c69d29f14414828909362e" }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150310.353", "deps": [ @@ -21529,14 +22846,15 @@ }, "flymake-phpcs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-phpcs.git", - "sha256": "f6424371d6403360abcd1cd4d6224659a71a6b796fc80ba7632a04f67d003f56", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-phpcs", + "sha256": "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi", "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50" }, "recipe": { "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140713.131", "deps": [ @@ -21545,28 +22863,30 @@ }, "gotham-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/gotham-theme.git", - "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.358", "deps": [] }, "evil-quickscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/blorbx/evil-quickscope.git", - "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.1448", "deps": [ @@ -21581,21 +22901,22 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1622", "deps": [] }, "lenlen-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/lenlen-theme.git", - "sha256": "c5fc644261965ffb3a01417c9efca59eff193ce814e9a972e47a7c8523266829", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "lenlen-theme", + "sha256": "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65", "rev": "05202458fa0a5242e5c6e4451e375f6c16920272" }, "recipe": { "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.211", "deps": [ @@ -21604,42 +22925,45 @@ }, "orgtbl-aggregate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgaggregate.git", - "sha256": "fe5b7b3b16c331190ccd443f34b52d21cbffd642b0f4d6ae8fea5e57b519b1e8", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgaggregate", + "sha256": "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg", "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59" }, "recipe": { "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1018", "deps": [] }, "cssfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/KeenS/cssfmt.el.git", - "sha256": "3e41911495416dcd9e685b248cee6de098b172f787ab560c50f3a3756a24ce43", + "tag": "fetchFromGitHub", + "owner": "KeenS", + "repo": "cssfmt.el", + "sha256": "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y", "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0" }, "recipe": { "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.2328", "deps": [] }, "color-theme-buffer-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vic/color-theme-buffer-local.git", - "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "tag": "fetchFromGitHub", + "owner": "vic", + "repo": "color-theme-buffer-local", + "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx", "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" }, "recipe": { "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.1828", "deps": [ @@ -21648,70 +22972,75 @@ }, "xbm-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/xbm-life.git", - "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", - "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.220", + "version": "20151217.215", "deps": [] }, "grails-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", - "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "tag": "fetchFromGitHub", + "owner": "Groovy-Emacs-Modes", + "repo": "groovy-emacs-modes", + "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i", "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" }, "recipe": { "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] }, "flymake-lua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sroccaserra/emacs.git", - "sha256": "9bf5e7478c2afd17d1242d32fc5fe09a00f37930698b05ca8556f870b99fe7bb", + "tag": "fetchFromGitHub", + "owner": "sroccaserra", + "repo": "emacs", + "sha256": "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv", "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76" }, "recipe": { "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.430", "deps": [] }, "elpa-mirror": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/elpa-mirror.git", - "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", "rev": "6c32875c2317736e590e067820996010b21acb1d" }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.653", "deps": [] }, "e2wm-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-bookmark.el.git", - "sha256": "00be8e800d331110c58dcc2c72925e54c9e0e0a3b2722ddbc67d09e208693b88", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-bookmark.el", + "sha256": "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0", "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb" }, "recipe": { "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.2321", "deps": [ @@ -21720,42 +23049,45 @@ }, "p4": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gareth-rees/p4.el.git", - "sha256": "ed284ec82619c7b1fac4a5c0731135faa9f337666415b580f368f975002cc46d", + "tag": "fetchFromGitHub", + "owner": "gareth-rees", + "repo": "p4.el", + "sha256": "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra", "rev": "eff047caa75dbe4965defca9d1212454cdb755d5" }, "recipe": { "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150721.1437", "deps": [] }, "review-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kmuto/review-el.git", - "sha256": "90697f329b34824ed405c467cadc63c0054655ea1f7e8af268a9ea3391f1fa53", + "tag": "fetchFromGitHub", + "owner": "kmuto", + "repo": "review-el", + "sha256": "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch", "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a" }, "recipe": { "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.812", "deps": [] }, "peacock-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-peacock-theme.git", - "sha256": "032a7b7afae146884a30e2d39d2d98d8b9cdb8dd49b8025f74ee721977cd9bb2", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-peacock-theme", + "sha256": "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3", "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7" }, "recipe": { "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -21764,56 +23096,60 @@ }, "edit-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs_chrome.git", - "sha256": "59059059edcd5a484df559b1556ca6a4b86ba1a7cb7501dadca6d1bb02876267", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd", "rev": "0a50fbb524fe256560f481701c000309c627b9ca" }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1558", "deps": [] }, "imakado": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/emacs-imakado.git", - "sha256": "01697d294cbc5bbb2189cc1ce4484dc180e970ef80456798f95baafd05821bab", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "emacs-imakado", + "sha256": "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp", "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f" }, "recipe": { "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.423", "deps": [] }, "dynamic-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/dynamic-ruler.git", - "sha256": "05125630107314e243bb2aae034e5b8127b6664123b4c085cdf7e9381d9952cb", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5", "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67" }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1609", "deps": [] }, "fontawesome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-fontawesome.git", - "sha256": "cfcc536d23a01a8359ca4f96cb92d5b1dd19c5248babdbab343b9142f54c3ae2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1", "rev": "66650efea4a044afe0e5f482ccac465082cd5e62" }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.830", "deps": [ @@ -21823,14 +23159,15 @@ }, "langdoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/langdoc.git", - "sha256": "ced1f335382d6fd13be2943a10dfede0c6ac041a6f24a73ddada47a2fb896c6b", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "langdoc", + "sha256": "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff", "rev": "2c7223bacb116992d700ecb19a60df5c09c63424" }, "recipe": { "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.45", "deps": [ @@ -21839,28 +23176,30 @@ }, "o-blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/o-blog.git", - "sha256": "bc56e26405fb8312fbb115fec4850231c5251743b3d37cbfeeaff25c8946dd6c", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch", "rev": "e466c59478feddc8126c43c1b98550474af484c0" }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1739", "deps": [] }, "love-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/love-minor-mode.git", - "sha256": "d41bb10f0e9c7b5af36083af562c4d00ee1ffa9cb1412797b9655138fe25399d", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl", "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74" }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130429.1659", "deps": [ @@ -21869,28 +23208,30 @@ }, "erc-hl-nicks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/erc-hl-nicks.git", - "sha256": "79a50c10f4d9f6440018926ef0dc3d63cd64a7c387bd10ff05efeb8b8b725040", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "erc-hl-nicks", + "sha256": "0h2hfa5qpszg0pzi1gc7qfkn9kb37pfg0vlj30049xnryh80r9br", "rev": "e536ea57f842f85ecda5a28ceed24cd506b7be2c" }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.722", "deps": [] }, "quickref": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/quickref.el.git", - "sha256": "7ef58cadcc908a0ee43a80337c4f1688f1b100febe7b7ffb36cd45def0c5f8c4", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "quickref.el", + "sha256": "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby", "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25" }, "recipe": { "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130113.1700", "deps": [ @@ -21900,14 +23241,15 @@ }, "dash-functional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", - "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.613", "deps": [ @@ -21917,14 +23259,15 @@ }, "pdf-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/pdf-tools.git", - "sha256": "6e82b64ff57c1066751dd0dc16bf47e1b0e73ac6853493c5ba9da94771753a2b", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "pdf-tools", + "sha256": "1ik26v8x94myx04wy9vi6bwzvfxbl43fam765g0gy2n8289bhpi8", "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f" }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1658", "deps": [ @@ -21935,14 +23278,15 @@ }, "beacon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/beacon.git", - "sha256": "9af76de0d71a2ae032eab254d91a2b175d9eb8cabe69bb70c16c32c468ab9fa9", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "beacon", + "sha256": "1aczmdlc8ckcq5qbnsdyraw9wp8p5cddjm5jx8rf0ahsszh6vxws", "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2" }, "recipe": { "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1203", "deps": [ @@ -21951,14 +23295,15 @@ }, "image+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-imagex.git", - "sha256": "1746922e553afb50eb0b8ff3cd4b1e323b2c96af5632ea2b98eaa944a90bed9e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-imagex", + "sha256": "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd", "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc" }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1116", "deps": [ @@ -21967,42 +23312,45 @@ }, "dockerfile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spotify/dockerfile-mode.git", - "sha256": "b46a6d3e1b57a5f05268823da2a53b05ecd337b86bd7f7e09affd3af37142b71", + "tag": "fetchFromGitHub", + "owner": "spotify", + "repo": "dockerfile-mode", + "sha256": "08pd42vv2c3l19nfib1hd7i7sy9dqwar1wfrvsnm5dkxcwlsm99j", "rev": "40be396417535c6721c1b13ca9f99c46192f1d73" }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1057", "deps": [] }, "telepathy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/telepathy.el.git", - "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.658", "deps": [] }, "flycheck-haskell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-haskell.git", - "sha256": "c50bcfe4233247fcf45e805e5c25eee233de4eb3066f4ec22fe155b3c39406a3", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0sv4swdqnra3xvjp8im0mxphwfsfw6c45shwdgnjagqs6z6v0i5k", "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55" }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1347", "deps": [ @@ -22016,28 +23364,30 @@ }, "handoff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/handoff.el.git", - "sha256": "391c2258c0768e67ec75c2b1804b31959965ba1562e5ffe36316369458461672", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "handoff.el", + "sha256": "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r", "rev": "75dc7a7e352f38679f65d0ca80ad158798e168bd" }, "recipe": { "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.100", "deps": [] }, "evil-iedit-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-iedit-state.git", - "sha256": "0f68dee1632ea8c5a2ae20c6afd26cec0272b421890bb5c997247f91d25b9326", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-iedit-state", + "sha256": "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl", "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8" }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141217.1934", "deps": [ @@ -22047,14 +23397,15 @@ }, "unicode-enbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-enbox.git", - "sha256": "c46645b5d78c6374273a33a44188feeb9cf7f85b26cf422bb5568539052fe811", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5", "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151" }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -22067,28 +23418,30 @@ }, "arduino-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bookest/arduino-mode.git", - "sha256": "1062865641d61a07243a96bc1cf1a9eef32aee2c079220ef8be48a4c059939c7", + "tag": "fetchFromGitHub", + "owner": "bookest", + "repo": "arduino-mode", + "sha256": "0i9xf74yfmg1a5vdf3nxd35865qhvrdw8vnfhnfx5cdc56v6rwa3", "rev": "bb89ac81e9b206a6da5653fd108a315ad3e8a8d7" }, "recipe": { "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.135", "deps": [] }, "flycheck-pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-pos-tip.git", - "sha256": "80dfa60f2af94937d2401db5f5714d1b9f3ed535a93ac2b6b0db345bbb349ee2", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-pos-tip", + "sha256": "17xfh8kbf1915mq4wli32nrvk7jcg67kq698cc35g8glkkxjm64v", "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527" }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.258", "deps": [ @@ -22099,28 +23452,30 @@ }, "subatomic256-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/subatomic256.git", - "sha256": "085f4ac10b86f23d1ebc7b45de0e33b75ba7284f8402c13985b708867d8df5f0", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "subatomic256", + "sha256": "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8", "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f" }, "recipe": { "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.2110", "deps": [] }, "evil-paredit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-paredit.git", - "sha256": "179d7d5ad76179d2287e43d59b47dd543e8232237448918478845e7535f1082c", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-paredit", + "sha256": "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p", "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f" }, "recipe": { "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1548", "deps": [ @@ -22130,14 +23485,15 @@ }, "ac-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/ac-dcd.git", - "sha256": "8bd27e3f90bfafdcc6a6f4fcef3d88a3cbff0f747c8a2000ffb9cd9865f31a62", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "ac-dcd", + "sha256": "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv", "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336" }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.924", "deps": [ @@ -22147,14 +23503,15 @@ }, "es-windows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-windows.git", - "sha256": "bce3c91e760a15b53e1469bb8af63febace3c2fb398d8c60ec1f93db2603b3ba", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-windows", + "sha256": "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m", "rev": "239e30408cb1adb4bc8bd63e2df34711fa910b4f" }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.304", "deps": [ @@ -22164,28 +23521,30 @@ }, "find-by-pinyin-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", - "sha256": "9d6006ffdc025fb0328e2bcb8f301ed3ec8d7fef38dedf48ff724f841f505214", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "find-by-pinyin-dired", + "sha256": "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480", "rev": "d049cc7f507a6f801c497a3d401b260300874f58" }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.416", "deps": [] }, "metascript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/metascript/metascript-mode.git", - "sha256": "bc4d1fd0aef5b898d39bd1525c15968a1ae406f8367b8647d463220af235ce10", + "tag": "fetchFromGitHub", + "owner": "metascript", + "repo": "metascript-mode", + "sha256": "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5", "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9" }, "recipe": { "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.1957", "deps": [ @@ -22194,14 +23553,15 @@ }, "helm-helm-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/helm-helm-commands.git", - "sha256": "f6320082f041dd825318bc93181cd1466494a37b00f27f7d255264454a777a16", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "helm-helm-commands", + "sha256": "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn", "rev": "3a05aa19c976501343ad9ae630a36810921a85f6" }, "recipe": { "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130902.1248", "deps": [ @@ -22210,14 +23570,15 @@ }, "smart-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y", "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.837", "deps": [ @@ -22233,21 +23594,22 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.2151", "deps": [] }, "live-py-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donkirkby/live-py-plugin.git", - "sha256": "cb68a077a30baa9734d5528c6579f8c76f434de47538575c893c0d170ea86f3a", + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "02jvfn0g7r07kvb9m97kqa22j5nsgxbnp6r5vsq3d9qjsi459yd3", "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5" }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.1107", "deps": [ @@ -22256,56 +23618,60 @@ }, "virtualenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aculich/virtualenv.el.git", - "sha256": "18d149689022146d338e82726718413e91137ec2456d2f866ce80863b687a765", + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "virtualenv.el", + "sha256": "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q", "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3" }, "recipe": { "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140220.1701", "deps": [] }, "pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pitkali/pos-tip.git", - "sha256": "43b8b715e052c32b20416388350d444294f247cb44c65c992dce4898cda11099", + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23", "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d" }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150318.1013", "deps": [] }, "empos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimalik/empos.git", - "sha256": "1668583b29cf0a22a5c7f1faff92df501bfba709de4fe8b6fb4dbcb36d67a02e", + "tag": "fetchFromGitHub", + "owner": "dimalik", + "repo": "empos", + "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n", "rev": "7b99ad30e56937adb7e6349777e5a2045597d564" }, "recipe": { "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1416", "deps": [] }, "helm-gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx", "rev": "78deece7f314f9652b50117605e93be9f8c860f4" }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.233", "deps": [ @@ -22317,14 +23683,15 @@ }, "smart-shift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hbin/smart-shift.git", - "sha256": "68e21f2db070c5d6fb26127fa7dc6013f1fa44372edd1149976fae509d73f02b", + "tag": "fetchFromGitHub", + "owner": "hbin", + "repo": "smart-shift", + "sha256": "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8", "rev": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae" }, "recipe": { "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150203.125", "deps": [] @@ -22338,7 +23705,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1804", "deps": [ @@ -22347,14 +23714,15 @@ }, "magit-gerrit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/terranpro/magit-gerrit.git", - "sha256": "bbbbdcd87474e8bd407490f4da1fc7bdce7d3e003b489699eb75595dfe811962", + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0qhrh7z5snbmxfcrcj1v00z7vkmxqwgxmx4hfi0bvs3lfkcdrfxv", "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d" }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1818", "deps": [ @@ -22363,14 +23731,15 @@ }, "bubbleberry-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-bubbleberry-theme.git", - "sha256": "48b4657882137c892aa427f03529e5aef9e79dc489929c0118936c1a7f460aaa", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-bubbleberry-theme", + "sha256": "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28", "rev": "22e9adf4586414024e4592972022ec297321b320" }, "recipe": { "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141017.444", "deps": [ @@ -22379,16 +23748,17 @@ }, "org-pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lolownia/org-pomodoro.git", - "sha256": "f777853f661559b761f0df05bbc452593e42bff9e900c29215f110e50b16bce0", - "rev": "749ec04434cae33cdb5c33f1afff0801fb1515d0" + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb", + "rev": "95e2b1f555359a6096a19634814e1d93b2072f25" }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151020.607", + "version": "20151217.753", "deps": [ "alert", "cl-lib" @@ -22396,14 +23766,15 @@ }, "buster-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/buster-snippets.el.git", - "sha256": "a1b627fc446d628fd3a4b95553f3b678ef0523f41d448368e4ccce4a9aed0b67", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "buster-snippets.el", + "sha256": "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6", "rev": "bb8769dae132659858e74d52f3f4e8790399423a" }, "recipe": { "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.410", "deps": [ @@ -22412,42 +23783,45 @@ }, "monokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", - "sha256": "23ece4c7746694079eec5a343c2855ba0566630845653c02b5d4ee8470157527", + "tag": "fetchFromGitHub", + "owner": "oneKelvinSmith", + "repo": "monokai-emacs", + "sha256": "09vm2mq89vnlnl13qra511inc1dsall3qd2sxjg0g536fk3y9v13", "rev": "451a46930b9c5420d526505abe8f157a7292644e" }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.507", "deps": [] }, "cloud-to-butt-erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/cloud-to-butt-erc.git", - "sha256": "ee4e548c3571b308edd910dfc60b4222138c75f59c3091a49f5c9771cdb27b1e", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "cloud-to-butt-erc", + "sha256": "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf", "rev": "6710c03d1bc91736435cbfe845924940cae34e5c" }, "recipe": { "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130627.1808", "deps": [] }, "kurecolor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/kurecolor.git", - "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.2322", "deps": [ @@ -22457,14 +23831,15 @@ }, "dropbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pavpanchekha/dropbox.el.git", - "sha256": "212dbe278e903d1ca488ba1d91e63a201f171fd82c51bedeef46e7ed1a3a6422", + "tag": "fetchFromGitHub", + "owner": "pavpanchekha", + "repo": "dropbox.el", + "sha256": "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s", "rev": "fb71a2787030f911b569426596c081a89241056e" }, "recipe": { "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.1737", "deps": [ @@ -22474,14 +23849,15 @@ }, "helm-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/helm-rails.git", - "sha256": "e9d72b8f718aa13a4d8927b8ba16520eefe9154cfcb3e31145d698d9ad6b5764", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "helm-rails", + "sha256": "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158", "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0" }, "recipe": { "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130424.1019", "deps": [ @@ -22491,14 +23867,15 @@ }, "flymake-haml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haml.git", - "sha256": "ddfb04b489e80baee8503a064037fe66582daecf7cc59dad4e75434056347764", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haml", + "sha256": "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l", "rev": "3117d94ecad908710502e8def42dbae5748e9c1d" }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130324.551", "deps": [ @@ -22507,56 +23884,60 @@ }, "highlight-indentation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", - "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "Highlight-Indentation-for-Emacs", + "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k", "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.408", "deps": [] }, "runtests": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sunesimonsen/emacs-runtests.git", - "sha256": "ad88c3bb7c09bebf0b336cbac2afd70cda347a36a755f38b931992cfb3965943", + "tag": "fetchFromGitHub", + "owner": "sunesimonsen", + "repo": "emacs-runtests", + "sha256": "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6", "rev": "ed90249f24cc48290018df48b9b9b7172440be3e" }, "recipe": { "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.331", "deps": [] }, "monroe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sanel/monroe.git", - "sha256": "b03a675d71de68b44441b888222d93a8169e5cf5ff65e62e167333ddedf42ffc", + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh", "rev": "7f42a0139a8030407da736ddb0f67132634b70c0" }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141111.307", "deps": [] }, "helm-ctest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danlamanna/helm-ctest.git", - "sha256": "3e83ca4371bec877a13ac2f23ba05da267b20039689e39f3e0d69819a932a9a1", + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "helm-ctest", + "sha256": "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry", "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d" }, "recipe": { "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.608", "deps": [ @@ -22567,14 +23948,15 @@ }, "with-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/with-namespace.el.git", - "sha256": "437bd6a08124b12a33c22ac6586c1ca6bd31c873b5aa7c7b076b9d2c8743efb0", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "with-namespace.el", + "sha256": "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3", "rev": "8ac52da3a09cf46087720e30cf730d00f140cde6" }, "recipe": { "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.1322", "deps": [ @@ -22584,14 +23966,15 @@ }, "flymake-google-cpplint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-google-cpplint.git", - "sha256": "feb4a5d21a0bce78929d847359d1671f1e5f67bb74129529c64b545a0981f12f", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-google-cpplint", + "sha256": "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc", "rev": "905d32e84a27f18a78bec455ca930ab1ff9ae31e" }, "recipe": { "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140205.725", "deps": [ @@ -22600,14 +23983,15 @@ }, "names": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/names.git", - "sha256": "925745496c19a41a86451a5267446a086585173029f902ccbf86cd9bdebe1a31", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh", "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6" }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.604", "deps": [ @@ -22617,14 +24001,15 @@ }, "worf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/worf.git", - "sha256": "59ba8b5c26c4392ff671b7c1d32673da76db075a8751e05820f276fd608d3bf6", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "worf", + "sha256": "0flwch8hsfz1kkb0hg68s71szbvmh7mqih8hj0kwfjdb7alsah8r", "rev": "61a6fc392034c2a588c44fef0a514032cf660e68" }, "recipe": { "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.2040", "deps": [ @@ -22635,42 +24020,45 @@ }, "ztree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/ztree.git", - "sha256": "1180986f07af1b86448fc1fd30b3210a53fc33d3145f9522ea1091b6a500dad4", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "ztree", + "sha256": "1m6s02jvd48hx8i9apqlscrzqlqa46rk1zf1ix28c6xg0xpri00i", "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b" }, "recipe": { "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1412", "deps": [] }, "log4j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/log4j-mode.git", - "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "log4j-mode", + "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk", "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101016.1022", "deps": [] }, "discover-clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/discover-clj-refactor.el.git", - "sha256": "c4bd46d2f22f37ea27e5233d88260737d5f786090e0a2cf6af1fdd521c2a4f50", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "discover-clj-refactor.el", + "sha256": "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4", "rev": "3fbd5c1162739e606d7cf5d4f5d7426547d99647" }, "recipe": { "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.959", "deps": [ @@ -22680,28 +24068,30 @@ }, "faceup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/faceup.git", - "sha256": "4a727309149603c5e7d44407e254acca397ecc8fbca1ded249dbbaab9a97556a", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "faceup", + "sha256": "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja", "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79" }, "recipe": { "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.1548", "deps": [] }, "repl-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/repl-toggle.git", - "sha256": "f1afa0c6f8f575dccd6c6829014bc52b542289ee9478a3c0bb94540b72659ff0", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "repl-toggle", + "sha256": "0lx9zbn9zvr50i8x5vpd5cr22c2v27ln2v89dmn0shcdx54m454l", "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c" }, "recipe": { "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140501.731", "deps": [ @@ -22710,14 +24100,15 @@ }, "gnus-x-gm-raw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/gnus-x-gm-raw.git", - "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "gnus-x-gm-raw", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril", "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140610.231", "deps": [ @@ -22727,16 +24118,17 @@ }, "noxml-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paddymcall/noXML-fold.git", - "sha256": "80cdb634e2d4974ed7e20df6cb4d68b049e6e9592ba3ea3a6313dff3422559e3", - "rev": "48d55c03bb1f92fed4983b7a019926bae6aa56f7" + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "noXML-fold", + "sha256": "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8", + "rev": "feecc06b1136c1ddbabcdc37287f1ef26f1282fc" }, "recipe": { "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.707", + "version": "20151216.1021", "deps": [] }, "dropdown-list": { @@ -22747,21 +24139,22 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120329.1136", "deps": [] }, "look-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/look-dired.git", - "sha256": "92b15024ebe127d55bbcea7b5afebbc0a5069ac0df5b3b161e5c3472995c3771", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "look-dired", + "sha256": "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj", "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2" }, "recipe": { "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1956", "deps": [ @@ -22770,14 +24163,15 @@ }, "salt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/beardedprojamz/salt-mode.git", - "sha256": "5d933495346eeb087807d6333b2b51fec5283a17cdbdfa7d8bf7abeb5615fcf1", + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "salt-mode", + "sha256": "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn", "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4" }, "recipe": { "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.1313", "deps": [ @@ -22788,14 +24182,15 @@ }, "wand": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cmpitg/wand.git", - "sha256": "31c30b26270f4c61cd3d5cf7fd9a6c3a9da312ee9f40f01cdf606ac1b4d6f825", + "tag": "fetchFromGitHub", + "owner": "cmpitg", + "repo": "wand", + "sha256": "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri", "rev": "da6284ab75c3afa1275420faa9934037052e2967" }, "recipe": { "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1845", "deps": [ @@ -22804,14 +24199,15 @@ }, "docker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/docker.el.git", - "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.413", "deps": [ @@ -22829,21 +24225,22 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "rpn-calc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/rpn-calc.git", - "sha256": "2807488ab372afef5e15092750a4e8cee09fe67a731ee3857e57db06e1e2b844", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "rpn-calc", + "sha256": "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8", "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594" }, "recipe": { "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.734", "deps": [ @@ -22852,14 +24249,15 @@ }, "auto-package-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/auto-package-update.el.git", - "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "auto-package-update.el", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2", "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.111", "deps": [ @@ -22869,28 +24267,30 @@ }, "map-progress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-progress.git", - "sha256": "e13f2d39788c85c3663b1e829f48ff1393b80595421974e94a05e6cc0f5ca65d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-progress", + "sha256": "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1", "rev": "3167eb218510953fb97e7d50948a625eaa3f0005" }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.1632", "deps": [] }, "eno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/enoson/eno.el.git", - "sha256": "462f59552505a6ba4e92db160fc711b263a0d556a67500a96dd917e57474f897", + "tag": "fetchFromGitHub", + "owner": "enoson", + "repo": "eno.el", + "sha256": "15zqfisfa5yrdnlh0xd6avas0qxj273hy5nvj97bm9h54mamjbs6", "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6" }, "recipe": { "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.726", "deps": [ @@ -22900,14 +24300,15 @@ }, "helm-idris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-idris.git", - "sha256": "603b3640410de1485d85bc60b3998a48aff8559b99f3cc01ab536a8a00cd585b", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-idris", + "sha256": "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q", "rev": "a2f45d6817974f318b55ad9b7fd19d5df132d47e" }, "recipe": { "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141202.1157", "deps": [ @@ -22917,14 +24318,15 @@ }, "omni-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", - "sha256": "57662f117ebccd55060deec8323f1b2b57d9ab82c3ff22f6f90d9136ccfbac5a", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-log.el", + "sha256": "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0", "rev": "e5a8ee7d63eb1e745b37ba4e3e71c5ea025e2342" }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1238", "deps": [ @@ -22936,14 +24338,15 @@ }, "zombie-trellys-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", - "sha256": "32166180198f2e9055e44ee1b9119329266dcf02819c9c573e4fdf59de35547e", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "zombie-trellys-mode", + "sha256": "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01", "rev": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2" }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150304.848", "deps": [ @@ -22954,14 +24357,15 @@ }, "ob-mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-mongo.git", - "sha256": "1ca5426d8bfe5c5a2774c0dcef89f914103486efb6b43c5acd48aebf2948cb0e", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-mongo", + "sha256": "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr", "rev": "7eb5524d9c106945b371f9fbb9f1176f6e6f9b13" }, "recipe": { "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.932", "deps": [ @@ -22970,14 +24374,15 @@ }, "karma": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/karma.el.git", - "sha256": "0099c9f61844c2bd023e7d59355bb15434766387cface7a8b112a11cd712e35a", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "karma.el", + "sha256": "1xcs15j555cgp2k4k9vl5sy2lrffbk0ma2fv60hlxwirqyw4jcdy", "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4" }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.2358", "deps": [ @@ -22994,7 +24399,7 @@ }, "recipe": { "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.2028", "deps": [ @@ -23004,14 +24409,15 @@ }, "imenu-anywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/imenu-anywhere.git", - "sha256": "d16c1617e86af7514b1b59cd2eb36d84e668cfc16fbdf25f4f6a0a37d62e24d6", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "imenu-anywhere", + "sha256": "1mi45vb3f2ka9xgz5gbgq77nirl4dnrjxkar3d5m3xvax0bicv6i", "rev": "b486c1e80c667504b243a84351cc8751710248e9" }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1327", "deps": [ @@ -23020,56 +24426,60 @@ }, "js3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomblake/js3-mode.git", - "sha256": "9f4ab387bcaec873b657d9ee4ae79b2288d8a6d859994bc50ade172911f4687a", + "tag": "fetchFromGitHub", + "owner": "thomblake", + "repo": "js3-mode", + "sha256": "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l", "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e" }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1149", "deps": [] }, "scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/scratch-el.git", - "sha256": "665d0f7f9a642974b73046bc4fedf279bc70967e54657288206424a48b5b824e", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "scratch-el", + "sha256": "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq", "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5" }, "recipe": { "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120830.1228", "deps": [] }, "tangotango-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juba/color-theme-tangotango.git", - "sha256": "0d3d886a5978d1fadec76fc3e18d7bc872daab25cedcd5dcaf9390e59ef06203", + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "color-theme-tangotango", + "sha256": "00v2y2gfb44kmzfdbp6f4nmxlwn8gf6y3hvgqzggmlbqb5m8hg8d", "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005" }, "recipe": { "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.304", "deps": [] }, "imgur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/imgur.el.git", - "sha256": "8a6cb0a15924fdec70ad27d768e582835de48639905349b6eeb25685c99a3e9f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "imgur.el", + "sha256": "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs", "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb" }, "recipe": { "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120307.425", "deps": [ @@ -23078,14 +24488,15 @@ }, "auto-auto-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/auto-auto-indent.git", - "sha256": "b60a7b4ed0abc26610ea4f3c8602933924e295eaba54ef5fb3a234047d60c20b", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "auto-auto-indent", + "sha256": "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7", "rev": "0139378577f936d34b20276af6f022fb457af490" }, "recipe": { "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131106.1303", "deps": [ @@ -23095,30 +24506,32 @@ }, "aproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vietor/aproject.git", - "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150605.406", "deps": [] }, "helm-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.448", + "version": "20151217.49", "deps": [ "cl-lib", "dash", @@ -23128,14 +24541,15 @@ }, "ahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ahk-mode.git", - "sha256": "bd1a98dc5da3be7ed1075fc70e8e13f8994e9be970535856afbf1ba635d04a88", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "122as0ssc6xzmxb5hlvhx6dlx6gq2f70xisz0z8pxgm3bpf9h6mx", "rev": "e08a1b467d42b9d5e719c39407908152011b4573" }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1737", "deps": [ @@ -23145,14 +24559,15 @@ }, "requirejs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/requirejs-emacs.git", - "sha256": "83cd75fc1826900e3a5fc5e6aedfb9e1495f2f200c68d60bcbbefb28c768d36f", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv", "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1" }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.119", "deps": [ @@ -23165,14 +24580,15 @@ }, "json-rpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-json-rpc.git", - "sha256": "445167eb6645cf86afe49be836bc59d2f564f1c903b5336479bef2422252794d", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-json-rpc", + "sha256": "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb", "rev": "a83189b126d8d3d7a856008a5b6ad267b2fcc126" }, "recipe": { "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1601", "deps": [ @@ -23182,42 +24598,45 @@ }, "gnus-alias": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/gnus-alias.git", - "sha256": "e46aeca201e0217743a8f307b6b40084163c904df1fad07a77736cafae4547c4", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "gnus-alias", + "sha256": "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4", "rev": "9447d3ccb4c0e75d0468899cccff7aa249657bac" }, "recipe": { "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.1942", "deps": [] }, "pastehub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/pastehub.git", - "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "pastehub", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n", "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140615.120", "deps": [] }, "nim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nim-lang/nim-mode.git", - "sha256": "b604f34fecd885a638dca97e7d2c2ea3f995c995b3e10cdce2e57209e48835a1", + "tag": "fetchFromGitHub", + "owner": "nim-lang", + "repo": "nim-mode", + "sha256": "00s8c4a5qnfm0h6zx26f1m0syq7gii7n45nl83y71yaccdw0syls", "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56" }, "recipe": { "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.225", "deps": [ @@ -23227,14 +24646,15 @@ }, "elfeed-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyhonig/elfeed-org.git", - "sha256": "b2485ccb7afde0778449ebcf4ca58df7761ccd52fe9d18115a6da0eae1d2e832", + "tag": "fetchFromGitHub", + "owner": "remyhonig", + "repo": "elfeed-org", + "sha256": "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j", "rev": "e5206bc983d04c68310181da83147908682de295" }, "recipe": { "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.531", "deps": [ @@ -23246,28 +24666,30 @@ }, "watch-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mjsteger/watch-buffer.git", - "sha256": "221f7dd8dab0571b8bfcea551f09fb35215736f4b8c7e2e6011aa9da6db30445", + "tag": "fetchFromGitHub", + "owner": "mjsteger", + "repo": "watch-buffer", + "sha256": "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2", "rev": "761fd7252e6d7bf5148283c2a7ee935f087d9427" }, "recipe": { "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120331.1544", "deps": [] }, "langtool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-langtool.git", - "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.613", "deps": [ @@ -23276,28 +24698,30 @@ }, "toml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dryman/toml-mode.el.git", - "sha256": "e77eec7f3ff5562483f874c37a50f475f4664766207f529a316ceb6e89ff23df", + "tag": "fetchFromGitHub", + "owner": "dryman", + "repo": "toml-mode.el", + "sha256": "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj", "rev": "afd98423773c2b9578fc5b2b46a43b5f5ecf7e6b" }, "recipe": { "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.320", "deps": [] }, "ac-skk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ac-skk.el.git", - "sha256": "95cba9f0f0955e4e3f5f241e09da2fda627f9b43f46aee0beb2975f29d047fdb", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ac-skk.el", + "sha256": "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm", "rev": "d25a265930430d080329789fb253d786c01dfa24" }, "recipe": { "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1919", "deps": [ @@ -23315,21 +24739,22 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130901.935", "deps": [] }, "rbt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/rbt.el.git", - "sha256": "f156109e6dccfddc630eb6515f1ad901aa63c5f3c1c12c02828a84f3207e4246", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "rbt.el", + "sha256": "0ij2gqhg714ah812rhf1yg2n7ah1v4d5yldn1rixrzfcdng10mpi", "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797" }, "recipe": { "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2255", "deps": [ @@ -23338,14 +24763,15 @@ }, "uzumaki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/geyslan/uzumaki.git", - "sha256": "7dc44b70cba824db0d2e37869d0cc5dca541420103a2cdffa2ce71844c45a13b", + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x", "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4" }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1906", "deps": [ @@ -23361,49 +24787,52 @@ }, "recipe": { "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120808.2207", "deps": [] }, "creole-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/creole-mode.git", - "sha256": "1068bfca7c74693cbff7ae60bc3749bb73f3e31a6c892aa10a6d27d40be75749", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "creole-mode", + "sha256": "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h", "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4" }, "recipe": { "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130721.1950", "deps": [] }, "fvwm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theBlackDragon/fvwm-mode.git", - "sha256": "458c06cb163075419de02d62f2d09649a848a2f577be635f70554ce23705cc84", + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0w2kqmx38ji5273mzhn9sp4r6vn7jfwb5qpsf2w8d46avpf8rj5i", "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c" }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.2236", "deps": [] }, "factlog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/factlog.git", - "sha256": "f53b69b33f9e9818256b4d0aff902ccbd95ad5e09e5e1e072897641a6c94f8e4", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y", "rev": "6503d77ea882c995b051d22e72db336fb28770fc" }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130209.1940", "deps": [ @@ -23412,42 +24841,45 @@ }, "erc-terminal-notifier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/erc-terminal-notifier.el.git", - "sha256": "e018a041fec73b136ac4799c9a64143c9421be443a741ab0fbc00838355ed831", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "erc-terminal-notifier.el", + "sha256": "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670", "rev": "a3dacb935845e4a20031212bbd82b2170f68d2a8" }, "recipe": { "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.424", "deps": [] }, "calmer-forest-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/caldwell/calmer-forest-theme.git", - "sha256": "30b58ec531de2fc59b97313364cf5cc209da1b454e7b9935b5988087c727de58", + "tag": "fetchFromGitHub", + "owner": "caldwell", + "repo": "calmer-forest-theme", + "sha256": "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h", "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0" }, "recipe": { "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130926.10", "deps": [] }, "kaesar-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150130.1004", "deps": [ @@ -23456,28 +24888,30 @@ }, "purty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hackscience/purty-mode.git", - "sha256": "61b352c16c9b4206ec9f5eddcf2f447aea9a716685108d9549e13361ceeea262", + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "purty-mode", + "sha256": "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1", "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a" }, "recipe": { "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1759", "deps": [] }, "idea-darkula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/idea-darkula-theme.git", - "sha256": "01e33e7f05f961862bb185332db703ee8a7f59454f17ecdfbc394ecfb8e1ac44", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "idea-darkula-theme", + "sha256": "0i5cw6wcykirpkgyq5sg8mcpz2pf0fvjscw5n4mqcqgr0mzkxqq1", "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d" }, "recipe": { "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1310", "deps": [ @@ -23486,14 +24920,15 @@ }, "boon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jyp/boon.git", - "sha256": "c734aad225dc9ce1a68010e2f1584a3b31c21cc69cdeb3c65a96390130b7de86", + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq", "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1533", "deps": [ @@ -23504,42 +24939,45 @@ }, "inflections": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121016.357", "deps": [] }, "loccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/loccur.git", - "sha256": "207441b3076098eac55a0bfbb6b8d1a76b43de100a0213ee9a3bd840218c2389", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "loccur", + "sha256": "1293ihhl1n1vkbp160ha23g46sx7s6wbdyqbbb2ym6300yrl2x10", "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067" }, "recipe": { "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.1237", "deps": [] }, "interval-tree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/interval-tree.git", - "sha256": "63ddb334b6ae105428fa337d134801d55084c47bd2a9f8a39a30b10c7bb2163b", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-tree", + "sha256": "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3", "rev": "301302f480617091cf3ab6989caac385d52543dc" }, "recipe": { "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130325.907", "deps": [ @@ -23554,7 +24992,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150112.1454", "deps": [] @@ -23568,63 +25006,67 @@ }, "recipe": { "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120814.312", "deps": [] }, "color-theme-sanityinc-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", - "sha256": "f6f29bbaef71f0c1ca13ef8e6b1d074da7f61f058bfd04c0b0133e03de3d81b9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-solarized", + "sha256": "07703v8xyia1vx9s636aaql99i29a4r5v9z0lvaypixgsidshx10", "rev": "14beb86aeb5b17451980f192bad72d7edb17321c" }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.1620", "deps": [] }, "ido-yes-or-no": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", - "sha256": "f43265b7f5db4fb84078fbca0d18979e5fbfc65903fea93daef298f10748ef0d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-yes-or-no", + "sha256": "0zqjmi1pbvpby84g1nsrmwcv7w5k0nl3hmkqj0fvhdsmayxqc6j8", "rev": "a9de5731b64f888be38073773c3d72b19c61ed4f" }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140625.2306", "deps": [] }, "mode-line-debug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/mode-line-debug.git", - "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.712", "deps": [] }, "helm-mode-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-mode-manager.git", - "sha256": "902bafc45553c4d39c9451716639f56d359c929c306290aa21da6c6b37597dd1", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-mode-manager", + "sha256": "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh", "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc" }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.338", "deps": [ @@ -23633,28 +25075,30 @@ }, "python-docstring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/glyph/python-docstring-mode.git", - "sha256": "3bfb79130f6c629199e960f49ac065c9cf405ef6b767e99a3e9c7971420a40a8", + "tag": "fetchFromGitHub", + "owner": "glyph", + "repo": "python-docstring-mode", + "sha256": "1a2019172ycw7sdfjrxpyrg41ky9cp09mx30x6cr2qkc1w9pkyrv", "rev": "263879fb339b18ee55d9463697d6f0a73171ee78" }, "recipe": { "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.1504", "deps": [] }, "helm-aws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-aws.git", - "sha256": "4e1d9eeb86b2d507d4a50e65683353911baa6974dae1ec970bcc3d0352bedeae", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af", "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9" }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.333", "deps": [ @@ -23665,28 +25109,30 @@ }, "ido-springboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/springboard.git", - "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "springboard", + "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8", "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" }, "recipe": { "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1211", "deps": [] }, "autotetris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/autotetris-mode.git", - "sha256": "ac31fa944979ff599d7ad3ac57dd0eec643b4b11febd36a871f25523c0d2f292", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "autotetris-mode", + "sha256": "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc", "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa" }, "recipe": { "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141114.1046", "deps": [ @@ -23695,14 +25141,15 @@ }, "pcache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/pcache.git", - "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.839", "deps": [ @@ -23717,35 +25164,37 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1609", "deps": [] }, "lolcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bodil/lolcode-mode.git", - "sha256": "6b12ce2d888832d751a412af71b578ac9bfc4ce29ef7b6b30a9fda5ab97fce5f", + "tag": "fetchFromGitHub", + "owner": "bodil", + "repo": "lolcode-mode", + "sha256": "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb", "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317" }, "recipe": { "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111002.347", "deps": [] }, "go-playground": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grafov/go-playground.git", - "sha256": "0f97d77506bf7653d64e13dd653163b94dae6f433233b8d490b33004ccec422b", + "tag": "fetchFromGitHub", + "owner": "grafov", + "repo": "go-playground", + "sha256": "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166", "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58" }, "recipe": { "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1610", "deps": [ @@ -23756,42 +25205,45 @@ }, "cache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/cache.git", - "sha256": "7e5199dc732711d3bdf0f41d96fafbbcab812fc51bbe4f8bacf3ed4dd06ce6c2", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "cache", + "sha256": "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby", "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580" }, "recipe": { "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111019.1800", "deps": [] }, "flymake-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robert-zaremba/flymake-go.git", - "sha256": "629685d2914fc63cc9de345723c31eb441ec778402f3b4c8cad44c445b9ee2df", + "tag": "fetchFromGitHub", + "owner": "robert-zaremba", + "repo": "flymake-go", + "sha256": "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q", "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9" }, "recipe": { "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.233", "deps": [] }, "reverse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-reverse-theme.git", - "sha256": "ae3c2830db398454b5778a56c4c19ae6bbf14388e20a55d999cb235d25e45e00", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f", "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca" }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1945", "deps": [] @@ -23804,21 +25256,22 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1120", "deps": [] }, "perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/perspective-el.git", - "sha256": "ad6e6f38a86c70744c602c3898913619a834df8a987805e71b2a80b706f555aa", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "1ajmyl3bg01a3gkhay4qibgk9a0r6s8rhf1cc1678w3cm0w6yvmd", "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df" }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1654", "deps": [ @@ -23827,28 +25280,30 @@ }, "loop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/loop.el.git", - "sha256": "97d32ab49d2cee1411147d70752b988b30bdafd0de12a498bc76d1a2cfa5c91d", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "loop.el", + "sha256": "07f9lp7s5lbnpjca84nys2pvsc4bk0mpaw3x2h8i9vickns2mlwp", "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e" }, "recipe": { "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130309.1005", "deps": [] }, "offlineimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/offlineimap.el.git", - "sha256": "58fb8303368357f0cd352162b804b039ee04a3ba12a4be87f1f43c3a917c59ae", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq", "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1" }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.658", "deps": [] @@ -23862,21 +25317,22 @@ }, "recipe": { "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1236", "deps": [] }, "es-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-lib.git", - "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141111.1230", "deps": [ @@ -23885,14 +25341,15 @@ }, "php-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/php-eldoc.git", - "sha256": "115c410563b7b864eb77f3855ea37510d5e46717da1de6bc68c485e4b6afa642", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "php-eldoc", + "sha256": "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i", "rev": "df05064146b884d9081e10657e32dc480f070cfe" }, "recipe": { "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140202.1341", "deps": [] @@ -23905,35 +25362,37 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.939", "deps": [] }, "how-many-lines-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/how-many-lines-in-project.git", - "sha256": "92ab293bdce9958e98d24efe0fb47a1a11ccb5c796cdbc41b16737e1655bcf6f", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "how-many-lines-in-project", + "sha256": "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj", "rev": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b" }, "recipe": { "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140806.2342", "deps": [] }, "helm-fuzzier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EphramPerdition/helm-fuzzier.git", - "sha256": "b7039f550161690ebc2821c6b2c37dd2bffa9773c74c9f38a9b957890401daca", + "tag": "fetchFromGitHub", + "owner": "EphramPerdition", + "repo": "helm-fuzzier", + "sha256": "1jns0428jmxrm4w9yk67ffbzmgyjgp1v5ii152y0wsb105ary0xp", "rev": "7e8573de1a639c031056f20c677d13760f2cece0" }, "recipe": { "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.838", "deps": [ @@ -23943,56 +25402,60 @@ }, "pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/pt.el.git", - "sha256": "f3ef5f61987a1d6a4d578d43c5d42e60ed5e56f51ab41f77558de17de14c5a2e", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "0bjs9khpvqcdamvizd0symb5xvb05vacahwdax6nl7bsk1hmzvzk", "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0" }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151024.1051", "deps": [] }, "idle-require": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/idle-require.el.git", - "sha256": "09708cff241a71c5553664a3619cf0662185fd40859ee85a804706c4bc3ed390", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "idle-require.el", + "sha256": "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam", "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1" }, "recipe": { "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090715.1703", "deps": [] }, "save-visited-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/save-visited-files.git", - "sha256": "15f22a1895c8f56b515e87be7f0ccea427b7f96f8b9da8e3700921766da05b02", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "save-visited-files", + "sha256": "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm", "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa" }, "recipe": { "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.1243", "deps": [] }, "colonoscopy-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-colonoscopy-theme.git", - "sha256": "26028c9f5c592ee6e35b60b04ee3d65f003bd80baba676de87ee3ee70e687acc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-colonoscopy-theme", + "sha256": "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6", "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936" }, "recipe": { "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -24001,28 +25464,30 @@ }, "gitignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "go-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/go-complete.git", - "sha256": "0ac2b1fe18c351fe427ddf818e394e1ba5c7734f5de3dc13529f219519111e5e", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "go-complete", + "sha256": "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha", "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e" }, "recipe": { "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.428", "deps": [ @@ -24032,28 +25497,30 @@ }, "ruby-guard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ruby-guard.git", - "sha256": "41d6e7dfa6e882c5c08096ee53515baeb1f1f1479f400144bcb8f722c45f8d0c", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ruby-guard", + "sha256": "034dbz225xxqpi202h4z8zqz3cdfbd8m7vlnh30cb0p8lvgygmj1", "rev": "c0bc5c58ad32e1786001aa5cd84f490096a00a4b" }, "recipe": { "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141218.2114", "deps": [] }, "dkdo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dkdo.git", - "sha256": "a9907d79c0513774251e2de24421649117fd5d9fc26a61c15aeb8f97b86d7bd9", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkdo", + "sha256": "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459", "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da" }, "recipe": { "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.519", "deps": [ @@ -24063,28 +25530,30 @@ }, "occidental-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/olcai/occidental-theme.git", - "sha256": "a87628ca895d0457704d965181118c419b4fcaa71321f016441c6726008fd45e", + "tag": "fetchFromGitHub", + "owner": "olcai", + "repo": "occidental-theme", + "sha256": "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8", "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816" }, "recipe": { "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130312.1458", "deps": [] }, "helm-flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-flycheck.git", - "sha256": "c03934f14e21de5e5326ef337d8fcec93570b374ee7d682080180d24ed00a74c", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-flycheck", + "sha256": "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0", "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925" }, "recipe": { "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140915.952", "deps": [ @@ -24101,21 +25570,22 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1822", "deps": [] }, "fold-dwim-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/fold-dwim-org.git", - "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.751", "deps": [ @@ -24131,21 +25601,22 @@ }, "recipe": { "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.22", "deps": [] }, "fstar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/FStarLang/fstar-mode.el.git", - "sha256": "16620a7f453ea7e843616a5a80d7f943aaf585893806e9a63434dd0c82a15cf5", + "tag": "fetchFromGitHub", + "owner": "FStarLang", + "repo": "fstar-mode.el", + "sha256": "0qq2gradcibjhn477sljy4lnsmi3pzlac42hpa92c6ca1srh3lc4", "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81" }, "recipe": { "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.953", "deps": [ @@ -24156,14 +25627,15 @@ }, "ac-mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/igjit/ac-mozc.git", - "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "tag": "fetchFromGitHub", + "owner": "igjit", + "repo": "ac-mozc", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5", "rev": "4c6c8be4701010d9362184437c0f783e0335c631" }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150227.1019", "deps": [ @@ -24174,14 +25646,15 @@ }, "helm-dirset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/helm-dirset.git", - "sha256": "cb93e1bdcc5a786b91bad6859be204190d5ec94414a630d5c4aa9c127d917ba0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "helm-dirset", + "sha256": "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb", "rev": "eb30810cd26e1ee73d84a863e6b2667700e9aead" }, "recipe": { "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1812", "deps": [ @@ -24193,14 +25666,15 @@ }, "logalimacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/logaling/logalimacs.git", - "sha256": "91f685dfc639ab93c05f75911a598933cb47357d5a1bf1c862d846f58884c6a6", + "tag": "fetchFromGitHub", + "owner": "logaling", + "repo": "logalimacs", + "sha256": "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q", "rev": "8286e39502250fc6c3c6656a7f46a8eee8e9a713" }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131021.1329", "deps": [ @@ -24211,14 +25685,15 @@ }, "outlined-elisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/outlined-elisp-mode.git", - "sha256": "9bf3caf8d3429dc3b1f2ee8b249f11553dc8dc5ce0d8c61487339b3549763035", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "outlined-elisp-mode", + "sha256": "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv", "rev": "c16cb02b540448919ad148f2be6a41523ee5489c" }, "recipe": { "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131108.527", "deps": [] @@ -24232,7 +25707,7 @@ }, "recipe": { "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.1326", "deps": [ @@ -24241,14 +25716,15 @@ }, "company-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -24259,14 +25735,15 @@ }, "mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/mongo-el.git", - "sha256": "1df88bc68af523a683359d22ff2a7133f0abc6f337c8e9425ab00822a163157d", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "mongo-el", + "sha256": "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x", "rev": "595529ddd70ecb9fab8b11daad2c3929941099d6" }, "recipe": { "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.719", "deps": [] @@ -24279,21 +25756,22 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1558", "deps": [] }, "flymake-json": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-json.git", - "sha256": "5d0d8db198c77e2c6bb755888191a41ed44d14275e67af2e583c99d5c9c49319", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534", "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd" }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130424.157", "deps": [ @@ -24302,14 +25780,15 @@ }, "sass-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/sass-mode.git", - "sha256": "c52c84b6a2a94b30bcb7e871b5cb00311bed3e24f3b1da7144b83eb4f117cb19", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm", "rev": "3da9040680880743fddb55a965ecd150d1039df6" }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2212", "deps": [ @@ -24319,14 +25798,15 @@ }, "string-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/string-edit.el.git", - "sha256": "5784fcd8af0859c64011866154d428a2d8ff835286928937e1ce522ab738ddc7", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "string-edit.el", + "sha256": "0nx303bdi8mq18isgf79y8f1cjhqnxv3g3ynm09llrg73qr7r4zw", "rev": "c380e20ca169bd4e7117a99edd5711e673168cbe" }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1130", "deps": [ @@ -24335,14 +25815,15 @@ }, "flycheck-elm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bsermons/flycheck-elm.git", - "sha256": "67fe08696db12587d868c9383f69a52a8982ee3b9f2c80e12834a326dea8b421", + "tag": "fetchFromGitHub", + "owner": "bsermons", + "repo": "flycheck-elm", + "sha256": "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7", "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8" }, "recipe": { "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.924", "deps": [ @@ -24358,35 +25839,37 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.1048", "deps": [] }, "proc-net": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-proc-net.git", - "sha256": "2be372ba689f7cfa25b05cc09959b20c3362198e4e2c1711600d71d3002c9e5a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-proc-net", + "sha256": "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb", "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73" }, "recipe": { "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130321.1912", "deps": [] }, "phi-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-grep.git", - "sha256": "ddf32d0b7c2aa9782063a9bcd2f07aab69e4dd6a7ffe89de9a25ca492eec90e5", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-grep", + "sha256": "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx", "rev": "9f1eb3548311816920864a171de303245a001301" }, "recipe": { "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150212.924", "deps": [ @@ -24395,28 +25878,30 @@ }, "xah-replace-pairs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-replace-pairs.git", - "sha256": "143ba713c9f1fff9d7174116c87cb12241b0c5a47a88fa8daaba1a7e4892baa2", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-replace-pairs", + "sha256": "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql", "rev": "b80430cd285ba09e2b35d518be0c25ba7db2d0a3" }, "recipe": { "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.533", "deps": [] }, "sequences": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/sequences.el.git", - "sha256": "94eb6ed1077451a6d0df8c81e22d5def0f22f9e64c1ff3a233baea89c48de6da", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sequences.el", + "sha256": "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl", "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26" }, "recipe": { "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130908.1322", "deps": [ @@ -24425,28 +25910,30 @@ }, "chronos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dxknight/chronos.git", - "sha256": "04537567c5046366c663bcb99869c6131162311d7af0ff1c405582bef3f80dd7", + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "chronos", + "sha256": "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4", "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09" }, "recipe": { "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1029", "deps": [] }, "flymake-haskell-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haskell-multi.git", - "sha256": "94deeca8956cc2eb5e7029eb8b244475eaa86082444bd18f9eeb941167388bba", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd", "rev": "6183620ffee429b33c886fffd6106b876245ea47" }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.622", "deps": [ @@ -24455,42 +25942,45 @@ }, "simple-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wachikun/simple-screen.git", - "sha256": "515c1774f176afc8eedbadda26d9fbc914601ac89d06fa0188005870fde3c97d", + "tag": "fetchFromGitHub", + "owner": "wachikun", + "repo": "simple-screen", + "sha256": "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i", "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae" }, "recipe": { "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.958", "deps": [] }, "git-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-timemachine.git", - "sha256": "ef579a874c0ed6c01bd13f41a89239e25527a8e0146985451657f570f0a61e15", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "058ylvq71xap2r2qas8lw2l2fmg2769ahh9zs4dw1mhf9j3rlmzg", "rev": "141122e52a80f28b958a8bad128c480567ce3942" }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.29", "deps": [] }, "evil-search-highlight-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "evil-search-highlight-persist", + "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk", "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.438", "deps": [ @@ -24499,14 +25989,15 @@ }, "edn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/edn.el.git", - "sha256": "4dbf8b2f57167afdcb7d234b29b6359873014098b9835e6b36f76ecae3f7b9fc", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "107ljwqibnd247h4iyav37y75zcgl0j2yav09s38kl3nbxmaad2y", "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47" }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.346", "deps": [ @@ -24519,14 +26010,15 @@ }, "register-channel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/YangZhao11/register-channel.git", - "sha256": "a9c9bce2743d6afe06b2e6a40c61b438ef8b040d529dad69b1f3f86d0bfeefce", + "tag": "fetchFromGitHub", + "owner": "YangZhao11", + "repo": "register-channel", + "sha256": "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi", "rev": "f62f9a62ebd2537d4a8c8f2e358562c67d2aefc1" }, "recipe": { "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.2259", "deps": [] @@ -24539,21 +26031,22 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.1305", "deps": [] }, "virtualenvwrapper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/porterjamesj/virtualenvwrapper.el.git", - "sha256": "9756d78a2b7b2da44c617833773c1de2b8694ef2062ee084e7ca03ba85b3d6f7", + "tag": "fetchFromGitHub", + "owner": "porterjamesj", + "repo": "virtualenvwrapper.el", + "sha256": "1a0x4dsyavqcl7xibn3g90fxvh1fnb6k0mpjm5mjvzc168p939kc", "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2" }, "recipe": { "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.821", "deps": [ @@ -24563,28 +26056,30 @@ }, "emagician-fix-spell-memory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonnay/emagicians-starter-kit.git", - "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "tag": "fetchFromGitHub", + "owner": "jonnay", + "repo": "emagicians-starter-kit", + "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z", "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" }, "recipe": { "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1634", "deps": [] }, "google-contacts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/google-contacts.el.git", - "sha256": "b25e676b27c2e6f8f1458f6a25f4105b11794dc9d8ecc8786cfddf7aa66c78a8", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "google-contacts.el", + "sha256": "1a3qdjk7mpzxdiwciv6qr56pj4av23s2aslg8pqzirn24xmnfpmj", "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432" }, "recipe": { "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140530.433", "deps": [ @@ -24593,98 +26088,105 @@ }, "org-table-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-table-comment.el.git", - "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-table-comment.el", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb", "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120209.1251", "deps": [] }, "govet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/meshelton/govet.git", - "sha256": "ab73f08661b4acd28f8d9fbcc2ec7cae9973bd335506e8cfb044e3e3eb20eebb", + "tag": "fetchFromGitHub", + "owner": "meshelton", + "repo": "govet", + "sha256": "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb", "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70" }, "recipe": { "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1359", "deps": [] }, "c-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/c-eldoc.git", - "sha256": "ea6c3bcfea345cdbb037a32e3ba386bd92e034337d136071553690628c2b9556", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "c-eldoc", + "sha256": "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a", "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85" }, "recipe": { "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.332", "deps": [] }, "toc-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snosov1/toc-org.git", - "sha256": "e070adc368f1d0ed6f889baeac54cbfd1d56b70671ced46d9b0b78d97d21fb3f", + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "toc-org", + "sha256": "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70", "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf" }, "recipe": { "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.905", "deps": [] }, "hl-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/hl-sexp.git", - "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", "rev": "0606100422321c18db51ceda80f25cd7717c2e01" }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101130.643", "deps": [] }, "find-temp-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/find-temp-file.git", - "sha256": "00d2718456a0496fd845103fae2233e97636b52fd96798f559241d79c337a55b", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "find-temp-file", + "sha256": "0anc6icm1a5d4iirkzzmz8g4z5ssa3hpzgj7gigm3kvvp4r1261d", "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba" }, "recipe": { "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.801", "deps": [] }, "avy-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/avy-migemo.git", - "sha256": "525ba03bb7ce7faf3f2930d831ff2f0f95a9e8bd12a7a68dd014831f82d0fa30", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "0c7ss211z0qls26sd9qjpplak58g5zzk3n1h54zsyzyfnwxs0nsj", "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511" }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.808", "deps": [ @@ -24701,7 +26203,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1539", "deps": [ @@ -24712,14 +26214,15 @@ }, "osx-browse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/osx-browse.git", - "sha256": "800ba903f6a440c92fc857f5d5ac5ac1a1b3475030b0ac5077127802993bf50a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "osx-browse", + "sha256": "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1", "rev": "44ded7cc3a7ee426c1c3257fae534c121f7e752e" }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -24729,28 +26232,30 @@ }, "sql-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bsvingen/sql-indent.git", - "sha256": "5e520cd1964765ee18ffb56ea5266d2b562819c6ac07507e26d8a1d2b162cb9e", + "tag": "fetchFromGitHub", + "owner": "bsvingen", + "repo": "sql-indent", + "sha256": "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy", "rev": "f85bc91535b64b5d538e5aec2ce4c5e2312ec862" }, "recipe": { "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.1916", "deps": [] }, "helm-orgcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-orgcard.git", - "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-orgcard", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3", "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1024", "deps": [ @@ -24759,14 +26264,15 @@ }, "phpcbf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nishimaki10/emacs-phpcbf.git", - "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.728", "deps": [ @@ -24775,14 +26281,15 @@ }, "dispass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/dispass.el.git", - "sha256": "81ee51451d3b39f30f08d332b5ed725ed3ea6e8f8d5a1e0cd83b439b0392af1c", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1", "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861" }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140202.931", "deps": [ @@ -24791,14 +26298,15 @@ }, "ac-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-inf-ruby.git", - "sha256": "40c5c8e611944ef31f46ac7b327f36ff39962be58d2602062eb5d6903198b875", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-inf-ruby", + "sha256": "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0", "rev": "3a1e741b40b8dba0e9c235dad4b9907411d9dcd3" }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131115.550", "deps": [ @@ -24808,14 +26316,15 @@ }, "cider-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", - "sha256": "33cef1dee2c1a679ff88a49b99ffadcd75d4679fac0ff67d0bc73ef467de9651", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-eval-sexp-fu", + "sha256": "1gpklkrw6iishfb3yilnqysh6zij67l1sl3ixq1bi3f6r237v1pg", "rev": "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc" }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.2215", "deps": [ @@ -24826,14 +26335,15 @@ }, "wn-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luismbo/wn-mode.git", - "sha256": "5451e4cd0f946e12d209409779683459a51f9f05dbb6edb70acc3002aae48395", + "tag": "fetchFromGitHub", + "owner": "luismbo", + "repo": "wn-mode", + "sha256": "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36", "rev": "f05c3151523e529af5a0a3fa8c948b61fb369f6e" }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.2352", "deps": [ @@ -24842,42 +26352,45 @@ }, "professional-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/emacs-professional-theme.git", - "sha256": "347d15c6b4d0e8932d49996f2e9a3068945018dd8434f22bf329dc19571857c8", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "emacs-professional-theme", + "sha256": "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b", "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed" }, "recipe": { "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.600", "deps": [] }, "goto-last-change": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/goto-last-change.el.git", - "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "goto-last-change.el", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5", "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150109.1223", "deps": [] }, "flymake-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-css.git", - "sha256": "874738fbcbb2b0f26bf574b846a68f87032eeccc7032d995771a23559ab91fed", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy", "rev": "4649fc209836498d709bb627e8aa6e50189a06ec" }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1304", "deps": [ @@ -24886,14 +26399,15 @@ }, "flycheck-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/flycheck-pyflakes.git", - "sha256": "8aeba55672e10a4e0b4a70496e184603ace88c1817f9789925b81d51b45e5499", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "flycheck-pyflakes", + "sha256": "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa", "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912" }, "recipe": { "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140630.1721", "deps": [ @@ -24902,42 +26416,45 @@ }, "vc-check-status": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/vc-check-status.git", - "sha256": "9918eb8a561f6f14c38f12bf6a74920ce6138f635c8fa39624defde968ad6eca", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "vc-check-status", + "sha256": "0rl1q374h06lmspsmgkp44m9x8w93dz6zx2yk89hklfbsvg5pb5j", "rev": "540db724cdd9f517f54fcd9f8c4be3bf274c9333" }, "recipe": { "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.301", "deps": [] }, "pbcopy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/pbcopy.el.git", - "sha256": "86970f548da98717a9a1c73bd9d35f8d36c8bb656e26d045ae52d77169031c8d", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "pbcopy.el", + "sha256": "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6", "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272" }, "recipe": { "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150224.2259", "deps": [] }, "ob-lfe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-lfe.git", - "sha256": "16d26be5099649fe12fe5fc02df4fd03d758f8829ed558c9f4c46d4d1cc367d6", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-lfe", + "sha256": "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn", "rev": "d50a5d76e389501504e060a7005f20b96c895594" }, "recipe": { "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150701.855", "deps": [ @@ -24946,30 +26463,32 @@ }, "auto-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/auto-yasnippet.git", - "sha256": "117fec8ed9c14f553cb767e221b132011745478dcb712d7f1b82065821adfc35", - "rev": "deb00c74cfc98c32e1e71baf44ee8d2c3df7164e" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "auto-yasnippet", + "sha256": "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va", + "rev": "9e126461d4473fb734f7e33dc2019cd71856dc42" }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151109.610", + "version": "20151218.1031", "deps": [ "yasnippet" ] }, "company-try-hard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/company-try-hard.git", - "sha256": "a8a71f25c760d4cc93f62660218c8c36a9a371fa7ee9a254982392bf38fb9f44", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "company-try-hard", + "sha256": "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf", "rev": "0401e8afa6bd4d3e9d2cf18e58955b83aef93005" }, "recipe": { "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1706", "deps": [ @@ -24980,14 +26499,15 @@ }, "clippy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/clippy.el.git", - "sha256": "4cc2e4844cf15eb4279824a690c47a3c492a188570823f7997179e1bff8b5557", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "clippy.el", + "sha256": "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc", "rev": "23ba8772056a103267611b3757722730740d9f00" }, "recipe": { "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140417.614", "deps": [ @@ -24996,14 +26516,15 @@ }, "company-coq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpitclaudel/company-coq.git", - "sha256": "bc01164d09c438cc38cc5d3171506847bca2ff01ff3e158394a37c231d31c996", + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "company-coq", + "sha256": "1np5k6wnhylyi3si2vg4fff5axafixv9qdf3k7l2iislq372nq61", "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f" }, "recipe": { "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.2131", "deps": [ @@ -25016,14 +26537,15 @@ }, "emacsql-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -25034,14 +26556,15 @@ }, "haskell-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-snippets.git", - "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-snippets", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6", "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150612.1439", "deps": [ @@ -25050,56 +26573,60 @@ }, "ycm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neuromage/ycm.el.git", - "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "tag": "fetchFromGitHub", + "owner": "neuromage", + "repo": "ycm.el", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj", "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" }, "recipe": { "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.1336", "deps": [] }, "ldap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/ldap-mode.git", - "sha256": "c34dc837e595b5ba84840a1958364ce14fa46e75aad54de63ad9eb344d16bb0e", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "ldap-mode", + "sha256": "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3", "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0" }, "recipe": { "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1215", "deps": [] }, "golint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/golang/lint.git", - "sha256": "0391e33c7143fded33e9f919566fddb1776526294201785da0a76510db848f9a", + "tag": "fetchFromGitHub", + "owner": "golang", + "repo": "lint", + "sha256": "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483", "rev": "32a87160691b3c96046c0c678fe57c5bef761456" }, "recipe": { "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.1930", "deps": [] }, "typed-clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/typedclojure/typed-clojure-mode.git", - "sha256": "4184ccfcd4972ed5db00ba47db42e811dbd719ca6d4f6382813aaf4a43ce473e", + "tag": "fetchFromGitHub", + "owner": "typedclojure", + "repo": "typed-clojure-mode", + "sha256": "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6", "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364" }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.1322", "deps": [ @@ -25109,42 +26636,45 @@ }, "load-theme-buffer-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vic/color-theme-buffer-local.git", - "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "tag": "fetchFromGitHub", + "owner": "vic", + "repo": "color-theme-buffer-local", + "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx", "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" }, "recipe": { "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120702.1536", "deps": [] }, "xah-math-input": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-math-input.git", - "sha256": "68f1ddfd27479bce44bca27055555580cbbd383cb07c8510d133296f70670d85", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-math-input", + "sha256": "118dcxq6ya9ks488az5h7hwbvjw0amamaw52pi2cx6s74zyxvwb8", "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d" }, "recipe": { "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.1900", "deps": [] }, "vim-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-vim-region.git", - "sha256": "2ff2a5cf2604f8438749dbc757064b4b09203ff6f0c3d356818801106c84e28d", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-vim-region", + "sha256": "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig", "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf" }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140329.1124", "deps": [ @@ -25159,21 +26689,22 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "tumble": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/febuiles/tumble.git", - "sha256": "8c16ee4d36971e2d8ceb83c3d3863e183b081b8406f2c772240c183bc1c498ce", + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "1klqqk0kn60c4ircgwh6hhdhhfqq7s3d7hw3xf62s7lp6r6yw5lc", "rev": "8d04216752ad94c343ffa507016b893f8252602f" }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1349", "deps": [ @@ -25182,14 +26713,15 @@ }, "evil-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/evil-tabs.git", - "sha256": "79ce6c756c75665de49269a407bf22c6e1cc76fc5310788932da4890ab5978b0", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "evil-tabs", + "sha256": "1rjpgcl9m23fzlw9gfp0yyf5k5dcgn88pjm8glmmdpx1b08ymk79", "rev": "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6" }, "recipe": { "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150127.1546", "deps": [ @@ -25199,28 +26731,30 @@ }, "solidity-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ethereum/emacs-solidity.git", - "sha256": "9cb0f6a1bb4b26c949fe08b6cb094d4f7182150ce7c5d2cf6cf0044813f34f97", + "tag": "fetchFromGitHub", + "owner": "ethereum", + "repo": "emacs-solidity", + "sha256": "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n", "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41" }, "recipe": { "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1111", "deps": [] }, "ac-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/ac-math.git", - "sha256": "a62d775b29574891a744eff314de6b8bc3497c5f25ad8b65b54fa29db86aac5c", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "ac-math", + "sha256": "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6", "rev": "c012a8f620a48cb18db7d78995035d65eae28f11" }, "recipe": { "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1527", "deps": [ @@ -25230,28 +26764,30 @@ }, "flex-autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/flex-autopair.git", - "sha256": "14efca11472950338f9433d3583f903e9d8dfa8e8eb835049f6ce40afd81eaa0", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "flex-autopair", + "sha256": "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql", "rev": "4bb757f2556a4a51828e2fed8fb81e31e83052cb" }, "recipe": { "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120809.718", "deps": [] }, "company-ghci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juiko/company-ghci.git", - "sha256": "24008f241721ab96e1baa0b6ea1437127809eab715b05a0ef381cc2ce79e5684", + "tag": "fetchFromGitHub", + "owner": "juiko", + "repo": "company-ghci", + "sha256": "112nkvkjrk41yc75mc0mnzm0jy0j6wafmdm0pbhrdar12wj8y014", "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82" }, "recipe": { "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1250", "deps": [ @@ -25261,28 +26797,30 @@ }, "aurel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/aurel.git", - "sha256": "d894cd8e53471212d40e8d9da7b0d8b28886be98380ea49ff863b14cc1f06d9b", - "rev": "0f135e600de3ef60d0cd4d98f3fcaa12a9d1e4c9" + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "1vzjrdzb7wp5ydlwsfxy8jnml7pb16y2dhf85qqv0ckncvwwrs3h", + "rev": "dec8063d243176a176f9d7c117c0bb4be9bd03dc" }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151006.1515", + "version": "20151218.1353", "deps": [] }, "ob-typescript": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lurdan/ob-typescript.git", - "sha256": "e1c272f28c4f6ebb61a873c87ef97cdce7d79ef8c5be08e4257f124e51ccc683", + "tag": "fetchFromGitHub", + "owner": "lurdan", + "repo": "ob-typescript", + "sha256": "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai", "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a" }, "recipe": { "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.730", "deps": [ @@ -25292,14 +26830,15 @@ }, "anaconda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/anaconda-mode.git", - "sha256": "aea3ff085f8d7c28a45973f37a8b5256e975c13937a66d55cfe7542e174f495a", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "01a9l785chmcf6d7fsyc72gapapb4gddgqmpps705zpkhjm8f6wj", "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8" }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.737", "deps": [ @@ -25312,14 +26851,15 @@ }, "js2-closure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/js2-closure.git", - "sha256": "4cffe59aad5f1494c93cef3e291978e7f23b4c16929b2e76c20119b64edf0504", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "js2-closure", + "sha256": "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc", "rev": "8e81e90ee0b923b9d053c339e4b328ecc7693998" }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.1750", "deps": [ @@ -25328,28 +26868,30 @@ }, "drag-stuff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/drag-stuff.git", - "sha256": "858d06f9d795c71f04398caec289d9876ffc0096f295f3ff3ad9b730c50e7a0b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1", "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb" }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.732", "deps": [] }, "epic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/epic.git", - "sha256": "35466d110cc20f5c181764b685aa8e8e30e1fb9e598900772f7bea834488eea1", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "epic", + "sha256": "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim", "rev": "02f6472bb490a39d42ed49c0364972173202f6e1" }, "recipe": { "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150503.237", "deps": [ @@ -25361,25 +26903,26 @@ "tag": "fetchsvn", "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1720288" + "rev": "1720849" }, "recipe": { "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130120.1457", "deps": [] }, "clocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/clocker.el.git", - "sha256": "3b9df19d086c3d67193292e1a9aaed12652207e2ccefe12b9be50621c9696fab", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "0hw6i92k651p71am578p02lqp1dj9pic880n6x4z0ydz4xyjhmfw", "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229" }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1043", "deps": [ @@ -25389,14 +26932,15 @@ }, "ujelly-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marktran/color-theme-ujelly.git", - "sha256": "34dcb1c9c6fbf1e832b7a78a433808a804490f0a4fb888c5b50d076d77be3e33", + "tag": "fetchFromGitHub", + "owner": "marktran", + "repo": "color-theme-ujelly", + "sha256": "0cryprvns1qdnp2qif2g187lj15810w472m7nwrfiwgvqv4v3p1l", "rev": "ff4b9fb4a9469cd807ed712e05cf739a1a900218" }, "recipe": { "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.2336", "deps": [] @@ -25409,49 +26953,52 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1624", "deps": [] }, "quick-buffer-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/quick-buffer-switch.git", - "sha256": "969c0a175112b464d416d1b2af3ac836c1224fee72a997ca006f3d92ee0e9850", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "quick-buffer-switch", + "sha256": "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5", "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b" }, "recipe": { "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.1708", "deps": [] }, "jump-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/jump-char.git", - "sha256": "f898b75b5feedeae063ff16150cf0175690f6dfde99df812f60e8ceca951f46e", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "jump-char", + "sha256": "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q", "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f" }, "recipe": { "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1435", "deps": [] }, "e2wm-svg-clock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-svg-clock.el.git", - "sha256": "cefc7c015e8079d819302ae1246bc40936152b7cf613b36577b80abf2fb52e40", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-svg-clock.el", + "sha256": "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f", "rev": "d425925e3afffcbe2ff74edc80b714e4319d4c94" }, "recipe": { "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.706", "deps": [ @@ -25468,21 +27015,22 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130104.821", "deps": [] }, "tracking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.519", "deps": [] @@ -25495,21 +27043,22 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "helm-chrome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/helm-chrome.git", - "sha256": "9e455817ac4e58ac0abd02061e985f0ed70beb4f899b8dee91888a83ab2f8155", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "helm-chrome", + "sha256": "0mc15ymq72l8j7p8v6w99zmhpmqfbyc1w1h2pl5aqn2fmhbmhicy", "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff" }, "recipe": { "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2327", "deps": [ @@ -25520,28 +27069,30 @@ }, "chruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/plexus/chruby.el.git", - "sha256": "34c335e6d277a2bc50f0b900155b0507d0ef5399886f6270b43487234f5ba03f", + "tag": "fetchFromGitHub", + "owner": "plexus", + "repo": "chruby.el", + "sha256": "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl", "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0" }, "recipe": { "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.630", "deps": [] }, "whitaker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/whitaker.git", - "sha256": "4b319f011e50d555e510fd4463f482be481c22271f2aec1124c53ebca967e5f8", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab", "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448" }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.622", "deps": [ @@ -25550,14 +27101,15 @@ }, "company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-mode.git", - "sha256": "62e710636351349ad3892477176e45365866bf92ebbf7b9f6f1010b595d86b30", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "0xvrhkh2vdvy0xvwicsmy96bfa46lj89m1gy35lp3dl36nh64kjb", "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618" }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1541", "deps": [ @@ -25567,42 +27119,45 @@ }, "twilight-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-bright-theme.el.git", - "sha256": "32fb2d83cefcbef6593ceffd6392927f8ee611f0752bcc53cd81c1fb1c45e6ca", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-bright-theme.el", + "sha256": "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c", "rev": "322157cb2f3bf7920ecd209dafc31bc1c7959f49" }, "recipe": { "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.343", "deps": [] }, "macro-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/macro-math.el.git", - "sha256": "be7d6302be52cfb1d25d11d2e9f70c270aa568e51878dc79ef36fa3eca93c7c5", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "macro-math.el", + "sha256": "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz", "rev": "216e59371e9ee39c34117ba79b9acd78bb415750" }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.1104", "deps": [] }, "elscreen-mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/elscreen-mew.git", - "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140629.1016", "deps": [ @@ -25611,14 +27166,15 @@ }, "helm-backup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/helm-backup.git", - "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", "rev": "184026b9fe454aab8e7730106b4ca494fe307769" }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1247", "deps": [ @@ -25629,14 +27185,15 @@ }, "cedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/cedit.git", - "sha256": "7bc8d8b8344c07155e031f4383ebb4f6c4438737e118c34020039372876c0fb9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "cedit", + "sha256": "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v", "rev": "0878d851b6307c162bfbddd2bb02789e5e27bc2c" }, "recipe": { "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1014", "deps": [] @@ -25649,21 +27206,22 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "rinari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.140", "deps": [ @@ -25675,14 +27233,15 @@ }, "irony-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/irony-eldoc.git", - "sha256": "6ad813d960762d54d0a6936232766f5db9776f7bb09dcc060da83e1740d21634", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "irony-eldoc", + "sha256": "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn", "rev": "bd1fadbc7c806d84aeec098b19238e5328cbbb7b" }, "recipe": { "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.19", "deps": [ @@ -25693,28 +27252,30 @@ }, "bm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joodland/bm.git", - "sha256": "633cae4a027da2bc72c9554f8024f92d28b8f1585dc7a37a0098b5084eddcffa", + "tag": "fetchFromGitHub", + "owner": "joodland", + "repo": "bm", + "sha256": "0ifiqy3lpqf0v76jzhgi59smrbzph7silrhjw6w9fqw6nvmyg608", "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b" }, "recipe": { "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1722", "deps": [] }, "ox-textile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-textile.git", - "sha256": "5dac91e68b1efddd008f89d5e5c8e2ef4d860e709461d94514c79c1412489a5e", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-textile", + "sha256": "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg", "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d" }, "recipe": { "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2225", "deps": [ @@ -25723,14 +27284,15 @@ }, "helm-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.117", "deps": [ @@ -25740,14 +27302,15 @@ }, "ucs-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ucs-utils.git", - "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ucs-utils", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m", "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.914", "deps": [ @@ -25758,14 +27321,15 @@ }, "ids-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ids-edit.git", - "sha256": "f9bab428a2d4a024f3e0e47501e5370cd375b47df8c3201aac9fa959d209f0cc", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ids-edit", + "sha256": "1k7h1795kaczmhd21hzqgns7blqc6zjh2xg4w3rj986ll8lb9fpr", "rev": "f40495ecd434c6b39d52cadfed25098f08ce78cb" }, "recipe": { "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.635", "deps": [ @@ -25774,14 +27338,15 @@ }, "string-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/string-utils.git", - "sha256": "c3b15fab51598da0e811257ef20138f89edbcb6b2a6e5891073ea498c7dbb3b5", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "string-utils", + "sha256": "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq", "rev": "c2232d691617973ecf12a970c6008a161c21da14" }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -25797,49 +27362,52 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.1148", "deps": [] }, "egison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/egisatoshi/egison3.git", - "sha256": "dd1d9f33c93eeed03d9a13c6ff67b5aea6e5faaf33bf84687b40cdf8e87eb329", + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "0sz506yx59gjkphyi3fp07i8h0mkm7gr73xfbjdhn29dss0xl7x0", "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db" }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2329", "deps": [] }, "hy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hylang/hy-mode.git", - "sha256": "556062e6488f60f3cddb54fb9c5c9e8cecba0c5fec7e0f9dfa2b0d246f1de49b", + "tag": "fetchFromGitHub", + "owner": "hylang", + "repo": "hy-mode", + "sha256": "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m", "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec" }, "recipe": { "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.743", "deps": [] }, "shader-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/midnightSuyama/shader-mode.git", - "sha256": "4426dfd26a6a04f57c3c2b0918fb66916fb95828ebb51ea4d9c8aa9db3250950", + "tag": "fetchFromGitHub", + "owner": "midnightSuyama", + "repo": "shader-mode", + "sha256": "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4", "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f" }, "recipe": { "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.904", "deps": [ @@ -25848,14 +27416,15 @@ }, "elscreen-separate-buffer-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wamei/elscreen-separate-buffer-list.git", - "sha256": "ce8cdbc0979790e8a0e90d01f3f71f179f2a50c301b1e57cfd9daa4fa8b564f0", + "tag": "fetchFromGitHub", + "owner": "wamei", + "repo": "elscreen-separate-buffer-list", + "sha256": "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f", "rev": "1aa66cdbf2b1dc87689725aef004a29bb79dd0f9" }, "recipe": { "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.145", "deps": [ @@ -25865,14 +27434,15 @@ }, "helm-cider-history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kungi/helm-cider-history.git", - "sha256": "2654b8a50aebac103d577294a770d50b521c7bbfa4e7d49c38af462015fed434", + "tag": "fetchFromGitHub", + "owner": "Kungi", + "repo": "helm-cider-history", + "sha256": "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif", "rev": "c391fcb2e162a02001605a0b9449783575a831fd" }, "recipe": { "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1620", "deps": [ @@ -25882,14 +27452,15 @@ }, "ido-occur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-occur.git", - "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.1643", "deps": [ @@ -25905,21 +27476,22 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.949", "deps": [] }, "outshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outshine.git", - "sha256": "973d97d0b43fc25892727cadb683767b8c33c318c60a87cd1b15877e4e39a8df", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "0g6h5ifmzxvwgyi7qrkkmr8s28kpq8xhmv7rkr3gphqrh5hyppl8", "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b" }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1002", "deps": [ @@ -25929,14 +27501,15 @@ }, "ack-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/ack-menu.git", - "sha256": "b090306e58a18c739707d46ebf4edd259ee53824e8cd896a3b0174d85a6fa788", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "ack-menu", + "sha256": "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm", "rev": "f77be93a4697926ecf3195a355eb69580f695f4d" }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.1522", "deps": [ @@ -25945,28 +27518,30 @@ }, "golden-ratio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/golden-ratio.el.git", - "sha256": "c4f569c53c384e204056bd4dc0ca97bbac0b2314f73cda992416d0b8ed08666b", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "golden-ratio.el", + "sha256": "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92", "rev": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae" }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.620", "deps": [] }, "evil-mark-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-mark-replace.git", - "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.218", "deps": [ @@ -25975,14 +27550,15 @@ }, "dark-krystal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-dark-krystal-theme.git", - "sha256": "ddf5188b1ed6142c782df475815820b873241e68a24c8a3001495ff59857851f", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-dark-krystal-theme", + "sha256": "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx", "rev": "bcb3c4ccf17db541e319d60e2eca38a5b22d5664" }, "recipe": { "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -25991,14 +27567,15 @@ }, "helm-hoogle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/haskell-config.git", - "sha256": "572d2c743a5b066ec3e266ebc93c759c2df295a6ce85dab8c2a4d81797ff5014", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "haskell-config", + "sha256": "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap", "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d" }, "recipe": { "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.421", "deps": [ @@ -26008,14 +27585,15 @@ }, "kixtart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryrun/kixtart-mode.git", - "sha256": "6b931784b85f3e17936b58424d3715f536e25dadbb67606496151e8c1e63a3d1", + "tag": "fetchFromGitHub", + "owner": "ryrun", + "repo": "kixtart-mode", + "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb", "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79" }, "recipe": { "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.1104", "deps": [ @@ -26024,14 +27602,15 @@ }, "helm-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ag.git", - "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ag", + "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6", "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.218", "deps": [ @@ -26041,14 +27620,15 @@ }, "direx-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/direx-grep.git", - "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "direx-grep", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h", "rev": "1109a512a80b2673a70b18b8568514049017faad" }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140515.1006", "deps": [ @@ -26063,21 +27643,22 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090804.1752", "deps": [] }, "cycle-resize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/cycle-resize.git", - "sha256": "237ac7c81f7df8f6f9aee5ed69aea93f35ab9beab985e3d5e4c7fe6413cac341", + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "cycle-resize", + "sha256": "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3", "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c" }, "recipe": { "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1423", "deps": [] @@ -26090,35 +27671,37 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1534", "deps": [] }, "centimacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/centimacro.git", - "sha256": "f0314ef095a1e1c634f340aa2fc41c298c3a1c82da6fdba508950e96b0ba197f", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "centimacro", + "sha256": "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh", "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742" }, "recipe": { "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.827", "deps": [] }, "cmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kitware/CMake.git", - "sha256": "720660bc113904d40b725b242f415f878ed637fe7f9ea74655ac35bff1947e76", - "rev": "7a47745d69003ec580e8f38d26dbf8858a4f5b18" + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "1fga8yvhna953p8gkx69767ai9lkzrxfisqwlf3mrc4pn40yi74x", + "rev": "f9e3ca46cbeae4fb885398e8f7b90c784078b1d3" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.926", "deps": [] @@ -26131,7 +27714,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1545", "deps": [ @@ -26140,14 +27723,15 @@ }, "smart-forward": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/smart-forward.el.git", - "sha256": "0a76a5c2295a86af7b4c8b3a4bc77bbedca8758d60c61f874c1542f9713f84a6", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "smart-forward.el", + "sha256": "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha", "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b" }, "recipe": { "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140430.213", "deps": [ @@ -26163,35 +27747,37 @@ }, "recipe": { "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1243", "deps": [] }, "interleave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/interleave.git", - "sha256": "11059f527efb7aca797796516cd1c14cc3acc87f5bf8e15a02474f1d95f35472", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "13bsszx4rsq3awg6zgzfdwgflkldw38nihkc9nldfixzvw1gdqqv", "rev": "4b8ce53ee8ca075029ce88d203735256a875e516" }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.835", "deps": [] }, "workgroups2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashinin/workgroups2.git", - "sha256": "2bcf5853ea97d94154c1317085d741855960eca6cdf3852f8d8f429442773656", + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "workgroups2", + "sha256": "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n", "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a" }, "recipe": { "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.1322", "deps": [ @@ -26203,14 +27789,15 @@ }, "eyebrowse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/eyebrowse.git", - "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "eyebrowse", + "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7", "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.816", "deps": [ @@ -26220,14 +27807,15 @@ }, "ido-occasional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ido-occasional.git", - "sha256": "99e2134a58e14f40ef357434c68e9237c0d29414ba190ede266ab4ce93c0937e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ido-occasional", + "sha256": "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr", "rev": "d405f1795e1e0c63be411ee2825184738d29c33a" }, "recipe": { "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150214.648", "deps": [ @@ -26236,14 +27824,15 @@ }, "extempore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/extemporelang/extempore-emacs-mode.git", - "sha256": "20215de3e1eaf3e3834b2411eb1164a0af5a486eb0152f6a62917600ac6524ec", + "tag": "fetchFromGitHub", + "owner": "extemporelang", + "repo": "extempore-emacs-mode", + "sha256": "1gdvls5gaqiwrc8v335ap9raa25jzjq32h80y0mfq0iyrk1r9glp", "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919" }, "recipe": { "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.40", "deps": [ @@ -26252,14 +27841,15 @@ }, "oauth": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psanford/emacs-oauth.git", - "sha256": "920e98b72e57d7713a0aec4fca2e8d38e688f7d4d76564d18d80c7c1c2f40d15", + "tag": "fetchFromGitHub", + "owner": "psanford", + "repo": "emacs-oauth", + "sha256": "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj", "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458" }, "recipe": { "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130127.1951", "deps": [] @@ -26272,35 +27862,37 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.837", "deps": [] }, "apropospriate-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/apropospriate-theme.git", - "sha256": "7d674a3fbe7a33e0aef29f2c9fbe12252cfd7a702eb8904515f194db17bd36dd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "apropospriate-theme", + "sha256": "1p9nplbxp57i2m2r1f1ff1xgsb152az9yb4zyapf0cvspqzllrvx", "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6" }, "recipe": { "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1059", "deps": [] }, "speech-tagger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/speech-tagger.git", - "sha256": "44c382b456b23dea6c9dbda97e9b0ca48f91bff789c5b6158a10b5d4ce865b33", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "03vvv8s5l3218231hm7l6bkl990b0ypc8n72lda1zxk6kjyr1q25", "rev": "10135e324630d25ae8c16f052cf4d97bda592164" }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.2", "deps": [ @@ -26309,42 +27901,45 @@ }, "dokuwiki-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbkbkbkb1/emacs-dokuwiki-mode.git", - "sha256": "f929dfd835a5c005c1b7f742ddec218f3d5a8d4ed3286f794c55c32aeeb69680", + "tag": "fetchFromGitHub", + "owner": "kbkbkbkb1", + "repo": "emacs-dokuwiki-mode", + "sha256": "104nnvp2mhsm9iwnya6k9s6mlgcg47ndshppnz0hbh556pcdyagr", "rev": "e0cecc9551f490318e7a23ed9e0a3082c7196bc7" }, "recipe": { "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140130.1136", "deps": [] }, "wakatime-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wakatime/wakatime-mode.git", - "sha256": "363cc9b5737c48a6b2fe4b94ef54ce0b6834284f7c340e3006d197b7cadc8dad", + "tag": "fetchFromGitHub", + "owner": "wakatime", + "repo": "wakatime-mode", + "sha256": "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n", "rev": "883f969c1502994b55912c6ade7155220e3c2cea" }, "recipe": { "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1830", "deps": [] }, "evil-vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexmurray/evil-vimish-fold.git", - "sha256": "58c6a0315e57b059c1ae2f30cf82b1186e497236145afda45f6fccd2c7bf9154", + "tag": "fetchFromGitHub", + "owner": "alexmurray", + "repo": "evil-vimish-fold", + "sha256": "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq", "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5" }, "recipe": { "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.2326", "deps": [ @@ -26355,14 +27950,15 @@ }, "try": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Try.git", - "sha256": "ccc50f794e672eb1a96723fc78a7cbd42bf05e1e95703ed6794945792664df16", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Try", + "sha256": "05nzchk7jia9g7b3ww4m3rgg0aylrfkpiz13cylv2bk79rwhzifc", "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35" }, "recipe": { "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150608.411", "deps": [ @@ -26371,126 +27967,135 @@ }, "whole-line-or-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whole-line-or-region.git", - "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whole-line-or-region", + "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d", "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110901.330", "deps": [] }, "flymake-elixir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/flymake-elixir.git", - "sha256": "088e8c33a45862b0147925a9677c2b4c4d59fb15db01acf45e5224338bd80bf9", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "flymake-elixir", + "sha256": "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn", "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802" }, "recipe": { "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130810.917", "deps": [] }, "flatui-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/flatui-theme.el.git", - "sha256": "163fc66d83f917801fbfb7679b9613815e4dd48032be61b4eb8de6908ab3f848", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "flatui-theme.el", + "sha256": "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr", "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9" }, "recipe": { "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.343", "deps": [] }, "seti-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/caisah/seti-theme.git", - "sha256": "9617807672e6c8483be459f026a06c441422ef0a9f21d34483bcaf5ce9ea2fa2", + "tag": "fetchFromGitHub", + "owner": "caisah", + "repo": "seti-theme", + "sha256": "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn", "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1" }, "recipe": { "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.322", "deps": [] }, "git-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/git-link.git", - "sha256": "aee955bf9d1d95a1c5fd6e1ed2e2ceabb5324659294b4adaecef572bd9ff43d1", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf", "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f" }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1225", "deps": [] }, "evil-nerd-commenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", - "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-nerd-commenter", + "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx", "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.625", "deps": [] }, "aes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sauermann/emacs-aes.git", - "sha256": "4aad119c1eb346ee70401cef0aba0ffe98ee6db5985066557af30ce38f94dba1", + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "0jlqk3kn2920b0dfmwy511x83hkmclb646qws3im0p75qcnyr4s1", "rev": "61d0da553ad980e5b9079444aed8214a28b409d9" }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1603", "deps": [] }, "vcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ssm/vcl-mode.git", - "sha256": "e76590efe0e4d5a4054a71505d55851aa78d0eea5b650d5c25996696ccbd7de1", + "tag": "fetchFromGitHub", + "owner": "ssm", + "repo": "vcl-mode", + "sha256": "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj", "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893" }, "recipe": { "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1323", "deps": [] }, "orgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/orgit.git", - "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1614", "deps": [ @@ -26502,28 +28107,30 @@ }, "jump-to-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/jump-to-line.git", - "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "jump-to-line", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s", "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130122.1053", "deps": [] }, "browse-at-remote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/browse-at-remote.git", - "sha256": "61b944f1b53d8982ad5857f83e5b09ff6f75ab825467de6fdad6a5ba67297b22", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "browse-at-remote", + "sha256": "1djylgajp47mjxgdppm8ihbs4k4gnqn6ryzq3d1wkq5vlmqq25m3", "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d" }, "recipe": { "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1527", "deps": [ @@ -26534,14 +28141,15 @@ }, "pkg-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/pkg-info.el.git", - "sha256": "a6d32a57e310aa3ab9adbf5bc6fb0be052c3accc2625b33180467554820e1a3e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2", "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5" }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.643", "deps": [ @@ -26550,14 +28158,15 @@ }, "dollaro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/dollaro.git", - "sha256": "b2bd1e5db291d4bec8108b797649338deea3cfe68f8aaf068ba8b557bdd5d8f7", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "dollaro", + "sha256": "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj", "rev": "500127f0172ac7a1eec627e026b59136580a74ac" }, "recipe": { "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.702", "deps": [ @@ -26566,14 +28175,15 @@ }, "rustfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fbergroth/emacs-rustfmt.git", - "sha256": "a9d6dc2ddcff1cc72938c79b60e806228d32bd8a6850481deb4ce2eb22095944", + "tag": "fetchFromGitHub", + "owner": "fbergroth", + "repo": "emacs-rustfmt", + "sha256": "0i2r14ifpqjcxcflhl38iayk53920vl616y770lwf77zvhnxrmm9", "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320" }, "recipe": { "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1311", "deps": [ @@ -26582,14 +28192,15 @@ }, "helm-css-scss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-css-scss.git", - "sha256": "f05aa3614eeb1c1e5aacd40c477c230bff77e8f5fdb9d94a6867757da1ba4305", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-css-scss", + "sha256": "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph", "rev": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016" }, "recipe": { "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.1925", "deps": [ @@ -26599,14 +28210,15 @@ }, "flycheck-protobuf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/flycheck-protobuf.git", - "sha256": "1fe0fda77559bcea3d4572c3e3d299ba2bc6eca9e8105fe5b71af1c9d8a90fed", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "flycheck-protobuf", + "sha256": "0dq4ikqskkpcl3z4s5vl6h4f4bx4dsgyn2knlr3x4wjcgzyrv0qn", "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da" }, "recipe": { "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.512", "deps": [ @@ -26615,14 +28227,15 @@ }, "evil-space": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-space.git", - "sha256": "be67ad6727d40618d7d065c74ea5613d159b662540de5035466f538425bc96f4", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy", "rev": "a9c07284d308425deee134c9d88a2d538dd229e6" }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.628", "deps": [ @@ -26631,42 +28244,45 @@ }, "ipretty": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/ipretty.git", - "sha256": "f430a6686892d57825c2a294871f61757d4d553e040ea94ed8c8fc7b586a7e6a", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "ipretty", + "sha256": "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l", "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38" }, "recipe": { "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.20", "deps": [] }, "wcheck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/wcheck-mode.git", - "sha256": "bb800e20b75c79f4226caf92570c5d4c5e616ccacc11e0546734b4bbcc72f095", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "15ghfb6bpd1lcxaf04fcr9n62pjcbl65g4mgdhig8yawnwh0x05v", "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed" }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1205", "deps": [] }, "overseer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/overseer.el.git", - "sha256": "52710482081e8a7a202626dd1a6e4bb72d15de484690e565b18bede3ec4086ac", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh", "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d" }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1202", "deps": [ @@ -26683,35 +28299,37 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1839", "deps": [] }, "win-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/win-switch.git", - "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.2111", "deps": [] }, "nrepl-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lein-sync.git", - "sha256": "d9448f7fa709ae1a1428a493cbf7f74cfe0b15e2857b7afd1ea53a38b69cee86", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1", "rev": "bab53a2361526d63a24cda176d07a1247bf5b399" }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140807.1054", "deps": [ @@ -26720,72 +28338,77 @@ }, "smtpmail-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/smtpmail-multi.git", - "sha256": "0f5b5b95fc93ca121d88937f70ddd8bb1477d0f8e073f81fa15a8a7365b41766", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "smtpmail-multi", + "sha256": "0rhpnijp72jsl4gzhwz0z387f55vv3fp0zwki0fi5jlkzjamnnqg", "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db" }, "recipe": { "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130921.2242", "deps": [] }, "gitty": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/gitty.git", - "sha256": "00142aa99ec2d24381429241ae7fd2f00bbf92574b9d40da81dc7d2a84d51579", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gitty", + "sha256": "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500", "rev": "c7c3d622d59531d023b9184d2479316c28045ca2" }, "recipe": { "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.148", "deps": [] }, "dmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-dmenu.git", - "sha256": "227eeeb36d2601b1a3b7311494aa7bb2ab7354088ad1799c8fecc83d9a100400", - "rev": "8026fbb51140fd8afd0ffa859c7bdfc6e27b8575" + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-dmenu", + "sha256": "1k9fkydy5rwfnj610fv2k8pallz4w545f4ms0snj63fp01640090", + "rev": "3b8e146f1f2170a7db2a0e45c352e523be25f25e" }, "recipe": { "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.932", + "version": "20151216.1027", "deps": [ "cl-lib" ] }, "stem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/stem.git", - "sha256": "d3ae23dc5ea9feba8eda5d0a7b5d091610ffd01914712f511a03f17fdef6ef29", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "stem", + "sha256": "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0", "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac" }, "recipe": { "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131102.609", "deps": [] }, "erefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", - "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.1943", "deps": [ @@ -26794,56 +28417,60 @@ }, "mwe-log-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/mwe-log-commands.git", - "sha256": "832b60f89e9034600a9cf90a867d75e972c23b4d1ac55cb02f26bf43b05fb461", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "mwe-log-commands", + "sha256": "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3", "rev": "8253f2a311f35b03f72a035744f0cbdd776ea17e" }, "recipe": { "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100703.741", "deps": [] }, "livescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yhisamatsu/livescript-mode.git", - "sha256": "e1521fd17de14375ec52e285d004440f9669b4128d572f26bf3a788dea5e22f5", + "tag": "fetchFromGitHub", + "owner": "yhisamatsu", + "repo": "livescript-mode", + "sha256": "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg", "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804" }, "recipe": { "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140612.2321", "deps": [] }, "identica-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", - "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "tag": "fetchFromGitHub", + "owner": "gabrielsaldana", + "repo": "Emacs-Identica-mode", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk", "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130204.1653", "deps": [] }, "org-ehtml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/org-ehtml.git", - "sha256": "ea2859eddeb89895b9252b4caba86b891426f6de2f9f09dacec0b3bb0f6827b5", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "org-ehtml", + "sha256": "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq", "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0" }, "recipe": { "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.1858", "deps": [ @@ -26853,14 +28480,15 @@ }, "mentor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skangas/mentor.git", - "sha256": "67d0b598dc2f5e3b322ef2d77a664f62313d646fe04689d5d974d7c0e84df08e", + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q", "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb" }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140904.1910", "deps": [ @@ -26875,35 +28503,37 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.657", "deps": [] }, "dtrt-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jscheid/dtrt-indent.git", - "sha256": "874f4fdc708f2d7c668ddb070592c873b77e9176882870fa616ac3c09a44499d", + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "dtrt-indent", + "sha256": "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp", "rev": "7f212888fbacc262080ab2740eda673b376c6b7b" }, "recipe": { "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.414", "deps": [] }, "bracketed-paste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/bracketed-paste.el.git", - "sha256": "1ab1391a3494bccded0d48adfd243ac8ff217effe919f23dc9337740ce1f8600", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "bracketed-paste.el", + "sha256": "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s", "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff" }, "recipe": { "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140222.2001", "deps": [ @@ -26912,14 +28542,15 @@ }, "ac-alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-alchemist.git", - "sha256": "f50e8a0995757a766ac85edbd03c97161177391018f21e88d4e5de8f317eeeeb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f", "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9" }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.156", "deps": [ @@ -26930,14 +28561,15 @@ }, "jvm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martintrojer/jvm-mode.el.git", - "sha256": "3cda59672aba3f06674139d5870fcd2c90f9447ffa8f46d8b588c64b6563214d", + "tag": "fetchFromGitHub", + "owner": "martintrojer", + "repo": "jvm-mode.el", + "sha256": "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw", "rev": "3355dbaf5b0185aadfbad24160399abb32c5bea0" }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.208", "deps": [ @@ -26947,72 +28579,77 @@ }, "replace-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/replace-symbol-el.git", - "sha256": "ba83dea6b1519770ce1379a0972f983a2b8bc4d49dc4dac310bc7d8e7fdacd19", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "replace-symbol-el", + "sha256": "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff", "rev": "6af93ad5a23790c90595c92bf2dcb69cd6d5f820" }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1857", "deps": [] }, "which-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-which-key.git", - "sha256": "a3d2a8668d5629c0fce5c4b5e75b3fef0fce1cd95489568867b6f500532c9a62", - "rev": "14a11c6d69fea066a56cec0ce2702580ef86a9f1" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", + "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1429", + "version": "20151217.827", "deps": [ "emacs" ] }, "myanmar-input-methods": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yelinkyaw/emacs-myanmar-input-methods.git", - "sha256": "d91ba0ffae8a519b2461482e7a0c9ad9246dfbce4e95809317ea34f172ca1496", + "tag": "fetchFromGitHub", + "owner": "yelinkyaw", + "repo": "emacs-myanmar-input-methods", + "sha256": "0177q8hm51bcvb4i46rwnimngvy9y32p3as19zwmfbznp2sc5963", "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7" }, "recipe": { "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.707", "deps": [] }, "spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130610.249", "deps": [] }, "esxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tali713/esxml.git", - "sha256": "633773cc02d68b35e63b5e8075c860944222a88c5e801c31634e6a26079e2e57", + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3", "rev": "ca09423c3172820ba97dcc68204911d06f55f851" }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1328", "deps": [ @@ -27021,56 +28658,60 @@ }, "iss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rasmus-toftdahl-olesen/iss-mode.git", - "sha256": "11ffbfe33a1174816061493f24f5fb08341091019f90237f5f9a513ac46ab5e4", + "tag": "fetchFromGitHub", + "owner": "rasmus-toftdahl-olesen", + "repo": "iss-mode", + "sha256": "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj", "rev": "3b517aff31529bab33f8d7b562bd17aff0107fd1" }, "recipe": { "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141001.1413", "deps": [] }, "dpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregnewman/dpaste.el.git", - "sha256": "fac7f92fe1bc5641247717584dca381bfcd69106078f4f49f75c2b6e72df4487", + "tag": "fetchFromGitHub", + "owner": "gregnewman", + "repo": "dpaste.el", + "sha256": "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs", "rev": "d073030e6b7feae84f0e2118e5fc454833848629" }, "recipe": { "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.800", "deps": [] }, "python-cell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisch/python-cell.el.git", - "sha256": "c7d886aef5743507dda99cbbffd11a5e39a55871afb3ce792fb7ff2a9ab4b4e5", + "tag": "fetchFromGitHub", + "owner": "thisch", + "repo": "python-cell.el", + "sha256": "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav", "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6" }, "recipe": { "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.1816", "deps": [] }, "japanese-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/japanese-holidays.git", - "sha256": "fb263cfc6d7d414a3f2a79ef929a0f45419114204e02ea0eb703e36e2f4f95d7", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "japanese-holidays", + "sha256": "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv", "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336" }, "recipe": { "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.1937", "deps": [ @@ -27079,14 +28720,15 @@ }, "pyimpsort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/pyimpsort.el.git", - "sha256": "088777e80a2f2a3b349dfc5a53dea7826af22a5fe52882f379bde6d03b511b1e", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "pyimpsort.el", + "sha256": "003hd5igv152yr4fa47n2l5jhwvdlfhw7bap1dkm1i7i898i6yds", "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e" }, "recipe": { "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1317", "deps": [ @@ -27095,56 +28737,60 @@ }, "fwb-cmds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/fwb-cmds.git", - "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.1800", "deps": [] }, "thread-dump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nd/thread-dump.el.git", - "sha256": "3769c8db04dacd20250f8209cb7bc7fc32b6f81a4565e6a102c18b9df8ce4c66", + "tag": "fetchFromGitHub", + "owner": "nd", + "repo": "thread-dump.el", + "sha256": "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p", "rev": "1cee07775ac8c13bb52217be6c383562c617542b" }, "recipe": { "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130323.1225", "deps": [] }, "highlight-stages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/highlight-stages.git", - "sha256": "cf0d65a63dca1236e83630bc0ac4ed07cff0cc813d2a89bf7b895536710bd93e", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "highlight-stages", + "sha256": "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg", "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06" }, "recipe": { "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.2257", "deps": [] }, "notmuch-labeler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/notmuch-labeler.git", - "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.1119", "deps": [ @@ -27153,42 +28799,45 @@ }, "arjen-grey-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/credmp/arjen-grey-theme.git", - "sha256": "0219d5dee87c02d4c3aa6eacbe41c7500c04cdde85a0761f7226c62df61cdec4", + "tag": "fetchFromGitHub", + "owner": "credmp", + "repo": "arjen-grey-theme", + "sha256": "1i6y3kv2vii6f8gpd845vv6h832hqx0vxb3fmb1x80kwx3gda682", "rev": "d67a1da021269cb1aeb25ff1aa56249d67371266" }, "recipe": { "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.845", "deps": [] }, "phi-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search.git", - "sha256": "c274136b2d4f52600c9cba34b96ab26d1c8038609fab446190755538e9c07e82", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search", + "sha256": "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62", "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69" }, "recipe": { "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.312", "deps": [] }, "helm-c-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", - "sha256": "ede5088a064804f8a17e00f552b1f604a74377a2a7d862605ddd58403867580b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-c-yasnippet", + "sha256": "02sqcww40n6xbmh65n57l9vl79q4ysqm5x80gshzh1280s50irgd", "rev": "660e18131a91e08a6a797ae6c17e2067416b93d1" }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1705", "deps": [ @@ -27199,14 +28848,15 @@ }, "codic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-codic.git", - "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-codic", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz", "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.627", "deps": [ @@ -27216,28 +28866,30 @@ }, "perl-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/perl-completion.git", - "sha256": "457e9efd79b0572de3f022ebe8f4266e039a80bbb783bf3c9bf497d63bbbfe3b", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "perl-completion", + "sha256": "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5", "rev": "f2ec91b88a8b7d97d40d6c90a89eaf8e595c2b89" }, "recipe": { "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090528.136", "deps": [] }, "ahungry-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ahungry/color-theme-ahungry.git", - "sha256": "efab0f5bea88e902531cd60a51f35af9738ba200901bea4620072419ff289336", + "tag": "fetchFromGitHub", + "owner": "ahungry", + "repo": "color-theme-ahungry", + "sha256": "0dlk53zij907413fl6wh02i8nwzrbbrm22nn3i9h5sc8x9dhzazg", "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541" }, "recipe": { "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2138", "deps": [ @@ -27246,14 +28898,15 @@ }, "spaceline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/spaceline.git", - "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.225", "deps": [ @@ -27266,42 +28919,45 @@ }, "auto-complete-clang-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Golevka/emacs-clang-complete-async.git", - "sha256": "f65fc7a8e9b8ace0a1cc5badb9166d65e3ac7366572a10a743187df50c4ef4ea", + "tag": "fetchFromGitHub", + "owner": "Golevka", + "repo": "emacs-clang-complete-async", + "sha256": "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f", "rev": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4" }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130526.1014", "deps": [] }, "gscholar-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gscholar-bibtex.git", - "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1225", "deps": [] }, "elscreen-multi-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wamei/elscreen-multi-term.git", - "sha256": "a1642a0916bfb347cb6838d229f2d38779312f8aa0cb3ba77fe0fdfe56b6d1b2", + "tag": "fetchFromGitHub", + "owner": "wamei", + "repo": "elscreen-multi-term", + "sha256": "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51", "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea" }, "recipe": { "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.2133", "deps": [ @@ -27312,14 +28968,15 @@ }, "hive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/hive-el.git", - "sha256": "7da53b652b44baf5c1f3d8f51b6c18714dce3da69088c1f9d747b94793ccf424", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "hive-el", + "sha256": "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx", "rev": "11b5172e081ad8079fc78758bef6f306f82ae32b" }, "recipe": { "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131217.912", "deps": [ @@ -27328,42 +28985,45 @@ }, "anyins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/anyins.git", - "sha256": "6dc915ed4bad45619ff769db368b7afe5f050559ab94103f34e90c666e597284", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n", "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663" }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.441", "deps": [] }, "d-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", - "sha256": "922dd6bbd35a57917a44a281d6e2e9b0b518e02c0b6baec1f293512aa7cd6b4b", + "tag": "fetchFromGitHub", + "owner": "Emacs-D-Mode-Maintainers", + "repo": "Emacs-D-Mode", + "sha256": "0fqirypxhbvnhz86rznwdx553ppg0z0hxh1h04qg7y58g01vpsdq", "rev": "5501b77a1e212e27dd78e8c0e86424064b439cbb" }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] }, "google-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/emacs-google-this.git", - "sha256": "0f195d4be81c55f733b907225cc5ea233ab63124c1935f875f0b13106d52641f", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq", "rev": "5274167553071fadaebe9c2d3b061470a684ae22" }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.440", "deps": [ @@ -27378,21 +29038,22 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.859", "deps": [] }, "iterator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/iterator.git", - "sha256": "d7f91503c7e8326f7eaab1457baf350041ed4671c296e35b315d80430e7eea21", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "iterator", + "sha256": "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp", "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190" }, "recipe": { "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150321.2325", "deps": [ @@ -27402,14 +29063,15 @@ }, "jss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/segv/jss.git", - "sha256": "7efe1018838a890736211cbee301e1ef7fd157987078afc7ac7dbb91700d13b4", + "tag": "fetchFromGitHub", + "owner": "segv", + "repo": "jss", + "sha256": "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83", "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc" }, "recipe": { "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.923", "deps": [ @@ -27420,28 +29082,30 @@ }, "dired-fdclone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/dired-fdclone.el.git", - "sha256": "482d03f29cd197cbc39fcc23cf5859524cd657614176136c2966fbfcd794d8d2", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "dired-fdclone.el", + "sha256": "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8", "rev": "e9bf4f16248cb5d187a323b7887d236a4a203c59" }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.332", "deps": [] }, "package-safe-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/package-safe-delete.git", - "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "package-safe-delete", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd", "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.1007", "deps": [ @@ -27451,28 +29115,30 @@ }, "emacsc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/emacsc.git", - "sha256": "475b2879d5622980b1aee0f1e3b7099683a008aed48186eb191c1e201f0219e7", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7", "rev": "02325c640232ee184314eb58d0051f365f7f085c" }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.457", "deps": [] }, "react-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnmastro/react-snippets.el.git", - "sha256": "47714fc4ab7f9e7fb25df793ee8185593159df7daca3f6723fedfb33148e4002", + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "react-snippets.el", + "sha256": "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7", "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f" }, "recipe": { "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1740", "deps": [ @@ -27481,14 +29147,15 @@ }, "dirtree-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.304", "deps": [ @@ -27498,42 +29165,45 @@ }, "indicators": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/indicators.el.git", - "sha256": "3b3234f1673a31fc2d68e36f23447cecc363e6401cb046d94850cafd3f325cff", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "indicators.el", + "sha256": "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ", "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4" }, "recipe": { "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130217.1605", "deps": [] }, "fuzzy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/fuzzy-el.git", - "sha256": "3bda40b1e3394a5503bada130415c37b8cdf8a24da89fa5e398713130443f767", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv", "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7" }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2237", "deps": [] }, "evil-snipe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hlissner/evil-snipe.git", - "sha256": "d89c9e89e1b77995461267ffccf9210b4491ddf7d5107befd072b07bec45d347", + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q", "rev": "71f0f7df2300be390227e3f78619630c32bddbe9" }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.1602", "deps": [ @@ -27542,14 +29212,15 @@ }, "jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.905", "deps": [ @@ -27560,28 +29231,30 @@ }, "god-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/god-mode.git", - "sha256": "95e9db820509f0db8218e83758b1e1ab6ef508357bc32aee278cae901ba2fc35", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "god-mode", + "sha256": "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix", "rev": "6cf0807b6555eb6fcf8387a4e3b667071ef38964" }, "recipe": { "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.1125", "deps": [] }, "cask-package-toolset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", - "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.130", "deps": [ @@ -27597,14 +29270,15 @@ }, "firebelly-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/startling/firebelly.git", - "sha256": "dd18169683a043210686adba32b08e5f013e143ce410f76d3b635a0abc6a5209", + "tag": "fetchFromGitHub", + "owner": "startling", + "repo": "firebelly", + "sha256": "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x", "rev": "5fd621102c676196319579b168da1476e8552d00" }, "recipe": { "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.355", "deps": [ @@ -27613,28 +29287,30 @@ }, "wc-goal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/wc-goal-mode.git", - "sha256": "8c2f47fe65cd83a69563365253b44098d7dd92d87de8a42c70d2bbce3624f25c", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "wc-goal-mode", + "sha256": "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc", "rev": "bf21ab9c5a449bcc20dd207a4915dcec218d2699" }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140829.859", "deps": [] }, "toml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/emacs-toml.git", - "sha256": "c0365a4c780e5534b612feea0b2509b07dbcf0c937e40a77b40665cc78d0cc4c", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "emacs-toml", + "sha256": "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban", "rev": "9633a6872928e737a2335aae1065768b23d8c3b3" }, "recipe": { "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130903.755", "deps": [] @@ -27648,63 +29324,67 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110806.158", "deps": [] }, "find-things-fast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eglaysher/find-things-fast.git", - "sha256": "63bd72bb924951dbf219602a096d0de844513eaf753fcede7cb96e9a2cc91520", + "tag": "fetchFromGitHub", + "owner": "eglaysher", + "repo": "find-things-fast", + "sha256": "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx", "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03" }, "recipe": { "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1726", "deps": [] }, "github-issues": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inkel/github-issues.el.git", - "sha256": "885f0a9daa6bf051ad10978a8224ccee507a6b07bdddf0eaecd99aac6b0d871b", + "tag": "fetchFromGitHub", + "owner": "inkel", + "repo": "github-issues.el", + "sha256": "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv", "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1" }, "recipe": { "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120425.1735", "deps": [] }, "window-numbering": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/window-numbering.el.git", - "sha256": "5621d032ff17f622be1f924a80bd72b88134dbbfeb9032f11ff2b314b60be5c7", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy", "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a" }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150228.1447", "deps": [] }, "company-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/company-math.git", - "sha256": "31056c3b2cb66d57636124d8451a09c92fc084e49afc885199ecd01b0a4aaf5f", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "0pxg9851pl7ck58qiz4swj2c0by914d4bn14c5imfvdn5hxnq19i", "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1" }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1837", "deps": [ @@ -27720,21 +29400,22 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140123.2102", "deps": [] }, "creole": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/elwikicreole.git", - "sha256": "744ab3f2825ddbd921c577fd889471bb1e15bc23dbe966b4a3fb92adf72a06fe", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elwikicreole", + "sha256": "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv", "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53" }, "recipe": { "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140924.1000", "deps": [ @@ -27744,28 +29425,30 @@ }, "minibuffer-complete-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-complete-cycle.git", - "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-complete-cycle", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk", "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130813.1145", "deps": [] }, "imgix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imgix/imgix-emacs.git", - "sha256": "946ff48d3242604a2db010afe7dd0484ef49f269b3f70d402d19c6d676b857b7", + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42", "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa" }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1532", "deps": [ @@ -27778,14 +29461,15 @@ }, "anything-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/anything-project.git", - "sha256": "f7023c00604968accb5c655f392a1b58662572e3560e1de07d13638403884799", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "anything-project", + "sha256": "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp", "rev": "9f6f04bc1911474e97e99faf52e204cf159add83" }, "recipe": { "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.427", "deps": [ @@ -27795,14 +29479,15 @@ }, "powerline-evil": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raugturi/powerline-evil.git", - "sha256": "849e55c8921bbc0527bd044f36fa3eb2a632a021e71d7a7433b89b7547876db0", + "tag": "fetchFromGitHub", + "owner": "raugturi", + "repo": "powerline-evil", + "sha256": "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r", "rev": "98b3a102b6dba6632aa0755a7257300c9b164309" }, "recipe": { "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.910", "deps": [ @@ -27812,14 +29497,15 @@ }, "bog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/bog.git", - "sha256": "419e95df5e4d96bfc7add15c7c10aab2f2692f88594b19cbeefa3dee0a77e379", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "bog", + "sha256": "15nmcnyj2w5llbznyww3i2ldfifp866qyg4bx1kbylqc3hd3y51w", "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45" }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1730", "deps": [ @@ -27835,21 +29521,22 @@ }, "recipe": { "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110301.234", "deps": [] }, "evil-indent-textobject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-indent-textobject.git", - "sha256": "bfb60d9f510fa0fbc7e6efce2d3fdec28f8d17a3cdb5564d813b26c2ac8ef059", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-indent-textobject", + "sha256": "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz", "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7" }, "recipe": { "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130831.1719", "deps": [ @@ -27858,14 +29545,15 @@ }, "fixmee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/fixmee.git", - "sha256": "2d5794d02e16cb334f190daabcc466d62fdebff9b2722a65ffd2ee56605946ba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic", "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084" }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.755", "deps": [ @@ -27886,35 +29574,37 @@ }, "recipe": { "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.342", "deps": [] }, "atom-dark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/whitlockjc/atom-dark-theme-emacs.git", - "sha256": "c490160fc5ed13e6ec92030bbcc430b06830508caae03d4db684eedad0fed749", + "tag": "fetchFromGitHub", + "owner": "whitlockjc", + "repo": "atom-dark-theme-emacs", + "sha256": "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464", "rev": "b6963e486d27eae7cd472736c106c7079c2a3d3c" }, "recipe": { "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.135", "deps": [] }, "ox-tiddly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org8-wikiexporters.git", - "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" }, "recipe": { "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.440", "deps": [ @@ -27930,21 +29620,22 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121125.1337", "deps": [] }, "semi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/semi.git", - "sha256": "e37ff0b96d681304a8e253da6b80faf56f54b5ab1349b801c35717b5c4943ce8", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "semi", + "sha256": "1s1wjk2ba5spqc0vhj8kmfsm8vzmza06pnjkwal084v8dnwz0zz3", "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65" }, "recipe": { "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.619", "deps": [ @@ -27953,14 +29644,15 @@ }, "boron-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-boron-theme.git", - "sha256": "0baa3c31856713a4602cbcc2cad0aa5cffaec5a923cac68b285a6853622edabf", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-boron-theme", + "sha256": "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb", "rev": "ea5873139424d6ca013b915876daf0399432015b" }, "recipe": { "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150117.1152", "deps": [ @@ -27969,14 +29661,15 @@ }, "relax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/relax.el.git", - "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", "rev": "6e33892623ab87833082262321dc8e1977209626" }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.1634", "deps": [ @@ -27985,42 +29678,45 @@ }, "omni-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", - "sha256": "9944a0ac72273338f13b9366571f1ed9d44d26966a3b6a71b2c5e85c9451b7d2", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c", "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85" }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.149", "deps": [] }, "jenkins-watch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataylor284/jenkins-watch.git", - "sha256": "c6e0b9f51d82611daf3213cc06ca3ebd88ae4e039a6d58633ba2ac23d1865e49", + "tag": "fetchFromGitHub", + "owner": "ataylor284", + "repo": "jenkins-watch", + "sha256": "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66", "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577" }, "recipe": { "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121004.1826", "deps": [] }, "git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/git.el.git", - "sha256": "ce3770100e0fbcc11da6f9a1ec63091ff9c9dd78bbe490707ceb9889a227d1b8", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d", "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f" }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.441", "deps": [ @@ -28031,28 +29727,30 @@ }, "operate-on-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/operate-on-number.el.git", - "sha256": "c94969e74b1a015fd277c86bbe803b912052fb2b6dd754e28c5f806335628347", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "operate-on-number.el", + "sha256": "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9", "rev": "ceb3be565a29326c1098244fac0c50606723a56e" }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.123", "deps": [] }, "easy-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpitclaudel/easy-escape.git", - "sha256": "6701d633daa0db07450adcac3ea89b90ce7cfec320ed6d91f00f48587b947088", + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "easy-escape", + "sha256": "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys", "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776" }, "recipe": { "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.2133", "deps": [] @@ -28065,7 +29763,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1226", "deps": [ @@ -28075,14 +29773,15 @@ }, "browse-url-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/browse-url-dwim.git", - "sha256": "b0470ced3378a3653528a5972bd1e9c463fa402ee842ba708e55c9b45f624f06", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "browse-url-dwim", + "sha256": "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy", "rev": "3d611dbb167c286109ac53995ad68286d87aafb9" }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140731.1422", "deps": [ @@ -28091,56 +29790,60 @@ }, "bats-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/bats-mode.git", - "sha256": "4e163eae2d989af754797e05878b6eaa416a9794768d30bdc568edaeb9c5c9bb", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "bats-mode", + "sha256": "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf", "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638" }, "recipe": { "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.901", "deps": [] }, "requirejs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ricardmo/requirejs-mode.git", - "sha256": "9b45b72a582b5b1404a1774e67da1f5d3ca5fc0b950b5d675180ed8a70519b0b", + "tag": "fetchFromGitHub", + "owner": "ricardmo", + "repo": "requirejs-mode", + "sha256": "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv", "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92" }, "recipe": { "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130215.1504", "deps": [] }, "emmet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smihica/emmet.git", - "sha256": "992bc872ca2348f479b37c0045f8124270e2df3c54e9b0fe73ea856334210f35", + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj", "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144" }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.938", "deps": [] }, "trident-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnmastro/trident-mode.el.git", - "sha256": "58bce0e75c0ebd7825b50c55c454059842502012568d51d90cd7fa085a8f7bcc", + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "trident-mode.el", + "sha256": "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym", "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9" }, "recipe": { "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130726.1407", "deps": [ @@ -28152,30 +29855,32 @@ }, "gnu-apl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lokedhs/gnu-apl-mode.git", - "sha256": "19ff62260107a43de03223138a6df922ada50608c28c67ab8c358808e00b8872", - "rev": "c34a231250622519a606ac5013c67b7307efa645" + "tag": "fetchFromGitHub", + "owner": "lokedhs", + "repo": "gnu-apl-mode", + "sha256": "1l37447zshk5bl3r8v8nladxrcq252z05z1wch5ywp3h2qkmhkxp", + "rev": "ee7e633c65a36acdf92a34325fc759698614fbfe" }, "recipe": { "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.2335", + "version": "20151217.2305", "deps": [ "emacs" ] }, "edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-edbi.git", - "sha256": "7a645752aeeffde178aab432d99312e39e00f2ccd1384d5b8b88b0cc4a0bbef4", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s", "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2" }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140920.235", "deps": [ @@ -28186,14 +29891,15 @@ }, "markdown-toc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/markdown-toc.git", - "sha256": "705ad7e1d67d3f35ed290da3de720f51e40ed5c556aaaad642fb7b202044ecd5", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "0bmd601y2gafydnvzv9nbi5sh7m8hkwxbidim03knl2fh4j5rkyv", "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1114", "deps": [ @@ -28204,14 +29910,15 @@ }, "sly-named-readtables": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-named-readtables.git", - "sha256": "5790d3861e42e76d900c1cd69799f54676e547e84c2c8fce6c857dde04cc7bca", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-named-readtables", + "sha256": "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7", "rev": "df4ed79064cf85275804e201899b677bef4ab3f5" }, "recipe": { "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.1016", "deps": [ @@ -28220,14 +29927,15 @@ }, "ac-html": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ac-html.git", - "sha256": "dca39461ecadc2406281152b88cf9f79fb48c86527c989e2ec2dd79aef375aba", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5", "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2" }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.231", "deps": [ @@ -28239,74 +29947,79 @@ }, "rails-log-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/rails-log-mode.git", - "sha256": "e5a3e165e02aad20bc5d4d9dbadba33399fbe81ecf39dc2465379acf5004ed43", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "rails-log-mode", + "sha256": "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84", "rev": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446" }, "recipe": { "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.2325", "deps": [] }, "swiper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", - "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", + "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.241", + "version": "20151218.523", "deps": [ "emacs" ] }, "simple-call-tree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/simple-call-tree.git", - "sha256": "52d67825f4bd91ab47dee92e1c5ea677e811306da84a2643c68b06a902637425", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "simple-call-tree", + "sha256": "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj", "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e" }, "recipe": { "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1625", "deps": [] }, "eldoc-eval": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", - "sha256": "59a14ba30e067d74376fc1392edf36c176932e56814778f3390759187b52f76e", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar", "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866" }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.706", "deps": [] }, "elm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcollard/elm-mode.git", - "sha256": "f91f3f2562ce2809c51d7093fcda4e3325645c4403427cf79f45c95ef0e946c8", - "rev": "3f33790b1de000c70cd852bbe63cfa5e282987dd" + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "1gbb8896fg0kdkdnnhq9zyknq5jifyj25lsigil407y4a4d0s78m", + "rev": "a813a0ab2ac7a255b41f2da230dae5e479a8de5d" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151121.1250", + "version": "20151218.257", "deps": [ "emacs", "f", @@ -28323,7 +30036,7 @@ }, "recipe": { "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1509", "deps": [ @@ -28332,14 +30045,15 @@ }, "speed-type": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/speed-type.git", - "sha256": "33391e361943034df19b88097fc8ccc6180f7e2c999ea026aa9c348918a80f26", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "speed-type", + "sha256": "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag", "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758" }, "recipe": { "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.2234", "deps": [ @@ -28348,14 +30062,15 @@ }, "el-pocket": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pterygota/el-pocket.git", - "sha256": "677352f6f5522257154a6d70135620de6d50730067c84da0c981c5c05884d3c7", + "tag": "fetchFromGitHub", + "owner": "pterygota", + "repo": "el-pocket", + "sha256": "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7", "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310" }, "recipe": { "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1728", "deps": [ @@ -28365,14 +30080,15 @@ }, "helm-descbinds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "1108c876784d137ca9c5cd5053a24519cb92ec8080669c42755d227f7f32d534", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-descbinds", + "sha256": "1f9nfvfsj9m1ha6cyic2l6gq5wlabx3mhnvs0jb111ybm87v4bhz", "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1557", "deps": [ @@ -28381,14 +30097,15 @@ }, "popup-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/popup-switcher.git", - "sha256": "e5103de3e70c9ccb9b57a689a3b70dcc46fa292d9cacdf0f2d5e0ac07f038ebd", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "popup-switcher", + "sha256": "1gcf0dzw02jy5l7xzb4w5llzlinc1nvs72d6aydwp70cwziks475", "rev": "a858f680898ef9631c21eebbe5cb527622179305" }, "recipe": { "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.908", "deps": [ @@ -28398,14 +30115,15 @@ }, "edit-color-stamp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/edit-color-stamp.git", - "sha256": "598ced40af165593e0b01bc643ba8e79458716fd5788b0f0c14b54421c29696e", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "edit-color-stamp", + "sha256": "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r", "rev": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3" }, "recipe": { "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130529.1233", "deps": [ @@ -28415,14 +30133,15 @@ }, "flycheck-typescript-tslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Simplify/flycheck-typescript-tslint.git", - "sha256": "15b0bf370cd8481fd2bd21986dbb946c0171c05e848de15aa1f2da501143e045", + "tag": "fetchFromGitHub", + "owner": "Simplify", + "repo": "flycheck-typescript-tslint", + "sha256": "0m9fjfpand20qy9d196z5khiznn25n95zbmgs8q2s2wcn4f7022p", "rev": "79d33ba8fbc23df604c239cfc32c21e07339faa1" }, "recipe": { "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1647", "deps": [ @@ -28432,14 +30151,15 @@ }, "wispjs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/wispjs-mode.git", - "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.1632", "deps": [ @@ -28448,14 +30168,15 @@ }, "org-wunderlist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-wunderlist.el.git", - "sha256": "1510b08b43c7aaae7eb12d3ee9a43c2b1e42b579881aae9378a16aa41f1bdd78", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-wunderlist.el", + "sha256": "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa", "rev": "b89633fcfd74e83dd8a5d81619244a666a45715c" }, "recipe": { "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.2113", "deps": [ @@ -28469,14 +30190,15 @@ }, "discover-js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/discover-js2-refactor.git", - "sha256": "7667d1181f050d17df9d43690cf09b0f644375fc5013bf9976918eaf15b1cbee", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "discover-js2-refactor", + "sha256": "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn", "rev": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba" }, "recipe": { "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.952", "deps": [ @@ -28486,56 +30208,60 @@ }, "glsl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimhourihan/glsl-mode.git", - "sha256": "12d922967a42dd00efc6a1fda5651b57c1d067aa1f01caf2afc0b6f51d6bd42c", + "tag": "fetchFromGitHub", + "owner": "jimhourihan", + "repo": "glsl-mode", + "sha256": "0b6ldcfzbdn0mzrcl08zm9kx1hap3djsbzd1qvph1pa2gab25n8j", "rev": "6bd83d429307d682fef0efd46c78b3e055e2caf1" }, "recipe": { "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.1033", "deps": [] }, "py-import-check": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psibi/emacs-py-import-check.git", - "sha256": "5b03a1176c5b51d55d35faae8c3a88da03c351e9aed3f4104b963f62d8822690", + "tag": "fetchFromGitHub", + "owner": "psibi", + "repo": "emacs-py-import-check", + "sha256": "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv", "rev": "9787f87745a4234cd9bed711860b707902bc8ae4" }, "recipe": { "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130802.611", "deps": [] }, "neotree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaypei/emacs-neotree.git", - "sha256": "c966a868628038f4e2e6282b58ddf5ce46d427cf3a0690e26dd580096a24effd", + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "0ig7r2shwp37sfmbxb4k4rl3hyssj4g6va0l31qx8n5z8dpfdxxy", "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d" }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.807", "deps": [] }, "magit-topgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-topgit.git", - "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", "rev": "732de604c31c74e9da24616428c6e9668b57c881" }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.1231", "deps": [ @@ -28545,14 +30271,15 @@ }, "gildas-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smaret/gildas-mode.git", - "sha256": "bc43c28ef1e20659e24864a7c43d04ab8950756e26e22785881f90f4c2bd48d9", + "tag": "fetchFromGitHub", + "owner": "smaret", + "repo": "gildas-mode", + "sha256": "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw", "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a" }, "recipe": { "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.1701", "deps": [ @@ -28562,14 +30289,15 @@ }, "express": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/express.git", - "sha256": "88c2f02f936f65ac74535fff4061d562b7a7fcd6266b8261fd1636a2e076bd73", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7", "rev": "93dae7377eace4a5413ba99aecb6f26f90798725" }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -28578,14 +30306,15 @@ }, "easy-lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/easy-lentic.git", - "sha256": "967d6249e404345f51a6e85ff38a9d983430c045fe397637f4b341ffec7f2f9a", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "easy-lentic", + "sha256": "0gk2a1bhxb2fr9mcli3j3mry0gipc407mbwrdip385rrzy7vqv2w", "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe" }, "recipe": { "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.2116", "deps": [ @@ -28595,14 +30324,15 @@ }, "ox-twiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org8-wikiexporters.git", - "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" }, "recipe": { "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.440", "deps": [ @@ -28612,14 +30342,15 @@ }, "company-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/company-web.git", - "sha256": "ed9aa143219acacfec9042d989c57f261c2a83067a58567904663dd161bb3a7c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "company-web", + "sha256": "00acy74sgp4r2dxgss66aldc9s59dn0i85ixz9glgamk9411j5qr", "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365" }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1546", "deps": [ @@ -28631,42 +30362,45 @@ }, "yandex-weather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abstractionlayer/yandex-weather.el.git", - "sha256": "c38d52d17218bc65aaa47d9c0e49b0ecb894ead99ffa7e81ed49af14226ed59f", + "tag": "fetchFromGitHub", + "owner": "abstractionlayer", + "repo": "yandex-weather.el", + "sha256": "17ymdqi19bs9xn0pxylzv7m99f7cn14hx73xljm6bg0qfb8m53f3", "rev": "41cb91bd1e5aa0e4a317a99e88742631f487ab37" }, "recipe": { "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.614", "deps": [] }, "howdoi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/emacs-howdoi.git", - "sha256": "688b978da5d3c52a7da3b919131bdb072bf999d8e97f03397251e15e114b5207", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "emacs-howdoi", + "sha256": "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8", "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f" }, "recipe": { "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150203.1843", "deps": [] }, "helm-recoll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-recoll.git", - "sha256": "e647f286c979d6fa56f6defb89d683c7c7017a764b2a34e66b350859643ec87c", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-recoll", + "sha256": "0c9h8n67wxy93rbf6ma7p27hpaj8v562mjnrc9wzgccb9rk4z4fn", "rev": "e3e010d084697137d0b3cb802b19ab34c488094b" }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.658", "deps": [ @@ -28675,14 +30409,15 @@ }, "anything-milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/anything-milkode.git", - "sha256": "671b2b07271a95e1554015bce542f698fe6fafe02528c04f0ddd0dca387e86cb", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "anything-milkode", + "sha256": "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7", "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9" }, "recipe": { "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140518.943", "deps": [ @@ -28698,21 +30433,22 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1151", "deps": [] }, "emr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/emacs-refactor.git", - "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140817.1804", "deps": [ @@ -28729,17 +30465,19 @@ }, "emacs-eclim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/emacs-eclim.git", - "sha256": "657e809f6b155567373a87eb78cb91716b89162974a782a47e9a5a9e8cd90a61", - "rev": "79d6e3a70e99d2e47fdaaba7a030300f6a010b99" + "tag": "fetchFromGitHub", + "owner": "emacs-eclim", + "repo": "emacs-eclim", + "sha256": "1m674w1wskzvi92yjfk7sz4i59kc6bbgnic5z2m806qr1dmdyy0s", + "rev": "c13ad662a5194b292576fba477282263f573bc46" }, "recipe": { - "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150816.420", + "version": "20151217.2022", "deps": [ + "cl-lib", "dash", "json", "popup", @@ -28748,14 +30486,15 @@ }, "pillar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pillar-markup/pillar-mode.git", - "sha256": "6eab37afc90f9912f5c1e16f1d25efd8625e54037421cc7e3df5bfbdc3e7aaf0", + "tag": "fetchFromGitHub", + "owner": "pillar-markup", + "repo": "pillar-mode", + "sha256": "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8", "rev": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909" }, "recipe": { "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141112.1211", "deps": [ @@ -28764,14 +30503,15 @@ }, "esqlite-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.250", "deps": [ @@ -28781,14 +30521,15 @@ }, "docean": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/docean.el.git", - "sha256": "9a50bd4c7ae346f165ac63c9739c27d142484b65734c8b082aa8f7cb852e5f17", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docean.el", + "sha256": "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky", "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1" }, "recipe": { "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1318", "deps": [ @@ -28799,42 +30540,45 @@ }, "noflet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-noflet.git", - "sha256": "ee7a31fa81c8c65cc470c9a1755ec4c1ae6481cc3645e6be24c2a2e8aa7de03c", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-noflet", + "sha256": "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf", "rev": "7ae84dc3257637af7334101456dafe1759c6b68a" }, "recipe": { "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.854", "deps": [] }, "typo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/typoel.git", - "sha256": "73cf8b09a6fced7f76c79c7c3bf39fb88391de67c916bd9a14fd75dc84a53938", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "0f1rln2dqxgx2jdbs5n9czg930xqkzrknz4wqxv7zvgwlq4qpkvk", "rev": "a6b9e0400706aeda99fe29012ff017bef300f580" }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.843", "deps": [] }, "org-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanre/org-jekyll.git", - "sha256": "f57f74c9cfb9205f3c0dc9b160d37e95bad0748499d3022bd8e12069816160dd", + "tag": "fetchFromGitHub", + "owner": "juanre", + "repo": "org-jekyll", + "sha256": "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5", "rev": "66300a1a6676ab168663178e7a7c954541a39992" }, "recipe": { "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.439", "deps": [ @@ -28843,14 +30587,15 @@ }, "foreman-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/foreman-mode.git", - "sha256": "9d067c88048997a6a871067253f0a752452f4ad99a4cbefd0529775020b29803", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx", "rev": "9496018b0c202442248d4983ec5345501ea18a84" }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.356", "deps": [ @@ -28863,14 +30608,15 @@ }, "timesheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmarble/timesheet.el.git", - "sha256": "e84007a97898e46267ffc384c5aa22c6399d688b1b65c4e7bb9416a9aee35ec2", + "tag": "fetchFromGitHub", + "owner": "tmarble", + "repo": "timesheet.el", + "sha256": "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z", "rev": "6aba2bac0be92b38c245135cebe5bf1f0d8406ab" }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.804", "deps": [ @@ -28881,14 +30627,15 @@ }, "crab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/puffnfresh/crab-emacs.git", - "sha256": "d42e872fc5807beb38eb022a0a057928caeb7cb926b27319390a75f848776778", + "tag": "fetchFromGitHub", + "owner": "puffnfresh", + "repo": "crab-emacs", + "sha256": "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl", "rev": "6d66844856c1864157cef3dea9332c319b05d7d5" }, "recipe": { "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.2337", "deps": [ @@ -28898,14 +30645,15 @@ }, "slideview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-slideview.git", - "sha256": "a830e4990b729151df2ad1cbdf7e423cf4c9b694bba4d43225164802a1bd9b2d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-slideview", + "sha256": "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az", "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c" }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.1740", "deps": [ @@ -28914,58 +30662,62 @@ }, "latest-clojure-libraries": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdamClements/latest-clojure-libraries.git", - "sha256": "933c43913f70022028cb0037faf6d0eded961a8d14666c0e5f1d343de66b0bb3", + "tag": "fetchFromGitHub", + "owner": "AdamClements", + "repo": "latest-clojure-libraries", + "sha256": "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k", "rev": "6db8709a746194800a3ffea3f906e3c9f5d4ca22" }, "recipe": { "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.817", "deps": [] }, "direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/direx-el.git", - "sha256": "d962d9a09a8fe55d53d55f37b8d81bf58efef2952aa28ad1dd748f474d1d3a56", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr", "rev": "9497231cf50767987494718db073731b05a4f970" }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1806", "deps": [] }, "yaxception": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/yaxception.git", - "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.852", "deps": [] }, "haskell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-mode.git", - "sha256": "d8f5a57a1210813dc6c03030f0f69c36407b0464468720eca76bf31c47068c78", - "rev": "0fe7688a7e5a765a0cc4de74f3fe336a383fe1e1" + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1fi74hk3q8r75k9kyahfnx302kca5p0r04i8hj21cn9fd9q2nfq0", + "rev": "93bfb29b8e49aba39f1de791bcece1b8043a4d32" }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1550", + "version": "20151217.1822", "deps": [ "cl-lib" ] @@ -28978,49 +30730,52 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1751", "deps": [] }, "linum-relative": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/linum-relative.git", - "sha256": "32cbf3c1037228249443feddff6465350f7888e317ac4b94e1ecaffa96a47b28", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "0a3vljbgmbzcw6a4pb0pwf47h3rmcmjgzpgy8fa28a3j0g0z7jrj", "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0" }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1956", "deps": [] }, "fingers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/fingers.el.git", - "sha256": "2f7bd242aae7a75bf7ee2075ae24c7dec87526341ff8915f24e78afd7d674fee", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "fingers.el", + "sha256": "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg", "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914" }, "recipe": { "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150809.1916", "deps": [] }, "flymake-jslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-jslint.git", - "sha256": "71a81a3421b67f7e80af7bb10e321120aae28f059dfa58f59e10dad51aca60cc", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls", "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc" }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130613.402", "deps": [ @@ -29029,14 +30784,15 @@ }, "flycheck-nim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ALSchwalm/flycheck-nim.git", - "sha256": "2fc71cbc6e6f9660ab2ff2a2f21696a3d90a516a8df2917643a0c24068201a1a", + "tag": "fetchFromGitHub", + "owner": "ALSchwalm", + "repo": "flycheck-nim", + "sha256": "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg", "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c" }, "recipe": { "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.1847", "deps": [ @@ -29046,56 +30802,60 @@ }, "org-bullets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/org-bullets.git", - "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140918.1337", "deps": [] }, "org-beautify-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonnay/emagicians-starter-kit.git", - "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "tag": "fetchFromGitHub", + "owner": "jonnay", + "repo": "emagicians-starter-kit", + "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z", "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" }, "recipe": { "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.1156", "deps": [] }, "bitly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/bitly-el.git", - "sha256": "abe6a67879075939fe10c63b57d30e15ff596075a9f2a8da1d192fb658827425", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "bitly-el", + "sha256": "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb", "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664" }, "recipe": { "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1048", "deps": [] }, "scala-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scala/scala-tool-support.git", - "sha256": "04b38efd9f5cb0899df7bc2e24c2dc15db015240076e9f7d3cbb273fabb94015", + "tag": "fetchFromGitHub", + "owner": "scala", + "repo": "scala-tool-support", + "sha256": "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6", "rev": "0a217bc446b970116c67c933a747d5f57b853d34" }, "recipe": { "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.1451", "deps": [] @@ -29108,7 +30868,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1909", "deps": [] @@ -29121,21 +30881,22 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1143", "deps": [] }, "org-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/org-projectile.git", - "sha256": "78a66404464246dc2d2163245f08eaeb657e098ba62fc562f918a6bec820d7b8", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "1zskm97502f4yq1jr3k1j2mkdpbh8q7lm56wqnpbpv4gcprpx8gg", "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1" }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.2356", "deps": [ @@ -29151,21 +30912,22 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1553", "deps": [] }, "magit-rockstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/magit-rockstar.git", - "sha256": "d2246288dd71e9e1bf5f8cd131d025981658301ec6d66da7d4cfa3006fea2e5d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "magit-rockstar", + "sha256": "0p9fx9ph18ygsjknvmn63qq5h5lq4p833lccbyzy3sbivn46496j", "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4" }, "recipe": { "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.928", "deps": [ @@ -29175,28 +30937,30 @@ }, "list-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/list-environment.el.git", - "sha256": "d6ce67343753c11650fd3ecaf99f2206fcf380e08f3d23e600fe8831ee7ea1c8", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "list-environment.el", + "sha256": "1vlli9fmd5fsb19bmylp3yzqnhwk5ldxld0m0q4sai0992lwx897", "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b" }, "recipe": { "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.2218", "deps": [] }, "flyspell-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/flyspell-popup.git", - "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.1003", "deps": [ @@ -29205,42 +30969,45 @@ }, "nameframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.2319", "deps": [] }, "pyvenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/pyvenv.git", - "sha256": "c4b1285322289b33bc661a797251e52e1b252208fabb3d7d75e821cc4029cc6a", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "11scrmm15zyybl861l6izqsdysh8li7kkkwjm4p8cl5kmibiqrss", "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a" }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1719", "deps": [] }, "persp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bad-ptr/persp-mode.el.git", - "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.207", "deps": [] @@ -29253,7 +31020,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150406.1930", "deps": [] @@ -29262,12 +31029,12 @@ "fetch": { "tag": "fetchgit", "url": "git://factorcode.org/git/factor.git", - "sha256": "a339a009bb3e4bdee9bbe22eb6d9f4d517b8b67621cec6eca8f6e5068172304b", - "rev": "119f188423822121b1cb94358ea16c4b95b02850" + "sha256": "4a92fbfc3f08910d7fb1e351209dc40eb7bd724eebe7bf91bfab31f5faba54ec", + "rev": "216a1234c26d793488bb5a2c397c830b825f8da2" }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.543", "deps": [ @@ -29277,28 +31044,30 @@ }, "what-the-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielbarbarito/what-the-commit.el.git", - "sha256": "e6bc110ddbb238972e387a259cc02d240a46ca5ba2e479abdf18e3bb55138613", + "tag": "fetchFromGitHub", + "owner": "danielbarbarito", + "repo": "what-the-commit.el", + "sha256": "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76", "rev": "868c80a1b8614bcbd2225cd0290142c72f2a7956" }, "recipe": { "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.816", "deps": [] }, "xterm-keybinder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/xterm-keybinder-el.git", - "sha256": "afc218e00fd75909a93465d04059c7a1c81479b8b762c95311f76148dfab91cb", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "xterm-keybinder-el", + "sha256": "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg", "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7" }, "recipe": { "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.101", "deps": [ @@ -29315,21 +31084,22 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140714.219", "deps": [] }, "helm-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", - "rev": "b99615090efa622cba280fff0615dc7f269877fd" + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", + "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.217", "deps": [ @@ -29340,14 +31110,15 @@ }, "ssh-agency": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/ssh-agency.git", - "sha256": "e8dcb13ee83ef6f90d4c6ca9b5a02981c48573f7ff95ace26d87f8ca0d092c45", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "ssh-agency", + "sha256": "0i9c146wmy47dpiar5gzyxrqbi4156hbbabc9h6zkxiyx0zb3p78", "rev": "528122b182e9e8ade2361720ea05a5594f926c18" }, "recipe": { "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1754", "deps": [ @@ -29357,28 +31128,44 @@ }, "bf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/bf-mode.git", - "sha256": "d6a421ab57af13717637e358ed5d70b7a62d7fbb0f49922b93d6138019a86209", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "bf-mode", + "sha256": "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n", "rev": "7cc4d09aed64d9db6be95646f5f5067de68f8895" }, "recipe": { "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130403.942", "deps": [] }, + "sml-modeline": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:~nxhtml/nxhtml/main", + "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", + "rev": "835" + }, + "recipe": { + "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20120110.1440", + "deps": [] + }, "wonderland": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", - "sha256": "9329fb320b8086b5ed13bc4e093bcbed151c20b743dd38f96384f0a220624c41", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack", "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6" }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130912.2019", "deps": [ @@ -29390,14 +31177,15 @@ }, "plsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-plsense.git", - "sha256": "e75dfda39ae5d77d6143388c28f6846757af0998a17fa694ce1b2b6d4a3953f8", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-plsense", + "sha256": "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm", "rev": "d50f9dccc98f42bdb42f1d1c8142246e03879218" }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.845", "deps": [ @@ -29414,35 +31202,37 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.38", "deps": [] }, "clipmon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bburns/clipmon.git", - "sha256": "943bf9b94c296094f3de752f86888ff9232167bc9152885caadd395068c30487", + "tag": "fetchFromGitHub", + "owner": "bburns", + "repo": "clipmon", + "sha256": "11q4qdl50ffxm9f8hllipikj28zriy48cbvmvvrr8q199jwzjfwl", "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43" }, "recipe": { "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150306.1423", "deps": [] }, "datomic-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/datomic-snippets.git", - "sha256": "c055a99cc2c4949609e5f80df144828c6a70bf7e77c9abc4eec3f4e49faac767", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "datomic-snippets", + "sha256": "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0", "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8" }, "recipe": { "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.1515", "deps": [ @@ -29459,7 +31249,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.1352", "deps": [] @@ -29472,21 +31262,22 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140421.1122", "deps": [] }, "dionysos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/dionysos.git", - "sha256": "cf3191b71b5d90416cf8681411ac729633b8f7517e4e04f1bb340c8bb6c8d69d", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f", "rev": "98907a38e98ff1b02171a1ad8df246a291e04750" }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.303", "deps": [ @@ -29500,14 +31291,15 @@ }, "company-qml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/company-qml.git", - "sha256": "631a1e769a0c6db0ec2d767905b68a4dba69e37d142d9dfc7b274aeb31ef6c1f", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "company-qml", + "sha256": "07vcxwqynji7ggy9sb8lgpinkfjdiav0aybn5pnb0v8ck9v1w6k3", "rev": "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df" }, "recipe": { "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1035", "deps": [ @@ -29517,14 +31309,15 @@ }, "graphene": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene", + "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.140", "deps": [ @@ -29543,14 +31336,15 @@ }, "flycheck-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-package.git", - "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-package", + "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd", "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.1338", "deps": [ @@ -29561,14 +31355,15 @@ }, "btc-ticker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/niedbalski/emacs-btc-ticker.git", - "sha256": "5ff4da37e7fbd63fc02f36b91799f9556c17b5ef126f701cfab24f5cf8035208", + "tag": "fetchFromGitHub", + "owner": "niedbalski", + "repo": "emacs-btc-ticker", + "sha256": "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z", "rev": "845235b545f070d0812cd1654cbaa4997565824f" }, "recipe": { "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.859", "deps": [ @@ -29580,40 +31375,42 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", - "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" + "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", + "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.719", "deps": [] }, "annotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/annotate.el.git", - "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", "rev": "a1690384317ce366e5a33aec916949e3328a0117" }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.1133", "deps": [] }, "elfeed-goodies": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/algernon/elfeed-goodies.git", - "sha256": "c928ff995deb397ad816aa8d789be0d52d1c6091ded2b63e2e3481f91223c26f", + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "elfeed-goodies", + "sha256": "1xl76gxjinggg332dib2h6z1gyqfi81r0x5rl8hrfpx8spi4iql0", "rev": "319d88242c78d6073d25f8bb68336603c35904d0" }, "recipe": { "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.801", "deps": [ @@ -29627,14 +31424,15 @@ }, "ox-mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomalexander/orgmode-mediawiki.git", - "sha256": "44db117b9d44901c4c778714213019a0ad9d7604de1559a92015aeb2c9727f24", + "tag": "fetchFromGitHub", + "owner": "tomalexander", + "repo": "orgmode-mediawiki", + "sha256": "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji", "rev": "973ebfc673dfb4beeea3d3ce648c917b58dcf879" }, "recipe": { "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.1102", "deps": [ @@ -29644,28 +31442,30 @@ }, "indy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/indy.git", - "sha256": "36505f800f207f9938b44f15508762e345ef01d7e83bb6f5fc5944428854604f", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "indy", + "sha256": "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n", "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501" }, "recipe": { "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150610.1206", "deps": [] }, "company-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-inf-ruby.git", - "sha256": "35f825e5042a2250a5a9302551c47c2c83773393433c8374fe3827bd7726db3a", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-inf-ruby", + "sha256": "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m", "rev": "fe3e4863bc971fbb81edad447efad5795ead1b17" }, "recipe": { "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.1554", "deps": [ @@ -29676,14 +31476,15 @@ }, "envdir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/envdir-mode.git", - "sha256": "977b066c32e4f3631ae7fa571711e27a58dc1c0ac92fea92fc66f7b8bf59367d", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "envdir-mode", + "sha256": "0jb8hf4v02b0zd02749533arrypjr3b3k88129grfks2kf29ybhb", "rev": "efbfc45de320d33cd5c52edfa73a399a8b4dc34b" }, "recipe": { "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.955", "deps": [ @@ -29694,14 +31495,15 @@ }, "flycheck-ghcmod": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scturtle/flycheck-ghcmod.git", - "sha256": "0d16d421807cbc2b389d73875a53c3d94a19123b547370e3048ca3a3615ac07d", + "tag": "fetchFromGitHub", + "owner": "scturtle", + "repo": "flycheck-ghcmod", + "sha256": "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d", "rev": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc" }, "recipe": { "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.32", "deps": [ @@ -29711,28 +31513,30 @@ }, "zerodark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/zerodark-theme.git", - "sha256": "f8b05c33fd34b61b0cbcfa88c2607611515afdb5f2a62f4e66a5943418e769f3", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1wv9wwc39555cr72z9pjnpymll8ifrhc527sph61pdilzlrmrc7q", "rev": "98135542bad1fc894c718bc37e611f79434b693a" }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.534", "deps": [] }, "py-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bogdanp/py-test.el.git", - "sha256": "eebe48e81368ca6b9f563da6f2e0a47e087de4161b6a5d3208bfe7f10f2069e8", + "tag": "fetchFromGitHub", + "owner": "Bogdanp", + "repo": "py-test.el", + "sha256": "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf", "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf" }, "recipe": { "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.22", "deps": [ @@ -29743,42 +31547,45 @@ }, "py-gnitset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quodlibetor/py-gnitset.git", - "sha256": "48d9038ce9f6f634b5f1d2dceaf07dbfdf380f6c625ed7ae0f9889b401b0b615", + "tag": "fetchFromGitHub", + "owner": "quodlibetor", + "repo": "py-gnitset", + "sha256": "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6", "rev": "471eb99b83eb9f6915d8ca241e9770ddd6244a78" }, "recipe": { "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140224.2210", "deps": [] }, "org-cua-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mlf176f2/org-cua-dwim.el.git", - "sha256": "157a4f785e59188bd17e97bca57637981b63be916d713201b6f082b370dd2e5b", + "tag": "fetchFromGitHub", + "owner": "mlf176f2", + "repo": "org-cua-dwim.el", + "sha256": "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm", "rev": "a55d6c7009fc0b22f1110c07de629acc955c85e4" }, "recipe": { "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120202.2334", "deps": [] }, "docbook-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-docbook-snippets.git", - "sha256": "3833570d87ba3147f92a975d5791188aaab0c4598631ca2dcc3a8bd03e1f75d9", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-docbook-snippets", + "sha256": "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq", "rev": "b06297fdec039a541aaa6312cb328a11062cfab4" }, "recipe": { "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1125", "deps": [ @@ -29787,28 +31594,30 @@ }, "quick-preview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/quick-preview.el.git", - "sha256": "fafa790a570802e364f6c2a950012746567d3d08baa586de5247d47f32303e60", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "quick-preview.el", + "sha256": "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c", "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35" }, "recipe": { "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.2339", "deps": [] }, "scad-preview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scad-preview.git", - "sha256": "6cd12f46aaeffef484b62626fbefcb6c451269a73635c92b1248be55c95ba5d7", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scad-preview", + "sha256": "1mx5bg4mbgj828mwjd9nlxli4ibcrgpzn9i6ns2g9zpgm932zlbc", "rev": "a444532126bdec3dec9cacf55bc183780decf040" }, "recipe": { "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.824", "deps": [ @@ -29817,14 +31626,15 @@ }, "flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz", "rev": "807d69455585d89804ecef233a9462db7d0524d8" }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1312", "deps": [ @@ -29833,14 +31643,15 @@ }, "hardhat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hardhat.git", - "sha256": "4e072ba44c9922e326cff667399a2ba713ddc729d989689aa49622c3c4d84dbd", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v", "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba" }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140827.2056", "deps": [ @@ -29849,14 +31660,15 @@ }, "pinyin-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/pinyin-search.el.git", - "sha256": "2111c7b1e1d8cab01273e15540b2edfeda5214eae0ec8165b70c71e99efad124", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "pinyin-search.el", + "sha256": "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491", "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b" }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1955", "deps": [] @@ -29869,7 +31681,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1052", "deps": [] @@ -29883,21 +31695,22 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.1230", "deps": [] }, "mc-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/mc-extras.el.git", - "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.434", "deps": [ @@ -29913,35 +31726,37 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140119.1543", "deps": [] }, "seoul256-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ChrisDavison/seoul256.el.git", - "sha256": "cc53d35307f50bb07f8b05d5346e86b9c46ab65a96b55d6b5146215971687597", + "tag": "fetchFromGitHub", + "owner": "ChrisDavison", + "repo": "seoul256.el", + "sha256": "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc", "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf" }, "recipe": { "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1735", "deps": [] }, "test-kitchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jjasghar/test-kitchen-el.git", - "sha256": "b95a5b0156083fe7ae4c6c6fa20185a0ffdda24cc47e02d83069f687f508b388", + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr", "rev": "3f3647bf437563493331821638f5f5829ae7dd26" }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.627", "deps": [] @@ -29950,26 +31765,27 @@ "fetch": { "tag": "fetchgit", "url": "http://llvm.org/git/llvm", - "sha256": "4aa3ce45502636723d58dc4bfa05928082dfc4541fa6b4c95f8655712e9452a3", - "rev": "8c9bc7b01bf5e097f461703f6ce7a35e65178e66" + "sha256": "6def2eb038bf60d3520930449ba109763e1c430c6b4c7fba3f272c3c46311fe6", + "rev": "52707d211b073942a461af811dcc442456a3064b" }, "recipe": { "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.844", "deps": [] }, "dired-rainbow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.743", "deps": [ @@ -29979,56 +31795,60 @@ }, "thrift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apache/thrift.git", - "sha256": "9bc1b3055986de1f3abc17753e5f3bae1f095a6b29f19de905a1f382ce062288", - "rev": "e68ccc23bebde961767e47e6751dcf764b8503f2" + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "07wzips127pxd0s75l71jl9jc299v6r8npz7flb391z3lfryvbin", + "rev": "7be41c7ada9692e3c37fb8b4935991f6247320f6" }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140312.1548", "deps": [] }, "better-defaults": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/better-defaults.git", - "sha256": "6a6f29ba4c980ef1d49165aab86084c2eb123210990451b0e5c2083c08bf7c48", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "0j3wpw43q262wnq5214r20r15sy2hihbiak5j7ag23lq9jx2jvva", "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463" }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.423", "deps": [] }, "wwtime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ndw/wwtime.git", - "sha256": "197517336742b66c64eb9a57544f8149dab527a9de7d08cba0e7564ce348412d", + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "wwtime", + "sha256": "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r", "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd" }, "recipe": { "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1010", "deps": [] }, "color-theme-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sellout/emacs-color-theme-solarized.git", - "sha256": "ed0307e52c24c3b433792854a5d9f99fded3af0353d044ed604f3804950e2960", + "tag": "fetchFromGitHub", + "owner": "sellout", + "repo": "emacs-color-theme-solarized", + "sha256": "1xd2yk7p39zxgcf91s80pqknzdxw9d09cppjb87g7ihj6f0wxqjv", "rev": "412713a0fcedd520d208a7b783fea03d710bcc61" }, "recipe": { "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1934", "deps": [ @@ -30037,14 +31857,15 @@ }, "cinspect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inlinestyle/cinspect-mode.git", - "sha256": "1fc71c6a3ecd258988246947b8d08a85e559623c7bb052e81fd8c1dddd4eb0a0", + "tag": "fetchFromGitHub", + "owner": "inlinestyle", + "repo": "cinspect-mode", + "sha256": "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw", "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab" }, "recipe": { "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.2133", "deps": [ @@ -30056,14 +31877,15 @@ }, "nu-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pyluyten/emacs-nu.git", - "sha256": "f1bb924a4d9d11bd1b80d86c20053ebadd88eaf37e52bd2da38016a283fc390b", + "tag": "fetchFromGitHub", + "owner": "pyluyten", + "repo": "emacs-nu", + "sha256": "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib", "rev": "e2b509a9b631e98f6feabdc783c01a6b57d05fc2" }, "recipe": { "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1515", "deps": [ @@ -30073,14 +31895,15 @@ }, "plsense-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/plsense-direx.git", - "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "plsense-direx", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1", "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.1508", "deps": [ @@ -30098,21 +31921,22 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131111.1546", "deps": [] }, "aggressive-fill-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/aggressive-fill-paragraph-mode.git", - "sha256": "0de15f4d0f54a6eacdda38660c3e8915a358b157dc52ddbbe5f5eab9480861f5", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "aggressive-fill-paragraph-mode", + "sha256": "18zlxgwcvqhlw9y7zn6fywmy04f7rs71fd5ihcx28j4rx9ay929c", "rev": "9af6a31b7c47306fb524bcc8582e0a3738701f25" }, "recipe": { "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.141", "deps": [ @@ -30121,14 +31945,15 @@ }, "eshell-git-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-git-prompt.git", - "sha256": "2c01ccf4ec9c355a288254d5fa26245df1a8de3cd9f34537354289b4aaba24ad", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-git-prompt", + "sha256": "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c", "rev": "1751dd26dab245fd9567ed5eb09ba0b312699eac" }, "recipe": { "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.47", "deps": [ @@ -30147,49 +31972,52 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140213.548", "deps": [] }, "poporg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/QBobWatson/poporg.git", - "sha256": "2020a9a1e20f963303e11e795d95baef9648d459d803d8615641155027de65b9", + "tag": "fetchFromGitHub", + "owner": "QBobWatson", + "repo": "poporg", + "sha256": "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx", "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07" }, "recipe": { "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.2047", "deps": [] }, "cdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.743", "deps": [] }, "kite-mini": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tungd/kite-mini.el.git", - "sha256": "0d754c1e47c72da9fb1784b6c748405e562af8a4308f53bcc408e1cf220c0ed4", + "tag": "fetchFromGitHub", + "owner": "tungd", + "repo": "kite-mini.el", + "sha256": "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d", "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20" }, "recipe": { "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.1329", "deps": [ @@ -30199,14 +32027,15 @@ }, "ac-html-bootstrap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "603e45398b365917790b720e517af2049d5042645c83d490e7abe5556a76dc03", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-bootstrap", + "sha256": "0c2d5yh0xndna2p1azhhss63q3vbn3lsi2f22nb792gr6al1j8za", "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.241", "deps": [ @@ -30215,42 +32044,45 @@ }, "zlc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/emacs-zlc.git", - "sha256": "1de1c90dd509460b3f5f9cf2cb4612055c900036f3d91ff48afe20d7f00a65bd", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "emacs-zlc", + "sha256": "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x", "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4" }, "recipe": { "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.2057", "deps": [] }, "julia-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JuliaLang/julia.git", - "sha256": "5457f518eda68fdcfd854788b6736902250f06519af6b4ba6360a4cc8b5ba3b6", - "rev": "97443cd94d038fc3fe182e97b3ff2a597a9e319b" + "tag": "fetchFromGitHub", + "owner": "JuliaLang", + "repo": "julia", + "sha256": "08rznffmfbfsr1i7bphkxxsadq25rqkidfni7ljxakf0zwl6x7yr", + "rev": "e83b7559df94b3050603847dbd6f3674058027e6" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150912.1000", "deps": [] }, "term+mux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-mux-el.git", - "sha256": "922a6886ea4a34bec05eb04b0393668fd841275f504f912cab35b8af92ed9ea7", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-mux-el", + "sha256": "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q", "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" }, "recipe": { "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.149", "deps": [ @@ -30260,28 +32092,30 @@ }, "chinese-remote-input": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-remote-input.git", - "sha256": "9b4103a9a04bbe15d8f99adbf0d3dae67b0be44b71e0cf14201ca762261f611a", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-remote-input", + "sha256": "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv", "rev": "d05d0bd116421e6fd19f52e9e576431ee5de0858" }, "recipe": { "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.2303", "deps": [] }, "flycheck-status-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/flycheck-status-emoji.git", - "sha256": "4cd4fa46b29aee507cc17b103658405451b603195e6b36de2ad7af45b6fa2fda", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "flycheck-status-emoji", + "sha256": "17mhsxnixw37x9jpy59nn3npw93r1rza2zcw6jmqzandmj0jyvm4", "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67" }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1314", "deps": [ @@ -30292,14 +32126,15 @@ }, "gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx", "rev": "78deece7f314f9652b50117605e93be9f8c860f4" }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.238", "deps": [ @@ -30311,14 +32146,15 @@ }, "ivariants": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/emacs-ivariants.git", - "sha256": "51279d7ba4f629acf36ec65d73f950b56723fe60d4848be6e5449c5fd9bfd88a", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "emacs-ivariants", + "sha256": "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si", "rev": "f9deff2e6fba5647f69771546fb2283136d0fb0d" }, "recipe": { "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140720.2327", "deps": [ @@ -30334,21 +32170,22 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.2041", "deps": [] }, "common-lisp-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/common-lisp-snippets.git", - "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.547", "deps": [ @@ -30357,42 +32194,45 @@ }, "apples-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tequilasunset/apples-mode.git", - "sha256": "5b27e5269fba70f2f686d387eb7e06ae725bc0c11d3bb84c601c1c553fdaf08f", + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z", "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb" }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110120.2218", "deps": [] }, "reveal-in-osx-finder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", - "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "reveal-in-osx-finder", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v", "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150802.1157", "deps": [] }, "minitest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arthurnn/minitest-emacs.git", - "sha256": "72f2ff4570cf56c36471c83bc371ed095096e29c4b3929b6e99d6dca83c33069", - "rev": "56bb89ee5e96983ca53021587aba6703b38e5c97" + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0svv44f9fham9icqq3v31n9728wap4fa0dq241sikbbrw0lnq3gx", + "rev": "c2019088087ebb5e3fe32eae9ae8156db08bd82d" }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1331", "deps": [ @@ -30401,14 +32241,15 @@ }, "evil-god-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gridaphobe/evil-god-state.git", - "sha256": "50cc662ddc6dab98b06d6ed5b47ea1b4278f7632a958e2f20bd6b8de2d2662b3", + "tag": "fetchFromGitHub", + "owner": "gridaphobe", + "repo": "evil-god-state", + "sha256": "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h", "rev": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40" }, "recipe": { "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.2055", "deps": [ @@ -30420,68 +32261,72 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", - "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" + "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", + "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" }, "recipe": { "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150910.616", + "version": "20151218.428", "deps": [] }, "occur-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/occur-x.git", - "sha256": "ca51136a35fe9a2013cd0f819c589bf695d194b773bf68e66533748ad4e02cb2", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "occur-x", + "sha256": "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6", "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b" }, "recipe": { "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130610.843", "deps": [] }, "evil-matchit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-matchit.git", - "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", "rev": "8b80b3df9472217d55962981025539f2da603296" }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.535", "deps": [] }, "sqlup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/trevoke/sqlup-mode.el.git", - "sha256": "dadea8b37baaaa84d8f8df71f42b94efda5077442075a73dd2f84fe178f318cb", + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4", "rev": "9cb9662673b7bed891582cfc1080d91a254048f7" }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.830", "deps": [] }, "ox-impress-js": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kinjo/org-impress-js.el.git", - "sha256": "824c1e9f2dd05364346170242a97449a4e75675f69aa2513044b78a10042cc7c", + "tag": "fetchFromGitHub", + "owner": "kinjo", + "repo": "org-impress-js.el", + "sha256": "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9", "rev": "91c6d2af6af308ade352a03355c4fb551b238c6b" }, "recipe": { "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.1216", "deps": [ @@ -30490,14 +32335,15 @@ }, "flycheck-gometalinter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/favadi/flycheck-gometalinter.git", - "sha256": "a03d0e23b43b80f5cdfae95e1ad91de0eb3b2279dbad604e5c69bcacf25e72c3", + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1hvjbvrarg39bi761bfvg4i3psz03pcilpp9zb6zb01vnhihwgd0", "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3" }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1128", "deps": [ @@ -30507,28 +32353,30 @@ }, "hipster-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xzerocode/hipster-theme.git", - "sha256": "8332d6db387093e7e0324974d5e702b6214587d3b4c711317ac4102f3abfac9d", + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "hipster-theme", + "sha256": "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3", "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f" }, "recipe": { "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.2205", "deps": [] }, "ir-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/ir-black-theme.el.git", - "sha256": "22061c96562d46800a7be368fcd91eb58a9a99c826e48f1e543b49ae21efc9b3", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "ir-black-theme.el", + "sha256": "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2", "rev": "36e930d107604b5763c80294a6f92aaa02e6c272" }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130303.155", "deps": [] @@ -30542,7 +32390,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1649", "deps": [ @@ -30558,63 +32406,67 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1855", "deps": [] }, "memento": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ehartc/memento.git", - "sha256": "18d426d0f1fede3b1d1bd5cba3666386729e17513ca2e54131eb9a784757585e", + "tag": "fetchFromGitHub", + "owner": "ehartc", + "repo": "memento", + "sha256": "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q", "rev": "35733b79101f694346792a57df686cbffe64bd79" }, "recipe": { "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.539", "deps": [] }, "django-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrzejsliwa/django-theme.el.git", - "sha256": "76b21c549174a22a1a407dcbfc93625de92b1169a013f3ad7f56e6340eb61d21", + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "django-theme.el", + "sha256": "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w", "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0" }, "recipe": { "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131022.402", "deps": [] }, "vimrc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mcandre/vimrc-mode.git", - "sha256": "e06249edfe8e47a8621ab6f7a39dc5a127c7f937d904ab105668b35fa0d00e00", + "tag": "fetchFromGitHub", + "owner": "mcandre", + "repo": "vimrc-mode", + "sha256": "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0", "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28" }, "recipe": { "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.1113", "deps": [] }, "highlight-unique-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hitode909/emacs-highlight-unique-symbol.git", - "sha256": "5dc24c0a561956fece5d8adf262d15185104685966d37ba58d089b7f09150c42", + "tag": "fetchFromGitHub", + "owner": "hitode909", + "repo": "emacs-highlight-unique-symbol", + "sha256": "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx", "rev": "4141bf86a94e30d94d9af9c29d40b16886226e1c" }, "recipe": { "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130612.42", "deps": [ @@ -30623,28 +32475,30 @@ }, "extend-dnd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/extend-dnd.git", - "sha256": "cc3d9ed7b44fd772e63e5f5b123a53704958a8953571bf61e03d2dc456b71ce9", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz", "rev": "80c966c93b82c9bb5c6225a432557c39144fc602" }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1250", "deps": [] }, "bts-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-bts-github.git", - "sha256": "e9b5b44e3a25b83ec7d52ffb88068d73974dee2a2026e5ac4c937c19821cd9e9", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts-github", + "sha256": "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9", "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc" }, "recipe": { "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.227", "deps": [ @@ -30654,14 +32508,15 @@ }, "ac-haskell-process": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-haskell-process.git", - "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-haskell-process", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41", "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.902", "deps": [ @@ -30671,28 +32526,30 @@ }, "erc-view-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Niluge-KiWi/erc-view-log.git", - "sha256": "5ed4b8918ee45433d71aab6a747a365b05e29e3470145f64223f4327a016f12f", + "tag": "fetchFromGitHub", + "owner": "Niluge-KiWi", + "repo": "erc-view-log", + "sha256": "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y", "rev": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266" }, "recipe": { "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.1439", "deps": [] }, "jst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/jst-mode.git", - "sha256": "2272037c73c79a5c056424c81f5d2ba66c2c7a71c30bae95d370ba0ef70566ca", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "jst-mode", + "sha256": "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy", "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c" }, "recipe": { "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.638", "deps": [ @@ -30705,14 +32562,15 @@ }, "flx-ido": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz", "rev": "807d69455585d89804ecef233a9462db7d0524d8" }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1312", "deps": [ @@ -30722,16 +32580,17 @@ }, "helm-open-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-open-github.git", - "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", - "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-open-github", + "sha256": "0z20wrrzwbw7d6b1s0grzlc3nj9n7dhmv3yk2wk0m4s8y5gmwjd5", + "rev": "9f275e065dbdcaf10c7573984d1ac97041faddba" }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151010.131", + "version": "20151217.846", "deps": [ "cl-lib", "gh", @@ -30740,42 +32599,45 @@ }, "xresources-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CQQL/xresources-theme.git", - "sha256": "e2328c36ea9cf46c499b7d4093262ee6cdc9d8c61029ce2150846bfd9213e68d", + "tag": "fetchFromGitHub", + "owner": "CQQL", + "repo": "xresources-theme", + "sha256": "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g", "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f" }, "recipe": { "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1117", "deps": [] }, "enclose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/enclose.git", - "sha256": "e2905d2664b590c6ab87bf2514bba08d1a9a3b28919e6779a23d9ba40cd0dd7a", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "enclose", + "sha256": "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim", "rev": "2747653e84af39017f503064bc66ed1812a77259" }, "recipe": { "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121008.1114", "deps": [] }, "magic-latex-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/magic-latex-buffer.git", - "sha256": "e3abaf6be2ac571ffe9786cb49dd0809454af5a8c59b7f698e53c78b26db5880", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "magic-latex-buffer", + "sha256": "102qvck8piskirlpz6y5m3slli8913flkjw6jzz1ymxcw9mszaz3", "rev": "9039acc76000d3c11444fc8782343344247f6fb3" }, "recipe": { "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.202", "deps": [ @@ -30785,14 +32647,15 @@ }, "nvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/nvm.el.git", - "sha256": "5590f78dd36c98131fde18b0276759072b227b04b82d95445d318c4c133145f0", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "nvm.el", + "sha256": "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7", "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8" }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.255", "deps": [ @@ -30804,28 +32667,30 @@ }, "organic-green-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/organic-green-theme.git", - "sha256": "4fafa62849c445d9131c7eb85664ff3b1e570633b495f7d38349eff145dd2061", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "organic-green-theme", + "sha256": "0q90vm2z3vs9hg9zg5dl6c35f7ivzxj5df3y3h9xjif494ladbsg", "rev": "c4d68c3329147aedd066a88b6d5e5266bcd59dcc" }, "recipe": { "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.720", "deps": [] }, "ruby-factory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/ruby-factory-mode.git", - "sha256": "cdb36ac2d8ae2dcf5e9841c817c3582ada413161656870f1a0185979673890f7", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "ruby-factory-mode", + "sha256": "1xwh71kpjn8ql3qp0s35c4ql3niab31igj21k1gcybdfv316mcyd", "rev": "134a91c854c06d0d06038005769ce20b2a8177bd" }, "recipe": { "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1023", "deps": [ @@ -30834,28 +32699,30 @@ }, "kv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-kv.git", - "sha256": "b5c83b8605f3f2d27534ed9b49a02185382d9131513965b923c0ef67b4f81464", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-kv", + "sha256": "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m", "rev": "721148475bce38a70e0b678ba8aa923652e8900e" }, "recipe": { "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140108.934", "deps": [] }, "org-mobile-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/org-mobile-sync.git", - "sha256": "b0d91cefe3436b1e691e26fd80318b063d59c2f724f2bd3a0687ff584fc14234", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "org-mobile-sync", + "sha256": "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh", "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0" }, "recipe": { "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131118.1316", "deps": [ @@ -30865,28 +32732,30 @@ }, "websocket": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ahyatt/emacs-websocket.git", - "sha256": "57d91fd04b1523cf7468094d68720c21883f7e86a48a343432884ec59479d8f0", + "tag": "fetchFromGitHub", + "owner": "ahyatt", + "repo": "emacs-websocket", + "sha256": "1w6qg6acakl868s392m4hrz3z2111ir6hk89d1scy8qm9g81znap", "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044" }, "recipe": { "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1248", "deps": [] }, "editorconfig-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -30896,14 +32765,15 @@ }, "gnomenm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-nm.git", - "sha256": "62c9c2a717e23f5455e73c35ef27e2e14c8eff0dc14a9966aea463ec52dd76eb", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-nm", + "sha256": "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2", "rev": "9065cda44ffc9e06239b8189a0154d31314c3b4d" }, "recipe": { "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.1418", "deps": [ @@ -30914,14 +32784,15 @@ }, "imenu-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/imenu-list.git", - "sha256": "3390b22fee598f5350ff8fa7d5f0dd28b5e42ff1149a09049521260bb6859942", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "imenu-list", + "sha256": "0hlrhnv0n9i1jl20k6hly4py9d98vpqdb9wgzx8573srxqpv541k", "rev": "0c725825ad13fca6b1eea2d28c42ffb172fa6de9" }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.446", "deps": [ @@ -30936,21 +32807,22 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1420", "deps": [] }, "flymake-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-less.git", - "sha256": "445295365a279e027a5701572db511c40f70218bd17d07937ccce15bc338785d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7", "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421" }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.138", "deps": [ @@ -30962,12 +32834,12 @@ "fetch": { "tag": "fetchgit", "url": "https://go.googlesource.com/tools", - "sha256": "8db229f334a755903a5cd68980b5345c6899c8201bd15e956436998ea2c4a3ce", - "rev": "1cdaff4a02c554c9fb39dda0b56241c5f0949d91" + "sha256": "e8768dadb61beb860223d8cc2b9a2e4da8e5ebaeb631f94d1a72aebb9ce1a30a", + "rev": "fa833fdef560f0fe9b40dbb37fd03030ac3d514b" }, "recipe": { "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.838", "deps": [ @@ -30976,14 +32848,15 @@ }, "malinka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/LefterisJP/malinka.git", - "sha256": "73102ae0ffc0e8f9b5150e9081e6686b55cf54a72e13ea6df8ee2be84f1b02fb", + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg", "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06" }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.216", "deps": [ @@ -30997,14 +32870,15 @@ }, "aggressive-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/aggressive-indent-mode.git", - "sha256": "79e28034ef883b02be23f969bd538e6d276f0d52eac51b96927156ad6f96982a", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "aggressive-indent-mode", + "sha256": "0alqjrpssmkijab1pigaa86ny9vdir9vssgr4fz04fw8xws81qkr", "rev": "e613e7eb5179ae0caf4b96501923276bccd30d83" }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1448", "deps": [ @@ -31014,14 +32888,15 @@ }, "helm-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/helm-pt.git", - "sha256": "bebcf54af1626b77190c91255d03a8df04366eff74317df2f2bec9b0fef28c07", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "helm-pt", + "sha256": "01wcybzb1jdyybr7scblzxp3c16zm01ms9ci1hcpfsv2y55gbg5y", "rev": "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a" }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2130", "deps": [ @@ -31030,28 +32905,30 @@ }, "subemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbauer/subemacs.git", - "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1054", "deps": [] }, "magit-find-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bradleywright/magit-find-file.el.git", - "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", - "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + "tag": "fetchFromGitHub", + "owner": "bradleywright", + "repo": "magit-find-file.el", + "sha256": "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb", + "rev": "c3ea91bab37d10a814a829728ec972811f728d60" }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.330", "deps": [ @@ -31067,49 +32944,52 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130917.1348", "deps": [] }, "c0-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/catern/c0-mode.git", - "sha256": "5d7617a5b173e3b0412b96e167c12c2d6febcdf56e317c93956dcec948066982", + "tag": "fetchFromGitHub", + "owner": "catern", + "repo": "c0-mode", + "sha256": "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx", "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60" }, "recipe": { "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1252", "deps": [] }, "dizzee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidmiller/dizzee.git", - "sha256": "6dd8abcb431cbe60f23146b41e5855dbf2503c17f040d28bbc303ac9872c6d4d", + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "dizzee", + "sha256": "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5", "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6" }, "recipe": { "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111009.816", "deps": [] }, "mvn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/mvn-el.git", - "sha256": "a6190c980b4dd7eb891313704974921fbbf6d3255b0b09e8b4723d9a880276bf", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "mvn-el", + "sha256": "1gvn0a49lgbjnkl0j2sv4p9zdfqzj9s4jw0k2f4ypmsd1fc0q6d6", "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f" }, "recipe": { "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.129", "deps": [] @@ -31123,21 +33003,22 @@ }, "recipe": { "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1037", "deps": [] }, "caroline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xjackk/caroline-theme.git", - "sha256": "4b2e23722cafe6c19290647c3ab86afcbe29f96eec546c5544fb858bd3623292", + "tag": "fetchFromGitHub", + "owner": "xjackk", + "repo": "caroline-theme", + "sha256": "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb", "rev": "742bf4ac4521ff9905294812919051cec768b1a0" }, "recipe": { "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1804", "deps": [ @@ -31146,14 +33027,15 @@ }, "ace-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/ace-isearch.git", - "sha256": "d92fce7a5ce841964a3b107940ec5e88cbfd60325f20c62e5063bb79667f230a", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr", "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b" }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150808.756", "deps": [ @@ -31165,14 +33047,15 @@ }, "flycheck-perl6": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hinrik/flycheck-perl6.git", - "sha256": "34474e12ded34a4159b85c21ad0bef7a8a39b392088b60562df3d5b2aa817a7c", + "tag": "fetchFromGitHub", + "owner": "hinrik", + "repo": "flycheck-perl6", + "sha256": "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3", "rev": "6a9a929ffb58595bbe9fe3d7c2e78617c8e9bb5a" }, "recipe": { "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.2032", "deps": [ @@ -31182,14 +33065,15 @@ }, "sparkline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/woudshoo/sparkline.git", - "sha256": "77b304f838db6560b33bae6efe52dc14d79e0ca38ee33f85a5b577ee991f0dbb", + "tag": "fetchFromGitHub", + "owner": "woudshoo", + "repo": "sparkline", + "sha256": "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp", "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2" }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.719", "deps": [ @@ -31198,28 +33082,30 @@ }, "slime-volleyball": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fitzsim/slime-volleyball.git", - "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "tag": "fetchFromGitHub", + "owner": "fitzsim", + "repo": "slime-volleyball", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3", "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2341", "deps": [] }, "free-keys": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/free-keys.git", - "sha256": "e0228557750dd20dc1cb205dda77209e6b2fe0f3cf2a9912132ba6fa8ee3358b", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "free-keys", + "sha256": "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0", "rev": "368820cb361161f10a2ae7a839ab758146fd222c" }, "recipe": { "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.522", "deps": [ @@ -31228,14 +33114,15 @@ }, "emms-player-simple-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", - "sha256": "2e7fefdeec0b541f7ce21b89de804e6cf86abbbe4c1dfd6343d192eecff65d2a", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-simple-mpv", + "sha256": "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf", "rev": "92be36ef158df3db3a2f9e2d0186a609fc2d3702" }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.801", "deps": [ @@ -31246,14 +33133,15 @@ }, "ta": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/ta.el.git", - "sha256": "d59f817553db651829fe53fe8ef4e0f580ea79c0256416ccc03ba6d96b1c9414", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "ta.el", + "sha256": "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym", "rev": "0d946b15a88239982ec66eaa8a55ad53d85e7c3f" }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1224", "deps": [ @@ -31263,14 +33151,15 @@ }, "mote-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inkel/mote-mode.git", - "sha256": "27d69cfa3fc6078f536b9348237cba14571fbbccc2644275e15f7c0f37dee9c3", + "tag": "fetchFromGitHub", + "owner": "inkel", + "repo": "mote-mode", + "sha256": "1hz9vqvhyz2zw5sl4r62rjxiymqlp9y26j4kdd9qy1y67zx9rmi7", "rev": "18dfc3af0cee7d6d522616f07134364c1c3e54ba" }, "recipe": { "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121014.2319", "deps": [ @@ -31279,56 +33168,60 @@ }, "xml-rpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/xml-rpc-el.git", - "sha256": "8a95d4709f5656fe924cbfccd16e078ab9d108e796cf977969e37141c373724e", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "xml-rpc-el", + "sha256": "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca", "rev": "a190759da8765d3b22ceb6774cefc610fda404d8" }, "recipe": { "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.2027", "deps": [] }, "cmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bgamari/cmm-mode.git", - "sha256": "33e68149ef8c82af6b19fc9416f0e9c17ce3e90158bc9d0143f7b9fd220ad7ff", + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "cmm-mode", + "sha256": "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx", "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee" }, "recipe": { "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150225.146", "deps": [] }, "enlive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/enlive.git", - "sha256": "50a2c620272ccd94fff08f8dc5b0d89885ed16a05c384ba55761616b80ffa76d", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh", "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5" }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.749", "deps": [] }, "wiki-summary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jozefg/wiki-summary.el.git", - "sha256": "310c90837536a3cf464221c92f94ec55367f2b33fc96efb30a9a855503fb6c09", + "tag": "fetchFromGitHub", + "owner": "jozefg", + "repo": "wiki-summary.el", + "sha256": "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i", "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0" }, "recipe": { "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.1622", "deps": [ @@ -31337,28 +33230,30 @@ }, "nexus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/emacs-nexus.git", - "sha256": "47f81c3d5aba872024bbf46a40fc7ae95ed0d25d843a82e1fa4b9998c836ddf6", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "emacs-nexus", + "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27", "rev": "c46f499951b90839aa8683779fe43d8f01672a60" }, "recipe": { "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140114.705", "deps": [] }, "rake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/rake.git", - "sha256": "b92c442fd114b40d6155cb428ba8561c176ce0a64fe6b9554b01d57adf66f817", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2", "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515" }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.358", "deps": [ @@ -31369,28 +33264,30 @@ }, "slim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slim-template/emacs-slim.git", - "sha256": "216ef4f08cad6ef20baad193abb97d045694c6233e91908b43b6e2e4ad60fe6d", + "tag": "fetchFromGitHub", + "owner": "slim-template", + "repo": "emacs-slim", + "sha256": "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1", "rev": "869c84821cf3e556b380c5c35d8ad62287c4df58" }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.1150", "deps": [] }, "ox-html5slide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-html5slide.git", - "sha256": "b5272081d491e381b596e0b8b8ced204a00260951d9e2dc096c068c5dce003a6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-html5slide", + "sha256": "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm", "rev": "4703dfbd9d79161509def673d2c1e118d722a58f" }, "recipe": { "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.6", "deps": [ @@ -31399,14 +33296,15 @@ }, "waher-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-waher-theme.git", - "sha256": "8c76c6d11a43783c3264edf0040768281204579e1b318110849eadc5508fa970", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-waher-theme", + "sha256": "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc", "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a" }, "recipe": { "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.630", "deps": [ @@ -31422,7 +33320,7 @@ }, "recipe": { "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1159", "deps": [ @@ -31431,14 +33329,15 @@ }, "mu4e-maildirs-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", - "sha256": "c365b9e066e9f10f1d252c560619aaf74833e698ed322c61ac6cf933ec243cf9", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "mu4e-maildirs-extension", + "sha256": "0hbgzvybd04s9fz9myrs68ic2v0kks3wpv8qj14ihrnl7xh03rfh", "rev": "17eacf2d0b3a57ebf26a6aaa9eeb51d579457d25" }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1126", "deps": [ @@ -31447,14 +33346,15 @@ }, "gvpr-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rodw/gvpr-lib.git", - "sha256": "7500d583d2881cb3c2fafef2991b069e9ee71f23f36c8d8e313051012e7b04d2", + "tag": "fetchFromGitHub", + "owner": "rodw", + "repo": "gvpr-lib", + "sha256": "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s", "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0" }, "recipe": { "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.1118", "deps": [] @@ -31467,49 +33367,52 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1610", "deps": [] }, "move-dup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wyuenho/move-dup.git", - "sha256": "47f52e9264cdc64f139bbd0dc57bdffbf54887dc2ca019a5e7375cafa134c27e", + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8", "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5" }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140925.1008", "deps": [] }, "stash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/stash.el.git", - "sha256": "a978095d85317bd5dcc19f32a37677a6fd7fa22a5077f17ac5cba56d9ef2af5f", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr", "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad" }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.827", "deps": [] }, "autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/autopair.git", - "sha256": "cc2e494c276b7bba057190b81d81c175137346352e593796d6564fb71dc587ff", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a", "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8" }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140825.627", "deps": [ @@ -31518,14 +33421,15 @@ }, "chinese-word-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", - "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "chinese-word-at-point.el", + "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j", "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150618.2038", "deps": [ @@ -31534,14 +33438,15 @@ }, "key-seq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vlevit/key-seq.el.git", - "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "tag": "fetchFromGitHub", + "owner": "vlevit", + "repo": "key-seq.el", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f", "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.256", "deps": [ @@ -31550,14 +33455,15 @@ }, "ox-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ox-pandoc.git", - "sha256": "194ecb815e045df3a81d39ad5875d0bfce87f2d8535be1bff85771a29d9d1031", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ox-pandoc", + "sha256": "0c8hknfs4wapz2zy2nskv3r8gkmzs1smib9r3nlg6p84bs0wnkhr", "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b" }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150706.2009", "deps": [ @@ -31569,14 +33475,15 @@ }, "helm-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-ghc.git", - "sha256": "4ee8874e41fa67ff4a7c847c3485196129e4878006715aa6f41e8bddb9f20cd5", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-ghc", + "sha256": "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is", "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35" }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.859", "deps": [ @@ -31588,16 +33495,17 @@ }, "projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.1239", + "version": "20151217.1552", "deps": [ "dash", "pkg-info" @@ -31605,30 +33513,32 @@ }, "fabric": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/fabric.el.git", - "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "fabric.el", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5", "rev": "004934318f63d8cf955022f87b2c33eb97ada280" }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.522", "deps": [] }, "sage-shell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/sage-shell-mode.git", - "sha256": "d7cecfe82569543852f3c65eef30d8d0bbab1154c3616aa6c8ba1279777ecdc9", - "rev": "7daed23524a74fee8ce0a87b72bddff8bc0ac725" + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "sage-shell-mode", + "sha256": "060xvh5qwqbvvb5ykyflwps2p2by9p1mm5dz7gkxla5zq0a73vmx", + "rev": "ad78c168c1fb702eebc74f30eba830adc3fe0079" }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151020.809", + "version": "20151024.313", "deps": [ "cl-lib", "deferred" @@ -31636,16 +33546,17 @@ }, "flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck.git", - "sha256": "77845737d168f4ccaf65fb153cd8f512893052b28fb12ee1e455faeedd3b5997", - "rev": "757c32644a38b95cd3ee7faa25a1ac3675c4850e" + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck", + "sha256": "1szj58qd0wx6lvcb69mb7ccn2b0qsa7b028519137slrwmxipgp8", + "rev": "1404451f226153a06a1e7741fe6a3d10267bb3a4" }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.611", + "version": "20151216.902", "deps": [ "dash", "emacs", @@ -31656,28 +33567,30 @@ }, "cuda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chachi/cuda-mode.git", - "sha256": "56bc5dc66334339e1d840887f4b4ce8612d1ededad2c89d3ab5daaa8e1e98f26", + "tag": "fetchFromGitHub", + "owner": "chachi", + "repo": "cuda-mode", + "sha256": "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy", "rev": "9ae9eacfdba3559b5456342d0d03296290df8ff5" }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.2121", "deps": [] }, "ob-cypher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-cypher.git", - "sha256": "36316bbe0613f3817621646b5f7e5cda84594f7953f42d0d2f2f36ecb0ff6cf5", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-cypher", + "sha256": "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n", "rev": "b3511df05f175c1947996802e9e199432ea9ced8" }, "recipe": { "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150224.2037", "deps": [ @@ -31689,14 +33602,15 @@ }, "company-ycm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neuromage/ycm.el.git", - "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "tag": "fetchFromGitHub", + "owner": "neuromage", + "repo": "ycm.el", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj", "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" }, "recipe": { "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140904.1317", "deps": [ @@ -31707,25 +33621,26 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/dired+.el", - "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151110.1121", + "version": "20151215.854", "deps": [] }, "bfbuilder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/bfbuilder.git", - "sha256": "27b49a8f58aeb87a6dc8debad53831704459e14bb5105e91d51db86583ee2ef9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "bfbuilder", + "sha256": "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17", "rev": "49560bdef131fa5672dab660e0c62376dbdcd906" }, "recipe": { "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1150", "deps": [ @@ -31734,14 +33649,15 @@ }, "debug-print": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenoss/debug-print.git", - "sha256": "b77b791ef71d831eac43fa49218295da2f72c2b7a12121caf5956a416eb629d9", + "tag": "fetchFromGitHub", + "owner": "kenoss", + "repo": "debug-print", + "sha256": "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp", "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5" }, "recipe": { "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140125.1819", "deps": [ @@ -31750,14 +33666,15 @@ }, "gorepl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manute/gorepl-mode.git", - "sha256": "0b3cbf483ce9c9426da0dde4d4e458211e073203f46a3808e5ea3ddd3b3a6ba9", + "tag": "fetchFromGitHub", + "owner": "manute", + "repo": "gorepl-mode", + "sha256": "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b", "rev": "17e025951f5964a0542a4b353ddddbc734c01eed" }, "recipe": { "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.622", "deps": [ @@ -31766,14 +33683,15 @@ }, "mocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/mocker.el.git", - "sha256": "5a57867381d4716ca8b2f61e038fcc43bda32810c1265b5561175e9595fdcf36", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss", "rev": "b56f0f2839d4a395979816b40089a77050518eb6" }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2054", "deps": [ @@ -31783,56 +33701,60 @@ }, "ido-hacks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scottjad/ido-hacks.git", - "sha256": "7d3603070b80d386113da55a96384304987fd07b50bf1053db324c24c257e406", + "tag": "fetchFromGitHub", + "owner": "scottjad", + "repo": "ido-hacks", + "sha256": "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx", "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc" }, "recipe": { "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.1409", "deps": [] }, "subatomic-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cryon/subatomic.git", - "sha256": "1fe0959b6a4bffe88bb567e6bd6b20c918d55f18f417e3bd04a02698bde44eda", + "tag": "fetchFromGitHub", + "owner": "cryon", + "repo": "subatomic", + "sha256": "1njfwjyrh9m00jyy65zl31gxa66941mvvrk7nn5yizsbdadrbq0z", "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2" }, "recipe": { "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150704.1009", "deps": [] }, "jar-manifest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omajid/jar-manifest-mode.git", - "sha256": "b80af9bcf58b4d1f5717f0910bdbea199f3fe77f058b444c800e7a543c90cd5b", + "tag": "fetchFromGitHub", + "owner": "omajid", + "repo": "jar-manifest-mode", + "sha256": "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq", "rev": "200dcf6ec5116b506ae24a83511837adf0acedef" }, "recipe": { "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.1733", "deps": [] }, "psc-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/epost/psc-ide-emacs.git", - "sha256": "1fb75010c4538c8092511262a8e8856229db7a826e8e8046a29a403074feb9f1", + "tag": "fetchFromGitHub", + "owner": "epost", + "repo": "psc-ide-emacs", + "sha256": "0pz5d8xl2bc9k4isk39rbkw9wcmd83a4hpqv04fqcvjnrvawabww", "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae" }, "recipe": { "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.817", "deps": [ @@ -31843,14 +33765,15 @@ }, "quelpa-use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quelpa/quelpa-use-package.git", - "sha256": "a6ceca3db578afa7da3852d3a1bb441369ae65792a602f43e33caa26b8df9603", + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa-use-package", + "sha256": "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6", "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b" }, "recipe": { "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.528", "deps": [ @@ -31867,35 +33790,37 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140201.514", "deps": [] }, "dna-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhgorrell/dna-mode-el.git", - "sha256": "7664eb5682a8100b519daf4784b4b16187de200d7f061c1e0b6c3e7efa91487c", + "tag": "fetchFromGitHub", + "owner": "jhgorrell", + "repo": "dna-mode-el", + "sha256": "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n", "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a" }, "recipe": { "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130821.1305", "deps": [] }, "pungi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/pungi.git", - "sha256": "41c0d044dd2160a142d590934c92f31100d64fb6fa7019ac404741677c493cee", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21", "rev": "a2d4d439ea371be0b064a12248288903b8a521a0" }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150222.646", "deps": [ @@ -31905,28 +33830,30 @@ }, "mpages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slevin/mpages.git", - "sha256": "d42b0d23c3661b43e0a48180e28ed0c1f9f27b7a6010cb5826d3fb1244ebd1ee", + "tag": "fetchFromGitHub", + "owner": "slevin", + "repo": "mpages", + "sha256": "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2", "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f" }, "recipe": { "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.904", "deps": [] }, "colorsarenice-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/colorsarenice-theme.git", - "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.1536", "deps": [ @@ -31935,28 +33862,30 @@ }, "isearch-symbol-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/isearch-symbol-at-point.git", - "sha256": "69bf83ab2b9a75452268f6496696889d80f23a1b40bc0e59065d0c060a4ae427", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "isearch-symbol-at-point", + "sha256": "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9", "rev": "51a1029bec1ec414885f9edb7e5947603dffdab2" }, "recipe": { "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130728.1721", "deps": [] }, "flycheck-mypy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-mypy.git", - "sha256": "1331403a59f4decaf7ecb18fdc85edcf69473ecea231dc34c30a3d68a1e1b6ed", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-mypy", + "sha256": "1vdnw6hnhg8aqcsdqcd2rqz4fsfgxn2xr3xixkvwmpplb4x40c8k", "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f" }, "recipe": { "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.333", "deps": [ @@ -31965,28 +33894,30 @@ }, "backup-walker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/backup-walker.git", - "sha256": "1b194e000693a5fc2818b11874c07e91865b9043793f0ac401a5a94953478d7c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "backup-walker", + "sha256": "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v", "rev": "934a4128c122972ac32bb9952addf279a60a94da" }, "recipe": { "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.1016", "deps": [] }, "workgroups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlh/workgroups.el.git", - "sha256": "56d8f51f631645f8e953b3be7e37ff55d750dd8802f5e5c755483a8549f96260", + "tag": "fetchFromGitHub", + "owner": "tlh", + "repo": "workgroups.el", + "sha256": "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n", "rev": "9572b3492ee09054dc329f64ed846c962b395e39" }, "recipe": { "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110726.1141", "deps": [] @@ -31999,7 +33930,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1532", "deps": [ @@ -32008,14 +33939,15 @@ }, "ace-jump-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-buffer.git", - "sha256": "3e84481b62f94ce2869a2a47adcd597cbea08d8a92bdbd3806f1d704b3938985", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-buffer", + "sha256": "11c9jfrh9mzi0qwbvgcjia6s1gkwb76ssiraka3f4k7rc8dli11y", "rev": "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c" }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.34", "deps": [ @@ -32031,35 +33963,37 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.2355", "deps": [] }, "codebug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shano/emacs-codebug.git", - "sha256": "f79e54c476ef9400cd8be2e9d63c8fb0e8d4c9bdfed4ba7ed40b8d4158386687", + "tag": "fetchFromGitHub", + "owner": "shano", + "repo": "emacs-codebug", + "sha256": "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp", "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52" }, "recipe": { "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1637", "deps": [] }, "bts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-bts.git", - "sha256": "efaf89571dabf2ab36f32462dcfcabfb4577f5a0d327a2a78dc3c791d2d465bc", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts", + "sha256": "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w", "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9" }, "recipe": { "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.733", "deps": [ @@ -32073,56 +34007,60 @@ }, "fyure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/fyure.git", - "sha256": "76c53cc1a100b9b8a774a7f6c3a3f30808eef3313d9bedb9f4f5b1c9ca16d8e6", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "fyure", + "sha256": "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd", "rev": "b6977f1eb148e8b63259f7233b55bb050e44d9b8" }, "recipe": { "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130216.714", "deps": [] }, "wedge-ws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aes/wedge-ws.git", - "sha256": "c69975093876af8c2ae3cad3283183a898ec2ab9d046cfb3d9f85321bac2aee9", + "tag": "fetchFromGitHub", + "owner": "aes", + "repo": "wedge-ws", + "sha256": "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98", "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2" }, "recipe": { "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140714.1649", "deps": [] }, "ctl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/emacs-grads.git", - "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", "rev": "1a13051db21b999c7682a015b33a03096ff9d891" }, "recipe": { "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.406", "deps": [] }, "ac-octave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/ac-octave.git", - "sha256": "f8d4d4df0a7c4a2a752a1fb19d2031f531a6e297ae6652f0e9430804de176f99", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q", "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379" }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150111.1908", "deps": [ @@ -32131,42 +34069,45 @@ }, "color-moccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/color-moccur.el.git", - "sha256": "1decf8c11ad22649d75580512c346d4073b8cd7d9947513d52a559f231182edc", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "color-moccur.el", + "sha256": "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x", "rev": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7" }, "recipe": { "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.1835", "deps": [] }, "simple-mpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorenvo/simple-mpc.git", - "sha256": "0522e28df1140d9d5fa492572ea5270d3ff489536f2c3eb44e877d0ff37cd4f8", + "tag": "fetchFromGitHub", + "owner": "jorenvo", + "repo": "simple-mpc", + "sha256": "1y6lgkrhyzc79ss3wb3gaf4z8gqd4yjjwmwjligrs38ly66y48h5", "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1" }, "recipe": { "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150802.406", "deps": [] }, "ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ansi.git", - "sha256": "890f93330ed499250775fa2dbdc5003e78b900d4ea5b6513ae54ae1c39e42fe0", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85", "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd" }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.326", "deps": [ @@ -32176,16 +34117,17 @@ }, "evil-magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/evil-magit.git", - "sha256": "b7e67dfe1e43215c71bb6f0b4309146329d28feca1bd2957fa0a2511e263b190", - "rev": "c35be89c5a80c7513f23e7382809b5abc8c58903" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "evil-magit", + "sha256": "0g7a7djdzwm15n51384571xfmwzbf7ibldbzki6s64g5yf3yd69d", + "rev": "8f07cf1382c9715cf3c735087794460f92b4b114" }, "recipe": { "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1626", + "version": "20151216.1858", "deps": [ "evil", "magit" @@ -32193,14 +34135,15 @@ }, "ido-describe-bindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-describe-bindings.git", - "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1438", "deps": [ @@ -32210,42 +34153,45 @@ }, "birds-of-paradise-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", - "sha256": "b1f3d31f65e50ebaae63d1ef6397b080209e2e03f6484e2611b805342dfe01c0", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "birds-of-paradise-plus-theme.el", + "sha256": "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s", "rev": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f" }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.1629", "deps": [] }, "term+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-el.git", - "sha256": "7292ff7eeacc343778205cfd7e426ebcd8167bb143398113b7ada89dabea452b", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-el", + "sha256": "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86", "rev": "090807985673755720c5533b2fc684f88a3554ad" }, "recipe": { "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130612.852", "deps": [] }, "elixir-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/elixir-lang/emacs-elixir.git", - "sha256": "3f28e9e72c97f12129ddaa0ebd6301abc74767c8af9cce9aee19b3db1c259a84", + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "00rl76bsyzq6dh9z65n894z1rsj483yclyndw515j4gvfqqlxcd9", "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075" }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.612", "deps": [ @@ -32255,44 +34201,47 @@ }, "jbeans-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/synic/jbeans-emacs.git", - "sha256": "665cf0042ecd23468008fa5762eb1f2b973f601eedffb22fdfb8795608f46362", - "rev": "9bf942ca383c559d2c94da67a94d8c3e680eb96c" + "tag": "fetchFromGitHub", + "owner": "synic", + "repo": "jbeans-emacs", + "sha256": "0yx64jrq1br0aylfn4mm26f71gyyw6kad97kv40sb0ashm3di96h", + "rev": "282f4236b11d42b2927f18b4e0b458bf61550867" }, "recipe": { "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.926", + "version": "20151217.954", "deps": [ "emacs" ] }, "fakespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-fakespace.git", - "sha256": "da0d29dcc08b6705f25b6638a3538ad8ad96d17ef58ca0c338c5d3981304d585", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-fakespace", + "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs", "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a" }, "recipe": { "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120817.1906", "deps": [] }, "auto-complete-chunk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/auto-complete-chunk.git", - "sha256": "91a6e619ed0b57297171d7003f91b33b70e62493c8c444e7856f10426fbf0bfe", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "auto-complete-chunk", + "sha256": "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li", "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe" }, "recipe": { "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.346", "deps": [ @@ -32301,14 +34250,15 @@ }, "hookify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/hookify.git", - "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", "rev": "e76127230716f7fab6662410c03c3872d17a172b" }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141216.1609", "deps": [ @@ -32318,28 +34268,30 @@ }, "gntp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/gntp.el.git", - "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", "rev": "767571135e2c0985944017dc59b0be79af222ef5" }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.2150", "deps": [] }, "github-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/github-browse-file.git", - "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1825", "deps": [ @@ -32348,28 +34300,30 @@ }, "diminish": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "8e9569286602d52c7b054ba408e706761a23e103e11bdda71403ba3b6ae5770e", + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "03kpwmm3pfh32jkxs6z10ghj66kn0vkhi92b0mxjrm82cql6k5cf", "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5" }, "recipe": { - "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1115", "deps": [] }, "easy-kill-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/easy-kill-extras.el.git", - "sha256": "08504928461648c965fd8893adc8b6f938667c748a9b6d0ff18d33502d4ed6a1", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "easy-kill-extras.el", + "sha256": "18fn9qnm0cwdy47nv6wafiy6cf7rnv4av4w8zmjwjj0n8ql4jl08", "rev": "aff957b4fd699331d21648780b2f0f6ffc3cb70b" }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.2117", "deps": [ @@ -32378,14 +34332,15 @@ }, "projekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/projekt.git", - "sha256": "bc325975f73b587097670288ee7b492e2f469a106f69817e97f8944004a47b43", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw", "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83" }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.348", "deps": [ @@ -32394,14 +34349,15 @@ }, "ob-ipython": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/ob-ipython.git", - "sha256": "1a7efd33ef8a6ee6f79af4a18b83ee95a167e073844658693a9cc47cf213b764", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "ob-ipython", + "sha256": "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs", "rev": "15011a8e1694d09a74094c5361a588bf586458f6" }, "recipe": { "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.507", "deps": [ @@ -32420,7 +34376,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1832", "deps": [] @@ -32434,21 +34390,22 @@ }, "recipe": { "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.1703", "deps": [] }, "ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ranger.el.git", - "sha256": "f1ac1d266754855b608732b8f45af8a916bcf4938dc295d49a264b3aed0e867b", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0yw61vnkljr6kba9bhldjgsbq5m9z1dg9f1jhxh5p1alcwk1vb7i", "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692" }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.36", "deps": [ @@ -32457,14 +34414,15 @@ }, "jq-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/jq-mode.git", - "sha256": "f7016ae21fb8965e8269e65fd06eb7274b80a2277bb8c493ba43300ce8779804", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "jq-mode", + "sha256": "014qfzl0qc23pa9w9f3v4yi80jr7nxpd0pz6d615x5mq3zi6l0gp", "rev": "305ead8f087b1b817291d5f0365e5226199ec58c" }, "recipe": { "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.651", "deps": [ @@ -32473,14 +34431,15 @@ }, "jedi-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi-direx.git", - "sha256": "57b18e630cce9b19d09bbda1096bac6b392bf61b8fdbe3f7cd4f95cfed2ef1dd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi-direx", + "sha256": "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap", "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117" }, "recipe": { "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.436", "deps": [ @@ -32490,14 +34449,15 @@ }, "yascroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/yascroll-el.git", - "sha256": "e59b1cc7968ce1e7950542936b02359fc8e898153f0fef22623978a7e1498a23", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5", "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51" }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.805", "deps": [ @@ -32506,42 +34466,45 @@ }, "general-close": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-berlin/general-close.git", - "sha256": "c4354bac232091576c3759147f5ed3c7e3e86d957e80839ce8769a062ecde6db", + "tag": "fetchFromGitHub", + "owner": "emacs-berlin", + "repo": "general-close", + "sha256": "1nz6rlp0d6knx2f8703yjmnyiqy7sdg7y52r6xn5g4904fn4ndf4", "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f" }, "recipe": { "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.213", "deps": [] }, "date-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/date-at-point.el.git", - "sha256": "115bc42208de7d0f747bb0639051d56f5f149c79d8e086d727e73ef3144051db", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "date-at-point.el", + "sha256": "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf", "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b" }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.618", "deps": [] }, "boogie-friends": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boogie-org/boogie-friends.git", - "sha256": "518abffd5f4721af0f22e0f85058591a57357763a74a7003e8c3f1621445b188", + "tag": "fetchFromGitHub", + "owner": "boogie-org", + "repo": "boogie-friends", + "sha256": "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv", "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96" }, "recipe": { "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1549", "deps": [ @@ -32554,14 +34517,15 @@ }, "flycheck-ledger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-ledger.git", - "sha256": "3b8fabb65c3ffecc21a401c935a6b46c19ed36db5fe8f763c4de0e6be8c28f95", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-ledger", + "sha256": "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv", "rev": "78392ba2c0c177c47bb795a1a191c29846837f57" }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1346", "deps": [ @@ -32570,28 +34534,30 @@ }, "killer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/killer.git", - "sha256": "1d8ce6eb72cd91309365324edcf631c3c45b54694461c06fb25a0e3961812b17", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x", "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212" }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120808.622", "deps": [] }, "flycheck-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/flycheck-tip.git", - "sha256": "0a47344a7c2a751307adeaf55363b884d0da1c93861ad885e546ccbc95330427", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r", "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e" }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.356", "deps": [ @@ -32602,14 +34568,15 @@ }, "ibuffer-rcirc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/ibuffer-rcirc.git", - "sha256": "c8a0a22a1243f973460f1641f685bbabc6cde0f652c3c73dc6850df96a38aa86", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "ibuffer-rcirc", + "sha256": "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m", "rev": "8a4409b1c679d65c819dee4085faf929840e79f8" }, "recipe": { "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.1518", "deps": [ @@ -32618,14 +34585,15 @@ }, "tablist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/tablist.git", - "sha256": "8e0be5e3ec0828f2b78f8aa64e6bffde4dff39d26b653b205842eb877f353348", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.18", "deps": [ @@ -32634,28 +34602,30 @@ }, "iedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/victorhge/iedit.git", - "sha256": "3f1c515cf74a96cc3683aef5b841b846ed378eda957a9887dd55a7e5b931b86a", + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25", "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12" }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.2222", "deps": [] }, "term-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-alert.git", - "sha256": "48ac0392a98827400ae7238cf3d983a51a933915179fcf5a87695b3158fcaa00", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk", "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86" }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141121.1405", "deps": [ @@ -32665,14 +34635,15 @@ }, "org-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/org-vcard.git", - "sha256": "bee5e91a9b759b0cd070ecc7bb506556e152072bc744a24fe4213cc7cd6d5dd4", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "org-vcard", + "sha256": "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy", "rev": "928827c1de3c90045df3ea4fb07db4af9d3b0a22" }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.22", "deps": [] @@ -32686,7 +34657,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1406", "deps": [] @@ -32699,7 +34670,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150616.1522", "deps": [ @@ -32708,14 +34679,15 @@ }, "mbo70s-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mbo70s-theme.git", - "sha256": "bf9cac357637994a5571a28b57c4c4d82545ef6d16801d5a7cfc93459b2b28ef", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mbo70s-theme", + "sha256": "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z", "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2" }, "recipe": { "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141122.842", "deps": [ @@ -32724,14 +34696,15 @@ }, "weather-metno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/weather-metno-el.git", - "sha256": "2adc62107ddf5904cc834c04a1fdd00743f3f470e83ef2e71558362b1e5799d6", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z", "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6" }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.2007", "deps": [ @@ -32741,28 +34714,30 @@ }, "gitconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/gitconfig.el.git", - "sha256": "e898334574359b9a8d899f6b5ec4557fb871f221ba9e6203833b27d5f51e98a0", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "gitconfig.el", + "sha256": "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678", "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741" }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.435", "deps": [] }, "auth-password-store": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/auth-password-store.git", - "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "auth-password-store", + "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq", "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1547", "deps": [ @@ -32774,28 +34749,30 @@ }, "org-context": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/org-context.git", - "sha256": "545940c9afdf0cccc8d99fd55518c326b8486f374e5f1837600cca7899cb2eed", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "org-context", + "sha256": "1sn0lhy5sb241wspv56s1snhsb8r5jwy9cwgaszcq3yibi34j38q", "rev": "47d1f0c9b9fb7547dbeed5b3315102a2d3c3e16f" }, "recipe": { "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.1506", "deps": [] }, "eyuml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/eyuml.git", - "sha256": "b6557c7b2dbdff6cfba93f3850754e4a7e55c3c5cd077092a77af430beff0184", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "eyuml", + "sha256": "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9", "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532" }, "recipe": { "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141028.1727", "deps": [ @@ -32805,28 +34782,30 @@ }, "cpputils-cmake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cpputils-cmake.git", - "sha256": "23357bdb09873ddab28422f822c2e23c4c78fd7887e02777ddd435486e056197", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cpputils-cmake", + "sha256": "0kjkqylg0fncizrgcr8xx2qgjr8id41904n2pip0gicbry1n8bqg", "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4" }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.603", "deps": [] }, "anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-anzu.git", - "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.605", "deps": [ @@ -32836,14 +34815,15 @@ }, "tj-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/katspaugh/tj-mode.git", - "sha256": "896b4c6c4500ba9caf79a468109f4bba03accd49b96ada33d22d9222fe29a30e", + "tag": "fetchFromGitHub", + "owner": "katspaugh", + "repo": "tj-mode", + "sha256": "152yrxridh4b3k808lmky4p6zm8q4jpff8hmnywqhfbrvwv1n6ah", "rev": "492b271c3736616c84a99c5b43897848bc350c96" }, "recipe": { "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1051", "deps": [ @@ -32861,21 +34841,22 @@ }, "recipe": { "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141025.1112", "deps": [] }, "web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-web.git", - "sha256": "c5132c8b28a28d6a1809c11510481cb3cfd90b87d92dc33b2c0f064e6f53ac0f", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-web", + "sha256": "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5", "rev": "483188dac4bc6b409b985c9dae45f3324a425efd" }, "recipe": { "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1401", "deps": [ @@ -32885,28 +34866,30 @@ }, "python-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/python-django.el.git", - "sha256": "d0a8f70f0599f6414a176cf0a0620667affd39c6a5fa851f2465c51057b193e1", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "python-django.el", + "sha256": "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h", "rev": "fc54ad74f0309670359b939f64d0f1fff68aeac4" }, "recipe": { "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.2304", "deps": [] }, "helm-google": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/helm-google.git", - "sha256": "6246633b3f929063c8f7552da721bf60b0ddaed78c2af92a1ce73781c4ae8556", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "helm-google", + "sha256": "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2", "rev": "21443456eefab39a2bfef00f1387c015e7dfac51" }, "recipe": { "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141228.540", "deps": [ @@ -32916,56 +34899,60 @@ }, "format-sql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/format-sql.el.git", - "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "format-sql.el", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0", "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.833", "deps": [] }, "writegood-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/writegood-mode.git", - "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150325.1315", "deps": [] }, "simpleclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/simpleclip.git", - "sha256": "0e1724351d66f424aedad16f60e04bf58c7df472ae5463b2fe03615258c96279", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s", "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861" }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1210", "deps": [] }, "pallet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.202", "deps": [ @@ -32977,14 +34964,15 @@ }, "org-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arbox/org-sync.git", - "sha256": "05e493fd5f3ee4efe9fb584fdf71b39ebc04d61c4bf7b11fb80ac142931303b3", + "tag": "fetchFromGitHub", + "owner": "arbox", + "repo": "org-sync", + "sha256": "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z", "rev": "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722" }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.954", "deps": [ @@ -32995,14 +34983,15 @@ }, "rcirc-styles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaron-em/rcirc-styles.el.git", - "sha256": "8beb3500e35ce58d62c9856672d56710fe9b8fd5641d7ca2c31f783adb2267a1", + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "18b74bdkly0zqfi7q7b4sn7rpzhhczap4rl5r5i8vrawwc03bswb", "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.2031", "deps": [ @@ -33011,14 +35000,15 @@ }, "jasminejs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stoltene2/jasminejs-mode.git", - "sha256": "e29b56085b3d1dbd6ac500333f3e128468222b45d48cc3e4856b1cd2411fd328", + "tag": "fetchFromGitHub", + "owner": "stoltene2", + "repo": "jasminejs-mode", + "sha256": "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l", "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a" }, "recipe": { "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150526.1905", "deps": [] @@ -33031,64 +35021,67 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.304", "deps": [] }, "twilight-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/developernotes/twilight-theme.git", - "sha256": "daf14286114bdb311ee5d423965403e28268857fadcee40ecc8ff30c6068fb34", + "tag": "fetchFromGitHub", + "owner": "developernotes", + "repo": "twilight-theme", + "sha256": "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs", "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b" }, "recipe": { "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120412.803", "deps": [] }, "apel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/apel.git", - "branchName": "apel-wl", - "sha256": "3531d891f7af7ee3e26bcea3ddda1f941e59fbe643c02e170b1a67b488b3bd69", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "apel", + "sha256": "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m", "rev": "8402e59eadb580f59969114557b331b4d9364f95" }, "recipe": { "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.1842", "deps": [] }, "cn-outline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/cn-outline.git", - "sha256": "99959dd3be36375031fc49b7aa0b2163c4dd1086d10970c43678c77b43996598", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "cn-outline", + "sha256": "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr", "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981" }, "recipe": { "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100321.1114", "deps": [] }, "yatemplate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mineo/yatemplate.git", - "sha256": "0c708b036320bbb6707c29219f09dc229f71af047ef79e8d36d8493e0518b6bf", + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c", "rev": "499e7f2ea245686c09915523657fa95905f70561" }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.107", "deps": [ @@ -33097,28 +35090,30 @@ }, "nginx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajc/nginx-mode.git", - "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.1611", "deps": [] }, "anything-git-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mechairoi/anything-git-grep.git", - "sha256": "fbcefa3ca15d3ed4a2f781d0cab1036b885cb1ca5814e9cc532a7cc9cedcde19", + "tag": "fetchFromGitHub", + "owner": "mechairoi", + "repo": "anything-git-grep", + "sha256": "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv", "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c" }, "recipe": { "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130608.2140", "deps": [ @@ -33127,30 +35122,32 @@ }, "emoji-fontset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/emoji-fontset.el.git", - "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", "rev": "3b8c2204284b95934383836b5b36efeefb65663b" }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.2247", "deps": [] }, "ergoemacs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "017e3a9253bc6351694ed1737f894c5bd19fb346bd53a2af9b48b7856deb39ae", - "rev": "6f16300270afffe64f65c48204049641ba3010bf" + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "0h46k3wjcrizb45j8xcr5chk30lvzn2v9892k4m4xcgp6jdhzycm", + "rev": "6b105ec09b45d8f67549b7c23ecf4cca26e27a40" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1600", + "version": "20151218.930", "deps": [ "emacs", "undo-tree" @@ -33158,14 +35155,15 @@ }, "cyphejor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/cyphejor.git", - "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "cyphejor", + "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw", "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.627", "deps": [ @@ -33174,14 +35172,15 @@ }, "motion-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/motion-mode.git", - "sha256": "fb5a955bafd44e89f58fa3fb186b7c3e1a0e796abaf23dea857405c2fed47fc5", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "motion-mode", + "sha256": "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1", "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55" }, "recipe": { "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140919.2056", "deps": [ @@ -33191,14 +35190,15 @@ }, "guide-key-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/guide-key-tip.git", - "sha256": "d2772007877e1985f1d2440cb0389fb7ca5ce464270c8dcc74a5e3d5b427d7e8", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "guide-key-tip", + "sha256": "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj", "rev": "d1773156b62566e1245f39936abd151844bd471c" }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140406.2020", "deps": [ @@ -33214,21 +35214,22 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.914", "deps": [] }, "ac-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-racer.git", - "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.341", "deps": [ @@ -33239,56 +35240,60 @@ }, "iregister": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/iregister.el.git", - "sha256": "65a1fb8e59301217d37e1981c0aada3152af0b18899c4b5fb7a38336160806b2", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "iregister.el", + "sha256": "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5", "rev": "6a48c66187289de5f300492be11c83e98410c018" }, "recipe": { "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.1607", "deps": [] }, "nemerle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rsdn/nemerle.git", - "sha256": "2670724d9b2dfd16b1450790660b2a3123aaf49d880240457cfae03e3e45b7dd", - "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" + "tag": "fetchFromGitHub", + "owner": "rsdn", + "repo": "nemerle", + "sha256": "0sybgk7pbqx6l3q1jk5x562m3rn3lg5i21qw8h522hfp7pk6i7p5", + "rev": "d57f26b57601a8092f0a9c95470931fbdeb0afa5" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.946", "deps": [] }, "tango-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmalsburg/tango-plus-theme.git", - "sha256": "4e6e1feb1e7018ba011bf3b9a801978e992485f341657e4274e2a6e5bd0fd6bd", + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "tango-plus-theme", + "sha256": "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf", "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf" }, "recipe": { "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140425.1711", "deps": [] }, "debpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/debpaste.el.git", - "sha256": "cc2775b327347e1fee64ff7211c747a3dc042dd8e03032eb6441e6d7d3a07946", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "debpaste.el", + "sha256": "1wzjdyadm8x63r874x8qi4p9ni1wdq28v3m9hca9jizkfqv9xxzz", "rev": "c296c063e5a75da1ebeea84ee35c6988651de416" }, "recipe": { "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140618.58", "deps": [ @@ -33297,42 +35302,45 @@ }, "kerl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/correl/kerl.el.git", - "sha256": "697a536809445368c0af71aab808544326258a54db145283c5e46496edd17fce", + "tag": "fetchFromGitHub", + "owner": "correl", + "repo": "kerl.el", + "sha256": "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9", "rev": "1732ee26213f021bf040919c45ad276aafcaae14" }, "recipe": { "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.1505", "deps": [] }, "haskell-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1230", "deps": [] }, "terraform-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-terraform-mode.git", - "sha256": "78a9871673a5852644bceccc58e025812aab890211da389a744ed09a1771f79f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "00yvgpw16i6kncxrs4vvky131c8gwmvf43vjkhblai2cag6s6bfq", "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.945", "deps": [ @@ -33342,28 +35350,30 @@ }, "octopress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaronbieber/octopress.el.git", - "sha256": "1e28c0ea69621d6d70093add1b20fe59dadafa5f2f87210359d857d7978a89b9", + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "octopress.el", + "sha256": "1fc9iabxfmyqb41j31rgbzxdmnjrzqh1pp9s15q6s7b2d7mc0a0y", "rev": "2e068887b17b72a69e29349d477333d067867eec" }, "recipe": { "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.514", "deps": [] }, "helm-dired-recent-dirs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akisute3/helm-dired-recent-dirs.git", - "sha256": "20848dec32498e5530f1b3ac993b7dce2d78dd1215235953dccda3e772735193", + "tag": "fetchFromGitHub", + "owner": "akisute3", + "repo": "helm-dired-recent-dirs", + "sha256": "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110", "rev": "3bcd125b44f5a707588ae3868777d91192351523" }, "recipe": { "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.814", "deps": [ @@ -33379,49 +35389,52 @@ }, "recipe": { "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140913.1458", "deps": [] }, "elpa-audit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elpa-audit.git", - "sha256": "3c02d197e84b70c5f5924db65d935d08eccc161476b6b49c6fb5f18e64e2b4b6", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy", "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc" }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.831", "deps": [] }, "sublimity": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/sublimity.git", - "sha256": "ec1a17d32b64c14ce46dc20ea4cd8f056da6604eac10834b2970d6002554e875", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "sublimity", + "sha256": "0xg8ahjh1mkh555q645c9rhacv85iz6s83n2dpj4rhb45g9if6pc", "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338" }, "recipe": { "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1417", "deps": [] }, "helm-w3m": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-w3m.git", - "sha256": "3fc602c483e64148f2e64130b28b350d05796004fe6e2370536e7eb222ae8734", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-w3m", + "sha256": "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz", "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a" }, "recipe": { "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.1024", "deps": [ @@ -33433,14 +35446,15 @@ }, "ietf-docs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/choppsv1/ietf-docs.git", - "sha256": "47b7fd4501a9853ff1a7cf9ca1a84f21568eccc01900783d2b54aecb95df24f7", + "tag": "fetchFromGitHub", + "owner": "choppsv1", + "repo": "ietf-docs", + "sha256": "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw", "rev": "ede30d6d26044069e1731fd20c0ab2324552c0b4" }, "recipe": { "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.457", "deps": [] @@ -33453,35 +35467,37 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131210.2131", "deps": [] }, "inline-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", - "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "tag": "fetchFromGitHub", + "owner": "Sodel-the-Vociferous", + "repo": "inline-crypt-el", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6", "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130409.707", "deps": [] }, "fsharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", - "sha256": "309fbe02556433c469d88b4204b369d97c774e275fdc62e20f068f63ca69d788", + "tag": "fetchFromGitHub", + "owner": "rneatherway", + "repo": "emacs-fsharp-mode-bin", + "sha256": "126pd75673q61zi65p2z4x77fz6rd6rh8hlbv1lw8cv4al1bx7rh", "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4" }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.936", "deps": [ @@ -33501,7 +35517,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121020.151", "deps": [ @@ -33510,14 +35526,15 @@ }, "auto-complete-pcmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-pcmp.git", - "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-pcmp", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26", "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.51", "deps": [ @@ -33528,28 +35545,30 @@ }, "regex-tool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/regex-tool.git", - "sha256": "7424939a09f4338ac4eb9a90cb868022d0ec0012bcbfde17627b3268821421f3", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "regex-tool", + "sha256": "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l", "rev": "62b292d93f29e4c4767b0800d53c656b9f626892" }, "recipe": { "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131104.1634", "deps": [] }, "macrostep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/macrostep.git", - "sha256": "29828872878cc8812c5f84f890be881cc49a7aee1cd73d41ee3e071f90f45aca", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "macrostep", + "sha256": "0j95lv4b01p8a5fpxnj5qs2ajg1yxnsg97vw3184dfy9r5hy7ryb", "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38" }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.345", "deps": [ @@ -33558,28 +35577,30 @@ }, "keydef": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/keydef.git", - "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090428.1431", "deps": [] }, "flymake-coffee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-coffee.git", - "sha256": "afb781c703f30ebbe1216bd222ecc3b78c0e4c696d8aab5967756680d50bd3e3", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7", "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b" }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140809.524", "deps": [ @@ -33588,14 +35609,15 @@ }, "magit-svn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-svn.git", - "sha256": "daba06765907b213c286c2563ae840e8b3c057331d7406a6b4c2aa2e8e8ef43f", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "0gzlis72xan2njk0cx0x6dbw1cz883l3lmn2hv117ch7b5v0dfns", "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf" }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.257", "deps": [ @@ -33605,14 +35627,15 @@ }, "scion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nominolo/scion.git", - "sha256": "b9366874463b0236c000ce442318ddccdbf586484869a244c7b894b3f23cc52e", + "tag": "fetchFromGitHub", + "owner": "nominolo", + "repo": "scion", + "sha256": "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4", "rev": "99b4589175665687181a932cd836850205625f71" }, "recipe": { "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130315.755", "deps": [] @@ -33625,21 +35648,22 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1620", "deps": [] }, "company-arduino": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/company-arduino.git", - "sha256": "dd6de2ec33694733b30ddd5297fed6fe3c770239e190edbcc4ab5ac72b59fd18", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "company-arduino", + "sha256": "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx", "rev": "fd31103ab73acd6c77e4361db86e472619903f80" }, "recipe": { "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.326", "deps": [ @@ -33654,14 +35678,15 @@ }, "diffview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgalgs/diffview-mode.git", - "sha256": "ae33123df7ab7fe60aa9690fde399e63fc5078eb76adbedb5bf360d20f423c36", + "tag": "fetchFromGitHub", + "owner": "mgalgs", + "repo": "diffview-mode", + "sha256": "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf", "rev": "031b70913e755c5e55222680f80185032a7d1728" }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.11", "deps": [] @@ -33674,35 +35699,37 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.731", "deps": [] }, "scf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/scf-mode.git", - "sha256": "6885487ca009259dfa43dcd822e70bc383d0ba0802d481ced7756ac1ae55f054", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "scf-mode", + "sha256": "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8", "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2" }, "recipe": { "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2048", "deps": [] }, "go-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/go-projectile.git", - "sha256": "e279f6bc57a0d023a8809a3cdc44c809dc58c0587768822503c60bd38246df71", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "go-projectile", + "sha256": "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y", "rev": "0a974097ef74b6045585c6120309c208b002f6e6" }, "recipe": { "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1058", "deps": [ @@ -33714,14 +35741,15 @@ }, "align-cljlet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gstamp/align-cljlet.git", - "sha256": "572b4fb3fc9aa49984bf08aff72fdb47da6e04cd74fd8cdb7c078520250e7187", + "tag": "fetchFromGitHub", + "owner": "gstamp", + "repo": "align-cljlet", + "sha256": "11vi1qjj1187gkdqrzblrl26xnj7vcpzgbq8py29k94szjrlyasp", "rev": "eb8d18058838167a13e3272ac9fd597d7c183b35" }, "recipe": { "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.154", "deps": [ @@ -33730,14 +35758,15 @@ }, "framesize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-framesize.git", - "sha256": "b3915afb41d4f8af203c152433d272f0dc7e8e1290c9b03d53ed702b0def0986", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-framesize", + "sha256": "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk", "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da" }, "recipe": { "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131017.1632", "deps": [ @@ -33746,14 +35775,15 @@ }, "helm-cscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/helm-cscope.el.git", - "sha256": "1d245016c28d75f0265727aa3f359c989ede8919bb787f57d4171fc76047115a", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "helm-cscope.el", + "sha256": "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x", "rev": "ddc3f750a92044d6712585e29d3dbaface2e34db" }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150609.849", "deps": [ @@ -33765,42 +35795,45 @@ }, "cil-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ForNeVeR/cil-mode.git", - "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "tag": "fetchFromGitHub", + "owner": "ForNeVeR", + "repo": "cil-mode", + "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1", "rev": "fcd2e407aeefab9ae465b072eea33dc115506fff" }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.450", "deps": [] }, "dylan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dylan-lang/dylan-mode.git", - "sha256": "90178b5c4796e8e9aa17840b6903119143f080e3eaa064c84d332b500746ddaf", + "tag": "fetchFromGitHub", + "owner": "dylan-lang", + "repo": "dylan-mode", + "sha256": "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny", "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e" }, "recipe": { "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.37", "deps": [] }, "babel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/babel.git", - "sha256": "d8846bf882a27727e7c8a46976cf17c0b4e5e44e6bb7932745495e03de882f01", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg", "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6" }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131231.925", "deps": [] @@ -33813,35 +35846,37 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.1240", "deps": [] }, "todotxt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rpdillon/todotxt.el.git", - "sha256": "54bd83090c4888458e8dba884db2e32b2a0e2bc8c8d85b59bdaba627afaa4457", + "tag": "fetchFromGitHub", + "owner": "rpdillon", + "repo": "todotxt.el", + "sha256": "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal", "rev": "fc83f954aea75065aa9788ee07027c94e76a9364" }, "recipe": { "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.2129", "deps": [] }, "helm-firefox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-firefox.git", - "sha256": "c40b2b06571e657a0b81f215102dc0f35ed0aeaede97ea894350867687096c5f", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0pvc163pd1jh8f4ym5yymspd0ppkq0ni05gjh45plr8yaw32n2y4", "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9" }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1318", "deps": [ @@ -33859,35 +35894,37 @@ }, "recipe": { "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2028", "deps": [] }, "engine-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hrs/engine-mode.git", - "sha256": "93b4c36aa192ad911c3ac04aeed2597817e71d9a4ca1e39de834d5e45bf827cc", + "tag": "fetchFromGitHub", + "owner": "hrs", + "repo": "engine-mode", + "sha256": "1k17z1dy9m9lx2fy78ack8fyf5vqb79fwjn078f93bcjl5mc7d4k", "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017" }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1235", "deps": [] }, "company-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randomphrase/company-c-headers.git", - "sha256": "5a661af7448f5e67a2571a746e3025b8b997711856cda7502d649a32e74c55e9", + "tag": "fetchFromGitHub", + "owner": "randomphrase", + "repo": "company-c-headers", + "sha256": "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf", "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352" }, "recipe": { "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1101", "deps": [ @@ -33897,28 +35934,30 @@ }, "textmate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/textmate.el.git", - "sha256": "5f4b8084d501ce9dfbd7bb356d56465c00fb857532fdc4f36b713f8f73476ec3", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh", "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781" }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110816.1646", "deps": [] }, "flycheck-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/squiggly-clojure.git", - "sha256": "dfb00ae36fb4091db04d4a6e90ebc5b89d9910d51c3cdfad6c72e7af71059e08", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "0zldhxlbp6m2gnqbb3dgmj32hnx1lh7wvjcpw1s4gz980ncgc8k8", "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3" }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.831", "deps": [ @@ -33930,14 +35969,15 @@ }, "sotclojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-clojure.git", - "sha256": "ecb1f94ac96bbef1f0189da55108d830cad7367ca6b9ae44137c0fa7e9bea2b2", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-clojure", + "sha256": "19zh8gijrvggwqaxxd9w2dbxvysjdyz8zvvnvbdys2xz6xwyq2ik", "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354" }, "recipe": { "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1856", "deps": [ @@ -33955,77 +35995,82 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.2153", "deps": [] }, "el-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/el-autoyas.el.git", - "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120918.817", "deps": [] }, "px": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaptel/preview-latex.git", - "sha256": "c352bf8aa5bc257b88a36057d0ae07e87b8b85eba74f0c8804eaecfb7a8de481", + "tag": "fetchFromGitHub", + "owner": "aaptel", + "repo": "preview-latex", + "sha256": "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3", "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37" }, "recipe": { "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141006.748", "deps": [] }, "osx-pseudo-daemon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/osx-pseudo-daemon.git", - "sha256": "e0e01db9b041c9f4e4cc8d26537684a1bf39810a10757082a47888a4137669cc", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "osx-pseudo-daemon", + "sha256": "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk", "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841" }, "recipe": { "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131026.1930", "deps": [] }, "system-specific-settings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", - "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "emacs-system-specific-settings", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7", "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140818.957", "deps": [] }, "haskell-emacs-base": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1059", "deps": [ @@ -34034,28 +36079,30 @@ }, "leerzeichen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/leerzeichen.el.git", - "sha256": "7637866b4efd0378e88ffe931ec87d92ea59dabf92298f57319e87d72ba7397b", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "leerzeichen.el", + "sha256": "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn", "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626" }, "recipe": { "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.28", "deps": [] }, "rcirc-groups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/rcirc-groups.git", - "sha256": "6498eafb8560e57a860437828158040a1f19890aefaca3bf6002f90846c7092c", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "rcirc-groups", + "sha256": "0b09qx30iy82c2zs7b7g1a4ij7qa0ic830ip0j37mrb0hpxym634", "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2" }, "recipe": { "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1113", "deps": [] @@ -34068,21 +36115,22 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080412.955", "deps": [] }, "clues-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-clues-theme.git", - "sha256": "591dbf7fcb044674b12e64e24bac823a7a72bb0ea150a119a5e95126cc1ad43a", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-clues-theme", + "sha256": "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar", "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda" }, "recipe": { "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140922.2256", "deps": [ @@ -34091,28 +36139,30 @@ }, "ert-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-async.el.git", - "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.859", "deps": [] }, "http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/http.el.git", - "sha256": "6c21f9ddd09225eb4ffdc2e1f5eb3d44e0b76b435e9af8daa3f3f4989174d4b3", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "http.el", + "sha256": "0k9ksbpcdx5asjcvnivm8hpkm55qjz348gb8ihx5q5448h89ksrz", "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988" }, "recipe": { "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.959", "deps": [ @@ -34123,28 +36173,30 @@ }, "textmate-to-yas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/textmate-to-yas.el.git", - "sha256": "09fde68627dab32b179dee96309479add568a6a3e3b6a3ab9fde4209ae83b0c5", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "textmate-to-yas.el", + "sha256": "1idhhfp0jhnykyms7dp3lfk6imddg6a315pfklbjpcys4y3fdz89", "rev": "74cbf0877ab6391f920d2d7a588e363423d61227" }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.746", "deps": [] }, "password-vault": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/password-vault.git", - "sha256": "13cb87a3852e4a4d2aea6466e7460008ba1de9e15d5e0d0c10f1e9eee8bf0425", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "password-vault", + "sha256": "0984pzlfxsgi2060spjxw7livfh8013ffrk4x8m4sjifhniqgjqk", "rev": "e47d99bb092e150472f1989ab3ac5a4752863515" }, "recipe": { "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2141", "deps": [ @@ -34154,14 +36206,15 @@ }, "mustache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/mustache.el.git", - "sha256": "b3f952149d862839c727d60bb3ffad2e9844d7caec7151c453cd9195e55d3665", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "mustache.el", + "sha256": "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q", "rev": "b0ea352813592424164520a49e86c04600242752" }, "recipe": { "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1607", "deps": [ @@ -34172,14 +36225,15 @@ }, "dracula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenorocha/dracula-theme.git", - "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "tag": "fetchFromGitHub", + "owner": "zenorocha", + "repo": "dracula-theme", + "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v", "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1045", "deps": [ @@ -34188,28 +36242,30 @@ }, "sibilant-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jbr/sibilant-mode.git", - "sha256": "50d7c2c154ef3853e9296c3e44657ec1f29d87f701465b8b404c7e4bb9bbea98", + "tag": "fetchFromGitHub", + "owner": "jbr", + "repo": "sibilant-mode", + "sha256": "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6", "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab" }, "recipe": { "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1545", "deps": [] }, "elixir-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hisea/elixir-yasnippets.git", - "sha256": "0d1a4941cca786503235aa01a50d2fee1797833a648cdb6e6f3c8528ce20b8e9", + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd", "rev": "980ca7626c14ef0573bec0035ec7942796062783" }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.739", "deps": [ @@ -34224,21 +36280,22 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1427", "deps": [] }, "drupal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-mode.git", - "sha256": "8040a65a84757b8f862263d351935cef84e15c35ae3ded8c66788361ac8ed951", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr", "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f" }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1427", "deps": [ @@ -34247,14 +36304,15 @@ }, "livid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pandeiro/livid-mode.git", - "sha256": "d7f43c2e637a9d57f412e8cedbc2518c3d596ca7977664974a352934ef6f149d", + "tag": "fetchFromGitHub", + "owner": "pandeiro", + "repo": "livid-mode", + "sha256": "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p", "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26" }, "recipe": { "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131116.744", "deps": [ @@ -34264,14 +36322,15 @@ }, "company-flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/company-flx.git", - "sha256": "dd6d9acc81050a79010ed70f42e5849214b4670a77c61aa058d72e0b79194b1f", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "company-flx", + "sha256": "0qvscm1r7c1apj8cj8qvrqfiki7xfaxg4hpw2kynbg7v7lynj94j", "rev": "da73fc0d306fdb7335a801353b9798d1e1cfc1c1" }, "recipe": { "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1301", "deps": [ @@ -34282,30 +36341,32 @@ }, "org-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robtillotson/org-pandoc.git", - "sha256": "3e09172f6aaf2e8651bad2c8c2dfeffa20227619bede404eaebdc095389c5584", + "tag": "fetchFromGitHub", + "owner": "robtillotson", + "repo": "org-pandoc", + "sha256": "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq", "rev": "84b5df1f5516704540e19e048e18f437dc090a7d" }, "recipe": { "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130729.2050", "deps": [] }, "company-jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-company-jedi.git", - "sha256": "919b6adf148800782f89d8e14e22aad116323b9a0bc39d81258a5ed799fcfb2a", - "rev": "5aaf08f6ed32b1d749c6f1aeb424227256fd7f51" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-company-jedi", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1", + "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b" }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.1641", + "version": "20151216.2121", "deps": [ "cl-lib", "company", @@ -34322,21 +36383,22 @@ }, "recipe": { "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1050", "deps": [] }, "termbright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/termbright-theme-el.git", - "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "termbright-theme-el", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d", "rev": "bec6ab14336c0611e85f45486276004f16d20607" }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2135", "deps": [ @@ -34345,42 +36407,45 @@ }, "jape-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tanzoniteblack/jape-mode.git", - "sha256": "4d1ce0799ac7e614a261de0adeed0603d7079c42eb9f104b77ad7ce613075abf", + "tag": "fetchFromGitHub", + "owner": "tanzoniteblack", + "repo": "jape-mode", + "sha256": "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj", "rev": "85b9182850707b5d107391f6caee5bd401507a7d" }, "recipe": { "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140903.1006", "deps": [] }, "list-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/list-utils.git", - "sha256": "45192672fbfd9b6c54a81e18e3187e2c2866cd1914ad64cbf36ba2b747024439", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn", "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832" }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "helm-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ack.git", - "sha256": "0548d12d2f09d331ee7cc788f7fde023ec5e04cd1e5edad94d19ae4f4c759192", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5", "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3" }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141030.726", "deps": [ @@ -34390,14 +36455,15 @@ }, "fasd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/emacs-fasd.git", - "sha256": "e5a3c3a919967d0f0ab9033473f142ace97196242a39c33d54479bd0f2b05854", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "emacs-fasd", + "sha256": "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5", "rev": "8726a367048054add81ecea7543de00688056735" }, "recipe": { "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.116", "deps": [ @@ -34406,14 +36472,15 @@ }, "packed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/packed.git", - "sha256": "ab8d3c5083ea7ad023df60592a79773b08c253c361e3e5d21cae97171ad3831c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0743scd1g5xf3k9fbqv1qd9w421vfxwjlnb0vwix0ypahd83r3db", "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7" }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.638", "deps": [ @@ -34423,14 +36490,15 @@ }, "guide-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kai2nenobu/guide-key.git", - "sha256": "6084978f3067e86f41bc1cce6fbb134be3e1a6a5ed0fd868762e100e0019c6ad", + "tag": "fetchFromGitHub", + "owner": "kai2nenobu", + "repo": "guide-key", + "sha256": "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0", "rev": "9236d287a7272e307fb941237390a96037c8c0a2" }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.35", "deps": [ @@ -34441,14 +36509,15 @@ }, "jabber-otr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/legoscia/emacs-jabber-otr.git", - "sha256": "e89d6593fc5b75ea6c641cd4738ed00c9fe8048c3d8c76a611aecb8fbcc290f7", + "tag": "fetchFromGitHub", + "owner": "legoscia", + "repo": "emacs-jabber-otr", + "sha256": "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf", "rev": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0" }, "recipe": { "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.644", "deps": [ @@ -34458,14 +36527,15 @@ }, "pip-requirements": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/pip-requirements.el.git", - "sha256": "94def724a3c7064c2d85515c25bde09e0373439fa782aba0d9632af9a1f0d51e", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "pip-requirements.el", + "sha256": "05ix3xwqhnxjvc6cr006hhcgzhrp88jz9x4iswb0sidwysidpgnx", "rev": "f8d3ecaee9090cee267476d4551c905c412d6017" }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.1558", "deps": [ @@ -34474,14 +36544,15 @@ }, "flx-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/flx-isearch.git", - "sha256": "a06592cd6abb9c030d2d16da1db73d5fde7103567702ac44c0e2accb04bd24f4", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "flx-isearch", + "sha256": "0ajc3vvgswqk57z7nmcx7npryi8ph9kzvw588bvqcg37a8l3nzh0", "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318" }, "recipe": { "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2259", "deps": [ @@ -34492,28 +36563,30 @@ }, "runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thamer/runner.git", - "sha256": "095fcab6fd5e78ef847e7a93c3c3d1d2033326642fa0ed4bc0222a1178c9bf9d", + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "runner", + "sha256": "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9", "rev": "f5983931899282cf8b10ad197d61860a61cf070d" }, "recipe": { "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.416", "deps": [] }, "cliphist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cliphist.git", - "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.729", "deps": [ @@ -34522,14 +36595,15 @@ }, "chinese-fonts-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-fonts-setup.git", - "sha256": "b37f7a04811777f19d048a571a69794a6fef25e204cef73c9d1833561669022e", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-fonts-setup", + "sha256": "08ln66kx73019klzw0rsvlz3cs4ch8wxjfljmkyswjjd179h882c", "rev": "bac9c65f7a78b0c70a6cce9658395d3bc24b02fa" }, "recipe": { "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.259", "deps": [ @@ -34538,28 +36612,30 @@ }, "mark-multiple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/mark-multiple.el.git", - "sha256": "6ea686792a8b34e7638bce6e376a2f9c67578550944a30db4107cb07f075adbe", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "mark-multiple.el", + "sha256": "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29", "rev": "f6a53c7c5283d640ae718f4548b0fda78877a375" }, "recipe": { "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121118.954", "deps": [] }, "zossima": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/zossima.git", - "sha256": "6944685180d61180f934c1f5977883250be7fa3c7da1d8cf02dbfd910feffc39", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "zossima", + "sha256": "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39", "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375" }, "recipe": { "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121123.1835", "deps": [ @@ -34568,14 +36644,15 @@ }, "haskell-emacs-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.916", "deps": [ @@ -34584,14 +36661,15 @@ }, "flycheck-rust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-rust.git", - "sha256": "084cb755b7121327a667134adbe0728562690bb6cf7b5621dbcc86b53c24b598", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-rust", + "sha256": "080xvb83mcg5snk3avlhppr13srd2lba73298ygy18ziizpv0zig", "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1" }, "recipe": { "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.346", "deps": [ @@ -34602,28 +36680,30 @@ }, "ido-sort-mtime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pkkm/ido-sort-mtime.git", - "sha256": "6d8be4014ecb87a2f96fe7e940ec8a56f114f721211b8e1e888418e4bcc86c70", + "tag": "fetchFromGitHub", + "owner": "pkkm", + "repo": "ido-sort-mtime", + "sha256": "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd", "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e" }, "recipe": { "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.730", "deps": [] }, "synosaurus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rootzlevel/synosaurus.git", - "sha256": "5a989222da909804b137ffd3e0d014d68c09692e7b292faf2b2953a6b8cde9ff", + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s", "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae" }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1249", "deps": [ @@ -34632,28 +36712,30 @@ }, "php-boris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/php-boris.git", - "sha256": "1430f0fef09c288cf6cd9da99bcd0658b6caeb0eb34fc482bee52c0c6af37181", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "php-boris", + "sha256": "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy", "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb" }, "recipe": { "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130527.321", "deps": [] }, "flycheck-color-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-color-mode-line.git", - "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-color-mode-line", + "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5", "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131125.2338", "deps": [ @@ -34664,14 +36746,15 @@ }, "yaml-tomato": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RadekMolenda/yaml-tomato.git", - "sha256": "4e00121f5fb706fb25f6762affdc59a166e69e227ba57770f6041117fc26f0b4", + "tag": "fetchFromGitHub", + "owner": "RadekMolenda", + "repo": "yaml-tomato", + "sha256": "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy", "rev": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14" }, "recipe": { "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.153", "deps": [ @@ -34680,14 +36763,15 @@ }, "ph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/ph.git", - "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130312.1337", "deps": [ @@ -34696,14 +36780,15 @@ }, "auto-complete-auctex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/monsanto/auto-complete-auctex.git", - "sha256": "223f32ed236d8495abc937ef14915fcec837ad9593304560c0c15f4a0b4631f3", + "tag": "fetchFromGitHub", + "owner": "monsanto", + "repo": "auto-complete-auctex", + "sha256": "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2", "rev": "855633f668bcc4b9408396742a7cb84e0c4a2f77" }, "recipe": { "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140223.1158", "deps": [ @@ -34713,14 +36798,15 @@ }, "py-smart-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/py-smart-operator.git", - "sha256": "0f24aae1ad61a5fa845f81460bc2d19f0545651a6ab032aba9644c41b73a0c97", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "py-smart-operator", + "sha256": "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd", "rev": "be4e32572d4128143f46e1874eaa6f3da94fdffe" }, "recipe": { "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.2110", "deps": [ @@ -34729,14 +36815,15 @@ }, "es-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/es-mode.git", - "sha256": "33491a6f2f6a38c304f0c265e4e3d8bf5b794beba1ac9beb87a40abc459982b1", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "1cc2k52vq2m4hzmrpb51xd5pjnxzv3iy8rf2y02c6f3a5xpilj9k", "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c" }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2233", "deps": [ @@ -34745,14 +36832,15 @@ }, "flymake-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-ruby.git", - "sha256": "c97059feedb295806e47b30bec7527c1bbda4f7dafb276ac2bfd5c7ce1fcebb0", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109", "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2" }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1259", "deps": [ @@ -34761,14 +36849,15 @@ }, "projector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/projector.el.git", - "sha256": "83f29b16d8e64810af54b5a9347ccb04e5744223fddba2338336251bb95f1f79", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "projector.el", + "sha256": "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3", "rev": "fd9553a27d665889646b881b64a8f1577b47882b" }, "recipe": { "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1441", "deps": [ @@ -34779,14 +36868,15 @@ }, "font-lock-studio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/font-lock-studio.git", - "sha256": "1388d6eaf6d895414c9e95e4b59a06260b57bf20125c14a524a29edf5e16c312", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "font-lock-studio", + "sha256": "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k", "rev": "35d510e4b16939621d7200bf67021f773cdb4ae5" }, "recipe": { "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141201.1858", "deps": [ @@ -34795,14 +36885,15 @@ }, "commander": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/commander.el.git", - "sha256": "fe3ba67fab270b2df01713f841072f3e91f6bb779b94be8656f8f1b423b6b1fd", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1", "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859" }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140120.1252", "deps": [ @@ -34814,28 +36905,30 @@ }, "olivetti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/olivetti.git", - "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "olivetti", + "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h", "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.2129", "deps": [] }, "gmpl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gmpl-mode.git", - "sha256": "6443d44f30b5a918ebeb76e43b698ae9669d2960318c3bdcb3cf0acd7991a621", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4", "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e" }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1349", "deps": [ @@ -34844,14 +36937,15 @@ }, "helm-ag-r": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/helm-ag-r.git", - "sha256": "8267620953548bf32fa9637019ffb7bf2595d6d0089abd47e9abdfe6006b232c", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "helm-ag-r", + "sha256": "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa", "rev": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8" }, "recipe": { "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.931", "deps": [ @@ -34860,14 +36954,15 @@ }, "back-button": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/back-button.git", - "sha256": "58e1221a3f6ad4c07f86324716aa07e21f152a9d3c6a46a6c4cfc916f4c7369c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l", "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e" }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1504", "deps": [ @@ -34881,14 +36976,15 @@ }, "evil-indent-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/evil-indent-plus.git", - "sha256": "46639181a2d738d70eccb8e99a1645732b72951d98bc1f20ac5b72a69b0fd9bc", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "evil-indent-plus", + "sha256": "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6", "rev": "0c7501e6efed661242c3a20e0a6c79a6455c2c40" }, "recipe": { "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1306", "deps": [ @@ -34898,14 +36994,15 @@ }, "flymake-puppet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benprew/flymake-puppet.git", - "sha256": "b5b051da20ebc85022236b274af16372cf6a52d4f8a04341a1478a173b967ee4", + "tag": "fetchFromGitHub", + "owner": "benprew", + "repo": "flymake-puppet", + "sha256": "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m", "rev": "fc4cd25aeac37ed5722bc586d5350fd06ee3067c" }, "recipe": { "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141006.2055", "deps": [ @@ -34914,14 +37011,15 @@ }, "nclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/nclip.el.git", - "sha256": "3a4e5e36116bf889b1f477b6887ae190d5bd543f147765494cf7243ccf960f9d", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "nclip.el", + "sha256": "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis", "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67" }, "recipe": { "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130617.1515", "deps": [] @@ -34935,63 +37033,67 @@ }, "recipe": { "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120312.1525", "deps": [] }, "ox-twbs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marsmining/ox-twbs.git", - "sha256": "79a728c56477fcac5aeb19c3bb6e1c51b6f79660b2a7b60d3bb3ce79640fba5e", + "tag": "fetchFromGitHub", + "owner": "marsmining", + "repo": "ox-twbs", + "sha256": "0pms1xj7kkmk7c6vd9xjc2bggdji3ipbphqrxddarz3pck2ji9vr", "rev": "20b97120eed058a03312157c6646c4569c0168ac" }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1248", "deps": [] }, "mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/mediawiki-el.git", - "sha256": "13da948080fde997ddf15b0f8372d514cc542f168fcf4a1e71e4b84835673f76", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1cdr5p9x9bxnfy9mgz7l70zfzfwcjdhydw0jhdvs6qlqaqmm4qqq", "rev": "47875f753599e309f1c3da5beb4805487ab75636" }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150711.1934", "deps": [] }, "jknav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aculich/jknav.el.git", - "sha256": "3256a49defa4e45326cb8661fe7d38ff27ab8cffa4e1914a419cea29b3f0abc5", + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "jknav.el", + "sha256": "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij", "rev": "861245715c728503dad6573278fdd75c271dbf8b" }, "recipe": { "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121006.1525", "deps": [] }, "oldlace-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/oldlace-theme.git", - "sha256": "027df16abd88614e195aba6ada9735eb68f14e4ec6912bbd432584db75ee2e79", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "oldlace-theme", + "sha256": "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82", "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6" }, "recipe": { "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150705.800", "deps": [ @@ -35000,28 +37102,30 @@ }, "0blayout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/etu/0blayout-mode.git", - "sha256": "26ad62cd0038a2f12d6aee27ead70d041ceea772efb8c034bb9572adc4bf2ff6", + "tag": "fetchFromGitHub", + "owner": "etu", + "repo": "0blayout-mode", + "sha256": "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96", "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc" }, "recipe": { "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.549", "deps": [] }, "afternoon-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/emacs-afternoon-theme.git", - "sha256": "8bfaab7f653532842259e29e8bcd10e49665553668e96c84bb95dba2b169a5a5", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emacs-afternoon-theme", + "sha256": "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb", "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a" }, "recipe": { "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140104.1259", "deps": [ @@ -35030,14 +37134,15 @@ }, "helm-pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-pydoc.git", - "sha256": "fa1e182466b4e2fc880ac4f75f4afd7ade47f3da443810199b10c9e8c9a7fd4e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy", "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2" }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.924", "deps": [ @@ -35047,14 +37152,15 @@ }, "visual-regexp-steroids": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/visual-regexp-steroids.el.git", - "sha256": "150471be3a7d1586568a82fa68331ff653def23641e16ea3190cc8f2ad7e4f0e", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "visual-regexp-steroids.el", + "sha256": "03jggsnz5j0c36inxqa16vrdwlzn3wrniyl2i9b8c5bx7az7210m", "rev": "2a50710dea5be872b31ea56f74b4cd57d6e61461" }, "recipe": { "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150411.616", "deps": [ @@ -35063,14 +37169,15 @@ }, "org-pdfview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/org-pdfview.git", - "sha256": "2086bb415a309d69de4784cbc3b69e4cffb846634ea7bf31af13e489ef8aac1f", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "07xcibpqkr0kmwqvz9sfcd3bizscksvc7jw48zg6k79hb90vp1i0", "rev": "8f66629e883e0d490584bbf4610cc91938694889" }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1544", "deps": [ @@ -35080,14 +37187,15 @@ }, "company-edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-edbi.git", - "sha256": "668dcf4440a6836c7150ffa6f39fb86155020e4a95e633c0652a79c057a60ac2", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-edbi", + "sha256": "1fymxqdch9qnn68h3x4gq6f5fq9i4z6blsqyry2xmdvfrp407160", "rev": "38758829b7fd9c1bb152b4d54b5317a20a96e411" }, "recipe": { "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.414", "deps": [ @@ -35099,42 +37207,45 @@ }, "flyparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jiyoo/flyparens.git", - "sha256": "5a82bf6372c569887e08dcd829aefd8f5f1b86e2963b102d050eac0357c1045f", + "tag": "fetchFromGitHub", + "owner": "jiyoo", + "repo": "flyparens", + "sha256": "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb", "rev": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398" }, "recipe": { "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140723.1346", "deps": [] }, "aozora-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/aozora-view.git", - "sha256": "7474aff942ce2a27f41d8a546d33c93b8d1bfceb92ecd59c78f456d9d5f84814", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "aozora-view", + "sha256": "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l", "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd" }, "recipe": { "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.817", "deps": [] }, "tinkerer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/tinkerer.el.git", - "sha256": "54af1856cfbbb1e056adcdc79a3501392fa3ade256b51a938ca26f2804dc115b", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "tinkerer.el", + "sha256": "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2", "rev": "1125780d1fba0330435fcbe943716032ed543a57" }, "recipe": { "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.49", "deps": [ @@ -35143,14 +37254,15 @@ }, "readability": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/emacs-readability.git", - "sha256": "0f01cca469c74c6b957c86244c422251275e2c1fad281f5dd9b033fe9647e14d", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-readability", + "sha256": "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g", "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce" }, "recipe": { "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140715.1927", "deps": [ @@ -35161,14 +37273,15 @@ }, "pushbullet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/revolver.git", - "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140809.732", "deps": [ @@ -35178,42 +37291,45 @@ }, "git-blame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsgates/git-emacs.git", - "sha256": "02d658e3799da5e2ee4b41f19742f31a949e7b10c993445b216e7a53ff81cfa3", + "tag": "fetchFromGitHub", + "owner": "tsgates", + "repo": "git-emacs", + "sha256": "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx", "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d" }, "recipe": { "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110509.1126", "deps": [] }, "io-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/superbobry/io-mode.git", - "sha256": "371f85a0e705c9b9b5ab360a1717ddc1e19157eef566e157a52056f857edb783", + "tag": "fetchFromGitHub", + "owner": "superbobry", + "repo": "io-mode", + "sha256": "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp", "rev": "79f2de13d8a448892266da26642525747d048aa8" }, "recipe": { "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.521", "deps": [] }, "command-log-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/command-log-mode.git", - "sha256": "956ac8c1ed5004b0f55c2f7ee5a0f6232c7365073a129706ddb552eb979ede3a", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "command-log-mode", + "sha256": "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm", "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850" }, "recipe": { "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.916", "deps": [] @@ -35226,21 +37342,22 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120108.645", "deps": [] }, "helm-wordnet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/helm-wordnet.git", - "sha256": "4d5ace400079ed22ff9a20fefb2111cba833c12c93201791a475556b47285249", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-wordnet", + "sha256": "0jaj513nnmbmlj8if84k5k0k7a6b24hzpzi0kbzj5vbr010cwnjd", "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4" }, "recipe": { "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1633", "deps": [ @@ -35251,28 +37368,30 @@ }, "artbollocks-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sachac/artbollocks-mode.git", - "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "tag": "fetchFromGitHub", + "owner": "sachac", + "repo": "artbollocks-mode", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91", "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141212.1532", "deps": [] }, "firefox-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/emacs-firefox-controller.git", - "sha256": "04f4b8b21bddcd044bd471eeab5efaddfbf80f71dbb035175bc9ac7c1e4ed35f", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "emacs-firefox-controller", + "sha256": "0pyk9qg7rb69bcbkbc6vf47ziyyxz9gapvkisi5h9kfx3frbix04", "rev": "aeed30509fefc78463531b9e006a795d868d4e74" }, "recipe": { "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1440", "deps": [ @@ -35283,14 +37402,15 @@ }, "org-elisp-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/org-elisp-help.git", - "sha256": "408bb412ede61b95635f668d5f4974c3b3688ae9558020013f7cef1446e5486d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "org-elisp-help", + "sha256": "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0", "rev": "df319441e528a0cad42d29e71fc3547a61dde1c5" }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130423.1745", "deps": [ @@ -35300,29 +37420,30 @@ }, "pinboard-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danieroux/pinboard-api-el.git", - "sha256": "81264dcde676e3a792d12d733d601b89bfaee4aa0970a4a0d6dc11dca31d655d", + "tag": "fetchFromGitHub", + "owner": "danieroux", + "repo": "pinboard-api-el", + "sha256": "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja", "rev": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4" }, "recipe": { "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140324.648", "deps": [] }, "elpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/elpy.git", - "branchName": "release", - "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.601", "deps": [ @@ -35335,42 +37456,45 @@ }, "fcitx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/fcitx.el.git", - "sha256": "fffb9b725fe97058c7ccfc4500ddaed5b11c769c0d507d320543b16e665033e0", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "fcitx.el", + "sha256": "1q1ka1k6xca30lr7sl0dkiv1rcfmmvfh0igwrk3mhw79bxr9pyzz", "rev": "5c4ec4181226b9846bc227e20c61645280fc26c1" }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.901", "deps": [] }, "smart-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dryman/smart-window.el.git", - "sha256": "bac9037e58650846ff96c9cb300d8088bd045c012616ebb9ec5bc637795b46db", + "tag": "fetchFromGitHub", + "owner": "dryman", + "repo": "smart-window.el", + "sha256": "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9", "rev": "a87e0d2007de40033deee39496f791f4b047f138" }, "recipe": { "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130214.1342", "deps": [] }, "avy-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/avy-zap.git", - "sha256": "ef9a9654ac6b640179c23414710516f56c5fd39a762404f82c05e8673485f468", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg", "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8" }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1348", "deps": [ @@ -35379,14 +37503,15 @@ }, "inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/inf-ruby.git", - "sha256": "90870b6e1656c52f20424eb12e2a5c19c7e8a5862dd1620a741832b448abe765", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "0rg7md4b8chqfh565l9dhsjyiiqrbhm2xcaf88h2zian2rp0p1wh", "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296" }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1437", "deps": [] @@ -35400,7 +37525,7 @@ }, "recipe": { "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1923", "deps": [ @@ -35409,28 +37534,30 @@ }, "tea-time": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krick/tea-time.git", - "sha256": "80480aa4120996a33c303236c1327ea34edd4d4bac832109a3281236f9e48c2c", + "tag": "fetchFromGitHub", + "owner": "krick", + "repo": "tea-time", + "sha256": "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40", "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca" }, "recipe": { "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120331.320", "deps": [] }, "dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [ @@ -35440,14 +37567,15 @@ }, "cargo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/cargo.el.git", - "sha256": "5b5121df1c639b32970b3f6e64936d0e97e7f8518948940fa186e74188e40dce", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "cargo.el", + "sha256": "1khdwj443rw6l47r8j49a7wfg5qfdn9n8viz1fbk56v33kgj2lav", "rev": "1b28b29d641a52d23861f241c54c098d6f070e76" }, "recipe": { "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.1620", "deps": [ @@ -35456,14 +37584,15 @@ }, "helm-flymake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/helm-flymake.git", - "sha256": "701cb814a924eada9ce76dc50f91d3cfe2cbf92324493a46581a7542498b2ad2", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "helm-flymake", + "sha256": "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h", "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a" }, "recipe": { "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130717.44", "deps": [ @@ -35472,14 +37601,15 @@ }, "scratch-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyanagi/scratch-ext-el.git", - "sha256": "f7d9b54045bf4952bce0147c5527d28f53fe4e6258d67d54ac89e4438c5fe059", + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "scratch-ext-el", + "sha256": "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp", "rev": "388c53cddd0466b451264894667ed64a6947ad67" }, "recipe": { "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.2316", "deps": [] @@ -35492,21 +37622,22 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130704.932", "deps": [] }, "cl-lib-highlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/cl-lib-highlight.git", - "sha256": "aac757d69220f7a8d29bd586c6ef6d0f58c00a82fd5f2b092b910b08b4b0af58", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0", "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e" }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140127.1512", "deps": [ @@ -35515,28 +37646,30 @@ }, "hlint-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpickering/hlint-refactor-mode.git", - "sha256": "6e730e1af472e1a9e27fc78740d7aff41deedb19659d200d59621545ba4c506c", + "tag": "fetchFromGitHub", + "owner": "mpickering", + "repo": "hlint-refactor-mode", + "sha256": "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp", "rev": "695d39b3434a5e35fab70aa5251f824ffaa30d6b" }, "recipe": { "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1441", "deps": [] }, "ob-http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-http.git", - "sha256": "4d1cf942e6be6882c6de7268540fbdbe82f63c162e2e414fceb273ec9b787cde", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-http", + "sha256": "1yv1i646ll9wnmarcwcmx3nvscq3sv22rmnphvqcr0whrd9vb7rb", "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce" }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.430", "deps": [ @@ -35546,14 +37679,15 @@ }, "wiki-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl", "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.754", "deps": [ @@ -35563,14 +37697,15 @@ }, "ac-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/ac-clang.git", - "sha256": "edece03ab5ccc0f59c42c8cb78b56f3078b0c9ef9dcc34aa2a2d2c1be87352d1", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "ac-clang", + "sha256": "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5", "rev": "6b3365063ddfb88d5527618217bb56166349ad4e" }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1208", "deps": [ @@ -35583,14 +37718,15 @@ }, "ert-modeline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/ert-modeline.git", - "sha256": "53171cf3c91db7dab2d75f8ed10ca6ed79c489ad8ab6307a0a4ddbbe8d0bbefc", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "ert-modeline", + "sha256": "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq", "rev": "e7be2b81191afb437b70368a819770f8f750e4af" }, "recipe": { "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.415", "deps": [ @@ -35602,28 +37738,30 @@ }, "pc-bufsw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ibukanov/pc-bufsw.git", - "sha256": "35b4d02d22d3c490ce78188650b349fcdeb306a1bb21d44a4b364f85458245ca", + "tag": "fetchFromGitHub", + "owner": "ibukanov", + "repo": "pc-bufsw", + "sha256": "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m", "rev": "a76120bca9821c355069f135b4e6978351b66bc2" }, "recipe": { "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.213", "deps": [] }, "stekene-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/stekene-theme.git", - "sha256": "439286c1ec6c106e19c69798df97fba41c8cfd218250e4162cb1676b325a3870", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "stekene-theme", + "sha256": "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3", "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98" }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.1411", "deps": [ @@ -35632,28 +37770,30 @@ }, "git-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/git-annex-el.git", - "sha256": "4b45cd5217d04fe0a8d800d72bc250c75e3752169baff5c8ebfaec099343cf40", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "git-annex-el", + "sha256": "0yxmrcrvl9pbwhd7w4vnrv2jqyskzvqp17sr3vzjlvv694jd4dms", "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b" }, "recipe": { "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131119.1645", "deps": [] }, "checkbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/checkbox.el.git", - "sha256": "27825e86446141eedde93bddc90d0d8f352fd40c96f08a82c180f63b13a871eb", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45", "rev": "335afa4404adf72973195a580458927004664d98" }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1858", "deps": [ @@ -35663,14 +37803,15 @@ }, "color-theme-modern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/replace-colorthemes.git", - "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "replace-colorthemes", + "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj", "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.2106", "deps": [ @@ -35686,21 +37827,22 @@ }, "recipe": { "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111208.1222", "deps": [] }, "opam": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/opam.el.git", - "sha256": "85c863174ad8d64d51810c2a0340ba128a5c91378b1744c2b5ba44c662ba19fb", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45", "rev": "4d589de5765728f56af7078fae328b6792de8600" }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.720", "deps": [ @@ -35709,42 +37851,45 @@ }, "jira-markup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mnuessler/jira-markup-mode.git", - "sha256": "afba107b9fdf47c473182b705dfb90417dd920a4fa322bc11dcf1ef5a51b1812", + "tag": "fetchFromGitHub", + "owner": "mnuessler", + "repo": "jira-markup-mode", + "sha256": "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx", "rev": "4fc534c47df26a2f402bf835ebe2ed89474a4062" }, "recipe": { "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.1609", "deps": [] }, "number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/number.git", - "sha256": "16ecaf532726a889dec3a4ae5e79ee89bbe43ce846276f20bed267dcf240b510", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "number", + "sha256": "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n", "rev": "f483365c330392b3e9362481b145acf3db040baf" }, "recipe": { "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.1204", "deps": [] }, "org-drill-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/org-drill-table.git", - "sha256": "56c12b8fcbb18bb4bd7ec0ff5b06b5d52d449e3bafc9cd83b15a8d3ef4605474", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "org-drill-table", + "sha256": "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy", "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c" }, "recipe": { "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.337", "deps": [ @@ -35757,42 +37902,45 @@ }, "crappy-jsp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/crappy-jsp-mode.git", - "sha256": "6bf559a5ab2c810c82ffcce4b3473e0df790e6931e4d5a301130e945bba1e689", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "crappy-jsp-mode", + "sha256": "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb", "rev": "6c45ab92b452411cc0fab9bcee2f456276b4fc40" }, "recipe": { "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.431", "deps": [] }, "peep-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/peep-dired.git", - "sha256": "2de2a543a76434214242ef817a9f0a30fab2150178c0870cd06ae1c63d016653", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "peep-dired", + "sha256": "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m", "rev": "6c18727fc58e2a19638f133810e35bd5d918a559" }, "recipe": { "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150518.900", "deps": [] }, "docker-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/docker-tramp.el.git", - "sha256": "a24b1149809b254b96dd12b127c162cb7cfa6b40b23ea085ade084e964560d0b", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docker-tramp.el", + "sha256": "1mh28210a85yy1b4lic3ijv7xhjk3z9nxjq55b7mqflgjna1ih3c", "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e" }, "recipe": { "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.2155", "deps": [ @@ -35802,14 +37950,15 @@ }, "ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.625", "deps": [ @@ -35822,14 +37971,15 @@ }, "springboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/springboard.git", - "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "springboard", + "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8", "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" }, "recipe": { "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1211", "deps": [ @@ -35838,14 +37988,15 @@ }, "zone-nyan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/zone-nyan.git", - "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "zone-nyan", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy", "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1514", "deps": [ @@ -35860,21 +38011,22 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1539", "deps": [] }, "haste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rlister/emacs-haste-client.git", - "sha256": "08c550a82e164424efa0ed39b216418711e1a75b3857e442703135a84a21b0be", + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "emacs-haste-client", + "sha256": "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88", "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25" }, "recipe": { "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141030.1534", "deps": [ @@ -35883,28 +38035,30 @@ }, "gitattributes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "emojify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "4af68a5a18ba5940cd679b59f43f29a6089f060dda126201c422929d0f81532e", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "0zd47b4i03ypbydiaap20vpr79gybmsk26q2xh4krci311n8mmgb", "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.2155", "deps": [ @@ -35915,14 +38069,15 @@ }, "sx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/sx.el.git", - "sha256": "22b7666fa9c29a0a7140030fc9e5670e0ef878edec91254eccfbc2d2eaf57d5f", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "0kfjaqydpm1c9l3k58zfjdy7wpqvsm7rirsnizwidg8lhca28b2b", "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b" }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.2046", "deps": [ @@ -35935,14 +38090,15 @@ }, "mykie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/mykie-el.git", - "sha256": "b96f795c73b1d2ee3ad2599239a338e86bb91e53bc9aaa6514951b6ef9a87059", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "mykie-el", + "sha256": "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0", "rev": "7676f0e883af1d1054e404e97691f3c13aba196f" }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150808.1705", "deps": [ @@ -35952,14 +38108,15 @@ }, "esup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/esup.git", - "sha256": "655878e4ba2e05c7d59fe9bb6a8bfc9d4dddcc6a5a28a1a006829a4936652211", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "1hvf022ag23rmsk7whz8mnlswk5d89249pmc0p3pnaycykw8imxp", "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86" }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2111", "deps": [ @@ -35969,14 +38126,15 @@ }, "evil-rsi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-rsi.git", - "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1719", "deps": [ @@ -35985,14 +38143,15 @@ }, "letcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/letcheck.git", - "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.1112", "deps": [] @@ -36005,7 +38164,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.1224", "deps": [ @@ -36015,14 +38174,15 @@ }, "ido-exit-target": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ido-exit-target.git", - "sha256": "7d48ddbb9679a7c1cf6c5ab98d30a2007b6434029ef850b7f55635c50ec123e9", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ido-exit-target", + "sha256": "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x", "rev": "322520c665284ce6547eb9dcd3aa888a02a51489" }, "recipe": { "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.937", "deps": [ @@ -36031,14 +38191,15 @@ }, "find-file-in-repository": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoffstaetter/find-file-in-repository.git", - "sha256": "d1f0d5686683e034aca416bf5b7ad320bccc423859815e27eb776133cce25713", + "tag": "fetchFromGitHub", + "owner": "hoffstaetter", + "repo": "find-file-in-repository", + "sha256": "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh", "rev": "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8" }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.719", "deps": [] @@ -36051,21 +38212,22 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.1902", "deps": [] }, "clojure-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpenet/clojure-snippets.git", - "sha256": "82ca6e88a1945b866e010311dadbb628608bfbcf8f2aac199e680d2133fc11f1", + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1w8izhrj23b8kqcsqalgrzxqnq18nvdxl48305p8cnwll646xjl2", "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827" }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.344", "deps": [ @@ -36074,28 +38236,30 @@ }, "zonokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ZehCnaS34/zonokai-emacs.git", - "sha256": "e3d025e8aaeba351e37f2ca1b0c7b02b51c04508801890ed4de98de97a3148d5", + "tag": "fetchFromGitHub", + "owner": "ZehCnaS34", + "repo": "zonokai-emacs", + "sha256": "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w", "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69" }, "recipe": { "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.2202", "deps": [] }, "helm-lobsters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/helm-lobste.rs.git", - "sha256": "160e558e98c65db83293115a43f87f57ce2809fd3acc5b084cc389dfbc354e07", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "helm-lobste.rs", + "sha256": "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy", "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb" }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.946", "deps": [ @@ -36105,42 +38269,45 @@ }, "moe-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/moe-theme.el.git", - "sha256": "31d9d62abf6aab75207ed875b3ccfd2b44ad3330dda54737caea53e5d79de310", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "moe-theme.el", + "sha256": "0dyp8jpznb9ivzkka2cgydzcldc275238p0f1c9pcrxjf7mjglmx", "rev": "56b0833e3549e1b2f008388549972971936b053f" }, "recipe": { "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1709", "deps": [] }, "sproto-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2q1n9/sproto-mode.git", - "sha256": "ab18ef262f0274f1b946b52d21f9495ff6d69d2d5ff4a19e863833d559c6f511", + "tag": "fetchFromGitHub", + "owner": "m2q1n9", + "repo": "sproto-mode", + "sha256": "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x", "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7" }, "recipe": { "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1205", "deps": [] }, "helm-commandlinefu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-commandlinefu.git", - "sha256": "32cd3f6f48226460a5d77ebbc3add0e9b22a1a51e307a3b1225b5162d6aeb93b", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j", "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d" }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.45", "deps": [ @@ -36152,14 +38319,15 @@ }, "ac-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-emoji.git", - "sha256": "3b31df8022f3b579cfe304b22d27b88ef46f05ee26590f4b1232c2ea325c9867", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-emoji", + "sha256": "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz", "rev": "f4b3a5b3548dc36f69daeff742f53b5bda538bae" }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.211", "deps": [ @@ -36169,14 +38337,15 @@ }, "gh-md": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/gh-md.el.git", - "sha256": "114d1b331fb039fd629248239d3e71f3279c2d421f6e9aad14082d2fd148ef5b", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "gh-md.el", + "sha256": "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0", "rev": "693cb0dcadff70e813e1a9d303d227aff7898557" }, "recipe": { "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1140", "deps": [ @@ -36185,28 +38354,30 @@ }, "badger-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ccann/badger-theme.git", - "sha256": "e113aeecc000ab243eeba530f634d6b5f41acae3cf7558d1d9988b784daf1a3d", + "tag": "fetchFromGitHub", + "owner": "ccann", + "repo": "badger-theme", + "sha256": "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1", "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4" }, "recipe": { "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140716.2132", "deps": [] }, "ox-asciidoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-asciidoc.git", - "sha256": "1b2e41e490cc25afc64115414275e46a8afe0ad217cef050e0287a8c71d8bb6b", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-asciidoc", + "sha256": "1q7jlz0f09mwymq8m6x9fiariww7rwiy4wkqkbbc296wm7impr75", "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1" }, "recipe": { "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.1459", "deps": [ @@ -36215,14 +38386,15 @@ }, "ember-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/madnificent/ember-mode.git", - "sha256": "5f92a80f7a1befbd853ba52dbd80a9663c0fc37acb89dc3d22268593a1f16833", + "tag": "fetchFromGitHub", + "owner": "madnificent", + "repo": "ember-mode", + "sha256": "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz", "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e" }, "recipe": { "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.421", "deps": [ @@ -36231,14 +38403,15 @@ }, "ido-load-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ido-load-library.git", - "sha256": "de0cb9bc7a82509b0f3a070a91b4585c9bf1eb34e05ac4e019bf6f0d7cb0ead1", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ido-load-library", + "sha256": "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv", "rev": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7" }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.1100", "deps": [ @@ -36248,14 +38421,15 @@ }, "therapy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/therapy.git", - "sha256": "60bf5c7fb723d4301518a0ef70047b264f850d1965077d023170222b1da85101", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "therapy", + "sha256": "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1", "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a" }, "recipe": { "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1353", "deps": [ @@ -36264,42 +38438,45 @@ }, "isend-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/isend-mode.el.git", - "sha256": "7523ce3b202af1e8fb3a436936c09b61d48a260f3cdd35f2c69d99d9439a48cd", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "isend-mode.el", + "sha256": "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0", "rev": "274163f5c42834ce0391fcc8800e169104ad518f" }, "recipe": { "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.458", "deps": [] }, "cd-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jamienicol/emacs-cd-compile.git", - "sha256": "8cb007eb0a52914991ad2820952ae62bed938bd81252169054ca241e6a6423a9", + "tag": "fetchFromGitHub", + "owner": "jamienicol", + "repo": "emacs-cd-compile", + "sha256": "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c", "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f" }, "recipe": { "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.1357", "deps": [] }, "flycheck-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/flycheck-irony.git", - "sha256": "5038bd12912bb463145f94522adab568e386401ef79fe4c24711e1e4a02fa5ab", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "flycheck-irony", + "sha256": "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h", "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4" }, "recipe": { "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.1431", "deps": [ @@ -36310,14 +38487,15 @@ }, "tabula-rasa": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idomagal/tabula-rasa.git", - "sha256": "d67421006dcec972da9c4b83aa91ff0c341d8cad980620a29450517127ef4a56", + "tag": "fetchFromGitHub", + "owner": "idomagal", + "repo": "tabula-rasa", + "sha256": "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8", "rev": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5" }, "recipe": { "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141215.2347", "deps": [ @@ -36326,14 +38504,15 @@ }, "auctex-lua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/auctex-lua.git", - "sha256": "5f3ffbdc324a0f27eda1ad77e3d4d3e83f2017ccfc67f63884b958aaec7eee51", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "auctex-lua", + "sha256": "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz", "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5" }, "recipe": { "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1010", "deps": [ @@ -36343,14 +38522,15 @@ }, "elmacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/elmacro.git", - "sha256": "3fba10e7b3a7edb6798398129619f22ed52c8e49f49e555fee56985d9e6730a0", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz", "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94" }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.1006", "deps": [ @@ -36366,21 +38546,22 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1604", "deps": [] }, "helm-make": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-make.git", - "sha256": "efac6d8b02e770237fa3b2932805ae106069ed794c104bf1d142b6c703d0e117", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g", "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8" }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1120", "deps": [ @@ -36390,14 +38571,15 @@ }, "go-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.2140", "deps": [ @@ -36406,14 +38588,15 @@ }, "beeminder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/beeminder.el.git", - "sha256": "952901cfc27fa5ebdbe024952cff5561ff9b31e6ece98eb09601dd543ea26bb2", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "1ckbl8z59p81jsq8xsgcwqqrpzv1apzjr594w3dyp9bzqb7h2acm", "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8" }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1634", "deps": [ @@ -36422,14 +38605,15 @@ }, "idris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idris-hackers/idris-mode.git", - "sha256": "5832968881992872d05b52f00e43e593afca613d6999f605bb8f49d7e6c4e71b", + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56", "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445" }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.607", "deps": [ @@ -36440,14 +38624,15 @@ }, "bliss-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-bliss-theme.git", - "sha256": "b9d5cc780a8e19ccf3c71ab14999a3b65fda1ad8e19ed0d212a8e1dced88c036", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-bliss-theme", + "sha256": "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr", "rev": "2c6922cb24118722819bea79a981f066039d34a3" }, "recipe": { "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -36456,28 +38641,30 @@ }, "mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/mozc.git", - "sha256": "997ca4c93dd5b903cdbe3f73bed97d3d3a4ec1e276bbe1d8ac990b3e62ae167f", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "mozc", + "sha256": "0ijx66xx0nv4xwf91403qc1s8mksnpkl5d5pv8gwck0dr2abz2nd", "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" }, "recipe": { "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.503", "deps": [] }, "drill-instructor-AZIK-force": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/drill-instructor-AZIK-force.el.git", - "sha256": "4704f22d81ffb676d2a4371236a3a800a2363b36a7e8c5b22f7a48086705f853", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "drill-instructor-AZIK-force.el", + "sha256": "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127", "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5" }, "recipe": { "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.2314", "deps": [ @@ -36486,42 +38673,45 @@ }, "exec-path-from-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/exec-path-from-shell.git", - "sha256": "66a414b026f24372dc0f9fa9f49d448512d6ccbfbe671a789c72175694aca9d4", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "exec-path-from-shell", + "sha256": "085vmpxk99mvxa5k3fwr5x443434gh0iy3qp272fyks85yccrayl", "rev": "673f1fc0606ca9a30eb62cb1ac2094d15ab9377e" }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1333", "deps": [] }, "highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-symbol.el.git", - "sha256": "5ce0f39ab7e53eba8d64fd09d70eef4666d450a69e0a0bf3372f20c3790242f1", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "0d7scpgn9wnq9r72vjv68nnk6qgk0x1bxlm070hj2iz51pdqda7x", "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3" }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.651", "deps": [] }, "ppd-sr-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.624", "deps": [ @@ -36537,21 +38727,22 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1843", "deps": [] }, "vbasense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-vbasense.git", - "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140221.1753", "deps": [ @@ -36568,21 +38759,22 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120728.913", "deps": [] }, "org-redmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/org-redmine.git", - "sha256": "05ce455f00351031f9719e331d21f19c3f67ab4073158b7830aa4bf8f6d8a422", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "org-redmine", + "sha256": "1q99b9l6y97iic46xqj7rqnkrzk8f0qq4qy81jv9wz54hq51w07v", "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9" }, "recipe": { "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.931", "deps": [ @@ -36591,14 +38783,15 @@ }, "creds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-creds.git", - "sha256": "e452ea4163989317d9329a19c41ad64e6b2668098e1103eb92fdcd343957d8af", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa", "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482" }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1206", "deps": [ @@ -36608,14 +38801,15 @@ }, "helm-project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-project-persist.git", - "sha256": "1bf6c5b5f3771fa295e2f1fa488d35dc6faea81f2f17d17101f949fd6760a448", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-project-persist", + "sha256": "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv", "rev": "357950fbac18090985a750e40d5d8b10ee9dcd53" }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.943", "deps": [ @@ -36625,14 +38819,15 @@ }, "phabricator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajtulloch/phabricator.el.git", - "sha256": "965b712583083b9795cafd9872c11354c52cc7a684e5c15cdd136dd2462d38b6", + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "phabricator.el", + "sha256": "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4", "rev": "b1450350cc3c45c732252bb13860156d824ead10" }, "recipe": { "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.307", "deps": [ @@ -36645,14 +38840,15 @@ }, "make-it-so": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/make-it-so.git", - "sha256": "e99805543f05dfaed127ec704caa447c04616e2655ed9f2b9911071a6fb24502", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "make-it-so", + "sha256": "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679", "rev": "ed83b8b9787441cc6be4994d571529852a8cce4a" }, "recipe": { "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150319.1407", "deps": [ @@ -36662,14 +38858,15 @@ }, "eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", - "sha256": "82f966c5bec578bf9bf170ab733ff473fc9c78164ecefd12b6cd8fe7db54d8eb", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "eval-sexp-fu.el", + "sha256": "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2", "rev": "6cffd33155d10c3e58b39cbb170f42e910fd8595" }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.1551", "deps": [ @@ -36678,28 +38875,30 @@ }, "mustang-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/mustang-theme.git", - "sha256": "24b3b7eb16dc64e874aa5a333ab4e617e52b30fc0778728330fb6ac71a190da7", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "mustang-theme", + "sha256": "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4", "rev": "79c3381dd50601775402fe2fddd16fffa9218837" }, "recipe": { "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141017.1823", "deps": [] }, "httprepl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/httprepl.el.git", - "sha256": "968a514e736f8ea97a1e602f78ef2084abdf7a93c6df4a9591950894b6c7a6b0", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld", "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8" }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141101.1234", "deps": [ @@ -36710,14 +38909,15 @@ }, "tern-auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7", "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.853", "deps": [ @@ -36729,14 +38929,15 @@ }, "ox-ioslide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-ioslide.git", - "sha256": "431a9ff36e738fb5f7306d8ea1a70b67b7c5c233d9bb006806bdacade7eafc74", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-ioslide", + "sha256": "12c170m04yk0acllkvrbl3kpl5z91gh0z8d09hpqpdmfs2gmpbm9", "rev": "79fb2c161ded934c3a4ddf623100103212a4d2d8" }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.2352", "deps": [ @@ -36749,42 +38950,45 @@ }, "hungry-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/hungry-delete.git", - "sha256": "d44bba87be3adab33401b31b0aa5a32554e053ae09c85b190dca042b6910c5ef", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "hungry-delete", + "sha256": "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl", "rev": "ed1694ca3bd1fe7d117b0176d417341915ad4f1f" }, "recipe": { "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1514", "deps": [] }, "n3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doriantaylor/n3-mode-for-emacs.git", - "sha256": "304d9b0db018e0a02cbac065443fde380d3ddb456a93c4b9fc788310525fe1d2", + "tag": "fetchFromGitHub", + "owner": "doriantaylor", + "repo": "n3-mode-for-emacs", + "sha256": "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h", "rev": "0145e7938c30183edb03a55a4f16390dabd191ec" }, "recipe": { "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.1257", "deps": [] }, "quasi-monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", - "sha256": "81f146dad25b69acfe6d01ab0a41a32e4c2cec7269d822f4147b489f9c457c27", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-quasi-monochrome", + "sha256": "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1", "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7" }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1525", "deps": [] @@ -36797,21 +39001,22 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110405.1020", "deps": [] }, "projectile-codesearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/codesearch.el.git", - "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "codesearch.el", + "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a", "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" }, "recipe": { "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150419.45", "deps": [ @@ -36821,14 +39026,15 @@ }, "editorconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -36837,14 +39043,15 @@ }, "bbyac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baohaojun/bbyac.git", - "sha256": "b4094c2ed0ddc7431ac1cd19aedd038c83bd7f03d87a784b227538e94c23b5b1", + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "bbyac", + "sha256": "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl", "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659" }, "recipe": { "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.501", "deps": [ @@ -36854,14 +39061,15 @@ }, "evil-anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-evil-anzu.git", - "sha256": "7bb64bf480e4763e2c504b7cee2789a58353a28b0d936f9014fc0a7ed037ac35", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-evil-anzu", + "sha256": "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8", "rev": "a041db15bd6e2eb353b24f6f984f6c5ee618d460" }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.1809", "deps": [ @@ -36871,14 +39079,15 @@ }, "cloc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/cloc-emacs.git", - "sha256": "5b98c39be6d9cb778ac8f31d80ebb81a5a4c9c54a43004ddef67adec0160d4e5", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "cloc-emacs", + "sha256": "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v", "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53" }, "recipe": { "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.401", "deps": [ @@ -36887,14 +39096,15 @@ }, "hl-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/hl-anything.git", - "sha256": "e5a9ee3cb1d45a4378e67695a8b60d196d243a7c9300411cb67cafde4b201bfc", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr", "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4" }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.731", "deps": [ @@ -36903,14 +39113,15 @@ }, "restart-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/restart-emacs.git", - "sha256": "565e0567e2dd390743441e29c90a4cc93e56a66c52210bd9af89b2ecb43d7609", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n", "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8" }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1035", "deps": [] @@ -36923,49 +39134,52 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "dummyparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snosov1/dummyparens.git", - "sha256": "f07750f1d3e7a87b02c00e786f88d7e79ab7c3078267df3da5bb1909beb5e23c", + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "dummyparens", + "sha256": "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh", "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89" }, "recipe": { "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.524", "deps": [] }, "clean-aindent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pmarinov/clean-aindent-mode.git", - "sha256": "e00e581ef09d5ca7056c9394e7bbab2bdd38e697f8fe19fc41eb871aff34d3c0", + "tag": "fetchFromGitHub", + "owner": "pmarinov", + "repo": "clean-aindent-mode", + "sha256": "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0", "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f" }, "recipe": { "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150816.2229", "deps": [] }, "passthword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/passthword.git", - "sha256": "784a88bd7bfe8653a08e1370cd69306b409052faa2a3e9ef43e9a8b483819379", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq", "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6" }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141201.323", "deps": [ @@ -36974,14 +39188,15 @@ }, "tab-jump-out": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/tab-jump-out.git", - "sha256": "d589f85e264f9aa70dfba028f450a7b673237d11f71fcaa997ecdba0d872fa40", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "tab-jump-out", + "sha256": "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm", "rev": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51" }, "recipe": { "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2030", "deps": [ @@ -36991,28 +39206,30 @@ }, "smyx-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tacit7/smyx.git", - "sha256": "bd24cd4e4bc8170012fe6e5b9ce4ca7f2848b43b6fe599c38705f2109c6d5afc", + "tag": "fetchFromGitHub", + "owner": "tacit7", + "repo": "smyx", + "sha256": "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x", "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401" }, "recipe": { "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.228", "deps": [] }, "evil-cleverparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luxbock/evil-cleverparens.git", - "sha256": "a6a293c2e0dc06c9831a72970f2629e6eca71a247a9c705147e2862a025efedf", + "tag": "fetchFromGitHub", + "owner": "luxbock", + "repo": "evil-cleverparens", + "sha256": "1pzybq12m1p28x8p173s4hdagv7654k0z5vj3a1wj1nww31978m6", "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107" }, "recipe": { "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.2238", "deps": [ @@ -37025,28 +39242,30 @@ }, "s": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/s.el.git", - "sha256": "d0208102b6938f071af8892b5830d5eec739eb2e6eae2688d04c47b0ebb0c8fe", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "s.el", + "sha256": "1zn8n3mv0iscs242dbkf5vmkkizfslq5haw9z0d0g3wknq18286h", "rev": "372e94c1a28031686d75d6c52bfbe833a118a72a" }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.606", "deps": [] }, "sweetgreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "977fead7e3cadfc0059f24a35863c2eb9fb3ee0ca0a94ccd119dec2589a71ffc", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn", "rev": "a456dd7948a25da8ff007a142cf1325b4855d908" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1116", "deps": [ @@ -37058,28 +39277,30 @@ }, "transpose-mark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/transpose-mark.git", - "sha256": "5dd4326870e169ae20e0fd734e50cfe28aab2ebf0668f8bf7db9ce6037288c0f", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "transpose-mark", + "sha256": "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x", "rev": "667327602004794de97214cf336ac61650ef75b7" }, "recipe": { "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.216", "deps": [] }, "javadoc-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/javadoc-lookup.git", - "sha256": "7b48944fdc982187daaf648054540901d502b454fca5c62f4638f7e0936c6b32", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "javadoc-lookup", + "sha256": "10x10d0y8lr2a4kxq6pmvl5a1nzkfayg9qlzwh5v5is17wxr7399", "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f" }, "recipe": { "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1203", "deps": [ @@ -37088,42 +39309,45 @@ }, "immutant-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/immutant-server.el.git", - "sha256": "9048d80fe6fc2ac76a3c8fb1cc9f3e92adb6f269e1a1673bd7efc68d53ad6a65", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h", "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb" }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.1708", "deps": [] }, "git-ps1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/git-ps1-mode-el.git", - "sha256": "cefb41d9e6822b0ae55a31d19c9a33c383a97d67edbeeb18250d2d663b0a8994", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "1hbpcsyivvdjf16znbhzykn9hci73jl77n4wrxy4v8vhkdajgkd1", "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.2301", "deps": [] }, "evil-textobj-anyblock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/evil-textobj-anyblock.git", - "sha256": "1c7a29cc075d83167ef3edf55822cf67c55401ed67d3873c13e33d4aad169fec", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw", "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945" }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.1617", "deps": [ @@ -37133,42 +39357,45 @@ }, "osx-plist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/osx-plist.git", - "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "osx-plist", + "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv", "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101130.648", "deps": [] }, "cyberpunk-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "e4433626668568daa8f52040923c910a9518f33d3529df869322ca81161ea9ff", + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "1zx93qb83ji2jf3dya9m7prii58aj4y94h10ynldls45cqk3chz4", "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1153", "deps": [] }, "ido-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ido-migemo.el.git", - "sha256": "f9bb01ac8ab702d7222ae740d9fbc589c43c41c955b4486d044f84eacf717f8e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ido-migemo.el", + "sha256": "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38", "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77" }, "recipe": { "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1744", "deps": [ @@ -37177,14 +39404,15 @@ }, "elwm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/elwm.git", - "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", "rev": "c33b183f006ad476c3a44dab316f580f8b369930" }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.507", "deps": [ @@ -37193,14 +39421,15 @@ }, "airline-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", - "sha256": "dda2dfbe91fa63cd36078ef02ec903dfc1206f7809a4146abd64c04a417f4902", + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "00j9gx0lmh34pmm19909g1pj1hfz0g4jxw4f0wvcsqzsj6zdz8nx", "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e" }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.2135", "deps": [ @@ -37209,14 +39438,15 @@ }, "shackle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/shackle.git", - "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.816", "deps": [ @@ -37225,14 +39455,15 @@ }, "scpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/scpaste.git", - "sha256": "319a5b8ba780cbe8dd61ed14070e8141fa93238ab8e667332efa41984d08efc9", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii", "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c" }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1935", "deps": [ @@ -37241,14 +39472,15 @@ }, "helm-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-themes.git", - "sha256": "dca8123a0044b5c8b1d4a448a6b854001fbd7d34836fc0043de27169e44f85a3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-themes", + "sha256": "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w", "rev": "a6449a40c5a219b43a92c975917a07337f864b4f" }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.121", "deps": [ @@ -37257,28 +39489,30 @@ }, "gnuplot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruceravel/gnuplot-mode.git", - "sha256": "b9633b84408a5c3d50c9123714f4b8108147d0af7d8836d5729a32dedfa5b5a4", + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c", "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9" }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1537", "deps": [] }, "brainfuck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/brainfuck-mode.git", - "sha256": "4d027c217051f8c46bc7a1549b6b266b735eda8c165149b4a337fb16ff93efdb", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "brainfuck-mode", + "sha256": "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd", "rev": "36e69552bb3b97a4f888d362c59845651bd0d492" }, "recipe": { "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.242", "deps": [ @@ -37287,14 +39521,15 @@ }, "auto-complete-rst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/auto-complete-rst.git", - "sha256": "68b91f7b40baa692522c7f4d29d0096829660a84c3d7cc66d2d63d26d0dafa80", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "auto-complete-rst", + "sha256": "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8", "rev": "4803ce41a96224e6fa54e6741a5b5f40ebed7351" }, "recipe": { "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.344", "deps": [ @@ -37303,14 +39538,15 @@ }, "ess-smart-equals": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/ess-smart-equals.git", - "sha256": "c672236d29a2a2a4f6823862f82bb39fb7804c4f2b358f3b5dce250e202e23af", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "ess-smart-equals", + "sha256": "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x", "rev": "e0f5f18f01ed252fde50d051adf1fa6254a254c9" }, "recipe": { "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1", "deps": [ @@ -37320,28 +39556,30 @@ }, "gom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-gom-mode.git", - "sha256": "6bad1cebc66b599bbf4d2eb07280820da6f991ef0baac6a4c34dce511efdd2aa", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-gom-mode", + "sha256": "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb", "rev": "972e33df1d38ff323bc97de87477305826013701" }, "recipe": { "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131007.2153", "deps": [] }, "ac-etags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-etags.git", - "sha256": "d1fc417efe657d1ee4f78b3d8a2aa10e01016766c42005dc1a3334b4297ebd3e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4", "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6" }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2121", "deps": [ @@ -37350,28 +39588,30 @@ }, "rect+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", - "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.1944", "deps": [] }, "flymake-hlint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-hlint.git", - "sha256": "5870a86cd25ea7c2312700d7ee731a39bc75bbae999496a2d9b150f5f6c4b104", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp", "rev": "fae0c16f938129fb933e4c4625287816e8e160f0" }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130309.345", "deps": [ @@ -37380,14 +39620,15 @@ }, "flycheck-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.231", "deps": [ @@ -37399,14 +39640,15 @@ }, "ansible-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/ansible-doc.el.git", - "sha256": "cdfd044552a6cdb91bd6c27f229c9b605ad8f0acbb673dbc1993976461d5d9df", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "ansible-doc.el", + "sha256": "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62", "rev": "d0ce210674b5bee9836e6773c4e823747a6f1946" }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150524.1205", "deps": [ @@ -37415,56 +39657,60 @@ }, "ido-vertical-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/creichert/ido-vertical-mode.el.git", - "sha256": "6a017b0155077192e96f459b6d7ac234f9134b0f073cfe43a76c4cc0cdff7529", + "tag": "fetchFromGitHub", + "owner": "creichert", + "repo": "ido-vertical-mode.el", + "sha256": "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx", "rev": "0beaf1eaa8509bece9419b663826665322b22b4c" }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.2033", "deps": [] }, "hemisu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrzejsliwa/hemisu-theme.git", - "sha256": "2799f06f193aadfbe5c1656e1a0a5ec30a1e8cbba8b6d303a8c2041e5fdc0d9d", + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "hemisu-theme", + "sha256": "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697", "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f" }, "recipe": { "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.1344", "deps": [] }, "naquadah-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/naquadah-theme.git", - "sha256": "02fbc2274fa388a04e11fb255af0a471d67bdb32f348d2b0c8a7b5e06730ae57", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "naquadah-theme", + "sha256": "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2", "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac" }, "recipe": { "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.341", "deps": [] }, "stan-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.2254", "deps": [ @@ -37474,14 +39720,15 @@ }, "emacsql-mysql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -37492,42 +39739,45 @@ }, "cdlatex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cdominik/cdlatex.git", - "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "tag": "fetchFromGitHub", + "owner": "cdominik", + "repo": "cdlatex", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d", "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140707.626", "deps": [] }, "yalinum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tm8st/emacs-yalinum.git", - "sha256": "e05a95dde79375acfce71d3ad689d6c682def579893481d24824b8f4a022ad89", + "tag": "fetchFromGitHub", + "owner": "tm8st", + "repo": "emacs-yalinum", + "sha256": "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0", "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973" }, "recipe": { "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130217.443", "deps": [] }, "org-download": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/org-download.git", - "sha256": "61a7b3a24caef7e76f3d8b8bb14fbf9c92d8cd923862e64b9220725ca0ad3d81", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "org-download", + "sha256": "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq", "rev": "501920e273b32f96dfbafcf769d330296a612847" }, "recipe": { "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.916", "deps": [ @@ -37536,42 +39786,45 @@ }, "oberon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/oberon.git", - "sha256": "c659c89cc8b2116d1109f51ddf5e9f58f05db4fe801078523c4f86841f138698", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "oberon", + "sha256": "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6", "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3" }, "recipe": { "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120715.409", "deps": [] }, "inkpot-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/siovan/emacs24-inkpot.git", - "sha256": "bb32504ecf392f0c424464f90df96041550c8cd6dadb2c517425ea818e1a7b18", + "tag": "fetchFromGitHub", + "owner": "siovan", + "repo": "emacs24-inkpot", + "sha256": "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv", "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966" }, "recipe": { "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120505.908", "deps": [] }, "pixie-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnwalker/pixie-mode.git", - "sha256": "a704c62dbfc02babde9ca45980e91e7e002ab11436570f7230736cb4f486aa8b", + "tag": "fetchFromGitHub", + "owner": "johnwalker", + "repo": "pixie-mode", + "sha256": "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp", "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96" }, "recipe": { "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.2324", "deps": [ @@ -37581,14 +39834,15 @@ }, "sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c", "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.714", "deps": [ @@ -37599,42 +39853,45 @@ }, "gandalf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/gandalf-theme-emacs.git", - "sha256": "3b157a72098054008153d71bd4c3c006e1bf6ffc1507925e15a3bc4563f0c36a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "gandalf-theme-emacs", + "sha256": "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v", "rev": "4e472fc851431458537d458d09c1f5895e338536" }, "recipe": { "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130809.447", "deps": [] }, "guru-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/guru-mode.git", - "sha256": "591ee650a45f760a8906bf3e9ee8e8a2969d639fa14ec9ba3ee360e2117a019a", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "guru-mode", + "sha256": "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr", "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd" }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.28", "deps": [] }, "msvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/msvc.git", - "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.351", "deps": [ @@ -37646,14 +39903,15 @@ }, "phi-search-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search-migemo.git", - "sha256": "704658d8fd9ea2dc370bad805411d95aa86b8ddc5e37da71f2bd7d1ba79510cd", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search-migemo", + "sha256": "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh", "rev": "57623e4b67ee766cbb299da00a212f3ebf7d6fb0" }, "recipe": { "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.706", "deps": [ @@ -37663,14 +39921,15 @@ }, "describe-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netromdk/describe-number.git", - "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "tag": "fetchFromGitHub", + "owner": "netromdk", + "repo": "describe-number", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq", "rev": "40618345a37831804b29589849a785ef5aa5ac24" }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1955", "deps": [ @@ -37679,14 +39938,15 @@ }, "smex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/smex.git", - "sha256": "4654e7c87e8fb95d227b53254fbad534be72ee65c90418e56dca1f3ed89d2b77", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26", "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c" }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1609", "deps": [ @@ -37695,14 +39955,15 @@ }, "fancy-battery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/fancy-battery.el.git", - "sha256": "8895443fa449b64087aee747a5bd6ae74877ba2d62ca963c817a77b2e29de420", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0", "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68" }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.604", "deps": [ @@ -37711,28 +39972,30 @@ }, "erc-track-score": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/erc-track-score.el.git", - "sha256": "a2835be9868e92ca7fa9edcf4d3648c4ac398b09c2c2a3ae878a807f4e3b2058", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "erc-track-score.el", + "sha256": "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2", "rev": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3" }, "recipe": { "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.715", "deps": [] }, "wgrep-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.511", "deps": [ @@ -37741,14 +40004,15 @@ }, "nameframe-perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.407", "deps": [ @@ -37758,14 +40022,15 @@ }, "nrepl-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samaaron/nrepl-eval-sexp-fu.git", - "sha256": "6cd78dee4be926b45d2b29ad0c1a11a46178953c0bcc48c952b4562cba0a92db", + "tag": "fetchFromGitHub", + "owner": "samaaron", + "repo": "nrepl-eval-sexp-fu", + "sha256": "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc", "rev": "3a24b7d4bca13e87c987a4ddd212da914ff59191" }, "recipe": { "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.541", "deps": [ @@ -37776,14 +40041,15 @@ }, "org-trello": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/org-trello/org-trello.git", - "sha256": "d72c3558d0f69429802002f34352aea065217d9aee0a0fec04afdba42034906f", + "tag": "fetchFromGitHub", + "owner": "org-trello", + "repo": "org-trello", + "sha256": "0w0gw3varx8qrcfh3iwg6qqxavprm25bjv9ada34xqjdhsv537xc", "rev": "ae291d19752d86d01bb21cec6fb410c1eb9145d7" }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.936", "deps": [ @@ -37797,14 +40063,15 @@ }, "codesearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/codesearch.el.git", - "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "codesearch.el", + "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a", "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" }, "recipe": { "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.754", "deps": [ @@ -37813,28 +40080,30 @@ }, "know-your-http-well": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/for-GET/know-your-http-well.git", - "sha256": "8fcadb6272122913db6a834fdf012dc5545373032989c7a126412f6b58e9ccf1", + "tag": "fetchFromGitHub", + "owner": "for-GET", + "repo": "know-your-http-well", + "sha256": "0hkjdmaab50dk07g1825w4x9dpavyqvkm7kp4fvgi3lk2j2a67q7", "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1331", "deps": [] }, "homebrew-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/homebrew-mode.git", - "sha256": "2a2bff3881e8e61e0b5ffb26fad0d44943353e413652a1b2db5fa17577991f37", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3", "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2" }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.851", "deps": [ @@ -37845,14 +40114,15 @@ }, "erc-social-graph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/erc-social-graph.git", - "sha256": "4a5ff1a6599d6b064639bc19f89e4dc5ed36fc35ebd3b4cfe4aa3c7218b96f4c", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "erc-social-graph", + "sha256": "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa", "rev": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0" }, "recipe": { "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.704", "deps": [] @@ -37866,21 +40136,22 @@ }, "recipe": { "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.1045", "deps": [] }, "indent-guide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/indent-guide.git", - "sha256": "2739eaf3c2c863af9a62faf3d014b9bd2d02295009834ad8b6e6b0c95be2a4dc", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "indent-guide", + "sha256": "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97", "rev": "0ef4813c538d5afba210681a8e81848b0927d421" }, "recipe": { "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.917", "deps": [] @@ -37894,35 +40165,37 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1022", "deps": [] }, "autodisass-java-bytecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-java-bytecode.git", - "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.1112", "deps": [] }, "projmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ericbmerritt/projmake-mode.git", - "sha256": "c4bc2f7c8a8de41c2b19242383e79955b7f88b3ee275f2e580c4d6d2f01060cd", + "tag": "fetchFromGitHub", + "owner": "ericbmerritt", + "repo": "projmake-mode", + "sha256": "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn", "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451" }, "recipe": { "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1620", "deps": [ @@ -37932,14 +40205,15 @@ }, "nm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjim/nevermore.git", - "sha256": "53591bdf6757c95c174fa6fe8d6a19b900fdded4cf6a70088bd1ff197d956bea", + "tag": "fetchFromGitHub", + "owner": "tjim", + "repo": "nevermore", + "sha256": "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak", "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e" }, "recipe": { "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1310", "deps": [ @@ -37951,14 +40225,15 @@ }, "helm-bundle-show": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", - "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.241", "deps": [ @@ -37967,16 +40242,17 @@ }, "irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/irony-mode.git", - "sha256": "78dc00c2fb295482e8c691a8812a8a5043b7ca74857415d1fb570859992f5ab4", - "rev": "8a4b1019a36c08a2158a83af3ec29dcae63f699f" + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "00zb52qhyfzpn180x6m2ds8gfcxgcn4jiqb2kvdcrsmrv2w40fgc", + "rev": "eb4bf86f5984b399ccc000ad635d1de8915b179d" }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.1201", + "version": "20151217.1258", "deps": [ "cl-lib", "json" @@ -37984,42 +40260,60 @@ }, "elein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/elein.git", - "sha256": "fcbaf920371415f5c65fd60d12035c0554de42a05ea59c03e505febc538559c6", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "elein", + "sha256": "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw", "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605" }, "recipe": { "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120120.516", "deps": [] }, "ruby-interpolation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/ruby-interpolation.el.git", - "sha256": "05e3cbd3f06c0c1d9eb480613cdcee5bbe9322d40f6fad43aed37213bb2c4ee4", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "ruby-interpolation.el", + "sha256": "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5", "rev": "1978e337601222cedf00e117bf4b5cac15d1f203" }, "recipe": { "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131112.1052", "deps": [] }, + "elisp-sandbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joelmccracken", + "repo": "elisp-sandbox", + "sha256": "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3", + "rev": "ddd669266ca36d7e4ebba73eb1ab42523787e042" + }, + "recipe": { + "sha256": "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20131116.1242", + "deps": [] + }, "swiper-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper-helm.git", - "sha256": "4b28889617d39430b9a91134a149233dc39164b5453484701de9915380de29bb", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper-helm", + "sha256": "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b", "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c" }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.530", "deps": [ @@ -38030,14 +40324,15 @@ }, "cal-china-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xwl/cal-china-x.git", - "sha256": "9abf50b719fca3d93ca280ec58f6ee0c1851a888df303646814e7562d908290d", + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "cal-china-x", + "sha256": "039913cn4xafh533cc6zi2l5260cxvv5iv40l8ydk8zw36vm1gws", "rev": "b6186a729899ae141c546dd3efde461160d8b172" }, "recipe": { "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1547", "deps": [ @@ -38046,28 +40341,30 @@ }, "chinese-wbim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zilongshanren/chinese-wbim.git", - "sha256": "8f5f05647c2cb66d1f535954f5c0c08bf57c3991c7c9de30f60fe5999b79a133", + "tag": "fetchFromGitHub", + "owner": "zilongshanren", + "repo": "chinese-wbim", + "sha256": "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg", "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095" }, "recipe": { "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.2250", "deps": [] }, "n4js": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmtxt/n4js.el.git", - "sha256": "97a194366ffbdf39af380d3f9998461607d7dee90d9369471cbdffc02460a6dd", + "tag": "fetchFromGitHub", + "owner": "tmtxt", + "repo": "n4js.el", + "sha256": "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp", "rev": "3991ed8975151d5e8d568e952362df810f7ffab7" }, "recipe": { "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.2131", "deps": [ @@ -38077,28 +40374,30 @@ }, "emoji-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikazuhiro/emoji-display.git", - "sha256": "49085a0601b8dfefd73e48692df6fb36269f993e5dd3bab7cfa848b234c1046a", + "tag": "fetchFromGitHub", + "owner": "ikazuhiro", + "repo": "emoji-display", + "sha256": "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229", "rev": "bb4217f6400151a9cfa6d4524b8427f01feb5193" }, "recipe": { "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.413", "deps": [] }, "e2wm-sww": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-sww.git", - "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-sww", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g", "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140524.358", "deps": [ @@ -38107,14 +40406,15 @@ }, "pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baudtack/pomodoro.el.git", - "sha256": "3fec04ad6e3f28afaeef31334483673cfca8b63b57fcb3f6db260cc4af0793b6", + "tag": "fetchFromGitHub", + "owner": "baudtack", + "repo": "pomodoro.el", + "sha256": "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z", "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c" }, "recipe": { "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.1246", "deps": [] @@ -38128,21 +40428,22 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.1234", "deps": [] }, "syntactic-sugar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/syntactic-sugar.git", - "sha256": "54019635be28de99a32aa8c5f3ea837c101f5b1226ac96eb7f1826568e0b473b", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d", "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968" }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] @@ -38155,21 +40456,22 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140417.2134", "deps": [] }, "ido-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/katspaugh/ido-at-point.git", - "sha256": "f7e6544b19bfb654c7bad5ffd3cc3c3a2ae227d3410dbc2f93b1d68be43e31ae", + "tag": "fetchFromGitHub", + "owner": "katspaugh", + "repo": "ido-at-point", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp", "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee" }, "recipe": { "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.257", "deps": [ @@ -38178,28 +40480,30 @@ }, "smartrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/smartrep.el.git", - "sha256": "26126f625e696cc7ad900f1b233cf82afc5cf906ff5456318c1d0fc451c45cea", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6", "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e" }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2130", "deps": [] }, "prodigy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/prodigy.el.git", - "sha256": "e8f9aa96f7eb852872f687f70676cfdbba019ba37d80bc4bceaf751e311eed67", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin", "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71" }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.452", "deps": [ @@ -38211,72 +40515,77 @@ }, "toggle-quotes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toctan/toggle-quotes.el.git", - "sha256": "6f9ea8c72f843aec3da6d656f724c4668ee201daf4269f602a7725fb1fae34f0", + "tag": "fetchFromGitHub", + "owner": "toctan", + "repo": "toggle-quotes.el", + "sha256": "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg", "rev": "33abc221d6887f0518337851318065cd86c34b03" }, "recipe": { "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140710.426", "deps": [] }, "scss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/scss-mode.git", - "sha256": "0d099c4937f65aaed5632f4a1a025f99d909b13fedc86a9655ff3773bba70b20", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "scss-mode", + "sha256": "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0", "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2" }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150107.1600", "deps": [] }, "unipoint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/unipoint.git", - "sha256": "00ee1616c866d51f051d85382356e8712bdda1f1a7c402036122ffa0fdcf89f2", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "unipoint", + "sha256": "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0", "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a" }, "recipe": { "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140113.1624", "deps": [] }, "buttercup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", - "sha256": "33cf135dcbf36e8afd56ba30b51973a68314fa18f7b78e3c230e16b1d4e5160c", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "03zmxfql9hb31n2qf3vs4kv69kffrazlmzji8hkcf86i2wa4hqrf", "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.506", "deps": [] }, "jdee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jdee-emacs/jdee.git", - "sha256": "00cbd306417e79c1421d36296dfe000bcfa40e7522ef67e5b4ba0a148d9d28f2", - "rev": "0fde60adf8ca805fec23e82d393bd39d0b45598d" + "tag": "fetchFromGitHub", + "owner": "jdee-emacs", + "repo": "jdee", + "sha256": "1p8dzsxlm3rd425ahkjdpv1gbxiw8bg22lakgq8lfdv4mxi389ap", + "rev": "f3d1204c448d5406c3c51c01518afcf914d8f1fa" }, "recipe": { "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151005.1437", + "version": "20151218.1443", "deps": [ "emacs" ] @@ -38290,21 +40599,22 @@ }, "recipe": { "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140212.502", "deps": [] }, "display-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/emacs-display-theme.git", - "sha256": "4a7bf5dc48af1930a52b9ed036840b3bdf15eea599bdf998bbe216feee02a664", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "emacs-display-theme", + "sha256": "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa", "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15" }, "recipe": { "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.956", "deps": [ @@ -38319,21 +40629,22 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "scratch-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scratch-pop.git", - "sha256": "217712d2ed13e6aaad7aca5cb5e8386d18b146cfbeafdf990479201d767475fb", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-pop", + "sha256": "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1", "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549" }, "recipe": { "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.339", "deps": [ @@ -38342,14 +40653,15 @@ }, "erc-image": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-image.el.git", - "sha256": "2e21234a666016b185ade6c53a24e9d9a19b51a3bcc40c2c9890f80e451f210f", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-image.el", + "sha256": "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f", "rev": "270a60706e3e0669350bb7aaea465570ef5074cf" }, "recipe": { "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.514", "deps": [] @@ -38362,21 +40674,22 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.1911", "deps": [] }, "mysql2sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-mysql2sqlite.git", - "sha256": "31407a4da86f248cbb1b74cd3adca57840391ce750e45e7aff1e0a816102a860", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-mysql2sqlite", + "sha256": "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i", "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f" }, "recipe": { "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1539", "deps": [] @@ -38389,21 +40702,22 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1120", "deps": [] }, "emms-player-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/emms-player-mpv.git", - "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", "rev": "a1be1d266530ede3780dd69a7243d898f1016127" }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.102", "deps": [ @@ -38412,14 +40726,15 @@ }, "decl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/preetpalS/decl.el.git", - "sha256": "017f4ac9a942df293dcea653b060de37ef4b06785a370f1e21e8dbf95fd355da", + "tag": "fetchFromGitHub", + "owner": "preetpalS", + "repo": "decl.el", + "sha256": "1njmsdgzknz844g0ydssg034pvrpvrhb0lx6rqyjkps2m74llzq1", "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75" }, "recipe": { "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.2249", "deps": [ @@ -38430,14 +40745,15 @@ }, "flatland-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-flatland-black-theme.git", - "sha256": "419f17824d1220fbe28c7c4f4c4d98b03376ba2da269fc78eb732e4eb0c96645", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-flatland-black-theme", + "sha256": "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1", "rev": "75fc4f1815feb23563a60477c02d70326b45c59e" }, "recipe": { "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.30", "deps": [ @@ -38446,14 +40762,15 @@ }, "kibit-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brunchboy/kibit-helper.git", - "sha256": "d9122972365cb1f84ae0a78194f891e706e6948a8b3c17eca89b55b7a9585068", + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr", "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7" }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1033", "deps": [ @@ -38463,14 +40780,15 @@ }, "recompile-on-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/recompile-on-save.el.git", - "sha256": "31d350b682b235ff5279a83b62b136df764bdac5e302bfe241494f67e9426272", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "recompile-on-save.el", + "sha256": "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri", "rev": "92e11446869d878803d4f3dec5d2101380c12bb2" }, "recipe": { "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.846", "deps": [ @@ -38480,14 +40798,15 @@ }, "slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slime/slime.git", - "sha256": "c2a4ee139ede4a3fed4f2f66fe38cce4459efa9987cb5c4be03057c6ba4ff093", + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "18iz4cn209xri420hrsl7dmaf0mqr87rc870kwn63pddrqffzqa8", "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb" }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1342", "deps": [ @@ -38496,44 +40815,61 @@ }, "audio-notes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/audio-notes-mode.git", - "sha256": "950dac86137c7460b4e4bcce5d9b3fe6089002bb3b1107e4a7bbfcc5e89ae960", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "audio-notes-mode", + "sha256": "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm", "rev": "2158b2e8d20df3184bbe273a7fd5aa693e98baa9" }, "recipe": { "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140204.1354", "deps": [] }, "define-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/define-word.git", - "sha256": "0df72fb7ff8224867a3ebf29b6e1393bdf40e4f411295bcffd0046817d10260a", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "define-word", + "sha256": "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd", "rev": "64d98b7748686c51261fe6e8d42078c6284feb13" }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.1423", "deps": [ "emacs" ] }, + "zeitgeist": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:zeitgeist-datasources", + "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", + "rev": "181" + }, + "recipe": { + "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20131228.1209", + "deps": [] + }, "ecukes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/ecukes.git", - "sha256": "1136d15d6b498e4541bf8bd806dece1ffa737b65d08ef0b462e8059eea112a7f", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2", "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80" }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.848", "deps": [ @@ -38547,42 +40883,45 @@ }, "shell-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/shell-switcher.git", - "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "shell-switcher", + "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria", "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.815", "deps": [] }, "dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", - "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.313", + "version": "20151216.1515", "deps": [] }, "haml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/haml-mode.git", - "sha256": "767f2692968ee2b2f20d20722d1ea342e825a67e240677fe85a564d4bfaa5f23", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w", "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3" }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2211", "deps": [ @@ -38591,14 +40930,15 @@ }, "sentence-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/emacs-sentence-navigation.git", - "sha256": "66e2dbd8c2d31bff2ab60e6a3677684872a72ac55eb59b7899bb59a844d87146", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "emacs-sentence-navigation", + "sha256": "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6", "rev": "8b6bf8af180c95f516bda9285da3fe940a2ab740" }, "recipe": { "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.2346", "deps": [ @@ -38608,14 +40948,15 @@ }, "helm-github-stars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-github-stars.git", - "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-github-stars", + "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn", "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150625.1723", "deps": [ @@ -38625,14 +40966,15 @@ }, "elmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/elmine.git", - "sha256": "1341bd6eb23ce3a8c535a5f6b9c0960e85aa00f7062033c1684b79c33ef1c390", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k", "rev": "60639f46a5f45653f490cdd30732beb2dca47ada" }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.623", "deps": [ @@ -38641,14 +40983,15 @@ }, "ace-jump-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-zap.git", - "sha256": "043e5268dc95a3b53eee348e9cbb8b024d0b0a672ec12716a124e540325d197c", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-zap", + "sha256": "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4", "rev": "c60af83a857955b68c568c274a3c80cbe93f3150" }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1542", "deps": [ @@ -38664,7 +41007,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080905.54", "deps": [] @@ -38678,7 +41021,7 @@ }, "recipe": { "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130418.1439", "deps": [ @@ -38687,58 +41030,62 @@ }, "pyfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aheaume/pyfmt.el.git", - "sha256": "a7d44d913ff67bcc1c7fc347527beefad4146aec85ca89d5ba78c6195aab35df", + "tag": "fetchFromGitHub", + "owner": "aheaume", + "repo": "pyfmt.el", + "sha256": "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i", "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32" }, "recipe": { "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150521.1556", "deps": [] }, "ruby-dev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Mon-Ouie/ruby-dev.el.git", - "sha256": "a193aa397540765bb2847806ccdd1167e75d59a8b257a4a8445c6aee5afdc5b3", + "tag": "fetchFromGitHub", + "owner": "Mon-Ouie", + "repo": "ruby-dev.el", + "sha256": "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1", "rev": "3a6f6e489697916dd554852492bd325879be2e44" }, "recipe": { "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130811.351", "deps": [] }, "flappymacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/taksatou/flappymacs.git", - "sha256": "a51e0deaa94e804f7b8fd8e84237068b68a59155d79950bfc620a80910351b1e", + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "flappymacs", + "sha256": "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5", "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd" }, "recipe": { "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140715.1101", "deps": [] }, "helm-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manuel-uberti/helm-company.git", - "sha256": "dd7f5d0872a74755fc65fa862bfa91fa719ffefb595b02c32993422ef6f26c39", - "rev": "4feea2d9df12a82ffc36ac63ec512f0cb95596ad" + "tag": "fetchFromGitHub", + "owner": "manuel-uberti", + "repo": "helm-company", + "sha256": "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg", + "rev": "13f87befb1a427295eeeeb49f0c2e4847bc81e10" }, "recipe": { "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150917.608", + "version": "20151216.209", "deps": [ "company", "helm" @@ -38746,14 +41093,15 @@ }, "smeargle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-smeargle.git", - "sha256": "dd8c124aaeb67ee8b6e67c4cab08a428e94ebb5a46f17cf67a55bac7f46289e3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460", "rev": "67466d5214a681430db8cb59a2a1bca771ff0024" }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.42", "deps": [ @@ -38763,28 +41111,30 @@ }, "table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/table.el.git", - "sha256": "ac3e02b5a3d40a2316a3b58b39dc0eee7fc202cdbdd830d9dfdea7cb6bf05a19", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "table.el", + "sha256": "06asy1mwp9yyvzck1n5xrl1c4zzf1vf3k2xmlcb262nllfsh4gmc", "rev": "d3718985d1103490c140690ead37d65b0e427c63" }, "recipe": { "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140722.15", "deps": [] }, "epc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-epc.git", - "sha256": "0e10ca8ad594123f926a961c7084c9afecc23ad79b32319712e934f8076f51b6", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "1ayhknqv1wmar2j2r4n7nqcp69i7k222qx524x4wv61ys324d004", "rev": "dbae585622fa7b556945cc7475f354976d26b065" }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140610.34", "deps": [ @@ -38794,28 +41144,30 @@ }, "suomalainen-kalenteri": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", - "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "suomalainen-kalenteri", + "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann", "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.504", "deps": [] }, "init-loader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/init-loader.git", - "sha256": "20fdbb2f17e8cad103436513f4d848436e6790a43ab6acd2cfc53e984304d69e", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s", "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c" }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141031.133", "deps": [] @@ -38828,35 +41180,37 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1605", "deps": [] }, "session": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/session.git", - "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120510.1900", "deps": [] }, "bundler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/bundler.el.git", - "sha256": "689a70113ac361be29aea093344cf19433826a6a0d8fe82f3207f7800b8c5f29", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "0cldbyc7qsyxszzfbdcw8n8a15hvj343acsjir29n6d9nnpmvjgp", "rev": "9be0c4601a4d1a35de22f818637ce029830272d3" }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.912", "deps": [ @@ -38866,14 +41220,15 @@ }, "undohist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/undohist-el.git", - "sha256": "9d274e64fba8b57510a1888c19269637d09b4e2f05a2557a58c74f4304570db0", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "undohist-el", + "sha256": "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx", "rev": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0" }, "recipe": { "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.742", "deps": [ @@ -38882,56 +41237,60 @@ }, "jsfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brettlangdon/jsfmt.el.git", - "sha256": "0c523fd245c380531d767cb9d6e2f70dd50ad6f7695f64c1845ad14159e92f41", + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc", "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6" }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.1725", "deps": [] }, "rdp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/rdp.git", - "sha256": "0d7bf1cfb82bb188863c39f8556fd58a3eac59924e9948b29acc56f8e0328922", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "rdp", + "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd", "rev": "b620192afada04aec33b38cc130fef0765f41ca9" }, "recipe": { "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120928.2054", "deps": [] }, "go-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "b2443f2f9a7a928c6adb19464c7f350cc7237447df20b82bb3404206f98651d0", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "14h5fgh4bksll4h61pkximydddpww1pq7kr9j2f8akr06gmwcdfl", "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1129", "deps": [] }, "xtest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/xtest.git", - "sha256": "be4328cc0beb6097793212bb41ebb68f65f991a1a8d1a9e7d1afffff8e46b626", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy", "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c" }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.1106", "deps": [ @@ -38940,14 +41299,15 @@ }, "noccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/noccur.el.git", - "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.1620", "deps": [] @@ -38960,37 +41320,39 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140901.1335", "deps": [] }, "lispyscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/lispyscript-mode.git", - "sha256": "8987ff24f5bdf25def7ff14ea831279bc94dcc481e0614243d3ed4fac5e85538", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf", "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd" }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130828.919", "deps": [] }, "pacmacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/codingteam/pacmacs.el.git", - "sha256": "0da75b7f472f8fd23eac727a0cbc643e5a3fe41915fb6573e2760e7abef60f91", - "rev": "c7a3a4cbacc7c6961fcfd7b35e3ff4c07d14a126" + "tag": "fetchFromGitHub", + "owner": "codingteam", + "repo": "pacmacs.el", + "sha256": "07w3w3ms18kas637z6n86nnd9xqi73c6cbrmni99jbwqq7jhgi29", + "rev": "98816141d5d47db8d5c9c04aaf1c9a30a045a88f" }, "recipe": { "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1315", + "version": "20151217.803", "deps": [ "cl-lib", "dash", @@ -39008,21 +41370,22 @@ }, "recipe": { "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1741", "deps": [] }, "ac-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/ac-anaconda.git", - "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150912.308", "deps": [ @@ -39039,35 +41402,37 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131113.2018", "deps": [] }, "cljsbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kototama/cljsbuild-mode.git", - "sha256": "849c0edb0a6e1e13b46bfd83306be73a222dc69b268246efbb4cc2d2fa9fad10", + "tag": "fetchFromGitHub", + "owner": "kototama", + "repo": "cljsbuild-mode", + "sha256": "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z", "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65" }, "recipe": { "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.326", "deps": [] }, "magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1708", "deps": [ @@ -39081,44 +41446,47 @@ }, "sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly.git", - "sha256": "fd46ff9f20f2389532c2054134d2a37572ee995479632e78d5c281d905626356", - "rev": "341fde694b11b72678fd991beaaf4ebd2bface69" + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly", + "sha256": "0qmayk1691wpa8bczxaarp17q3g1rpkkh12v90814h9kjnd05wx6", + "rev": "247c4125ec42e75cbcf0e680bb3c975302ad266e" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.854", + "version": "20151217.522", "deps": [ "emacs" ] }, "delim-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomas11/delim-kill.git", - "sha256": "ce4b3ee90a8e35e3168e7256dd2b4e7be3e5020544c197bf1a47308b9a064219", + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "delim-kill", + "sha256": "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf", "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1" }, "recipe": { "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100517.120", "deps": [] }, "magit-stgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-stgit.git", - "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1744", "deps": [ @@ -39128,28 +41496,30 @@ }, "shelltest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rtrn/shelltest-mode.git", - "sha256": "d9e8c2a12033bb2635f527ccb819c4cfca834232fa571adf5026c505ffe142db", + "tag": "fetchFromGitHub", + "owner": "rtrn", + "repo": "shelltest-mode", + "sha256": "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r", "rev": "e2513832ce6b994631335be299736cabe291d0f7" }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.448", "deps": [] }, "maker-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/maker-mode.git", - "sha256": "b0ae8995d993581ff3be331ed7abcc333fdf34f1ed4d3d41bc50f2ae7a3eee8c", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "maker-mode", + "sha256": "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw", "rev": "335c43b08eff589040129dae1ea13c88793b069e" }, "recipe": { "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.554", "deps": [ @@ -39159,14 +41529,15 @@ }, "tagedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/tagedit.git", - "sha256": "9a332974306aeb0f5d31231bee316c098899a47a576de46c9a7d01b39cb8f9c8", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy", "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1" }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.424", "deps": [ @@ -39176,28 +41547,30 @@ }, "lorem-ipsum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/emacs-lorem-ipsum.git", - "sha256": "545958594376b8adc9b814134c73a5f7503ea0582fe4f25eee64457937ff3da7", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "emacs-lorem-ipsum", + "sha256": "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx", "rev": "893a27505734a1497b79bc26e0736a78221b35d9" }, "recipe": { "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140911.1608", "deps": [] }, "db": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-db.git", - "sha256": "b3f82ca0fd211476470d1d91d03617c2fb02255ac16012b127a3a530f224db6b", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-db", + "sha256": "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k", "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438" }, "recipe": { "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140421.1611", "deps": [ @@ -39206,30 +41579,54 @@ }, "tinysegmenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/tinysegmenter.el.git", - "sha256": "12b50fdd8a7a070b1e5132a2ab2e68c1ec66f42b72cd2aaaae0f1a91abb10cd9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "tinysegmenter.el", + "sha256": "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j", "rev": "872134704bd25c13a4c59552433da4c6881b5230" }, "recipe": { "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.413", "deps": [ "cl-lib" ] }, + "org-ref": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jkitchin", + "repo": "org-ref", + "sha256": "0clz78kcvibiic3igy0dik5bv0jvmngr7jnq2g93lq0dbxcy1d3f", + "rev": "d7bee0742f4f2807e5a464120cac4ae4d7768aff" + }, + "recipe": { + "sha256": "0sxhq603zq55lfq2z7jdfka7d5jphgnn2xfhw8n6ihzynx0lsjzx", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151218.503", + "deps": [ + "dash", + "emacs", + "helm", + "helm-bibtex", + "hydra", + "key-chord" + ] + }, "flymake-jshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/flymake-jshint.el.git", - "sha256": "6a6cb6bbfa90056936c4f00ef593f427e140944be1204f9df0f9b4b3ae4b957b", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "flymake-jshint.el", + "sha256": "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a", "rev": "79dd554c227883c487db38ac111306c8d5382c95" }, "recipe": { "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140319.1700", "deps": [ @@ -39238,14 +41635,15 @@ }, "navi-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/navi.git", - "sha256": "f72f816f248fdb8f37c20b332016af3727080ee83cd45625b6870fe26916a83c", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a", "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31" }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.957", "deps": [ @@ -39255,28 +41653,30 @@ }, "smarty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/smarty-mode.git", - "sha256": "5d4690171b338286c8f079d90911faa6d59af9607577bca2466b6ae141b783ee", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "smarty-mode", + "sha256": "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx", "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568" }, "recipe": { "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100703.658", "deps": [] }, "flymake-sass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-sass.git", - "sha256": "7d3ed7cfd2887817ce371fc57efb0175e4bce05f03152f77df6424bf0240de4e", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1", "rev": "748f13caa399c27c41ba797da9e214b814f5a30f" }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140308.525", "deps": [ @@ -39285,42 +41685,45 @@ }, "shimbun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/w3m.git", - "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" }, "recipe": { "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120718.2238", "deps": [] }, "sackspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/sackspace.el.git", - "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130719.456", "deps": [] }, "bind-chord": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/use-package-chords.git", - "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "use-package-chords", + "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz", "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" }, "recipe": { "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.1007", "deps": [ @@ -39330,14 +41733,15 @@ }, "org2blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/org2blog.git", - "sha256": "5dda51e79a81733df44dfb8d5f56404328ae6b619eba483e8f07e1eee85bc4b3", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "1cy4bglfxq87iwz4iflyc5mswa2381b5z3gv9ps3sww1kbkm3njx", "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c" }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1028", "deps": [ @@ -39348,28 +41752,30 @@ }, "ample-regexps": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/ample-regexps.el.git", - "sha256": "b668190ee591c7bbf552edcb184d981bb9eb838b911d77d82d6f443acb8a8b49", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "ample-regexps.el", + "sha256": "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g", "rev": "884c712a82773d3af500e71d20bebe52340352c5" }, "recipe": { "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.500", "deps": [] }, "mhc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/mhc.git", - "sha256": "c8a0f274ed6cfd7398cef685ec59b5aa4a3522216d03c8a0aa2e0511e2b6736b", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "mhc", + "sha256": "0z34x254z79acslxzn35mg9nsxh0cpmb540k90vlp7am7g4d4sra", "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d" }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.238", "deps": [ @@ -39378,16 +41784,17 @@ }, "company-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-ghc.git", - "sha256": "0de87f418110d0dafddad28fdfb4eb95c1f97b2a6080dd483b496e6091906912", - "rev": "e7be2b13b3ca3e9de63e8a66d0444e4750cbf22c" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "06ljm0ysz8czdr32gfq1y3nm3jcywihdszgnc2alx1hcgqiq0ds6", + "rev": "d78fcee6c8fa4f786a1e15a3bb78d2dd2c56b6af" }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151126.639", + "version": "20151217.859", "deps": [ "cl-lib", "company", @@ -39404,7 +41811,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.1302", "deps": [ @@ -39414,14 +41821,15 @@ }, "flycheck-css-colorguard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Simplify/flycheck-css-colorguard.git", - "sha256": "beacbde63ff31170cc238a7d6c8b2a9209b6709ce04c3d332ca25ffa9379d3a6", + "tag": "fetchFromGitHub", + "owner": "Simplify", + "repo": "flycheck-css-colorguard", + "sha256": "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi", "rev": "8c2061c11d5465eec77ad471bef413eb14d122da" }, "recipe": { "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.347", "deps": [ @@ -39431,42 +41839,45 @@ }, "ruby-end": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-end.git", - "sha256": "68812f31857a9568c6c7a90e9f3654317675ae4d81e1ae228c963b4c86da778e", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-end", + "sha256": "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55", "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97" }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141215.623", "deps": [] }, "openstack-cgit-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/openstack-cgit-browse-file.git", - "sha256": "e0e025db91c9560e5d9a39308ce965f33fc9607482a833edacdde04ba6bb0601", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "openstack-cgit-browse-file", + "sha256": "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70", "rev": "244219288b9aef41155044697bb114b7af83ab8f" }, "recipe": { "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130819.427", "deps": [] }, "addressbook-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/addressbook-bookmark.git", - "sha256": "2d116f542a4e1016c85fed955c3d5031227400554d53a2c05c3e23142246ef2f", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "addressbook-bookmark", + "sha256": "0bzg8qi188rybk0a4lsdal0788iia0ymr5gdbz41c42f59a6y49d", "rev": "784df4fa06f90214ddba127391ef4fcb6b699468" }, "recipe": { "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.2308", "deps": [ @@ -39475,14 +41886,15 @@ }, "magnatune": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eikek/magnatune.el.git", - "sha256": "1e410e567deb5d46c13cf46bdb52f844dba1a24f9228bb152fbf2d52bf111fc3", + "tag": "fetchFromGitHub", + "owner": "eikek", + "repo": "magnatune.el", + "sha256": "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y", "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4" }, "recipe": { "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1435", "deps": [ @@ -39492,14 +41904,15 @@ }, "f": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/f.el.git", - "sha256": "fc9228dbe65b1f31b023ccf71eb8716b07536322d751c8307215f51cc1ee9b19", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1", "rev": "e0259ee060ff9a3f12204adcc8630869080acd68" }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.323", "deps": [ @@ -39509,14 +41922,15 @@ }, "fortpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rosenbrockc/fortpy-el.git", - "sha256": "6f0759e05ef3ef67a0f500208aca2783633d1e7113ecac9d1d38139acb3288dc", + "tag": "fetchFromGitHub", + "owner": "rosenbrockc", + "repo": "fortpy-el", + "sha256": "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y", "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b" }, "recipe": { "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1532", "deps": [ @@ -39528,14 +41942,15 @@ }, "dired-ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -39545,14 +41960,15 @@ }, "ac-cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/ac-cider.git", - "sha256": "858ace2f7d2919deaee62e666b8b69da0bcf720afd83c7b973acf6fd8f989fcc", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "ac-cider", + "sha256": "1k4zk27zvxmcffwwg0zx19rcy2ysd65nnrifwspdw699glpwx2l5", "rev": "eeb4b3ae1e91d03d765f6c39994792e4f05f6600" }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.508", "deps": [ @@ -39570,49 +41986,52 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110206.1430", "deps": [] }, "heroku": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/heroku.el.git", - "sha256": "12eec40d8876008498f76053872b32f8c363b56dadbc7044f68f5f8c56bc8530", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "heroku.el", + "sha256": "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj", "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a" }, "recipe": { "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120629.1313", "deps": [] }, "otter-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scvalex/script-fu.git", - "sha256": "da5aaa3d6acc7bfd9d58a9432f6a02155dce6c6897631739a54edfdab01cd128", + "tag": "fetchFromGitHub", + "owner": "scvalex", + "repo": "script-fu", + "sha256": "0a6i3jqdmpsfllwifqwpd1ncwp8m09m2yhx9b2fzsyycd8yslnns", "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b" }, "recipe": { "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121202.1103", "deps": [] }, "zombie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/zombie.git", - "sha256": "8f9563efe5a1080efde2929962a8c6c2756bbc04a552cd7ade84afcf8ca7a3be", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "zombie", + "sha256": "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg", "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345" }, "recipe": { "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.1016", "deps": [] @@ -39625,21 +42044,22 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "basic-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/basic-theme.el.git", - "sha256": "e8d897ca1f114425587715a8a374b8633ce6e441e61166e1b2bec3cb98e176dd", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "basic-theme.el", + "sha256": "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78", "rev": "e3c32e1285749b4135d4d593f06566c631c26456" }, "recipe": { "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.307", "deps": [ @@ -39654,7 +42074,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.514", "deps": [ @@ -39663,28 +42083,30 @@ }, "ibuffer-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/svend/ibuffer-tramp.git", - "sha256": "b84a5a9b59eba44b339f83a2af3d3ab9dd802aec07765bf4b847dc224e5ed9d5", + "tag": "fetchFromGitHub", + "owner": "svend", + "repo": "ibuffer-tramp", + "sha256": "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq", "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4" }, "recipe": { "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1139", "deps": [] }, "sound-wav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sound-wav.git", - "sha256": "871e0c0443ac09df8f4c860874719c5028426503264cd8ac0e8ccc35520b1dac", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq", "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9" }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.657", "deps": [ @@ -39694,14 +42116,15 @@ }, "psession": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/psession.git", - "sha256": "eb5c0636e3329a9a4089b7e4a9b09e23207471faf00e52ec13924c9e2d4f1cad", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b", "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475" }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1306", "deps": [ @@ -39711,14 +42134,15 @@ }, "elfeed-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1724", "deps": [ @@ -39729,14 +42153,15 @@ }, "osx-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/osx-lib.git", - "sha256": "c6732025bdcdd8793bfab73a84a1898314750aef4620f564655e39f3f38d52e3", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "osx-lib", + "sha256": "1s2bv4sypf910wq62d5nfzdlmp54y1igqx8l7gzm1c6fnaz4fway", "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671" }, "recipe": { "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1857", "deps": [ @@ -39745,14 +42170,15 @@ }, "wgrep-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1731", "deps": [ @@ -39761,14 +42187,15 @@ }, "cljr-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/cljr-helm.git", - "sha256": "961681015da836a63eb9117c94b9965300b123b1d80d316da943066ef315bb79", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln", "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef" }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1507", "deps": [ @@ -39778,28 +42205,30 @@ }, "tt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davorg/tt-mode.git", - "sha256": "c50c4fa214d58140d6c4a7fc52c83f8efe9a858ad6fcab3273be4ec48d5c9d55", + "tag": "fetchFromGitHub", + "owner": "davorg", + "repo": "tt-mode", + "sha256": "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm", "rev": "85ed3832e7eef391f7879d9990d59c7a3493c15e" }, "recipe": { "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130804.610", "deps": [] }, "ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1953", "deps": [ @@ -39809,42 +42238,45 @@ }, "japanlaw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/japanlaw.el.git", - "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2341", "deps": [] }, "smart-cursor-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/smart-cursor-color.git", - "sha256": "71fd6791e87857a7ac853b7375abffe0c59a9574f11b6a55e7b4f46ac1c3f7f9", - "rev": "b0b71f5e14d867aac7e5afdb53e8bd4b338c625b" + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "smart-cursor-color", + "sha256": "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn", + "rev": "1d190f49ca77734b55ac58f1b6276e42ada967b0" }, "recipe": { "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.1119", "deps": [] }, "link-hint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/link-hint.el.git", - "sha256": "16770038227a4e6d9e04a088c46c700fa1ea866aa99fbb9e5fdc18bcb29b9a3a", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "0flskfrbq66wbygbp7x9da3fm88gf1nc92500jg6skks48w00xqn", "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09" }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1845", "deps": [ @@ -39854,70 +42286,75 @@ }, "ox-gfm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/ox-gfm.git", - "sha256": "36dabdc845cd829ba38d17251390b52bc021edb04d24b17b3815109b4558d33d", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "ox-gfm", + "sha256": "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin", "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8" }, "recipe": { "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.226", "deps": [] }, "ibuffer-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/ibuffer-git.git", - "sha256": "d4d0c2bed89c90cf46a631314c3a6f28df70309972f10ee9d6204fac7be92661", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "ibuffer-git", + "sha256": "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd", "rev": "d326319c05ddb8280885b31f9094040c1b365876" }, "recipe": { "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110508.231", "deps": [] }, "golden-ratio-scroll-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/golden-ratio-scroll-screen.git", - "sha256": "fc1a7db020e0ca461678c553679c7b29159ca36e1f667dd1569c9d6b7e975c20", - "rev": "ce39ddedd764a94bce92c642931727562a0e8150" + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "golden-ratio-scroll-screen", + "sha256": "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm", + "rev": "585ca16851ac543da75d6ff61872565fb851a118" }, "recipe": { "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.430", "deps": [] }, "ewmctrl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/ewmctrl.git", - "sha256": "1b2fcb6d0ea29733f1e7263a9e391a99ae670765bf44cd68c617681fe76330bb", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "ewmctrl", + "sha256": "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv", "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28" }, "recipe": { "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.338", "deps": [] }, "git-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.618", "deps": [ @@ -39928,14 +42365,15 @@ }, "flycheck-dedukti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rafoo/flycheck-dedukti.git", - "sha256": "c67a68906929c8a4bfbaa6a63bc5cdf5874ccbbcb2dfc0ff0e04fc1c5b3988c3", + "tag": "fetchFromGitHub", + "owner": "rafoo", + "repo": "flycheck-dedukti", + "sha256": "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6", "rev": "717977c0ead0dc6e267ba2164781d92ee016b7b2" }, "recipe": { "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.851", "deps": [ @@ -39945,14 +42383,15 @@ }, "json-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshwnj/json-mode.git", - "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "tag": "fetchFromGitHub", + "owner": "joshwnj", + "repo": "json-mode", + "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3", "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.2200", "deps": [ @@ -39962,14 +42401,15 @@ }, "tbx2org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/tbx2org.git", - "sha256": "a4f1cebbe3f2fdba0b7e3061c317e099bb862911d991f66ca0185ec63d06e8ca", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "tbx2org", + "sha256": "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4", "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7" }, "recipe": { "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140224.959", "deps": [ @@ -39980,14 +42420,15 @@ }, "edbi-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-minor-mode.git", - "sha256": "1a99f7d988d006d5fcbc0c108ec0a55d6a39fbfac131e80bbdea4b73571eec5e", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-minor-mode", + "sha256": "1lndz0qlmjvi9r2f1yzw217b971ym5jzfrddcd6rind1asrzl32a", "rev": "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937" }, "recipe": { "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.703", "deps": [ @@ -39996,14 +42437,15 @@ }, "fountain-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/fountain-mode.git", - "sha256": "990506a09c8f48c76bf827ff62b1f87563e36e9c47480db2d1bcc34d527a351f", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "fountain-mode", + "sha256": "07rmg994vhxws6r0sj27kipf6qvmz2qn5zr7z1mwfj4gkjh0c1cr", "rev": "934243afbfa042643a973af1b6f26d7353517526" }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2321", "deps": [ @@ -40013,56 +42455,60 @@ }, "erc-tweet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-tweet.el.git", - "sha256": "16f0287af6b5a54bd814415cf0316a0c52778b4c4244cd6ab4bdc096e4271885", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-tweet.el", + "sha256": "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n", "rev": "91fed61e139fa788d66a7358f0d50acc896414b8" }, "recipe": { "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.758", "deps": [] }, "ace-jump-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/winterTTr/ace-jump-mode.git", - "sha256": "e6fbd567ce1ff08f097bc705c2023839376ce95f0b875731283905d0c2ea5b4a", + "tag": "fetchFromGitHub", + "owner": "winterTTr", + "repo": "ace-jump-mode", + "sha256": "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6", "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac" }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140616.315", "deps": [] }, "tommyh-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wglass/tommyh-theme.git", - "sha256": "5eedc65cdf5cc30a2d38202401460ac714603838080d02849626dffa5f698b5f", + "tag": "fetchFromGitHub", + "owner": "wglass", + "repo": "tommyh-theme", + "sha256": "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay", "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5" }, "recipe": { "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1830", "deps": [] }, "ob-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-translate.git", - "sha256": "6cc83a0b5fb5177680727c7f935330a7c104f0d5322d33553c4593a8a237c69c", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225", "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb" }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.929", "deps": [ @@ -40072,14 +42518,15 @@ }, "lush-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andre-richter/emacs-lush-theme.git", - "sha256": "5981e6b1865c2def98ed12300aba2efe9682b941e00cf6352135159b901e6757", + "tag": "fetchFromGitHub", + "owner": "andre-richter", + "repo": "emacs-lush-theme", + "sha256": "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar", "rev": "3b80004f33cdce9f4db69e9ccf2041561e98985d" }, "recipe": { "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141107.1006", "deps": [ @@ -40095,21 +42542,22 @@ }, "recipe": { "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1717", "deps": [] }, "jumblr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/jumblr.git", - "sha256": "c7f8f8cd5b5400b756eb7de8be4150b44acd9e00245aa944180a325834f05277", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "jumblr", + "sha256": "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j", "rev": "705c7286e09a307b2b7f60072a12ed45325657c0" }, "recipe": { "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140908.1552", "deps": [ @@ -40119,14 +42567,15 @@ }, "ox-trac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JalapenoGremlin/ox-trac.git", - "sha256": "1a653957bfc3ef9cc12292b192e9fcf3980485a9b82df12e60d4049c984039f0", + "tag": "fetchFromGitHub", + "owner": "JalapenoGremlin", + "repo": "ox-trac", + "sha256": "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db", "rev": "2f2f70eefb9679025ae5812e221f0c118da36012" }, "recipe": { "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.1155", "deps": [ @@ -40135,42 +42584,45 @@ }, "plim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dongweiming/plim-mode.git", - "sha256": "e69be159b6391b3d0e5a43920a620e879d23f5ac54793b56ea881df1aa6a03f0", + "tag": "fetchFromGitHub", + "owner": "dongweiming", + "repo": "plim-mode", + "sha256": "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2", "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d" }, "recipe": { "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140812.1913", "deps": [] }, "default-text-scale": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/default-text-scale.git", - "sha256": "a86ac67e81724f78c76e4b1f613a2db47bae6aaf9fc2d3512754cc630f0e5bfb", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "default-text-scale", + "sha256": "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8", "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2" }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150227.1156", "deps": [] }, "shm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/structured-haskell-mode.git", - "sha256": "cc544d7dd55f0fc67b943705a8d69ce84cda5edca22a180b8866f47ba9ec4900", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1cr83az4xm20i2v8bd5dbqll3d8vhjb3m2ypzwbxlizjcxpa638c", "rev": "a305ca94059d31c60d549494756d5b4eabec20b0" }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.133", "deps": [] @@ -40183,21 +42635,22 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1752", "deps": [] }, "ssh-tunnels": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/death/ssh-tunnels.git", - "sha256": "9007e048fdbe7e66fd6f2d8197952584eebc78930fceef2ed4d29327b7824581", + "tag": "fetchFromGitHub", + "owner": "death", + "repo": "ssh-tunnels", + "sha256": "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh", "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4" }, "recipe": { "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.518", "deps": [ @@ -40207,28 +42660,30 @@ }, "tramp-hdfs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/tramp-hdfs.git", - "sha256": "d44ea26732c9c60d3003f30c47f0267cb9e729f82e76bf1e255420c4545c3170", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "tramp-hdfs", + "sha256": "057a3z42j4s0npl35p5rl6n767s2wq0a3c49wii3f1w8p40fh7qc", "rev": "4a3ccaf931ecffeae283cb1766425afbc0f81101" }, "recipe": { "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.2236", "deps": [] }, "handlebars-sgml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacott/handlebars-sgml-mode.git", - "sha256": "101bde20236d764466179e86041228010ba1eb59f2c10e68aca32f8db7520078", + "tag": "fetchFromGitHub", + "owner": "jacott", + "repo": "handlebars-sgml-mode", + "sha256": "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k", "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4" }, "recipe": { "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130623.1833", "deps": [] @@ -40241,21 +42696,22 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141029.1049", "deps": [] }, "git-gutter-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", - "sha256": "3b09931a7279b23e5d4abec5e49b832f1fd2e05ddc87947e7405539d56f2b5ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter-fringe", + "sha256": "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv", "rev": "62accbd227b17073d623faa4cc472280fc45f53e" }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.2339", "deps": [ @@ -40267,14 +42723,15 @@ }, "flim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/flim.git", - "sha256": "17d2d1bb32e96611b137c51867f3053221dae521e89862b9bab18d45f81c21f1", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "flim", + "sha256": "1w913kw4b3dipawn567847jxl89j0prnf6656yqi2rp96axx3lhp", "rev": "60fa2c74a72358658603480addc75b1d23f6431a" }, "recipe": { "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.150", "deps": [ @@ -40283,14 +42740,15 @@ }, "molokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alloy-d/color-theme-molokai.git", - "sha256": "624b09625482f1050f3830d7fdbc1ec109b8dc4599a242fdf48edbdc6e2a0ac3", + "tag": "fetchFromGitHub", + "owner": "alloy-d", + "repo": "color-theme-molokai", + "sha256": "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2", "rev": "04a44f21184b6a26caae4f2c92db9019d883309c" }, "recipe": { "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1045", "deps": [] @@ -40304,63 +42762,67 @@ }, "recipe": { "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1353", "deps": [] }, "diffscuss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hut8labs/diffscuss.git", - "sha256": "0fa6f697661b1c6a3ef12715dc5bcbf4614e5dcbc66af55a4db30ba5f5c220bf", + "tag": "fetchFromGitHub", + "owner": "hut8labs", + "repo": "diffscuss", + "sha256": "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr", "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7" }, "recipe": { "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141014.1857", "deps": [] }, "flyspell-lazy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/flyspell-lazy.git", - "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "flyspell-lazy", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm", "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.852", "deps": [] }, "insert-shebang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psachin/insert-shebang.git", - "sha256": "8de74d3b85c868f7548e5273e8fd0a804f62c6714f54d8f8fda8079c04a86b5d", + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx", "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36" }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141119.627", "deps": [] }, "anything-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", - "sha256": "bec52c9067cacf96a5e81a680ae6d3a7994e49063056a5430a1534f640286e35", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-exuberant-ctags", + "sha256": "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy", "rev": "8ed688fd526751e044435bb77135f5315c8167e5" }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140316.1837", "deps": [ @@ -40369,14 +42831,15 @@ }, "py-autopep8": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-autopep8.el.git", - "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-autopep8.el", + "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd", "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150420.621", "deps": [] @@ -40390,35 +42853,37 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150415.1426", "deps": [] }, "nyan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TeMPOraL/nyan-mode.git", - "sha256": "9e302b81a1f383311576b68c92fcfcdb46b2098cb76ff866fa82a695e2b849c6", + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf", "rev": "eb940664cbca6165644d97989f402c8c5bd0e384" }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.35", "deps": [] }, "repeatable-motion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-repeatable-motion.git", - "sha256": "93fd887f3023694c58de430142cd27e89010f07acecc889ff7e6c525a1c2f400", + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.1312", "deps": [ @@ -40427,56 +42892,60 @@ }, "libmpdee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andyetitmoves/libmpdee.git", - "sha256": "560570c1acb4d2938ad48af17e6e0405459fc256dd74a5154b5332647f645f41", + "tag": "fetchFromGitHub", + "owner": "andyetitmoves", + "repo": "libmpdee", + "sha256": "0hazcizn8cjk9casax6xav19yi850ip7xwcasj597lmlmk0p01an", "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8" }, "recipe": { "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150131.1557", "deps": [] }, "abc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/abc-mode.git", - "sha256": "da45712c3900fbf2bae6207fbe60ac905608fffa212ab4e6829234ffc4e58fc0", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs", "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d" }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.1144", "deps": [] }, "enotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/enotify.git", - "sha256": "9a00191fd5fcc695ee6ef277eef8dafbb6ae20d2f0e21aef840ce0b1969971c4", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd", "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80" }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.848", "deps": [] }, "unidecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sindikat/unidecode.git", - "sha256": "fca560a403812cb7077bd8a203174392e4ddc26ff1f7ca770e1590f6d10c79cb", + "tag": "fetchFromGitHub", + "owner": "sindikat", + "repo": "unidecode", + "sha256": "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw", "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c" }, "recipe": { "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140317.2318", "deps": [ @@ -40485,28 +42954,30 @@ }, "org-outlook": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-outlook.el.git", - "sha256": "c8136b0207a6c4a74a99ebd83af9a8c674d03ae45fd8ac662e7e18f6ca28fbc4", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-outlook.el", + "sha256": "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb", "rev": "b7978fedb0d50c1a3e499bf7e98b5cc526028cd4" }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.747", "deps": [] }, "highlight2clipboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/highlight2clipboard.git", - "sha256": "a60abc5d16130a78efcc24a8e4de1e93af543061dba3f61d539859337cc6d61a", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "highlight2clipboard", + "sha256": "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6", "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15" }, "recipe": { "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1340", "deps": [ @@ -40515,42 +42986,45 @@ }, "orgtbl-ascii-plot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgtblasciiplot.git", - "sha256": "d9812e1fab02a35ae1a49ee2144a49bee0c0e32a8954a91bc1a4bbe5c1c9b241", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtblasciiplot", + "sha256": "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z", "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e" }, "recipe": { "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1551", "deps": [] }, "kill-ring-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/kill-ring-search.el.git", - "sha256": "56b6547f92c3516b6071d664e2cc2fb854998b269147b52589dd72f6f1bf4b75", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "kill-ring-search.el", + "sha256": "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v", "rev": "23535b4a01a1cb1574604e36c49614e84e85c883" }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140422.1055", "deps": [] }, "soothe-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-soothe-theme.git", - "sha256": "1c7720d44f7eafed61149fc038893dad45b98fda967e6c7212f525dc370cf081", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-soothe-theme", + "sha256": "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw", "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b" }, "recipe": { "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.941", "deps": [ @@ -40559,14 +43033,15 @@ }, "cider-spy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonpither/cider-spy.git", - "sha256": "9deee0ae8dcf561dc3d3308b2d053def4ddbd1815f89adb571242f163e11fa6c", + "tag": "fetchFromGitHub", + "owner": "jonpither", + "repo": "cider-spy", + "sha256": "1hvvfp58x269yapnayxwyclgqy52azf76rb703mlfqivj1gzd7p3", "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41" }, "recipe": { "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.946", "deps": [ @@ -40577,42 +43052,45 @@ }, "plan9-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/plan9-theme.el.git", - "sha256": "cd776d9c8fa1f7bf0f1cde94eae61167273adb518e599ddeabee9dc335bfa3eb", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "plan9-theme.el", + "sha256": "18i8n0v1a3z82dbn29m2h1vb5anvpbvzd9zwn7ffaq01pi0fj2p9", "rev": "0136d0bf1074cf64f305b4396edcf0f54a90436f" }, "recipe": { "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.745", "deps": [] }, "visual-ascii-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/visual-ascii-mode.git", - "sha256": "16d0d917bfb7b4b524c982fb271e8cc20594c78437ba5931ba49894487ab68b3", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "visual-ascii-mode", + "sha256": "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n", "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947" }, "recipe": { "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150129.446", "deps": [] }, "helm-go-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-go-package.git", - "sha256": "2c722e82af5e73013800d8c7ab46f33363a2145e75661204384bca3403b501e4", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-go-package", + "sha256": "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic", "rev": "1909156510a4e73697a86b8c040d38e4d352851a" }, "recipe": { "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.804", "deps": [ @@ -40623,14 +43101,15 @@ }, "scala-outline-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ancane/scala-outline-popup.git", - "sha256": "a4be5cdf917369a1b037084c5b0719812298899e667c92a61b6d61f967cec695", + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "scala-outline-popup", + "sha256": "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz", "rev": "47e92a1a7738738164d7657ee324bc382a383985" }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1137", "deps": [ @@ -40642,28 +43121,30 @@ }, "http-twiddle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hassy/http-twiddle.git", - "sha256": "c294a23e60fa805b620b2c387b9b8a0d61ec5850a7102a389d98700d5dc11101", + "tag": "fetchFromGitHub", + "owner": "hassy", + "repo": "http-twiddle", + "sha256": "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562", "rev": "bbf025b0f57068fe0fb3f1fbc2f6fd7bf0d65992" }, "recipe": { "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.744", "deps": [] }, "vagrant-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/vagrant-tramp.git", - "sha256": "fe39cc7502b30ba978710c8b2097382f7c6d1cac959305cf20604e1d561cb81c", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "vagrant-tramp", + "sha256": "075q3ib1skk0437hb4wmmhf6sz1g72bj12qcf5waj2xk09swqfgy", "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33" }, "recipe": { "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.1723", "deps": [ @@ -40672,42 +43153,45 @@ }, "typing-game": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-typing-game.git", - "sha256": "88a077585cb992f85dc39e412e99a24f963d97373f761b8764866a1ed98db744", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-typing-game", + "sha256": "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848", "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8" }, "recipe": { "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.940", "deps": [] }, "symon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/symon.git", - "sha256": "78caec6e78442cc413d1019b7c2e1f8c2f920e330dcade16906b01f7363260d5", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon", + "sha256": "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq", "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842" }, "recipe": { "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.300", "deps": [] }, "edbi-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-django.git", - "sha256": "58c12575d394b5cfa5e0bc4d559ac18625ea531a41f4706159253cd4b1b0916d", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-django", + "sha256": "0jlr1da26jkrgadaznxjynjqbg4cpnq7gda3qab2qqrjzzi8cfia", "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102" }, "recipe": { "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -40718,28 +43202,30 @@ }, "smart-tabs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcsalomon/smarttabs.git", - "sha256": "cb4c5eb94abc6d2b7737c459f71e8d780669fe9df399185adbef29b44e86c5e8", + "tag": "fetchFromGitHub", + "owner": "jcsalomon", + "repo": "smarttabs", + "sha256": "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b", "rev": "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e" }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140331.1829", "deps": [] }, "amd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/amd-mode.el.git", - "sha256": "317fd55a4e4ea25811e188b5a7584f6b41e9160d55278453a5a602c356cd5cab", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "12vjjdyxmm6ky8d7xbsg0pmfam12vzghzzr3j6klji01i8lxmh74", "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f" }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.318", "deps": [ @@ -40754,28 +43240,30 @@ }, "lua-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/lua-mode.git", - "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "lua-mode", + "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb", "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.730", "deps": [] }, "ace-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-window.git", - "sha256": "8ae8f85b0a8e43d141226ee77d862e13aef6637d4e863cbf5023dbe825396014", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a", "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0" }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.1037", "deps": [ @@ -40784,14 +43272,15 @@ }, "origami": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/origami.el.git", - "sha256": "88781a830861e18a35b9ed7d804d98cc1e4b5796782039cfd928f78c34a0a35c", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "origami.el", + "sha256": "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48", "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1" }, "recipe": { "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.650", "deps": [ @@ -40802,14 +43291,15 @@ }, "ace-popup-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ace-popup-menu.git", - "sha256": "35dc81c6d33012dd595ab24c0c192c95b18536589a64105065b2bf40b1e1c50c", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ace-popup-menu", + "sha256": "0ffkdq94slfy8w73bznc7bcy4amylhsh2nk2vvdwwqmxmviirlnq", "rev": "92cac2f656b5000d2f267ffaa92a275f40a2719d" }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.727", "deps": [ @@ -40820,42 +43310,45 @@ }, "zoom-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-zoom-window.git", - "sha256": "df810d2e922e7e00ba9858c25f28b93148f9c7ae891fa5ece914de8c284c12b0", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-zoom-window", + "sha256": "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj", "rev": "45ae8d0f47af351d73daeb6cecc366ea7eb49a88" }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.2305", "deps": [] }, "shell-current-directory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/metaperl/shell-current-directory.git", - "sha256": "2c7ac90b90b4821c45a2a1fd26530cc7a5587ee403cb1e7ecc20b7d6589182f0", + "tag": "fetchFromGitHub", + "owner": "metaperl", + "repo": "shell-current-directory", + "sha256": "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic", "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a" }, "recipe": { "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140101.1754", "deps": [] }, "ghc-imported-from": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", - "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "ghc-imported-from-el", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi", "rev": "fcff08628a19f5d26151564659218cc677779b79" }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.1332", "deps": [ @@ -40864,14 +43357,15 @@ }, "elhome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/demyanrogozhin/elhome.git", - "sha256": "13e42ace869b8f48ed169931d7b733176b10cc3cb37b249148dec850fe7f3ce4", + "tag": "fetchFromGitHub", + "owner": "demyanrogozhin", + "repo": "elhome", + "sha256": "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h", "rev": "af112592fbc41a625d1d17828db78357df23c127" }, "recipe": { "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131202.1308", "deps": [ @@ -40880,14 +43374,15 @@ }, "company-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/company-emoji.git", - "sha256": "a2cd0076231cf80a7ee8b360355079bb639e531132212ae35161be5acfc1f523", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6", "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde" }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.20", "deps": [ @@ -40897,14 +43392,15 @@ }, "stickyfunc-enhance": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-stickyfunc-enhance.git", - "sha256": "0ff8489cbae9d6f61e08686d6e03fc3f5ff9be24ed76c2395d40485bb296bd99", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-stickyfunc-enhance", + "sha256": "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g", "rev": "13bdba51fcd83ccbc3267959d23afc94d458dcb0" }, "recipe": { "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150429.1314", "deps": [ @@ -40920,21 +43416,22 @@ }, "recipe": { "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150123.1800", "deps": [] }, "org-password-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leafac/org-password-manager.git", - "sha256": "88dde057c1117f56f9dd07a5212d9a7ddc7b19406d24b59dbb649b92fd3a4b6c", + "tag": "fetchFromGitHub", + "owner": "leafac", + "repo": "org-password-manager", + "sha256": "0v2b7byr56v4pffva93d80cppp3xk8nj3987vpwmczqiq5by1pc8", "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03" }, "recipe": { "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.1715", "deps": [ @@ -40944,28 +43441,30 @@ }, "graphene-meta-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene-meta-theme.git", - "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene-meta-theme", + "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17", "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.400", "deps": [] }, "e2wm-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-term.git", - "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", "rev": "65b5ac88043d5c4048920a048f3599904ca55981" }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.808", "deps": [ @@ -40982,21 +43481,22 @@ }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.858", "deps": [] }, "tracwiki-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/merickson/tracwiki-mode.git", - "sha256": "aecc7be6814b922522a26f6f4ac5c35b23b778fc9a65b909049038e769a045d4", + "tag": "fetchFromGitHub", + "owner": "merickson", + "repo": "tracwiki-mode", + "sha256": "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f", "rev": "6a620444d59b438f42383b48cd4c19c03105dba6" }, "recipe": { "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1021", "deps": [ @@ -41005,14 +43505,15 @@ }, "x86-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/x86-lookup.git", - "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.732", "deps": [ @@ -41022,14 +43523,15 @@ }, "badwolf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "tag": "fetchFromGitHub", + "owner": "bkruczyk", + "repo": "badwolf-emacs", + "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j", "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1125", "deps": [ @@ -41038,14 +43540,15 @@ }, "cursor-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/cursor-test.el.git", - "sha256": "34916c1ad9f5836377893fd8ca77a9aff36e5c6f9ea89f78a0cc49b27f84b672", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "cursor-test.el", + "sha256": "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l", "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b" }, "recipe": { "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131207.1132", "deps": [ @@ -41054,14 +43557,15 @@ }, "sunshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaronbieber/sunshine.el.git", - "sha256": "945a75ef40851184916dbf3456d3d559b614855da3aae7c73ebc5fe539dc71f4", + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "sunshine.el", + "sha256": "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll", "rev": "8783923f0aa4b835b90359443b941b10758c28d7" }, "recipe": { "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.814", "deps": [ @@ -41070,44 +43574,47 @@ }, "smart-mark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/smart-mark.git", - "sha256": "0f3a45c6efc6ff7b824e4566d5208e2f8623b9f993b4c8dd2960cac6e3a91b6b", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "smart-mark", + "sha256": "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg", "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0" }, "recipe": { "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.2110", "deps": [] }, "region-bindings-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/region-bindings-mode.git", - "sha256": "fe13e5656aca50c9c7966ea7dc0ce2857ae9a631938560783fd9366fd8886e0a", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "region-bindings-mode", + "sha256": "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy", "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc" }, "recipe": { "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.1714", "deps": [] }, "rspec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pezra/rspec-mode.git", - "sha256": "aa6b1ffd7579260d8bf40d08788cb5c93668e444b2cfe343399c710a82ffc50e", - "rev": "7b0a900d4b525abc683de5900efd484f4a44f063" + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "1rgy4jp1ydvwxb83qmbn1wwscgdqn9pfjw8788n4rg1l2ypb8w0s", + "rev": "fc3bb819136966b1d1bd31335724d702132fff0b" }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151003.515", + "version": "20151217.2046", "deps": [ "cl-lib", "ruby-mode" @@ -41115,14 +43622,15 @@ }, "mb-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/mb-url.git", - "sha256": "664b387cd5a270522e09e329a2c767c335f22cd27e7c93d0bb063a39e1b38400", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "mb-url", + "sha256": "1qd4vya49sy7iwcpnyd91d0zx3niwsavhdcq6387rsb0j64hwybl", "rev": "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c" }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1216", "deps": [ @@ -41131,56 +43639,60 @@ }, "shell-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/shell-toggle.el.git", - "sha256": "29bf2bb7c627ef67940397f86355a495bbf75047197e6c93927729a61a634a6b", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "shell-toggle.el", + "sha256": "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9", "rev": "0d01bd9a780fdb7fe6609c552523f4498649a3b9" }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150226.811", "deps": [] }, "idomenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/birkenfeld/idomenu.git", - "sha256": "7344f4bb7b747877a21ac3ebaeccafa759fea0a69ccac205cc31eb47614cf0d6", + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw", "rev": "4b0152d606360c70204fb4c27f68de79ca885386" }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1520", "deps": [] }, "unicode-troll-stopper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", - "sha256": "578fd61aadec15df8d62a2d413e8cd7277a379f2dde56d76145ee0fcc59554b7", + "tag": "fetchFromGitHub", + "owner": "camsaul", + "repo": "emacs-unicode-troll-stopper", + "sha256": "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f", "rev": "15e4b57b78bf643bb56e5000078030cbb5c66e2a" }, "recipe": { "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.2031", "deps": [] }, "ein-mumamo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/ein-mumamo.git", - "sha256": "b48745dd493598d76094bef497d764abbd9c6a8aea0fdfb6df722f2cb403371c", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "ein-mumamo", + "sha256": "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570", "rev": "028fefec499598add1a87b92ed991891f38f0c7b" }, "recipe": { "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150301.1828", "deps": [ @@ -41189,14 +43701,15 @@ }, "omni-quotes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-quotes.el.git", - "sha256": "9887e844a4d67ae13f074407cbf2017635640f3ea700eafcf9e11a37767246ed", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-quotes.el", + "sha256": "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6", "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf" }, "recipe": { "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1257", "deps": [ @@ -41206,14 +43719,15 @@ }, "helm-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-dictionary.git", - "sha256": "c8f07faee3e507cba65395613eb650fa4391dabd61949c38807f9e4ed63cab16", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-dictionary", + "sha256": "05mb7kb4x7kzh0w9r531ppd92hzsa2v3wqcmafkcn1z5wfp7zw68", "rev": "2aeafba1556c76cc5ff949ca50f341fc2aa687b0" }, "recipe": { "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1336", "deps": [ @@ -41222,14 +43736,15 @@ }, "auto-complete-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianjcj/auto-complete-clang.git", - "sha256": "21d6a3404563cb1b0c3fc292d361367417af23e5c50949827f84cad50f71c68b", + "tag": "fetchFromGitHub", + "owner": "brianjcj", + "repo": "auto-complete-clang", + "sha256": "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1", "rev": "a195db1d0593b4fb97efe50885e12aa6764d998c" }, "recipe": { "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140409.252", "deps": [ @@ -41238,28 +43753,30 @@ }, "ob-prolog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/ob-prolog.git", - "sha256": "36946686ea4f411b6f136c18a93d3eea551e32d0237f104589b1d21c745b4c93", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "ob-prolog", + "sha256": "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n", "rev": "548986d0e6f678789216a882f0a19daf1b89ab93" }, "recipe": { "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.1137", "deps": [] }, "goto-gem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/goto-gem.git", - "sha256": "29bd83767742bef804819fbe8e4aedc4ee6aae3d9c711a5103d545ed706f5048", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99", "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e" }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.1345", "deps": [ @@ -41268,14 +43785,15 @@ }, "minibuffer-cua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-cua.el.git", - "sha256": "7f7b4f9c5c52e4b89207cc3f5ae1b680825ba93ccc3efb44840e92fccd793304", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz", "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7" }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130906.634", "deps": [] @@ -41285,11 +43803,11 @@ "tag": "fetchsvn", "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "255720" + "rev": "256039" }, "recipe": { "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.638", "deps": [ @@ -41298,28 +43816,30 @@ }, "autotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/elisp.git", - "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "elisp", + "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n", "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" }, "recipe": { "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150130.425", "deps": [] }, "yagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/yagist.el.git", - "sha256": "c46ab90d8e605cbd1f8fcf2e9a4d76fcc1ea125ee6a27bd119ec56e3cff81c6b", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4", "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2" }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.751", "deps": [ @@ -41328,14 +43848,15 @@ }, "magma-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ThibautVerron/magma-mode.git", - "sha256": "12cde4cead2c2e6d0f49727d9f19d4c51e620fd29c0d75a1defb8947506e8c2a", + "tag": "fetchFromGitHub", + "owner": "ThibautVerron", + "repo": "magma-mode", + "sha256": "0alcdr84g2gvvshpa3cws87n47n5shcryzbj947nsbicmp7f9k8j", "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760" }, "recipe": { "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.340", "deps": [ @@ -41346,28 +43867,30 @@ }, "maxframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmm5t/maxframe.el.git", - "sha256": "e1377985a896a32a12aac6635c675ebe8b9226c28948a86daf7608639ebe333d", + "tag": "fetchFromGitHub", + "owner": "rmm5t", + "repo": "maxframe.el", + "sha256": "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1", "rev": "174e3a0f3a716e904eba15e659096a99976ee39a" }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140916.954", "deps": [] }, "company-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/company-irony.git", - "sha256": "d46d28c5f55569223f0486b5c0fa8c5cdbf9f1fb78c273029952f0343b4f2a78", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl", "rev": "09f16eade551201548455285a2d977a0889761da" }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150810.439", "deps": [ @@ -41379,28 +43902,30 @@ }, "dactyl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luxbock/dactyl-mode.git", - "sha256": "b519c4dcf0fa9292bfac863c66c7457a9beb077efdae5d304e0cb2aa3c03e43a", + "tag": "fetchFromGitHub", + "owner": "luxbock", + "repo": "dactyl-mode", + "sha256": "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm", "rev": "cc55fe6b987271d9647492b8df4c812d884f661f" }, "recipe": { "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.1225", "deps": [] }, "easy-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/easy-kill.git", - "sha256": "075b6543fa291efc7b3fa77c507b9018546458a6c5fabcf5e85751a5f6a25744", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "easy-kill", + "sha256": "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7", "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f" }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.29", "deps": [ @@ -41410,70 +43935,75 @@ }, "dired-imenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/dired-imenu.git", - "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "dired-imenu", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid", "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.1010", "deps": [] }, "soft-morning-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-morning-theme.git", - "sha256": "ae8b6d0cab0f784f56235ecd626a7accc3fe76cfd264f0b0b67f370bc316081b", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-morning-theme", + "sha256": "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf", "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c" }, "recipe": { "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1541", "deps": [] }, "escreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/escreen.git", - "sha256": "ac3af5e4feec05dbad3c96f07ad002a06f39a987de1199efa5f92eb98140a745", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "escreen", + "sha256": "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc", "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96" }, "recipe": { "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1213", "deps": [] }, "nix-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NixOS/nix.git", - "sha256": "abe1ecca47d35a017bad8eeb08519166ba8587ce1b1904bd7d4b8c4c604fdce2", - "rev": "338880ee6fc2d8f55dcbe0f0b7313cd69dc866d0" + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "0nfwz0p5jakf0nfxmvnqwny38cfh92nx0n7l42bj22m8hcr1gb5d", + "rev": "a9faa7bbce963ddb894699a7cc6ea8a3876e4d9f" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.515", "deps": [] }, "angular-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/angular-snippets.el.git", - "sha256": "36bbc6861cbc9d8c42bb95a116843324ccd6d48819797a9b93fdd721860ab541", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn", "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b" }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140514.23", "deps": [ @@ -41483,14 +44013,15 @@ }, "helm-rubygems-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/f-kubotar/helm-rubygems-local.git", - "sha256": "6d00ab846ea88997eb3e3c9567fef35ee20467e045a33f5f513f65be5d589068", + "tag": "fetchFromGitHub", + "owner": "f-kubotar", + "repo": "helm-rubygems-local", + "sha256": "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d", "rev": "289cb33d41c703af9791d6da46b55f070013c2e3" }, "recipe": { "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130711.2011", "deps": [ @@ -41499,14 +44030,15 @@ }, "emacsagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacsagist.git", - "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140331.1330", "deps": [ @@ -41515,56 +44047,60 @@ }, "yafolding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/yafolding.el.git", - "sha256": "e7d32e200506a93b41bec4570a1b628a8951a1354fbd0be52a6f96b54f15452c", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7", "rev": "0dc48073f429112b51a888e8e9285739435d3c7f" }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141202.2256", "deps": [] }, "term-cmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-cmd.git", - "sha256": "469b1b735724729abd7c94e20a56efbf599814e476f3bcb819dd4627c0196d88", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "11xk11i99d17x5bl7glrwj2dhvl3f54slipj034dbf07dd5b2jih", "rev": "fc2ae638409af99c4788563ef54847636f2e23e0" }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141114.1514", "deps": [] }, "shell-split-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/shell-split-string-el.git", - "sha256": "af10741767ef03d0732cec18e27b8f5c34e163f61a15ec00f8b71e4a628d5cff", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "shell-split-string-el", + "sha256": "00c06y5c9iscgddrqgd1fh0y53xvjz07ylwzaaa9x0dbvx386ihl", "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe" }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.2236", "deps": [] }, "evil-visual-mark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-visual-mark-mode.git", - "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-visual-mark-mode", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz", "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1200", "deps": [ @@ -41574,28 +44110,30 @@ }, "package+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/package.git", - "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150319.1655", "deps": [] }, "helm-itunes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daschwa/helm-itunes.git", - "sha256": "7372324be25d95b35ca71a09254a62985a02a95c4953e4a04f19d0bfa1769a9b", + "tag": "fetchFromGitHub", + "owner": "daschwa", + "repo": "helm-itunes", + "sha256": "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w", "rev": "966de755a5aadbe02311a6cef77bd4790e84c263" }, "recipe": { "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.148", "deps": [ @@ -41604,14 +44142,15 @@ }, "xterm-frobs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/xterm-frobs.git", - "sha256": "c3e9560263b20d9f7b5ce3845eaf473b8432dd7b7c16e6ff971b4bf9a870ba81", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-frobs", + "sha256": "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3", "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320" }, "recipe": { "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091211.1755", "deps": [] @@ -41624,21 +44163,22 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1600", "deps": [] }, "purple-haze-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-purple-haze-theme.git", - "sha256": "6cb2268ab36551a50855a91b0321dad57fcf08eda5de18ef7fd7da3573e1be96", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-purple-haze-theme", + "sha256": "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc", "rev": "3e245cbef7cd09e6b3ee124963e372a04e9a6485" }, "recipe": { "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141014.2129", "deps": [ @@ -41647,14 +44187,15 @@ }, "dired-subtree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.1233", "deps": [ @@ -41664,42 +44205,45 @@ }, "rvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rvm.el.git", - "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rvm.el", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm", "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.942", "deps": [] }, "isgd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/isgd.el.git", - "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.436", "deps": [] }, "redis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/redis.el.git", - "sha256": "79dc71c1464ddc25188e749564185b0e08c1d9a73d920b47fb081440d15e5b4c", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "redis.el", + "sha256": "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57", "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c" }, "recipe": { "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.1448", "deps": [ @@ -41709,14 +44253,15 @@ }, "swift-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/swift-mode.git", - "sha256": "50348b785d1a2bb6093118c270cbcdbc4acc73af13fa317da63de53841518965", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "swift-mode", + "sha256": "03pxizbw02bp9mp0b0vwiys4vncna73ymmbbmxpw9m6mn1ql2fjv", "rev": "a5e1acf5826ccd489617f9255da0aab7e5e920ee" }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.120", "deps": [ @@ -41725,14 +44270,15 @@ }, "logview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doublep/logview.git", - "sha256": "c79269973ed43c2ad6071a505925ca5ea543901fbbbb9c0f0e550a7cc7052a30", + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr", "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84" }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1649", "deps": [ @@ -41747,49 +44293,52 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150816.2153", "deps": [] }, "sicp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/webframp/sicp-info.git", - "sha256": "d8b911128ef2dd87c13a6803af875d9284c1508ac8c7a04d40fe5c4d7ed45a80", + "tag": "fetchFromGitHub", + "owner": "webframp", + "repo": "sicp-info", + "sha256": "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq", "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4" }, "recipe": { "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.957", "deps": [] }, "dired-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fasheng/dired-toggle.git", - "sha256": "aa7687379baa0dfc1e6d609578b0e50f2309a2ed19626d27012b30680204a2fb", + "tag": "fetchFromGitHub", + "owner": "fasheng", + "repo": "dired-toggle", + "sha256": "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma", "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5" }, "recipe": { "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140907.1549", "deps": [] }, "narrow-reindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emallson/narrow-reindent.el.git", - "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.1406", "deps": [ @@ -41798,28 +44347,30 @@ }, "xah-elisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-elisp-mode.git", - "sha256": "2b34fd930462c33997f0dc8f794d1acaaf74c3de0de063134657c66962e38640", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-elisp-mode", + "sha256": "0h46wdi6kijp8q9n7q0dvv1p9bya396pk3ywy2bkkhv20j9zsd1b", "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3" }, "recipe": { "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1612", "deps": [] }, "epl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/epl.git", - "sha256": "5c82459f02af5caa0fd7ccf43ad34a6e7f770b60860ac2c94d0139ab70aecf24", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4", "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0" }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.633", "deps": [ @@ -41828,28 +44379,30 @@ }, "control-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stephendavidmarsh/control-mode.git", - "sha256": "1b14dfa5cd7cee3987ebac73df45785082eb7202e7089dad66acda3ea78e75b8", + "tag": "fetchFromGitHub", + "owner": "stephendavidmarsh", + "repo": "control-mode", + "sha256": "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh", "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc" }, "recipe": { "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140218.807", "deps": [] }, "paradox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/paradox.git", - "sha256": "bbaf29868a8c1d89eda4117eaa051daf9f1fe71ae5c9708b28dd09c22f3c6a0c", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "1kvyfsf4dy7gss5jg2hb5hn51llq0jza9nkdxgsf7mh07v6kj9ap", "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5" }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1517", "deps": [ @@ -41864,14 +44417,15 @@ }, "ix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/ix.el.git", - "sha256": "91b0dd70643ea5c8b55be57191586935618c5eca7c75be361c3a1abd13a42a19", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "ix.el", + "sha256": "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i", "rev": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963" }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131027.1129", "deps": [ @@ -41880,28 +44434,30 @@ }, "dired-toggle-sudo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/dired-toggle-sudo.git", - "sha256": "d177e94e36a68263fbbeacec179e963d593c85949386a831877111d46e31ae85", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "dired-toggle-sudo", + "sha256": "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2", "rev": "02449dbda4e168f99fe5352c9628df5d39e11483" }, "recipe": { "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.406", "deps": [] }, "req-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/req-package.git", - "sha256": "d8dbafa72e53435d5775130600c9c5cfb828db0af60b66aa080f21b517ec3e04", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "13hglddg4x0l5kmqplxb1ygqa4k4vxgabvjk8q8zjvkm8rwylwjh", "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a" }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1042", "deps": [ @@ -41913,14 +44469,15 @@ }, "esh-buf-stack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/esh-buf-stack.git", - "sha256": "98d86975fea970134704b5025c89e96951e119018fa73e78c372939a284c13cd", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "esh-buf-stack", + "sha256": "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q", "rev": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176" }, "recipe": { "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.418", "deps": [] @@ -41934,21 +44491,22 @@ }, "recipe": { "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121025.601", "deps": [] }, "cmake-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alamaison/emacs-cmake-project.git", - "sha256": "26f7fbcadc742239f1a08c0a1c1bb1e1dd7dbb373254ce2db41c20a63a8adf3b", + "tag": "fetchFromGitHub", + "owner": "alamaison", + "repo": "emacs-cmake-project", + "sha256": "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6", "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b" }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1559", "deps": [] @@ -41962,21 +44520,22 @@ }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.1244", "deps": [] }, "org-time-budgets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/org-time-budgets.git", - "sha256": "ab3bce9909f05a88bde0c98cc267c9d74e8dad4586a836fcf77c6f50d29f4d11", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb", "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18" }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.201", "deps": [ @@ -41986,43 +44545,45 @@ }, "fancy-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/fancy-narrow.git", - "sha256": "c518bbb9cb1f2e87cfc62ab6a4e28d3a93b96bd18d49473354ce4de806c0ddc4", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "fancy-narrow", + "sha256": "1i6xq03fhkffahrlfjcds5mvk4rsipia9diaqv7qfbhzrfwvn665", "rev": "5196dc6066d354883fa21090266b6cebccc9f6fd" }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.533", "deps": [] }, "rhtml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rhtml.git", - "sha256": "6022f2fafba7ea161df78a7e6b36d84ea8f984501c9e5af95ad94c033a0f3887", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rhtml", + "sha256": "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x", "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33" }, "recipe": { "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130422.811", "deps": [] }, "insfactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/duelinmarkers/insfactor.el.git", - "branchName": "release", - "sha256": "3ea2c69120fcca67505df1137c4b5a70d02b1a16350a49b761f2a318011b5a84", + "tag": "fetchFromGitHub", + "owner": "duelinmarkers", + "repo": "insfactor.el", + "sha256": "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy", "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829" }, "recipe": { "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1802", "deps": [] @@ -42035,7 +44596,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.232", "deps": [ @@ -42045,28 +44606,30 @@ }, "osx-org-clock-menubar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/osx-org-clock-menubar.git", - "sha256": "c4abd89b4057513ac1c3dd66d85ade17a65b9f1a028cf846522b65e956d7366e", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "osx-org-clock-menubar", + "sha256": "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag", "rev": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3" }, "recipe": { "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150205.1511", "deps": [] }, "test-case-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/test-case-mode.git", - "sha256": "e3d323a58036496d56fefcde74000e30fbba80b236b6071f2148e1d4f941ca88", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr", "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3" }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130525.934", "deps": [ @@ -42075,14 +44638,15 @@ }, "take-off": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tburette/take-off.git", - "sha256": "6e331769369f81faf5659bea15c1a2e7d1ccc82ad29dbc2ed8971580caa2fc8f", + "tag": "fetchFromGitHub", + "owner": "tburette", + "repo": "take-off", + "sha256": "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf", "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215" }, "recipe": { "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140531.417", "deps": [ @@ -42092,14 +44656,15 @@ }, "fiplr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/fiplr.git", - "sha256": "15ec6113e59c4c1ba22bd779c5b37f6f47432a21669730aa9c9a3890c96e1a6b", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk", "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530" }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140724.145", "deps": [ @@ -42109,14 +44674,15 @@ }, "rainbow-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/rainbow-blocks.git", - "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "rainbow-blocks", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c", "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.1233", "deps": [] @@ -42129,21 +44695,22 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1745", "deps": [] }, "password-generator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zargener/emacs-password-genarator.git", - "sha256": "1dc6ddeb2a24ab454906e6f358e547e63f508d1d1bde15bdba9c8490550084df", + "tag": "fetchFromGitHub", + "owner": "zargener", + "repo": "emacs-password-genarator", + "sha256": "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx", "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282" }, "recipe": { "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150222.1440", "deps": [] @@ -42156,21 +44723,22 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.855", "deps": [] }, "ido-grid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larkery/ido-grid-mode.el.git", - "sha256": "43580916bdd11935e4c17470a2ec4b2cfc0be84a83135be755088e33bbfc3914", + "tag": "fetchFromGitHub", + "owner": "larkery", + "repo": "ido-grid-mode.el", + "sha256": "051rzjxk73h8apkmn4w39bl0pz1c9gna4w3lq7j3a6fiplb0jn23", "rev": "34a7412c30840c1131464781dddfb1602355766b" }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.1135", "deps": [ @@ -42179,14 +44747,15 @@ }, "anything-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.204", "deps": [ @@ -42196,14 +44765,15 @@ }, "company-sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c", "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.714", "deps": [ @@ -42216,14 +44786,15 @@ }, "kaesar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.505", "deps": [ @@ -42233,14 +44804,15 @@ }, "e2wm-pkgex4pl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", - "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-pkgex4pl", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d", "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140525.547", "deps": [ @@ -42250,14 +44822,15 @@ }, "org-linkany": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-linkany.git", - "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-linkany", + "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p", "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.1308", "deps": [ @@ -42274,77 +44847,82 @@ }, "recipe": { "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130220.603", "deps": [] }, "zen-and-art-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/developernotes/zen-and-art-theme.git", - "sha256": "d4de7c40505d3b955c09ec7b77e3fbf112baf0a9cdbf0a24293391c235ecca36", + "tag": "fetchFromGitHub", + "owner": "developernotes", + "repo": "zen-and-art-theme", + "sha256": "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl", "rev": "a7226cbce0bca2501d69a620cb2aeabfc396c232" }, "recipe": { "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120622.937", "deps": [] }, "modtime-skip-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/modtime-skip-mode.git", - "sha256": "b49c63a72802504c67a535082204604d7bdbab8b1b52506246bd8ace59202866", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "modtime-skip-mode", + "sha256": "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l", "rev": "c0e49523aa26b2263a8693691ac775988015f592" }, "recipe": { "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.1601", "deps": [] }, "autumn-light-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aalpern/emacs-color-theme-autumn-light.git", - "sha256": "c6a5d2132f58c614b429868547cb90e514477b7fdf938e975032aa4164ac4a7a", + "tag": "fetchFromGitHub", + "owner": "aalpern", + "repo": "emacs-color-theme-autumn-light", + "sha256": "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9", "rev": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9" }, "recipe": { "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.947", "deps": [] }, "powershell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/powershell.el.git", - "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1621", "deps": [] }, "underwater-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/underwater-theme.el.git", - "sha256": "6adf3eedc58ae859a866578f37074e4283691afd03671e4f399a0abecbbefdfa", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva", "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6" }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1802", "deps": [] @@ -42357,21 +44935,22 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121128.243", "deps": [] }, "magit-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.705", "deps": [ @@ -42382,28 +44961,30 @@ }, "rotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daic-h/emacs-rotate.git", - "sha256": "99eda2ebe96d05a2714d4b213262fb1b31c31fc4bf40a4a2892ae4aa43bab4cc", + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "emacs-rotate", + "sha256": "0spgpq2cmckpl7j2193axy5yqws5dwrhik69d0bv0ylwzxp3npvg", "rev": "04b64c6e20c465102ecafe0e099986b0808582bf" }, "recipe": { "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140123.316", "deps": [] }, "bbdb-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tohojo/bbdb-vcard.git", - "sha256": "fde87c10a589d999d9dc66a3e28e5a52941fc6c9cb8cbeacea1d3336e399cd2a", + "tag": "fetchFromGitHub", + "owner": "tohojo", + "repo": "bbdb-vcard", + "sha256": "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj", "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c" }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.1550", "deps": [ @@ -42412,14 +44993,15 @@ }, "package-build": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/melpa.git", - "sha256": "61b1735be10059ec6180f95d7cb0228605a82f28a30c83772ea80f7f3b33219d", - "rev": "7f766319c3e18a41017684ea503b0382e96ab31b" + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "melpa", + "sha256": "0mcxx69bspym4i9ky2ms9alj3a2015853s8qg86gwzyr49v0xfvz", + "rev": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "recipe": { "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1644", "deps": [ @@ -42428,28 +45010,30 @@ }, "lusty-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sjbach/lusty-emacs.git", - "sha256": "0a07a3a62e118cadf37d6dbc75e7302713cb2f34363d6240229530df80753de4", + "tag": "fetchFromGitHub", + "owner": "sjbach", + "repo": "lusty-emacs", + "sha256": "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa", "rev": "a6e78cafc193050a493d16d07eae107a2436c293" }, "recipe": { "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1757", "deps": [] }, "helm-hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-hayoo.git", - "sha256": "2bc02b76bb4ef37d5734d26829d48681b6ffa17ccd7e9a984d4c27f2b01314e0", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9", "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693" }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.151", "deps": [ @@ -42460,14 +45044,15 @@ }, "dpaste_de": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theju/dpaste_de.el.git", - "sha256": "6c23c7fe2d681ab0c58aae1cbc199667bc70355140a817e0e01a11bf39d03ace", + "tag": "fetchFromGitHub", + "owner": "theju", + "repo": "dpaste_de.el", + "sha256": "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z", "rev": "f0c39e8864299f735642f7d9fa490689398ce39d" }, "recipe": { "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.725", "deps": [ @@ -42476,14 +45061,15 @@ }, "evil-terminal-cursor-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/evil-terminal-cursor-changer.git", - "sha256": "2bf055f52d6af6cd13e445ba45ba0d152894d64804e7d8f316b7aecbc998544c", + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "evil-terminal-cursor-changer", + "sha256": "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8", "rev": "2735a11a2a0c8d327b730cefef2794834263c413" }, "recipe": { "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2151", "deps": [ @@ -42498,49 +45084,52 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "bdo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/bdo.git", - "sha256": "7cf67bea9079fea3b102872965375976e808c8bb2af0fd727673a972fb40851f", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "bdo", + "sha256": "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm", "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010" }, "recipe": { "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140126.301", "deps": [] }, "gnome-calendar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", - "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140112.559", "deps": [] }, "linum-off": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/linum-off.git", - "sha256": "e589b4f5e9a51c296eb6376e5800c22e256ef17d1b7f0ff3a65358654f251374", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "linum-off", + "sha256": "0x0k4m7nan2klvrhyzqvgpqnw99fq805hvipnrp2j755x7sv92g5", "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca" }, "recipe": { "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.2254", "deps": [] @@ -42554,35 +45143,37 @@ }, "recipe": { "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.944", "deps": [] }, "diredful": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thamer/diredful.git", - "sha256": "178406bf35315ce545d5c084e719d1e2a4bdc25a9f6973565d6e20ea0ddea7e7", + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "diredful", + "sha256": "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p", "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b" }, "recipe": { "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1500", "deps": [] }, "evil-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edwtjo/evil-org-mode.git", - "sha256": "a36027bdd6d607504606b03a85425f17c5db6e3623de84872b97adde873a395e", + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53", "rev": "61319f85979e8768c930983595caa2483c0fb319" }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.147", "deps": [ @@ -42593,14 +45184,15 @@ }, "modalka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/modalka.git", - "sha256": "bd4cb2466fc44710001ec63b450740a08f44b65005670f6d0d6a3344cb42b73d", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "04c7js9jfhzcak9rgzqh1lq56i2b1g4phwjncsxkirvx97rnz4ac", "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5" }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1111", "deps": [ @@ -42609,14 +45201,15 @@ }, "ac-sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/qoocku/ac-sly.git", - "sha256": "6d67693837c7df45073729de7054f8459482b78f5049c55386d66e3657565af6", + "tag": "fetchFromGitHub", + "owner": "qoocku", + "repo": "ac-sly", + "sha256": "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a", "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285" }, "recipe": { "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.1522", "deps": [ @@ -42627,42 +45220,45 @@ }, "subshell-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrewmains12/subshell-proc.git", - "sha256": "e4b57a3e60c3c228eccfc0b3ac7abdc6ef275f0fcd9b9d0c91cafd2c91a83f26", + "tag": "fetchFromGitHub", + "owner": "andrewmains12", + "repo": "subshell-proc", + "sha256": "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4", "rev": "d18b20e03fc89ee08e8c6a968aba31a16b53287f" }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130122.1522", "deps": [] }, "highlight-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/highlight-thing.el.git", - "sha256": "99b7db9cef314e4276b0228fb71757e07dc0985b1bc7c85abb0cea3c5b019d05", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "highlight-thing.el", + "sha256": "01cx05dkrshcpddciiqvbfcc0zg0awbvg3r2n1v44kiixyfdpdwr", "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa" }, "recipe": { "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.221", "deps": [] }, "helm-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmalsburg/helm-bibtex.git", - "sha256": "91374e29f763a83ea8af82edc45a440a79797bd8abc1f3f021b2489e14246cdb", + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "helm-bibtex", + "sha256": "1nvc4ha9wj5j47qg7hdbv1xpjy8a8idc9vc2myl3xa33ywllwdwi", "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0" }, "recipe": { "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1758", "deps": [ @@ -42676,14 +45272,15 @@ }, "ssh-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhgorrell/ssh-config-mode-el.git", - "sha256": "66b94bf558dac42c9f452826676a457a3614c47d6e8e467894ba178c23cedaec", + "tag": "fetchFromGitHub", + "owner": "jhgorrell", + "repo": "ssh-config-mode-el", + "sha256": "1v6srqiqq5xsjiw4d3kfgp218dks8mm6f9i88ngjri6sb3slpfb6", "rev": "3d194c772d428144acd84c85be560ca96fb323ba" }, "recipe": { "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1046", "deps": [] @@ -42696,21 +45293,22 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1748", "deps": [] }, "phi-search-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/phi-search-mc.el.git", - "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "phi-search-mc.el", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv", "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.55", "deps": [ @@ -42720,14 +45318,15 @@ }, "phi-search-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search-dired.git", - "sha256": "d609c5b2e8597bde7a32055c7fc9fd4bc120aa333ff7ee04c184330b0f4984ac", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search-dired", + "sha256": "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn", "rev": "162a5e4507c72512affae22744bb606a906d4193" }, "recipe": { "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.214", "deps": [ @@ -42736,42 +45335,45 @@ }, "rcirc-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kensanata/rcirc-color.git", - "sha256": "27911c6fc04d5da732943e32dacbb71a0d9718833bbe2acf4cd7f1864884749c", + "tag": "fetchFromGitHub", + "owner": "kensanata", + "repo": "rcirc-color", + "sha256": "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497", "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d" }, "recipe": { "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.958", "deps": [] }, "bury-successful-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/bury-successful-compilation.git", - "sha256": "925c14e42c19c58903b654662a08cad84dd06542ff1f59fe49d2fb15e5a5f1af", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "bury-successful-compilation", + "sha256": "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j", "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621" }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.1928", "deps": [] }, "html-to-markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/html-to-markdown.git", - "sha256": "f1a1a85e77bda03a54ebaa20136d2943d6043fe7bb6c07d0b3c8d21d53fdc326", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi", "rev": "60c5498c801be186478cf7c05be05b4430c4a144" }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.240", "deps": [ @@ -42780,42 +45382,45 @@ }, "emacsshot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/emacsshot.git", - "sha256": "2bf9d03dfe6e5d93d5f33c98eaf84b7f73d39fcdecd1b9de2cb0450384ecc44a", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "emacsshot", + "sha256": "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b", "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b" }, "recipe": { "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.1633", "deps": [] }, "folding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaalto/project-emacs--folding-mode.git", - "sha256": "de1a7073e89b83fa7507a2702baff4c321078888900ec6d27d03bf20bf9f4dfc", + "tag": "fetchFromGitHub", + "owner": "jaalto", + "repo": "project-emacs--folding-mode", + "sha256": "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny", "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839" }, "recipe": { "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140401.203", "deps": [] }, "srefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-refactor.git", - "sha256": "eb4007d738fefbd52c1f5f80e55f2e7a4970ef008cce0ead03e6a7e36328b7d8", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b", "rev": "e0482b08425894431fa67109615d4f0c971471c8" }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.2204", "deps": [ @@ -42824,14 +45429,15 @@ }, "dired-avfs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.932", "deps": [ @@ -42841,14 +45447,15 @@ }, "dircmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/matthewlmcclure/dircmp-mode.git", - "sha256": "6d28ddbecb95a498e13347fe12f6235df6f860a2fa222bf93130371caefe8921", + "tag": "fetchFromGitHub", + "owner": "matthewlmcclure", + "repo": "dircmp-mode", + "sha256": "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s", "rev": "558ee0b601c2de9d247612085aafe2926f56a09f" }, "recipe": { "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1156", "deps": [] @@ -42862,21 +45469,22 @@ }, "recipe": { "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.1117", "deps": [] }, "wacspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/wacspace.el.git", - "sha256": "de0f12cf4931c77b520f4ed8e8a1574906662975cfee4cacbd5eb3469d75e952", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4", "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a" }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140827.32", "deps": [ @@ -42886,14 +45494,15 @@ }, "helm-pages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-pages.git", - "sha256": "747b16bd0267db2b368778ffc81c24f1013320902f811648779a33b1e740844a", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-pages", + "sha256": "0yngs3q6142g2nn1wwdaifylyfjjs3gmmy0jck5zh8mhmdgdqr06", "rev": "60f52edb11e54f553251234f4d336c0947ca0a2b" }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1400", "deps": [ @@ -42904,14 +45513,15 @@ }, "php-auto-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-auto-yasnippets.git", - "sha256": "a07ec2ad1a349ae81816288f2dfe1929b884eb811d6dfedc6bdc669ed4ccc4d0", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-auto-yasnippets", + "sha256": "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0", "rev": "7da250a0d40f3ec44c7249997436ee8c5cae04ef" }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.1611", "deps": [ @@ -42927,21 +45537,22 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.527", "deps": [] }, "helm-ls-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-git.git", - "sha256": "85e33236e83fe8ec839e1f61d068e35567bfd0b499669c65f03a7e2701d6cb4e", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-git", + "sha256": "129mlpx5vqxyg2scrdiajxp71phxamrvijpc054k1q1an8vgn0kv", "rev": "8cddd84ee4361b9d21f800adbaeeacf72645ab62" }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.56", "deps": [ @@ -42950,56 +45561,60 @@ }, "hl-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/hl-todo.git", - "sha256": "6db370f442de1c8f5174ad5c120c5d1d6d48ed29d2613245e2f2ba352ddf8c53", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd", "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c" }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1420", "deps": [] }, "cython-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cython/cython.git", - "sha256": "aa480da59924dc12732c8dfdf18bec567450e3e8df32904fc305596f067c23ee", + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "1kz96n6p4kspzhgaa30l3hzv5b37vf32ww715r30g68188ngcjmg", "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0" }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140705.1429", "deps": [] }, "google": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/google-el.git", - "sha256": "51685fee9007cd823ca652906aeb7c5927873026809d179c6b909e57ed6de11a", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "google-el", + "sha256": "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i", "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4" }, "recipe": { "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140330.1056", "deps": [] }, "midje-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dnaumov/midje-mode.git", - "sha256": "efe687a8f178b9a85b9d7789fdee209c48c31d9262a2c1814121ae0941d62fb2", + "tag": "fetchFromGitHub", + "owner": "dnaumov", + "repo": "midje-mode", + "sha256": "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg", "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b" }, "recipe": { "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1950", "deps": [ @@ -43009,30 +45624,32 @@ }, "toggle-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rags/toggle-test.git", - "sha256": "7ec974881a980d17e796c8cff49dfc127d5cf12dd000d8a25f0620d931d5ea69", + "tag": "fetchFromGitHub", + "owner": "rags", + "repo": "toggle-test", + "sha256": "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby", "rev": "e969321f274903d705995a7d0345a257576ec5ff" }, "recipe": { "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140723.37", "deps": [] }, "cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "f7db3f7de53ea4fd2b8d33574b9dbf352a2eca91ecfd9a76d110497f7d3a3fe5", - "rev": "492e8ab16c3e69d2850e1dbeb2e2f7224ce8a58a" + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "0gm9pqxi9jz615ws6vic58fq0620pa1zr3xgvx6mh7k1y2jfbljz", + "rev": "a80215f160c2243722039a2b484823042dfab63d" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1527", + "version": "20151217.1352", "deps": [ "clojure-mode", "emacs", @@ -43050,7 +45667,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1551", "deps": [] @@ -43063,21 +45680,22 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20051013.1256", "deps": [] }, "ox-pukiwiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-pukiwiki.git", - "sha256": "6a5019c6ce3b6d2bb74d227c1bdb07f6efb3e0f0e4fe9562aa2a5951e7a4feec", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-pukiwiki", + "sha256": "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g", "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a" }, "recipe": { "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.1116", "deps": [ @@ -43086,14 +45704,15 @@ }, "ac-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-slime.git", - "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2235", "deps": [ @@ -43104,14 +45723,15 @@ }, "fastnav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gleber/fastnav.el.git", - "sha256": "234a6c248fb9f44d9d99022ca7697d0ea1de91b89642f15cc5e3bfe1750ea5fb", + "tag": "fetchFromGitHub", + "owner": "gleber", + "repo": "fastnav.el", + "sha256": "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx", "rev": "1019ba2b61d1a070204099b23da347278a61bc89" }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120211.857", "deps": [] @@ -43124,21 +45744,22 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "myterminal-controls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/myterminal-controls.git", - "sha256": "0675c64b274cc140498b5fb800fd3a95b145725df4dc9f5777315b83c485d356", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "myterminal-controls", + "sha256": "0mnkhp286nrifxbrzp7lbmr4bccm7byh1f2zid4l1hac4x5wcx86", "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826" }, "recipe": { "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.547", "deps": [ @@ -43148,14 +45769,15 @@ }, "traad-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140817.611", "deps": [ @@ -43165,28 +45787,30 @@ }, "xah-find": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-find.git", - "sha256": "1bf37853c6d374c57d911bee6e5ad84e34cc1790ffd1fd4ca160d880e0aebb15", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-find", + "sha256": "05dvmvh81n30l56gvlgzj0bwqd2fv1d6xvhvj5ywax6kqr9piwqv", "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4" }, "recipe": { "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1257", "deps": [] }, "wandbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kosh04/emacs-wandbox.git", - "sha256": "ba97faf09d7091a7d5c315da01223453fdd9aef4f02abe7ba6e2074ccf1b7976", + "tag": "fetchFromGitHub", + "owner": "kosh04", + "repo": "emacs-wandbox", + "sha256": "00qzgabanmy4nkpnbc1m45j86k29plyyn408n1l0j8505fy9l7ca", "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0" }, "recipe": { "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.1024", "deps": [ @@ -43197,28 +45821,30 @@ }, "paredit-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/phil-emacs-packages.git", - "sha256": "c5244e721eb12bb17ad2680853bb102ef0675b291ab6b275b599eb83a49aec79", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "phil-emacs-packages", + "sha256": "0ygckaj87swrnmsv5dhs55dngw1f22xm6238s9xb2axi3rr4w965", "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782" }, "recipe": { "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130923.1454", "deps": [] }, "el-init-viewer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init-viewer.git", - "sha256": "d4cc72a44b9fde5bc7f2a9abd60cf3b77349edc01e4e38da77e9c76ae9e14967", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "13cc7nnslij28fa1469s9pfmnz8j0m6bayhrqxckd0xplvwwipnx", "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774" }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303.228", "deps": [ @@ -43232,14 +45858,15 @@ }, "gist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/gist.el.git", - "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "gist.el", + "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8", "rev": "144280f5353bceb902d5278fa64078337e99fa4d" }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1154", "deps": [ @@ -43249,14 +45876,15 @@ }, "clojure-mode-extra-font-locking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.705", "deps": [ @@ -43265,44 +45893,47 @@ }, "ggo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/ggo-mode.git", - "sha256": "172e069d377e934941f52d28877fb2284e75e6ac74b0fd2c78b738a2088e922f", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "ggo-mode", + "sha256": "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp", "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b" }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130524.643", "deps": [] }, "auctex-latexmk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/auctex-latexmk.git", - "sha256": "5e42753cbb4be334590244d289ee77073e06d8cb942da154ab65c2a6a09fe4eb", - "rev": "12318b945c3a68a593d90ef2a4461707523d46c0" + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "auctex-latexmk", + "sha256": "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316", + "rev": "b7d36658c8a9102055a720e9102e1d3514089659" }, "recipe": { "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.1843", + "version": "20151217.757", "deps": [ "auctex" ] }, "clojure-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", - "sha256": "b9ed4258522f5e04b4a59f4548d55b2b15dea8a06aa0aed6e1173bc7cbb008d4", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8", "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402" }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.717", "deps": [ @@ -43312,42 +45943,45 @@ }, "ioccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/ioccur.git", - "sha256": "2a2f60f6254253899cf0eac6bbcf4c890dbac182d68f0341b5343c9a82e3e5e7", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "ioccur", + "sha256": "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra", "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a" }, "recipe": { "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130822.48", "deps": [] }, "shell-here": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/shell-here.git", - "sha256": "d4794f6c76035e1bc955d683b99a7850208f883e434d057f01b7dc930ff8047c", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "shell-here", + "sha256": "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl", "rev": "251309141e18978d2b8014345acc6f5afcd4d509" }, "recipe": { "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.1204", "deps": [] }, "org-gnome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/org-gnome.el.git", - "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "org-gnome.el", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1", "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.957", "deps": [ @@ -43358,28 +45992,30 @@ }, "buster-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/buster-mode.git", - "sha256": "10c1dd9f7d2c6d66bdaf6beb97f0130f6b5a7743161a62c1a86de2245dba0438", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "buster-mode", + "sha256": "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi", "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" }, "recipe": { "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140928.713", "deps": [] }, "osx-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/osx-dictionary.el.git", - "sha256": "e11de28a2d272ad48c6aefc9f82427699c839ffd0039febe5c2ec97ca2483b3b", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "osx-dictionary.el", + "sha256": "0frv92i7rj9fbjzgwf80zngq77394wjgijggda6d8ai75n5f47g1", "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55" }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.2352", "deps": [ @@ -43388,28 +46024,30 @@ }, "phoenix-dark-pink-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/j0ni/phoenix-dark-pink.git", - "sha256": "8f2148b45ccc437c5cee1560f8fd09aeb0dc1210b0e973029d9edfd208e15e10", + "tag": "fetchFromGitHub", + "owner": "j0ni", + "repo": "phoenix-dark-pink", + "sha256": "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg", "rev": "314602b2e68c4054159ab3f0f6f6b658f232ada5" }, "recipe": { "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150406.2202", "deps": [] }, "zzz-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/zzz-to-char.git", - "sha256": "d5628735f6e63840f377c60dd5709be93ff08a12c6195ea85799acf5276aaffd", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "zzz-to-char", + "sha256": "1ai0a9r1xdz1jcr071ivm49wl906a0jqnhfaznw37jw9j2db58zn", "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a" }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.232", "deps": [ @@ -43420,28 +46058,30 @@ }, "automargin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/automargin.git", - "sha256": "c2a47141718908e08135edd9190a99dc5ea8823848f1e37fece019e898f5d60a", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "automargin", + "sha256": "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962", "rev": "4901d969ad69f5244e6300baab4ba04efed800c3" }, "recipe": { "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131112.214", "deps": [] }, "pass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/pass.git", - "sha256": "2bdc4cdef81888617af26dc73cfa1a131d2d550b38ebe29878f9327c80d012c6", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "pass", + "sha256": "14zpkxnwvwdi7wnjw4827lzzn6kw8wmwr2whavpi4rlkq8ix6dv2", "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad" }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.603", "deps": [ @@ -43452,42 +46092,45 @@ }, "jaunte": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawaguchi/jaunte.el.git", - "sha256": "6e948daccc050d512881f951d6a37df012b435e4b66b05d7d88d539e105560af", + "tag": "fetchFromGitHub", + "owner": "kawaguchi", + "repo": "jaunte.el", + "sha256": "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f", "rev": "b719c2d4d5d70640d70978b661863d10d6be06fc" }, "recipe": { "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130413.419", "deps": [] }, "monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxn/monochrome-theme.el.git", - "sha256": "ce5b5d2a79f2bd8cd6386faf0c73f9ccd57b47fbe7cd15ffe6f9fdabfabeb0eb", + "tag": "fetchFromGitHub", + "owner": "fxn", + "repo": "monochrome-theme.el", + "sha256": "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf", "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6" }, "recipe": { "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140326.550", "deps": [] }, "ez-query-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ez-query-replace.el.git", - "sha256": "f1938f7565cde65fead56b0a3b568306361f2da63a97316bcf471b207a020a97", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ez-query-replace.el", + "sha256": "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi", "rev": "1c0cab96d65105b780e32fdd29d2c6933be72ef6" }, "recipe": { "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.717", "deps": [ @@ -43496,14 +46139,15 @@ }, "request": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140316.617", "deps": [] @@ -43512,26 +46156,27 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/markdown-mode.git", - "sha256": "9598cac1aec72eb4133bde780488cab417bd0158cb91d5368f619f62d743676f", - "rev": "23113fa13292712899ad66c355dcd44c0ee9055c" + "sha256": "b74db7308411036038e060cca7dbf6e1a6b839cc81b40dc439cfee54540f9c67", + "rev": "1c76d45ae30bba1e8d68b2500d0531c69dd1472d" }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1502", + "version": "20151218.1349", "deps": [] }, "sphinx-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naiquevin/sphinx-doc.el.git", - "sha256": "d48f3f8dfaf8b6048be35276b913d5ee7e079b0784ecced5888a3c8a5374e692", + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "0smxpv1i9nsaam4qc683491c4jwv3vqb7wpiyvjy2p9giqr3csjh", "rev": "c6f3053b83eab029c13e680b8200c704880727b1" }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150616.1350", "deps": [ @@ -43542,14 +46187,15 @@ }, "evil-smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/evil-smartparens.git", - "sha256": "374996f077315860970eebf4dac6b392be7bcf4db5d099a2982de083ebf2a6dc", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "evil-smartparens", + "sha256": "0xwrg03w40pncdy5ppn7f77ravcbimj1ylc1r4clpqiha1d4xkhi", "rev": "0e89b23924b2e0baa0d11841ea5126967a072fa8" }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.324", "deps": [ @@ -43560,14 +46206,15 @@ }, "org-protocol-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vonavi/org-protocol-jekyll.git", - "sha256": "5e5f0f1b8f514fff887035742fb7f55412688cf9e1cd31cabfa6aae07431f7cb", + "tag": "fetchFromGitHub", + "owner": "vonavi", + "repo": "org-protocol-jekyll", + "sha256": "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy", "rev": "f41902baaa62c8de3f81ad67a5f36d6aa5781578" }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1038", "deps": [ @@ -43576,28 +46223,30 @@ }, "autodisass-llvm-bitcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", - "sha256": "3a1301b29c857b080187407b4e99e8dcf5eb2e70fe4869d177ec1639ba13ef1c", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-llvm-bitcode", + "sha256": "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17", "rev": "d2579e3a1427af2dc947c343e49eb3434078bf04" }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150410.2025", "deps": [] }, "sourcemap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sourcemap.git", - "sha256": "551a9489ade4a1f2ccda8aecc91f84532f16e37ea0ec9756d973a15b0d125370", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5", "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657" }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.900", "deps": [ @@ -43607,14 +46256,15 @@ }, "json-snatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sterlingg/json-snatcher.git", - "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "tag": "fetchFromGitHub", + "owner": "Sterlingg", + "repo": "json-snatcher", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw", "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150511.2247", "deps": [ @@ -43629,21 +46279,22 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.658", "deps": [] }, "gore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sergey-pashaev/gore-mode.git", - "sha256": "9f0db205ff0f9f254bf424e07e2897d49d1c58eeebe2f6a6c1682c7bb1120250", + "tag": "fetchFromGitHub", + "owner": "sergey-pashaev", + "repo": "gore-mode", + "sha256": "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz", "rev": "94d7f3e99104e06167967c98fdc201049c433c2d" }, "recipe": { "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1327", "deps": [ @@ -43652,14 +46303,15 @@ }, "org-link-travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-link-travis.git", - "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-link-travis", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8", "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140405.1827", "deps": [ @@ -43668,28 +46320,30 @@ }, "cryptol-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thoughtpolice/cryptol-mode.git", - "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140426.1204", "deps": [] }, "company-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1210", "deps": [ @@ -43702,28 +46356,30 @@ }, "unicode-emoticons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/unicode-emoticons.git", - "sha256": "1066b355a253c180f0715106945e65a0b240e6d4352b0fbf4ad034c89093af04", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "unicode-emoticons", + "sha256": "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh", "rev": "fb18631f342b0243cf77cf59ed2067c47aae5233" }, "recipe": { "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150204.508", "deps": [] }, "literate-coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", - "sha256": "7f19490b6a8b82aa556dc72537d74bd864d3a621299f985fcbb2188ed6342784", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-literate-coffee-mode", + "sha256": "16xy6251ba0ca7r3wbjdng8i7pmcsh48lziczhrs5zx5y0b2j4zr", "rev": "c55d0bec31438f15e986c5ad031dff853cfd1178" }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141216.1719", "deps": [ From df4a984c6085d2516d4667ca1dbc7a2a03683ff5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 17:06:59 -0600 Subject: [PATCH 378/707] melpa-stable-packages 2015-12-18 --- .../emacs-modes/melpa-stable-packages.json | 11565 +++++++++------- 1 file changed, 6525 insertions(+), 5040 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index e4e1755be3d..50e11182e44 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -1,42 +1,59 @@ { "qiita": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/qiita-el.git", - "sha256": "6e2c9eceaf4d87eff3c4c56508ee71cccd2806da163a16a9f2e21e38ec111f84", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f", "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff" }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "outorg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outorg.git", - "sha256": "65b7e7c7e43a8828aa452ed5ccdc8d9909fce69b76bc30d175f5d252e1445ed8", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp", "rev": "e946cda497bae53fca6fa1579910237e216170bf" }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, + "cg": { + "fetch": { + "tag": "fetchsvn", + "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", + "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", + "rev": "11156" + }, + "recipe": { + "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "helm-ls-hg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-hg.git", - "sha256": "aa2dfcc9e42b1215aba74b541f32dec2783b26fe68113af2a411d164623aaac2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-hg", + "sha256": "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda", "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f" }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.8", "deps": [ @@ -45,28 +62,30 @@ }, "color-theme-sanityinc-tomorrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", - "sha256": "620d71141c0eab505c328b3bb75f7d8c4dd6c80c37c78a72eab81842f8d69b6c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-tomorrow", + "sha256": "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf", "rev": "55db9979397bd66446eb1927e08c5a22df9f0eea" }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.16", "deps": [] }, "focus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Focus.git", - "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -76,28 +95,30 @@ }, "buffer-move": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lukhas/buffer-move.git", - "sha256": "eb96887c75c9c8c67890d1c201a1b63fae91cde3de16bfddfadf82449650572f", + "tag": "fetchFromGitHub", + "owner": "lukhas", + "repo": "buffer-move", + "sha256": "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c", "rev": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190" }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [] }, "youdao-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", - "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -109,14 +130,15 @@ }, "emacsql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -133,21 +155,22 @@ }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cmake-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "12d3d757ef71a4ea5fa4d5418bb3a673c3410eb441365e3910427d619875c73b", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q", "rev": "b6953102d022adb60678eb5c4186008de987cdce" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -156,14 +179,15 @@ }, "jammer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/jammer.git", - "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -176,7 +200,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -185,14 +209,15 @@ }, "go-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-eldoc.git", - "sha256": "e9e7523e506148c056950b9a4930b2fb00618ece42ef380332692a6f3fb14ef7", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn", "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5" }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.26", "deps": [ @@ -208,21 +233,22 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cerbere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/cerbere.git", - "sha256": "1fd732afc839f500571fb33db2f078d56b8fd8e79fc6b40a8bd39c5347c23dc8", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl", "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d" }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -234,14 +260,15 @@ }, "grandshell-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/grandshell-theme.git", - "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "grandshell-theme", + "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs", "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -254,21 +281,22 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/mmt.git", - "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", "rev": "e77b809e39b9ab437b662ee759e990163bc89377" }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -278,14 +306,15 @@ }, "vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/vimish-fold.git", - "sha256": "6822b3e8e067af5e3713bd68f2946c5c1e2c2bc4f12607d9058c6efdadaefe72", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "vimish-fold", + "sha256": "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3", "rev": "bf10662ff5d2ac2c0d0d84a87577c5425cff7639" }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -296,14 +325,15 @@ }, "stripe-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/stripe-buffer.git", - "sha256": "b3253e702365c2e5df7dc40346240d81b93c1bf9a88866b584e6fd1d58a8be0c", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "stripe-buffer", + "sha256": "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk", "rev": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190" }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.5", "deps": [ @@ -312,28 +342,30 @@ }, "web-completion-data": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/web-completion-data.git", - "sha256": "12ff6411fde08135c84c2e4342c2289ca2a398b78e660be4a4997e6a98b6f2f0", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "web-completion-data", + "sha256": "1w7jnsc6lzlrlkj0nrlfnyca78lw53144hrf9k43b0g0zl8n9zqj", "rev": "3685b8c7eff06a2064b4f4304e7faf00a22a920a" }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "slime-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anwyn/slime-company.git", - "sha256": "a427294d72206521d40e787fe3e361334b1544b6c3f766129bf0afeaa769b065", + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4", "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39" }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.1", "deps": [ @@ -343,14 +375,15 @@ }, "flymake-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-php.git", - "sha256": "470df53714287ec33633235b41bd674cb5ca38b12c0b8a5bce117cf86fc20068", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-php", + "sha256": "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh", "rev": "91f867e209011af31a2ca2d8f6874b994403bcb2" }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -359,28 +392,30 @@ }, "jade-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "smart-mode-line-powerline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71", "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.9", "deps": [ @@ -391,28 +426,30 @@ }, "unfill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/unfill.git", - "sha256": "b1b4d0c819d8c18d21c9d5670e163a111d906e81f3b42d5b28942fc838cc2255", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "unfill", + "sha256": "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w", "rev": "99388d79f971db70c5d18dab4257301f750ed907" }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "org-page": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kelvinh/org-page.git", - "sha256": "3e3afa4ce7646ee5238f624ab0ecacb13793ad0a20da52b6bbbc5be97cecc5f2", + "tag": "fetchFromGitHub", + "owner": "kelvinh", + "repo": "org-page", + "sha256": "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3", "rev": "09febf89d8dcb226aeedf8164169b31937b64439" }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.41", "deps": [ @@ -424,14 +461,15 @@ }, "grails-projectile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yveszoundi/grails-projectile-mode.git", - "sha256": "344865da2d968d540b042c11ad0342c0d7dff4a4bff17918d4e0f854209d66e7", + "tag": "fetchFromGitHub", + "owner": "yveszoundi", + "repo": "grails-projectile-mode", + "sha256": "1rv6klh59y70shc7kwdzlksdzmy0881ss49c0h5m93cn5pd6aj1l", "rev": "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f" }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -442,14 +480,15 @@ }, "inf-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/inf-clojure.git", - "sha256": "60b7dd9e60f99ad342d9cf8bc8017a540b2a562f3ee3f539a42a52d61d68dd52", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "inf-clojure", + "sha256": "0lnxd0fxclialhwzbqry5xb2l2slg80wi2ygv51d76prc2gdvdv0", "rev": "286b935b90123d5e2dd3c36c804d796413864256" }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -459,14 +498,15 @@ }, "git-wip-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/itsjeyd/git-wip-timemachine.git", - "sha256": "36e2bd2df46cfd280d99c67d879b721c87ae0a68f8e409863adb373cbc77dd56", + "tag": "fetchFromGitHub", + "owner": "itsjeyd", + "repo": "git-wip-timemachine", + "sha256": "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx", "rev": "7da7f2acec0b1d1252d7474b13190ae88e5b205d" }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -475,14 +515,15 @@ }, "shell-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyagi/shell-pop-el.git", - "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", "rev": "4531d234ca471ed80458252cba0ed005a0720b27" }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.63", "deps": [ @@ -491,28 +532,30 @@ }, "j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zellio/j-mode.git", - "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "tag": "fetchFromGitHub", + "owner": "zellio", + "repo": "j-mode", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9", "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "persistent-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/persistent-scratch.git", - "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -521,14 +564,15 @@ }, "map-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-regexp.git", - "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -537,28 +581,30 @@ }, "sauron": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/djcb/sauron.git", - "sha256": "38535e28a9d72f049c66aaf8d3e7931483f847d325560128b9eace38d699ecb9", + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml", "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975" }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "company-ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krzysztof-magosa/company-ansible.git", - "sha256": "8a28dd2adf97e939723841075054e1124d8a6c28abfb6b4a561a6dd5957a03bf", + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym", "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db" }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -568,14 +614,15 @@ }, "flycheck-ocaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-ocaml.git", - "sha256": "db31d73b64e42358db30d40c1b2973e39b25578139637d2c08abac6e9516a9df", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-ocaml", + "sha256": "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l", "rev": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c" }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -587,14 +634,15 @@ }, "eshell-z": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-z.git", - "sha256": "91c05b97cd3fdd6867661e30429f7bb8978b89d7e93dff066883239d01c43d9d", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-z", + "sha256": "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i", "rev": "cc9a4b505953a9b56222896a6f973145aeb154b9" }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -603,14 +651,15 @@ }, "fix-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/fix-word.git", - "sha256": "e715bb0d7c1720b52cb8f4ba8e1a07b1bcd059963c57b8df0f1ad531b65c34ad", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "fix-word", + "sha256": "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr", "rev": "256a87d4b871ead0975fa0e7f76a1ecbaa074582" }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -620,14 +669,15 @@ }, "celery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-celery.git", - "sha256": "618ec6d27f983c85cfb2326ae004f994d70293080ca55c00cca5f59dd260f7ff", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-celery", + "sha256": "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7", "rev": "163ebede3f6a7f59202ff319675b0873dd1de365" }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -645,35 +695,37 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "charmap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lateau/charmap.git", - "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "parsebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/parsebib.git", - "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.5", "deps": [ @@ -682,14 +734,15 @@ }, "hindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/hindent.git", - "sha256": "db93ecbe7d46e8efb4bb663c30855d180c14902d3c467bf550bf0c59898eb8db", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb", "rev": "726c692d234581c853495165472c78f4c7fb9297" }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.4.3", "deps": [ @@ -698,28 +751,30 @@ }, "sudden-death": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yewton/sudden-death.el.git", - "sha256": "4b6e884b62cfa51cb5cc051fb1b2c668de9ccec95e6b33a658cfe4eef58ebece", + "tag": "fetchFromGitHub", + "owner": "yewton", + "repo": "sudden-death.el", + "sha256": "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb", "rev": "c58fb9a672f306604dde4fbb0ff079e65a5e40be" }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "simplenote2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/simplenote2.el.git", - "sha256": "0362bf75d2f0d9b85864826721e9e771f60af1de89336060f9d8cf091f08bc09", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93", "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792" }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.2", "deps": [ @@ -728,14 +783,15 @@ }, "cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake.git", - "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.3", "deps": [ @@ -746,14 +802,15 @@ }, "realgud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "94539ca9d46ecb5ff33ba5c5aa2ed659be06d026bb3aa5dd08db0a4b567bc9e7", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-dbgr", + "sha256": "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v", "rev": "0dd37e233f315a5666eefc6a3e9fc088fcc6561f" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -765,14 +822,15 @@ }, "js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/js2-refactor.el.git", - "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "js2-refactor.el", + "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly", "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.1", "deps": [ @@ -785,28 +843,30 @@ }, "ecb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexott/ecb.git", - "sha256": "6cffee0f53869780992d5be254f3ba1da5e28d73d2df06efde524b76240e39e9", + "tag": "fetchFromGitHub", + "owner": "alexott", + "repo": "ecb", + "sha256": "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc", "rev": "1e9ddf472d7b6006dc92684b82de22e6148f38b4" }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2_24", "deps": [] }, "quickrun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-quickrun.git", - "sha256": "bdfc73494b00fae2e5ece54c8d5312fc497e28010190a6d97166634a124a300e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "09sdv5lf5k347415r9fzljm374rb29gq6kldx2awd164fkdnm8ds", "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941" }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.6", "deps": [ @@ -816,28 +876,30 @@ }, "rsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/rsense.git", - "sha256": "307f3a3cc652476eff7b12d4a583798f678e3e8d609bcb31255451242cc2d355", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh", "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28" }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "ocodo-svg-modelines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocodo/ocodo-svg-modelines.git", - "sha256": "5cac1b9f8779c32491152339b735615c6cebc3ff91682d9de04d1a66532a5e15", + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w", "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018" }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -846,14 +908,15 @@ }, "jedi-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -865,14 +928,15 @@ }, "dim-autoload": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/dim-autoload.git", - "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "dim-autoload", + "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans", "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [] @@ -885,35 +949,37 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pkgbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", - "sha256": "194f60a181b339e59157f58543a133049f564172b9bf7eddd17299d968581829", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr", "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965" }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [] }, "erc-youtube": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-youtube.el.git", - "sha256": "6d9bbb44731019e23321a00ad847b7a96448845a08a2ffd19a15eb963302325c", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd", "rev": "3629583031f3a59797a01e29abe9cc061e337294" }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0Alpha", "deps": [ @@ -922,14 +988,15 @@ }, "roguel-ike": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stevenremot/roguel-ike.git", - "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -938,14 +1005,15 @@ }, "name-this-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knl/name-this-color.el.git", - "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "tag": "fetchFromGitHub", + "owner": "knl", + "repo": "name-this-color.el", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n", "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -956,14 +1024,15 @@ }, "git-messenger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-messenger.git", - "sha256": "78a2ecc97301370c162bbccdf8787686241451b207cba75927fcc8114053dfa5", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-messenger", + "sha256": "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8", "rev": "c45cdd9805d52a82bdd23907bd0f91dc7760d78d" }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16", "deps": [ @@ -973,14 +1042,15 @@ }, "maven-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/maven-test-mode.git", - "sha256": "18ee821471b857620e3045ad4e925ea44b93101d5267aa52557146e471385db5", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "maven-test-mode", + "sha256": "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g", "rev": "f79409907375591283291eb96af4754b1ccc0e6f" }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.5", "deps": [ @@ -996,21 +1066,22 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "discover-my-major": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/discover-my-major.git", - "sha256": "3617d6b327669a1f461b7c2afae734a0ae61765865e52bf20f0b53cbe9750bb1", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4", "rev": "57d76fd21ec54706289cf9396fc871250569951e" }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1019,14 +1090,15 @@ }, "helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [ @@ -1038,14 +1110,15 @@ }, "pastelmac-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", - "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "pastelmac-theme-el", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly", "rev": "bead21741e3f46f6506e8aef4469d4240a819389" }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1054,28 +1127,30 @@ }, "omni-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", - "sha256": "9b94338cc888b0d568f185edf63640235d09eff61f57e863de5162b87a2dab77", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx", "rev": "517b340427d5906002234832a01d0bc1ad27bac5" }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "flycheck-hdevtools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-hdevtools.git", - "sha256": "63a24a61e5f085f5ea331720572d204b9f7c22bd5b4b2d23ec582315c46bd58c", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3", "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61" }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -1090,21 +1165,22 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "sly-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-company.git", - "sha256": "8b18fdc2924a4db9174903c50194c22f5b208ea0d75bfd6a796cc27e9d4fdda6", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr", "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -1115,28 +1191,30 @@ }, "ht": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ht.el.git", - "sha256": "1023cef7c2bea2f7fdbcb7d3ae0fea049025163110bde867390c21b0d629c498", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg", "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960" }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "elisp-slime-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elisp-slime-nav.git", - "sha256": "190432d15eb8f247c2f70494ec6c5e3be322acf3cf37ab1d87abde884f43157d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elisp-slime-nav", + "sha256": "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1", "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea" }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -1145,42 +1223,45 @@ }, "vlf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/vlfi.git", - "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7", "deps": [] }, "recover-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tripleee/recover-buffers.git", - "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", "rev": "a1db7f084977697081da3497628e3514e032b966" }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wcsmith/evil-args.git", - "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1195,35 +1276,37 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "real-auto-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chillaranand/real-auto-save.git", - "sha256": "b503ad1809b4e47696453f2733ba25780511122204585f283ff04114b0c045cd", + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm", "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e" }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "ebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/ebib.git", - "sha256": "52070bc8cc4dee4afe52cf317ce9618a7971fa7a74e2477210257eb636d9fb4b", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5", "rev": "e9f92df575d747992e9ada768b18dee475cfee55" }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.5.2", "deps": [ @@ -1234,28 +1317,30 @@ }, "multiple-cursors": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multiple-cursors.el.git", - "sha256": "55cf8411e303ac0aa66fb79b064515007764ce6b334e2570cfcef747bb4c976a", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multiple-cursors.el", + "sha256": "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k", "rev": "d17c89e41847cf9292004590ba5b1c8cec0b1c50" }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "tss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-tss.git", - "sha256": "2f494cd01294af2b7cf5ac4ebc7121cf0a56c97286b9964afacb4fe895facc9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb", "rev": "1f302deea3d74462c71a9c62031f48b753e8915f" }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -1273,21 +1358,22 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "espuds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/espuds.git", - "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", "rev": "1405972873339e056517217136de4ad3202d744a" }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [ @@ -1298,28 +1384,30 @@ }, "nav-flash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/nav-flash.git", - "sha256": "e9e1539e0cdf380336e1fef5262861cd030c1e485da712159c1b865bc04b2187", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "nav-flash", + "sha256": "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic", "rev": "9054a0f9b51da9e5207672efc029ba265ba28f34" }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "persp-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -1330,28 +1418,30 @@ }, "osx-location": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/osx-location.git", - "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "unify-opening": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/unify-opening.git", - "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -1360,14 +1450,15 @@ }, "ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "0e7502f6d4f53fbbe726defd908ecb56d19e51e8de05f9584a933f9c8900f4a1", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "1wiwkp4qcgdwnr4h1bn27hh1kyl2wjlrz2bbfv638y9gzc06rgch", "rev": "edfce196107dbd43958d72c174ad66e4a7d30643" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.4.0.0", "deps": [ @@ -1376,14 +1467,15 @@ }, "ninja-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martine/ninja.git", - "sha256": "682b909572969af73598fef130057939dda7edaa050598004ce5c1e15a31587e", + "tag": "fetchFromGitHub", + "owner": "martine", + "repo": "ninja", + "sha256": "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6", "rev": "484c16336f19bd8970bb6e75322d61b92a229899" }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -1392,28 +1484,30 @@ }, "el-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/el-x.git", - "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/migemo.git", - "sha256": "54bf4e6497259bccc4328198dc61dfc9fe59899f9aaaa9baae9c485e3d2c6bb2", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl", "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e" }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.1", "deps": [] @@ -1426,21 +1520,22 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "easy-repeat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/easy-repeat.el.git", - "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -1455,7 +1550,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -1465,16 +1560,33 @@ "hexrgb" ] }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "xml-rpc" + ] + }, "pophint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-pophint.git", - "sha256": "052d51374b546e3c41b3776490c6bd7e65f377f4c197a708a53dd50e24d644ee", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19", "rev": "28dc6a76e726f371bcca3160c27ae2017324399c" }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -1491,7 +1603,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1504,23 +1616,24 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "find-file-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/find-file-in-project.git", - "sha256": "9825101aa84dbe21ac8e32a3da663deb6f938cbf4d21ff32dace55ecde45b9c6", - "rev": "cb809569bf299663b2dce8501d9faa321484e5c4" + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "find-file-in-project", + "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm", + "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609" }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "4.4", + "version": "4.5", "deps": [ "emacs", "swiper" @@ -1528,28 +1641,30 @@ }, "paren-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/paren-face.git", - "sha256": "d8eb61608b21ddcaa6248c91eaab5e993c842aedcb567bd59ce41a77946f6f0c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq", "rev": "835d817295d81e2a6def9beb37f05aaf97870e86" }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "writeroom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/writeroom-mode.git", - "sha256": "79ba5d92c52f0177173ab77bea25d31be1e8451a260074f4138ad0fe8c198f17", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv", "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17" }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1", "deps": [ @@ -1559,14 +1674,15 @@ }, "use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w", "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -1576,14 +1692,15 @@ }, "highlight-defined": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-defined.git", - "sha256": "f9d8003c5d13a502e43a8486319b1e8697f88f6dad71dec02fcde66282e29f21", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-defined", + "sha256": "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r", "rev": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e" }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.5", "deps": [ @@ -1592,28 +1709,30 @@ }, "historyf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-historyf.git", - "sha256": "aab86167c113a0a62554782106f3f0379edfa905996f27155aad6338695cffe7", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z", "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2" }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.9", "deps": [] }, "ess-smart-underscore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", - "sha256": "e4409ae5fe34272139df497b4795119e6843393012f075ee1afc75f26c336bab", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "ess-smart-underscore.el", + "sha256": "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74", "rev": "ef18a160aeb3b1a7ae5fe93759f8e92147da8746" }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.79", "deps": [] @@ -1626,7 +1745,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -1635,14 +1754,15 @@ }, "narrowed-page-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", - "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "narrowed-page-navigation", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax", "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -1652,28 +1772,30 @@ }, "conkeror-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/conkeror-minor-mode.git", - "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "conkeror-minor-mode", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx", "rev": "476e81c27b056e21c192391fe674a2bf875466b0" }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.2", "deps": [] }, "pycarddavel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/pycarddavel.git", - "sha256": "21ddbbcb4570eab716489a06f3f117fa22d194f8071c33b463d4abb117a52432", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11", "rev": "6ead921066fa0156f20155b7126e5875ce11c328" }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -1689,7 +1811,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1702,7 +1824,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1715,21 +1837,22 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emoji-cheat-sheet-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", - "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "emacs-emoji-cheat-sheet-plus", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk", "rev": "96a003127d646a2683d81ca906a17eace0a6413e" }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -1739,14 +1862,15 @@ }, "helm-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-proc.git", - "sha256": "3cee3afc60d00121b9816f6ff9b750edc14df3464764d113d12fda62554dd52d", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-proc", + "sha256": "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h", "rev": "babf86d7d0e1f325f18095a51116c49cda2c5fec" }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -1755,14 +1879,15 @@ }, "evil-lisp-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-lisp-state.git", - "sha256": "7e4b29c5af8da8ddf3c81ae4de191464584aefad3019199b7aab445e45f9c52f", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-lisp-state", + "sha256": "12l3gnhirq8jz0dqyj9m02l1fg5rh78fdyskslprxp5vfa4ngzkh", "rev": "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d" }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1", "deps": [ @@ -1773,28 +1898,30 @@ }, "popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/popwin-el.git", - "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "popwin-el", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp", "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "py-isort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-isort.el.git", - "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] @@ -1808,21 +1935,22 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "24", "deps": [] }, "gh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/gh.el.git", - "sha256": "04c1aee9517fe7168658623019e2692c39d59e12a100b29637746c73003525ac", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms", "rev": "33b88251e8989069cc08f3f5d6886635f276f42e" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -1833,14 +1961,15 @@ }, "lispy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/lispy.git", - "sha256": "d531a0386bd43cf9dc07fefba888e123efc5f76191dbc3cdeb402fca03dc4cd4", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "lispy", + "sha256": "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l", "rev": "7756a8fbbadbebbd5e20768569ed92ad6c402c5c" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.26.0", "deps": [ @@ -1854,14 +1983,15 @@ }, "request-deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -1874,21 +2004,22 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ace-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-flyspell.git", - "sha256": "5b874784db3c741cd4b8011412faa2fd16038c73cb9622e9ab392fdf102df0df", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-flyspell", + "sha256": "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv", "rev": "a850fa913b3d1bab4c00bacee41da934929cef52" }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -1897,14 +2028,15 @@ }, "list-unicode-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/list-unicode-display.git", - "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "list-unicode-display", + "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww", "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -1913,14 +2045,15 @@ }, "import-popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-import-popwin.git", - "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-import-popwin", + "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w", "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.09", "deps": [ @@ -1930,14 +2063,15 @@ }, "company-tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-tern.git", - "sha256": "eb6238510b90a088c6274cbbfb3ac89252a6595babbac827311397d97fac34ca", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-tern", + "sha256": "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i", "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176" }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -1951,14 +2085,15 @@ }, "lit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HectorAE/lit-mode.git", - "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "tag": "fetchFromGitHub", + "owner": "HectorAE", + "repo": "lit-mode", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd", "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -1971,35 +2106,37 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "miniedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/miniedit.git", - "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "magit-gh-pulls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/magit-gh-pulls.git", - "sha256": "5f48eec8bab6112027e780147909eabf1d1ffcdd1892e17b39ea66f5a75038a6", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z", "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6" }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -2018,7 +2155,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -2031,35 +2168,37 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "firestarter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/firestarter.git", - "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", "rev": "4b7428477980e12578ebbbb121115696b352d6b2" }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [] }, "adoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/adoc-mode.git", - "sha256": "ef489ede62f3ab9872e3f0d46476d4bc7465eb329794504cf60570a95498d4ef", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq", "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f" }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [ @@ -2068,14 +2207,15 @@ }, "racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/racer-rust/emacs-racer.git", - "sha256": "ecbbfd283aaa4b9a9b4c1ef0b70f360f9438aa5203c7a7ace375588500df3df5", + "tag": "fetchFromGitHub", + "owner": "racer-rust", + "repo": "emacs-racer", + "sha256": "0pbswxzgfqcp6vjlwhvnablj91kxq588j2fmcjzhf0aigkj7dxfb", "rev": "9b7b4b1e8b04f630d29f771ad268025ff9380236" }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -2087,56 +2227,60 @@ }, "simplezen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/simplezen.el.git", - "sha256": "0b9b25303f7f9249cfab0cfba666d163c5906d056f274fb405ad410a7cfe277e", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "simplezen.el", + "sha256": "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61", "rev": "c0ddaefbb38fcc1c9775434f734f89227d246a30" }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaor/geiser.git", - "sha256": "6797b8641ea3db9c0ba9b1a813b854c4d985c981627ceed24e6ea6d7d895e13d", + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk", "rev": "c6f17b25200e36f80d812684a2127b451fc11817" }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [] }, "tup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/tup-mode.git", - "sha256": "1e1d0b7e88d251cac0cc92dc15d4781c9982bfd6a9a4f074e343ec6289004d2b", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y", "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d" }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "voca-builder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yitang/voca-builder.git", - "sha256": "99e71a4a4830c50e16a9b7fba589e88ed7eb02fbefe03cde47fac7547e9cb809", + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1", "rev": "224402532da28e45edd398fda61ecbddb97d22d3" }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] @@ -2149,35 +2293,37 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "zotelo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/zotelo.git", - "sha256": "59e3b6235b3aa83f5c15cf44047a438c5a1f744d4ba5d620abad5514dd5f8d63", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr", "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3" }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "helm-dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/areina/helm-dash.git", - "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -2187,28 +2333,30 @@ }, "vcomp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/vcomp.git", - "sha256": "5d60359b2ac0fb802252a6d0e721ce4477d728e89248b31eb091f1b97d1bbd1d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x", "rev": "a12363c3a66576b68955abcadf7280de32eaa051" }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "jsx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsx/jsx-mode.el.git", - "sha256": "6642871575e4dc2b620102e6adb3ea6b2945fc97e5e1b8d0c473cf8739e80cd8", + "tag": "fetchFromGitHub", + "owner": "jsx", + "repo": "jsx-mode.el", + "sha256": "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx", "rev": "1ca260b76f6e6251c528ed89501597a5b456c179" }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.10", "deps": [] @@ -2221,7 +2369,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -2234,21 +2382,22 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gradle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacobono/emacs-gradle-mode.git", - "sha256": "0a1924a9b90be4ce1c8ab2299c575e97b69e1a708f2642a055d15c1d0ca7cefb", + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782", "rev": "579de06674551919cddac9cfe42129f4fb0155c9" }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.5", "deps": [ @@ -2263,21 +2412,22 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ess-R-data-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-data-view.el.git", - "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-data-view.el", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x", "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -2288,28 +2438,30 @@ }, "keyfreq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dacap/keyfreq.git", - "sha256": "a9033ddc9e79f5cb19423299a4a31c8b0ab815a6fb645b7d452c3ac2f4ebd9ea", + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d", "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35" }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7", "deps": [] }, "sourcetalk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/malroc/sourcetalk_emacs.git", - "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -2324,21 +2476,22 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "kaesar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -2347,14 +2500,15 @@ }, "image-dired+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", - "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-diredx", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29", "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.2", "deps": [ @@ -2363,14 +2517,15 @@ }, "anything-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/anything-sage.git", - "sha256": "6008694aeeaecbfe1e34dcc9d092272bf4e9c45f73b94c9022aa6cfc6e54e903", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "anything-sage", + "sha256": "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm", "rev": "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2" }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -2381,28 +2536,30 @@ }, "ignoramus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ignoramus.git", - "sha256": "f22b83d6fa7e6a7ea0141829aebecf77b68b11e8e8ae17471af01c1324380c25", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ignoramus", + "sha256": "1j40ldvgd7nr7pabi8mhzdvi0ml9n62m8mfjlh9nrbnkcsifs9rk", "rev": "37536286eb1da6d7bb9590e039485c456fdfd245" }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "telephone-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbordak/telephone-line.git", - "sha256": "f469dfcafb19dfbf0a4abf8eb665b543e92fb6ff807816ed289622f5e3d2b405", + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19", "rev": "70c113bea37719c83961023afd893044398e681d" }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -2415,21 +2572,25 @@ }, "ac-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xcwen/ac-php.git", - "sha256": "5422b6878294e4887152670078cac5c74583464f88b4916674f6d08bb6a9ec25", - "rev": "64cfba5b405edb864e4146dd7e00aa8c070a544a" + "tag": "fetchFromGitHub", + "owner": "xcwen", + "repo": "ac-php", + "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z", + "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "1.6.0", + "version": "1.7.0", "deps": [ "auto-complete", + "company", + "dash", "emacs", "f", "php-mode", + "popup", "s", "xcscope", "yasnippet" @@ -2437,14 +2598,15 @@ }, "helm-ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-ghq.git", - "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-ghq", + "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -2460,21 +2622,22 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "helm-gtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-gtags.git", - "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [ @@ -2484,14 +2647,15 @@ }, "company-cabal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-cabal.git", - "sha256": "bc468b71cbf701e60ac939f3612bd919bf598f2b0b5c6265a73824cc6832ef14", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-cabal", + "sha256": "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw", "rev": "a570559ff92522598b5ed40e21c4539fffb3e976" }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -2502,28 +2666,30 @@ }, "idle-highlight-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/idle-highlight-mode.git", - "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "idle-highlight-mode", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv", "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.3", "deps": [] }, "highlight-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-blocks.git", - "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.16", "deps": [ @@ -2532,14 +2698,15 @@ }, "simple-httpd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-http-server.git", - "sha256": "557c431a225d03402c88b9092f8e0690f4f8f1a6b9dbffa9d823ec63fdeb15e2", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-http-server", + "sha256": "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g", "rev": "b191b07c942e44c946a22a826c4d9c9a0475fd7e" }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.6", "deps": [ @@ -2548,28 +2715,30 @@ }, "actionscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austinhaas/actionscript-mode.git", - "sha256": "637d66175853b07020244a3bb28e67987b731a59d6f70be230b28e0f1164cb7f", + "tag": "fetchFromGitHub", + "owner": "austinhaas", + "repo": "actionscript-mode", + "sha256": "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3", "rev": "fddd7220342d29e7eca734f6b798b7a2849717a5" }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.2.2", "deps": [] }, "sos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/emacs-sos.git", - "sha256": "fefd31f120c54f8bda92c8bda463860029506364412a7cfe4eacf978c06fae61", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1", "rev": "c3906ca6872f460c0bdd276410519308626313f1" }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -2578,14 +2747,15 @@ }, "nasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/nasm-mode.git", - "sha256": "54fadf6d2f216bb99c902b4e7829f25c48ad48a6c65fa4ee6d5e0d2b40c4e068", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn", "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36" }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -2594,14 +2764,15 @@ }, "markup-faces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/markup-faces.git", - "sha256": "d39e729436905b3bdc0555149e201a0f7d4d6906a8feae548099334642cd625a", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk", "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3" }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -2614,21 +2785,22 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "calfw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-calfw.git", - "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -2637,14 +2809,15 @@ }, "tabbar-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/tabbar-ruler.el.git", - "sha256": "ecabc3fcfdaf5dbf1ee44140ac109f0b10a6e162271f39ce4e24fb27923ea6f5", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "tabbar-ruler.el", + "sha256": "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc", "rev": "7df2e4814018e84ef9261d04a2ade8168a44e3d7" }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.45", "deps": [ @@ -2653,28 +2826,30 @@ }, "gruber-darker-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/gruber-darker-theme.git", - "sha256": "6d66ed9cda0e2f29dd13e5951b67c389fe6c2e103772897abd834f3b1acb0092", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "gruber-darker-theme", + "sha256": "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd", "rev": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4" }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "orgbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuhito/orgbox.git", - "sha256": "d645666197b200f73a261b9bcde0462a9b83966da279ffb3b2ba561f300b52af", + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy", "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734" }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -2684,28 +2859,30 @@ }, "mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/Mew.git", - "sha256": "472471d59703eeead8b196ff50bdabdb4bdd9a74719131cc936dc1dbb22880dc", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "Mew", + "sha256": "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr", "rev": "08289430ce14780a03789b71d2060ff4392fbae6" }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "6.7", "deps": [] }, "helm-circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lesharris/helm-circe.git", - "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "tag": "fetchFromGitHub", + "owner": "lesharris", + "repo": "helm-circe", + "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0", "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -2717,42 +2894,45 @@ }, "ruby-hash-syntax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ruby-hash-syntax.git", - "sha256": "0620b9025720546eb6d9c3ecba6807400016d06384b892174d43c09cab7b100a", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ruby-hash-syntax", + "sha256": "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k", "rev": "a0362c2dc449a1e67ef75ad736bcf8b03b083226" }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "nodejs-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abicky/nodejs-repl.el.git", - "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "tag": "fetchFromGitHub", + "owner": "abicky", + "repo": "nodejs-repl.el", + "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an", "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7" }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "ido-completing-read+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -2762,14 +2942,15 @@ }, "sekka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/sekka.git", - "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs", "rev": "2b0facc87e743e21534672aadac6db3164e38daf" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.4", "deps": [ @@ -2780,14 +2961,15 @@ }, "auto-complete-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", - "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "auto-complete-exuberant-ctags", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0", "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -2796,28 +2978,30 @@ }, "full-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/full-ack.git", - "sha256": "47b06985e251b76ccb3ce19a8723ae12e003c00d829d6b9e9011c98ed5a1c3a9", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "full-ack", + "sha256": "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq", "rev": "0aef4be1686535f83217cafb1524818071bd8325" }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "helm-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -2827,14 +3011,15 @@ }, "magit-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-annex.git", - "sha256": "3ff04fa5497c6f8f330408112edc4d3de9932224d2b73bc7b751118edea9c661", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-annex", + "sha256": "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih", "rev": "b51962dcc1080a35a91e2667f7c26fb33960c711" }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -2851,7 +3036,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -2861,14 +3046,15 @@ }, "helm-hatena-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", - "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", "rev": "497d33632f195354eaa24670db0804c846b7261b" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.4", "deps": [ @@ -2877,14 +3063,15 @@ }, "emacsql-psql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -2896,28 +3083,30 @@ }, "yaml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "0d05b3b1e342c2caf3360a6fb67b3c537c3b015d81dcad8bacf5086a0b8837ee", + "tag": "fetchFromGitHub", + "owner": "yoshiki", + "repo": "yaml-mode", + "sha256": "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1", "rev": "a817e46cc55eb90b7e1dd7cff74e43e080f0f690" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.12", "deps": [] }, "ncl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/ncl-mode.git", - "sha256": "ee518f4a920fa5aca844f3a11ee55a2110d7458a31e9f8a2e52dad3ad29aa868", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q", "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab" }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.99a", "deps": [ @@ -2926,14 +3115,15 @@ }, "go-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-direx.git", - "sha256": "29c5386d7a7b39db97a068c7cf6f51971836bf430015d379b597499da9c5a9e4", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln", "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f" }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.04", "deps": [ @@ -2949,7 +3139,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -2958,28 +3148,30 @@ }, "shampoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dmatveev/shampoo-emacs.git", - "sha256": "cf57006de03c3c8d00fad29cba4ba0125113b1c02e839a295ef17ae2ed51e6e1", + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2", "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142" }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "window-purpose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/emacs-purpose.git", - "sha256": "603dd34a67b16a333909e9184156154e7c71e58bcec8ee4f4be6be6b268c6452", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "08j0akwjp4arkw3zm0lazb13f6dq0m8y9k9nmypd7xk0m77byymd", "rev": "7e492cbdd4259a177625a3f47001d7281f295349" }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -2991,14 +3183,15 @@ }, "boxquote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davep/boxquote.el.git", - "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "tag": "fetchFromGitHub", + "owner": "davep", + "repo": "boxquote.el", + "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73", "rev": "4c49b2046647ed187920c885e175ed388f4833dc" }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.22", "deps": [] @@ -3011,21 +3204,22 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -3035,14 +3229,15 @@ }, "magic-filetype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/magic-filetype.el.git", - "sha256": "e22ae243e841ddb4381ebf7e6cf5ce9e179e62d22769ba8687ff350c0cf18df5", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "magic-filetype.el", + "sha256": "128dqgh7kvjywiq0wq6ipnr1l1v2dzrz5j0rd3n2783r9nz0i7r5", "rev": "1a3e425ab5b7b6614b7ece5885d23f12f45572f0" }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3052,28 +3247,30 @@ }, "py-yapf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-yapf.el.git", - "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-yapf.el", + "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x", "rev": "766e57448639ff95eeb018f6d8bdf09170094218" }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "paper-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/paper-theme.git", - "sha256": "83f357c3044453c03633c7967a905c75d9abb3670a218a18fa59382ad01312ba", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "1fhj2g82lf2rz8c8l88acyrspnbmbj87m5n76cvc0ls40k1mgww3", "rev": "551859066afe926380b6fcdc95851db45599944e" }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -3086,21 +3283,22 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "finalize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-finalize.git", - "sha256": "2512e83da6a4bff10f56408acc58880743e05d69b03f002874a7da4512440436", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx", "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a" }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -3111,14 +3309,15 @@ }, "paredit-everywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/paredit-everywhere.git", - "sha256": "878c101b8f9164f21156cf1926f382fc00454b4b77f2bb265b3e340813c52a4b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "paredit-everywhere", + "sha256": "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj", "rev": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170" }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -3127,14 +3326,15 @@ }, "eval-in-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/eval-in-repl.git", - "sha256": "94a9ce1251a57a407f77fc7f1590b510a35101bced6dceb32e80bf04451310e9", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "eval-in-repl", + "sha256": "1s8h2d2h9gw05srwwvgdph0m38qhnn81azzwfxzl0ym5a49cxacl", "rev": "c79ba77bdd6f1534f379953fc6e0ec0e1c866151" }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -3144,14 +3344,15 @@ }, "helm-perldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-perldoc.git", - "sha256": "dbcef6a645dbb2820af730d2c7929059064efd97e2cff72993eab8ee2e742afe", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-perldoc", + "sha256": "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g", "rev": "18645f2065a07acce2c6b50a2f9d7a2554e532a3" }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -3162,14 +3363,15 @@ }, "ttrss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pedros/ttrss.el.git", - "sha256": "cfec017bb5627cffe0aa80fb295166c76916c94e6b014a6ce8b82a959a9e1218", + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g", "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6" }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.5", "deps": [ @@ -3178,42 +3380,45 @@ }, "term-run": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/term-run-el.git", - "sha256": "63dab270c988b49df7b24b1fd72e486a0f27f876f738cbbf39bdc1f238936e03", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "term-run-el", + "sha256": "1lwkm1mnnwhwrnali7ljxw7gvyhrnas200bvfcirngvfjv1q0xzl", "rev": "9b20497bec2537ca6b36a66322a2d99107030679" }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "smooth-scrolling": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/smooth-scrolling.git", - "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.4", "deps": [] }, "flymake-python-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-python-pyflakes.git", - "sha256": "30c9c615b19605954b73955c05c2a92e18922109e0ec01cdff4f84766344174b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-python-pyflakes", + "sha256": "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh", "rev": "78806a25b0f01f03df4210a79a6eaeec59511d7a" }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -3228,21 +3433,22 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flycheck-cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-cask.git", - "sha256": "940783353a872ac592bf73616d863889858dec5e1abb1c93db859dc178093245", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4", "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b" }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -3253,28 +3459,30 @@ }, "el-get": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/el-get.git", - "sha256": "eebdbebb3a1e8a4e20d36c60c3b027caa1a18f94b7182f84d9e57847fc16b99b", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "el-get", + "sha256": "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz", "rev": "bfffd553f4c72b818e9ee94f05458eae7a16056b" }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.1", "deps": [] }, "markdown-mode+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/markdown-mode-plus.git", - "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", "rev": "f35e63284c5caed19b29501730e134018a78e441" }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -3283,14 +3491,15 @@ }, "feature-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michaelklishin/cucumber.el.git", - "sha256": "87bf498a2b320331753bb41d7d1e8f4a9241e198f49a8f98491aed02def3b2b3", + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7", "rev": "4bd8f19da816115094beb4b0e085822eb298ac37" }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -3303,7 +3512,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -3318,49 +3527,52 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "unkillable-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/unkillable-scratch.git", - "sha256": "15e57c8ed17a82e1838a6dc119e23347d59e2018b2d1b127c2cb82eceb035cf0", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m", "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b" }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "crm-custom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/crm-custom.git", - "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "ace-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-link.git", - "sha256": "fffd40fc00e63aa64906c179f4860b674a3743fa6c551ddf32c13e021a3d22ec", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-link", + "sha256": "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz", "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5" }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -3369,14 +3581,15 @@ }, "anaphora": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/anaphora.git", - "sha256": "4d48342cc1ec113a33c08097e7b0a1fda2b6f1baf6d8e9c90951087dcdafcc13", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w", "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3" }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -3389,7 +3602,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -3402,7 +3615,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -3416,7 +3629,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -3426,14 +3639,15 @@ }, "fish-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wwwjfy/emacs-fish.git", - "sha256": "168c82e9499894fdd9aac5067e162b3de7b48adcee47062a505a2b8f100498ef", + "tag": "fetchFromGitHub", + "owner": "wwwjfy", + "repo": "emacs-fish", + "sha256": "1vwq0h88yassa0m0cizfvj5b9rrx5cb7w1n5mbczv54q97lq530n", "rev": "ac38e249dc260790ae32a24e101311990d9a84df" }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3442,28 +3656,30 @@ }, "ercn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/ercn.git", - "sha256": "0011ce6ec929f164be91bca53aa03e1b3c3a6b5f683462e7e00d36e0968d56a6", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480", "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6" }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", "rev": "fb7355615276f00397b15182076bf472336448a9" }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [ @@ -3473,14 +3689,15 @@ }, "list-packages-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/list-packages-ext.git", - "sha256": "98cf61b610d9ba668484977d3eaf7783525999480422b6b88355bdcee3c4eca4", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "list-packages-ext", + "sha256": "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq", "rev": "344719b313c208c644490f8f1130e21405402f05" }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -3498,7 +3715,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3507,14 +3724,15 @@ }, "clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clj-refactor.el.git", - "sha256": "4f83a8dfec5cffa881549e6809f3790cc3a83fd7f9b4a24f6d7160c256636525", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clj-refactor.el", + "sha256": "1w0lv2d916wxfakcy11avmn9f6nsmxff02dpyih5kx6ncgqv1bnd", "rev": "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168" }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -3530,28 +3748,30 @@ }, "org-autolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/calvinwyoung/org-autolist.git", - "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "tag": "fetchFromGitHub", + "owner": "calvinwyoung", + "repo": "org-autolist", + "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani", "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [] }, "evil-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-escape", + "sha256": "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz", "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.12", "deps": [ @@ -3562,14 +3782,15 @@ }, "camcorder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/camcorder.el.git", - "sha256": "a6a12faf8631c81462a70aa31648d2bd56cc212fd359a03390c0b142473d226d", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "camcorder.el", + "sha256": "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6", "rev": "a2b5e0629ee3c01ead684e148965ac68e533efbd" }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -3580,84 +3801,90 @@ }, "make-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/make-color.el.git", - "sha256": "bbef730fb994e9db2bd09d90373d19dc17b1bf002ea1da8a146700e90ff90ffa", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "make-color.el", + "sha256": "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx", "rev": "b19cb40c0619e267f2948ed37aff67b712a6deed" }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "german-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/german-holidays.git", - "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "traad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "save-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/save-sexp.git", - "sha256": "8b3f7a809e341c5a676c952eb4c2d1f712e7d9008c592d4755972151583e09be", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "save-sexp", + "sha256": "1gh97rc528cpam3jsncc03cyf4pps71b8blmdikml71lks07lgwb", "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc" }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "fringe-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/fringe-helper.el.git", - "sha256": "afbb216b3f16c9ddd88ebb1446871f85d9bca0121e5a27e41d988b5d37586313", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj", "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b" }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] }, "bufshow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/bufshow.git", - "sha256": "41c9aec30bd62fc5e3f6b64b3ced3b9065cfcfdef5db071664f6d5d3b5769451", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy", "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -3670,21 +3897,22 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ebal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ebal.git", - "sha256": "2084ec30b161f996b19f5f8d5be6479e757424bfb2fa55398bfb802292b04c9a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0nb0p82fx1qp1q9id88wlfqfvfbqqr20541s59snln1pa25s2agm", "rev": "bd8bca3a57d390c22862179db0afca7008831dd7" }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -3695,14 +3923,15 @@ }, "coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/coffee-mode.git", - "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "coffee-mode", + "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5", "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [ @@ -3718,21 +3947,22 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/smartparens.git", - "sha256": "b64e03b27e05b8c67d6912f31dfdaf7d67810a1fbc49170a9035612b9328df35", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h", "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110" }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.3", "deps": [ @@ -3742,14 +3972,15 @@ }, "grunt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gempesaw/grunt.el.git", - "sha256": "fc191985f898438a6128abaedeb60871f70c623ecbf03a36bb879a848960ea6b", + "tag": "fetchFromGitHub", + "owner": "gempesaw", + "repo": "grunt.el", + "sha256": "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k", "rev": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9" }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -3759,30 +3990,32 @@ }, "buffer-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/buffer-utils.git", - "sha256": "be3edaa95e32fa7196e64eebe4c659ed63f038a204497fe637f4a4cbb44c0b2a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "buffer-utils", + "sha256": "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5", "rev": "b4d325543e25518d725a2122b49cd72a0d6a079a" }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "elscreen-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robario/elscreen-persist.git", - "sha256": "67b1cd5f0daadc0bed867eb4446872c0b4d306dd2eff5a9514ac6dfdd11fc83d", - "rev": "2d7c6c2934e4b5c6f4b125eb5fdfc888c4b647dc" + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1.1", + "version": "0.2.0", "deps": [ "elscreen", "revive" @@ -3790,14 +4023,15 @@ }, "pyenv-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pyenv-mode.git", - "sha256": "f6d072de53846a738cfbd07a1e38c8f073eecfaedd6d0bd766064ef064d5860b", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pyenv-mode", + "sha256": "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar", "rev": "b96c15fa1b83cad855e472eda06319ad35e34513" }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -3806,28 +4040,30 @@ }, "iplayer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csrhodes/iplayer-el.git", - "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "ruby-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-tools.git", - "sha256": "abd2a379479429d82892de60b4aa83968e851ae9e1de944ba13e0a9ae1f18613", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k", "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac" }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] @@ -3840,35 +4076,37 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "hardcore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/hardcore-mode.el.git", - "sha256": "5486b1bc48f0704d5cb4d64ea2e2724f3ec1f0306686a66874e4bd276cba8622", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl", "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96" }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "e2wm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-R.el.git", - "sha256": "a48258ed800969ebff2e9052f4ff94e07e1e02d941cb36bae8d987d0ae39b94f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp", "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125" }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -3877,70 +4115,75 @@ }, "fold-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/fold-this.el.git", - "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "mowedline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/mowedline.git", - "sha256": "ec66747edd88411037a184ad454a954ca90c5fc773952f7ebf222a840c92f309", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd", "rev": "c299991ace6f55e9edbf26c1d53b054873899101" }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.8", "deps": [] }, "keychain-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keychain-environment.git", - "sha256": "bc7116e1cac43a4002c83c0c45b25a30ae93057ca4e28d80c36c20d678d0061e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw", "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8" }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.0", "deps": [] }, "parent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/parent-mode.git", - "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] }, "git-gutter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter.git", - "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.85", "deps": [ @@ -3956,21 +4199,22 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "stylus-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -3979,28 +4223,30 @@ }, "peg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ellerh/peg.el.git", - "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/cask.git", - "sha256": "f5c62c805dd9b801d0dddb23cce334449d857d95c93df8957c948cdbfab6d8a8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l", "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728" }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.4", "deps": [ @@ -4015,14 +4261,15 @@ }, "ace-jump-helm-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", - "sha256": "7bc9141a395baba7f07eada0f873d5c8958dd470c6e95c30bdbe0d81e5812d67", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-jump-helm-line", + "sha256": "0rrdh7jq23dyplq5rsf6f3a8v5f8smrzi85dgvqagasv74d19jbv", "rev": "8259c2bd34486c3929c3425f3354d70cdb478c69" }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [ @@ -4032,28 +4279,30 @@ }, "puml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skuro/puml-mode.git", - "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "tag": "fetchFromGitHub", + "owner": "skuro", + "repo": "puml-mode", + "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz", "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [] }, "ac-html-csswatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-csswatcher.git", - "sha256": "2ec03946eb13fe462a9f8bd4cacefe5a925d843e27169f3a675506e67de7285c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-csswatcher", + "sha256": "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f", "rev": "dadc3c595cf1708291096c03987f1981f3cabc6b" }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.7", "deps": [ @@ -4068,49 +4317,52 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gmail2bbdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/gmail2bbdb.git", - "sha256": "3d74c42b85a8d8f4dd5c93d6ea08ac1d306e33d5b66e0ed9e9d6143faa28d65c", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x", "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98" }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [] }, "flymake-easy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-easy.git", - "sha256": "bc47240a0f4542b365fc9ec65f083bf0990714df032a15370ac0aa964bd2ae2d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c", "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392" }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "org-repo-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/org-repo-todo.git", - "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "org-repo-todo", + "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9", "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] @@ -4124,21 +4376,22 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.9", "deps": [] }, "robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/robe.git", - "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.8", "deps": [ @@ -4147,28 +4400,30 @@ }, "git-auto-commit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/git-auto-commit-mode.git", - "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "git-auto-commit-mode", + "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh", "rev": "075e5f9ded66c2035581a7b216896556cc586814" }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.4.0", "deps": [] }, "company-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303", "deps": [ @@ -4177,14 +4432,15 @@ }, "google-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/google-translate.git", - "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11.2", "deps": [] @@ -4197,21 +4453,22 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "puppet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/puppet-mode.git", - "sha256": "25ed7a919c57291225bdaaa035913ca255592915f0964e2814625a44a0001913", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14", "rev": "d943149691abd7b66c85d58aee9657bfcf822c02" }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -4222,14 +4479,15 @@ }, "live-code-talks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/live-code-talks.git", - "sha256": "7308fdfadbba90d014c2e97343a81ad2fa22e09d25b6957c7dd6c8d1e4371bfa", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "live-code-talks", + "sha256": "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5", "rev": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99" }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -4240,14 +4498,15 @@ }, "unicode-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-fonts.git", - "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-fonts", + "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk", "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.8", "deps": [ @@ -4260,28 +4519,30 @@ }, "eww-lnum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/eww-lnum.git", - "sha256": "6257b99a0c332bd0884dc946bfe708a5d8fa5512c98825b6615f6ba1475c463f", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "eww-lnum", + "sha256": "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2", "rev": "daef49974446ed4c1001e0549c3f74679bca6bd3" }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "mbe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ijp/mbe.el.git", - "sha256": "51544f5e6f4bfec4bbead3dd6f9b274ea2b061154c0a5ebcf28fd9e2a468fc01", + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i", "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec" }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -4291,14 +4552,15 @@ }, "relative-line-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/relative-line-numbers.git", - "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "relative-line-numbers", + "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a", "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -4307,14 +4569,15 @@ }, "ob-sml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/swannodette/ob-sml.git", - "sha256": "abd8f7fa17db90ee93ea9fafec7027349121dfb3d32276caa65d667ad1a36e40", + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "0h3flg8plrjxlv57c8nknggj349l4xqfrbwzxa9yx46v2zxggn5b", "rev": "09b503201be6e06a5ed8d6b52345dc886c202028" }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -4323,14 +4586,15 @@ }, "mu4e-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "ca6cd79207129903cb6492f31b62a9f64fddd86f47cc5c7972c1d8cf8e332f73", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a", "rev": "83e6232b43902c7124fea16145de0da881bfe865" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -4341,14 +4605,15 @@ }, "ham-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/ham-mode.git", - "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "ham-mode", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g", "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [ @@ -4364,21 +4629,22 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "e2wm-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-direx.git", - "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -4394,21 +4660,36 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, + "ruby-electric": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53195" + }, + "recipe": { + "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "multi-web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/multi-web-mode.git", - "sha256": "cb7c7a0e0951eaf303f6cc0fba1e6ebd14fb6269e594c9cd7effdd23781b3eb5", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b", "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06" }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] @@ -4422,21 +4703,22 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/history.git", - "sha256": "618185ca1012fcbf09f62d8205a653f401302769dad09d452168ee830d82a7d1", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1", "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d" }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -4445,42 +4727,45 @@ }, "auto-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/auto-dictionary-mode.git", - "sha256": "ae6333ddbb5f6723426199aeb6ce9c4b43adf037044e2f1f42a0201ecf0a2325", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "auto-dictionary-mode", + "sha256": "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk", "rev": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1" }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr", "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] }, "popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/popup-el.git", - "sha256": "d12353d7ad8a31d90a050f57bae599c037ce3dc1eab991ce51e757de26934a08", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h", "rev": "46632ab9652dacad56fd961cd6def25a015170ae" }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [ @@ -4489,14 +4774,15 @@ }, "evil-commentary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-commentary.git", - "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-commentary", + "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a", "rev": "122880a6721fcf16479f406c78c6e490a25efab0" }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -4505,14 +4791,15 @@ }, "shut-up": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/shut-up.git", - "sha256": "ef77b4f00b402e7b73ebd5097b707a52bf559a614eed8ffaf9619bc45a34eee8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq", "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12" }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -4522,14 +4809,15 @@ }, "orglink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/orglink.git", - "sha256": "27358837b625d751bd9eedce5718e35247124d08df866ee8ace332fde9fa7003", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97", "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1" }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -4539,14 +4827,15 @@ }, "flymake-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-shell.git", - "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-shell", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc", "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -4555,14 +4844,15 @@ }, "rdf-prefix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/simenheg/rdf-prefix.git", - "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] @@ -4575,21 +4865,22 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-migemo.git", - "sha256": "bafb099d717477922dab0b60b7c157a617a739f278059eaebc4028671544a80c", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs", "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7" }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.22", "deps": [ @@ -4600,42 +4891,45 @@ }, "gather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-gather.git", - "sha256": "e6065490459b5f760315f59fcd4509691342e067fabbec38bdcbb04592f82be1", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-gather", + "sha256": "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6", "rev": "303af57dd2ae0fc1363a3d1a84d475167f58c84a" }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "test-simple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-test-simple.git", - "sha256": "78cd3787dc6f8ea58d97b651dbb955b729dabf70c8f958b3592b46025326ab07", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk", "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4" }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "projectile-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/projectile-rails.git", - "sha256": "eeeca7ba65658f2a34a07304e1ef513ad969ff3d0d6d8b1544068d079fa8051d", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "03z9zsldzj0nwksw3bj4j58p7n14n6cqv917pwn1sb67l0wziqg2", "rev": "dee51e39003489ece8077750d3cf93dee6b373fa" }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.7", "deps": [ @@ -4649,56 +4943,60 @@ }, "tabulated-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/tabulated-list.el.git", - "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "tabulated-list.el", + "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g", "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0", "deps": [] }, "hippie-expand-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/hippie-expand-slime.git", - "sha256": "79c1a6513a11db6c45de6dc7e0a4c6cd62bac0ee9983e8f33b5c29369f22f357", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr", "rev": "de31fbc9f9d55891a006463bcee7670b47084015" }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "httpcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rspivak/httpcode.el.git", - "sha256": "13e7b30753627a9c4aaf71351ae39dc5043b707edce3c89c5ff684e8101a36c1", + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk", "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90" }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "keyset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/keyset.git", - "sha256": "b6149b699968327244a0d350c06aa5383bc4e54bda88b3179d83b674a50691d8", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv", "rev": "25658ef79d26971ce41d9df207dff58d38daa091" }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -4708,14 +5006,15 @@ }, "editorconfig-fnmatch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -4730,21 +5029,22 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "git-gutter-fringe+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", - "sha256": "c9524466c513f3eb2cae4c0a716dcf27958ce813b5b152661888f7a3ee92f1b0", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-fringe-plus", + "sha256": "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9", "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd" }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -4754,14 +5054,15 @@ }, "milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-milkode.git", - "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -4774,7 +5075,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -4783,14 +5084,15 @@ }, "egg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/egg.git", - "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", "rev": "499894195528203cfcf309228bf7578dd8cd5698" }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.9", "deps": [] @@ -4803,21 +5105,22 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a", "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16.0", "deps": [ @@ -4828,14 +5131,15 @@ }, "helm-swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-swoop.git", - "sha256": "812eb2e11a853434780b470c8cd261317a5df3d3a3b6a937ca7d0955d3cf72d2", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-swoop", + "sha256": "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1", "rev": "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7" }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [ @@ -4845,14 +5149,15 @@ }, "skeletor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/skeletor.el.git", - "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [ @@ -4866,14 +5171,15 @@ }, "counsel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm", "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -4883,14 +5189,15 @@ }, "visual-fill-column": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/visual-fill-column.git", - "sha256": "02187d43ae2604aaf3f4b86cf5a5ed0370ebe51d52c0b99604a50979bd9f29a2", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "visual-fill-column", + "sha256": "100w8rxdqln4xiwi0df15pvyaiyhjlwcjdh8nb0j95qpwji41vmf", "rev": "261e27c062fbfd59ab20c9a084c35b99bcec598d" }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -4899,28 +5206,30 @@ }, "android-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/android-mode.git", - "sha256": "52f94fbda0a39a3a2e2bcae154fe4af7f348744ef440948f67709c10a1a4d00c", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740", "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f" }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "undercover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "8a5681728eba3202f7446e2f24b1efa8f9394ea44a145b31d82b06caaef3d6bb", + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "0dmkn8qlnyvgaj7dqh82mqj1fik59zfi2yxcic9i6q9walxc3cas", "rev": "068d39745304a06152c3e68a0b6772394c9e6d39" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -4931,14 +5240,15 @@ }, "clojure-quick-repls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/symfrog/clojure-quick-repls.git", - "sha256": "edfca4eb968e22ada89bcfc8affb2ddfafd9b7e78b9a6345eb642474a527836b", + "tag": "fetchFromGitHub", + "owner": "symfrog", + "repo": "clojure-quick-repls", + "sha256": "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d", "rev": "90f82e294cfdfb65231adc456177580cd69bfc00" }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -4948,28 +5258,30 @@ }, "rase": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/rase.git", - "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "js2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js2-mode.git", - "sha256": "77fa5fa2cfd6e89ca94448e22675a939cfa6845d38e5cf33cab3d1e4800e1505", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn", "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093" }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909", "deps": [ @@ -4985,49 +5297,69 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "window-end-visible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/window-end-visible.git", - "sha256": "17e52995dfe349e457d51972dcff24fead1fcce31136582465017e7a98a0a096", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb", "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c" }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, + "dic-lookup-w3m": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/", + "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc", + "rev": "79" + }, + "recipe": { + "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "stem", + "w3m" + ] + }, "rbenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rbenv.el.git", - "sha256": "f75fbfdfccb073a576191d6e8c0c4d7ff6149b13fdb6351913759b6d29d98625", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp", "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8" }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "org-agenda-property": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/org-agenda-property.git", - "sha256": "ae73db4105d7dcc4323b04a3b0aca0698ac318f8f60fffc66282dd745d352913", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "org-agenda-property", + "sha256": "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc", "rev": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8" }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -5036,14 +5368,15 @@ }, "dart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/dart-mode.git", - "sha256": "9ab9e6471817ef07837b2eb1c71a3feca72746a799624f9dbdf702e65b4976ee", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs", "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b" }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [ @@ -5060,21 +5393,22 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "navorski": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/navorski.el.git", - "sha256": "3314722d6bcfc0bba4fc3f9e4d583f07a9b3a6c5465b5047795c079d7839c6f8", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5", "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9" }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -5091,77 +5425,82 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "df9c033f6e057b3c47414d19f551161e7b77a7d1bf101ddc64fbc18af8669ba8", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "04cqcv10i6mym8j9fhd4fklmwa1q4nfg99kpp0bwx7issqhziqv5", "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0-a", "deps": [] }, "erc-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/erc-crypt.git", - "sha256": "5fdb5494dec923210ff033ffe5a2a156aa0c1826d768f2d205793e93a33685f7", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz", "rev": "1573189240d8b58e65385414d9a9514238c77805" }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "log4e": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/log4e.git", - "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "graphviz-dot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ppareit/graphviz-dot-mode.git", - "sha256": "400f68d6ab5b4dfcabf7f60e28868708f4378efe0f57cd42b8247c4f233166fe", + "tag": "fetchFromGitHub", + "owner": "ppareit", + "repo": "graphviz-dot-mode", + "sha256": "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0", "rev": "7301cc276206b6995d265bcb9eb308bb83c760be" }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "pcomplete-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", - "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", "rev": "839740c90de857e18db2f578d6660951522faab5" }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5171,14 +5510,15 @@ }, "melpa-upstream-visit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/melpa-upstream-visit.git", - "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "melpa-upstream-visit", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd", "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -5193,7 +5533,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5202,14 +5542,15 @@ }, "paxedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/paxedit.git", - "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.6", "deps": [ @@ -5219,42 +5560,45 @@ }, "e2wm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-manager.git", - "sha256": "821047f9a6595307a9a77210577810876ddffba52cc803fee872a581c7ed2e4e", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-manager", + "sha256": "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl", "rev": "397cb6c110c9337cfc1a25ea7fddad00f168613c" }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "drupal-spell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-spell.git", - "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "org-ac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-ac.git", - "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -5265,15 +5609,15 @@ }, "omnisharp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OmniSharp/omnisharp-emacs.git", - "branchName": "master", - "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "tag": "fetchFromGitHub", + "owner": "OmniSharp", + "repo": "omnisharp-emacs", + "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm", "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -5295,7 +5639,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -5308,21 +5652,22 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "highlight-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-numbers.git", - "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", "rev": "e1245b27a732ec43c1562f825533fe147759d24e" }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -5332,28 +5677,30 @@ }, "org-toodledo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-toodledo.git", - "sha256": "cc4ef1e544ec8e4b7211846834ff6264ad4570f0a0a9bf27805a934a65d9668f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-toodledo", + "sha256": "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v", "rev": "5473c1a2762371b198862aa8fd83fd3ec57485a4" }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [] }, "js2-highlight-vars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/js2-highlight-vars.el.git", - "sha256": "14a1d10bb1286993acd40d57b23b65763889f00056abd470df0fe091bbfa5a64", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "js2-highlight-vars.el", + "sha256": "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l", "rev": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed" }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -5362,14 +5709,15 @@ }, "processing-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15", "rev": "228bc56369675787d60f637223b50ce3a1afebbd" }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5378,14 +5726,15 @@ }, "csharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/csharp-mode.git", - "sha256": "ae137909e1a2019982e32bb982d3bbc2ee6b38d4909fc357bccc6bda3cf03ba9", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "12m90dwbmkdwirdfx1jfib9vk7qinrspkyz9d6m5szam98rpzalz", "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1" }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.11", "deps": [] @@ -5398,7 +5747,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5407,28 +5756,30 @@ }, "mallard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-mode.git", - "sha256": "923546e797da36a160676ff32b39d273e42f453f8b188d6a6f497dfda576e288", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj", "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0" }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "ess-R-object-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-object-popup.el.git", - "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-object-popup.el", + "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0", "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5438,14 +5789,15 @@ }, "solarized-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/solarized-emacs.git", - "sha256": "6d9ac8162cd0a643f0b05719aadb54879bfd8ad627993fd0c6bef5cfbdcb605e", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3", "rev": "210dbef0186f87048d50face41d1d374d6154b3a" }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -5454,14 +5806,15 @@ }, "osx-trash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/osx-trash.el.git", - "sha256": "658f200965c24fc81da1b2586a45e9a52145878a4d45c0f8d4021bfd9e4bda14", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "osx-trash.el", + "sha256": "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a", "rev": "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4" }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -5470,14 +5823,15 @@ }, "org-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-readme.git", - "sha256": "ea00c174f79fa66b8b8a008aef13d829c5d8c636b673aa6b95896eac01770f42", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a", "rev": "15054e42351b5ec6b629c55760a578516e035355" }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130322.926", "deps": [ @@ -5489,14 +5843,15 @@ }, "org2jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/org2jekyll.git", - "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "org2jekyll", + "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf", "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.8", "deps": [ @@ -5507,28 +5862,30 @@ }, "bing-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/bing-dict.el.git", - "sha256": "7aaa16adc9f3ce582f9f514f598415b27e640d4410b31feb0cdace5da03a8f26", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "bing-dict.el", + "sha256": "09lg7ah5vkns1kmizcqh8h6n8zmj2n25jksikwpmikpkr6nidaks", "rev": "3d55a306fa50ffad4b374fbf716b5b5200661770" }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "ctable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-ctable.git", - "sha256": "c32bcaf3750bc16e9c6b31937e8bffcaa8218618bfb1d56ffecbf850fd44f88f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3", "rev": "08a017bde6d24ea585e39ce2637bebe28774d316" }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] @@ -5541,21 +5898,22 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ess": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-ess/ESS.git", - "sha256": "5c5030f0ecae91e8205b4161ec2ec570b2eb9f69d1ad93843a44023757d1c810", + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p", "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e" }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "15.09", "deps": [ @@ -5564,28 +5922,30 @@ }, "ocp-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OCamlPro/ocp-indent.git", - "sha256": "1fbff9a43a5fae87cca3ab2c58a9262e16eb9bd9dc9bfcbb25fe59f04ff15c45", + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz", "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900" }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [] }, "hoa-pp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", - "sha256": "ac709ddea5e6c3a2b8749def0b2be47025cc1ad7d07d3d0f37bea358e796e12f", + "tag": "fetchFromGitHub", + "owner": "hoaproject", + "repo": "Contributions-Emacs-Pp", + "sha256": "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp", "rev": "a72104a191214fba502653643a0d166a8f5341d9" }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -5601,21 +5961,22 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-w32-launcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/helm-w32-launcher.git", - "sha256": "ce9120037581dbc1933f57fc6593704d6f0d4e853a61ee0814e7947079b2e2b0", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "helm-w32-launcher", + "sha256": "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q", "rev": "01aa370a32900e7521330fba495474f2aa435e19" }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.6", "deps": [ @@ -5626,14 +5987,15 @@ }, "ac-ispell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-ispell.git", - "sha256": "38f3d3b576924df827b74a32f28d9435ab7b64c89a35dcabc63e4901bc441beb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-ispell", + "sha256": "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l", "rev": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa" }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -5643,14 +6005,15 @@ }, "alect-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/alect-themes.git", - "sha256": "bd768c6f895ecf0a94cdf82a30909256e93c2fbc45e801718c697388679948f3", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj", "rev": "db7cc6ebf695a71881d803966d672f80fe967da6" }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -5665,21 +6028,22 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dired-k": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-dired-k.git", - "sha256": "216c4ff5dbd2fe19600985090438aeb6573dde7806f94136385834011c4a4bd8", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7", "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282" }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16", "deps": [ @@ -5695,21 +6059,22 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "project-persist-drawer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -5724,21 +6089,22 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "image-archive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", - "sha256": "082f3909f9d2ef3b2fc047279e105b40a2daafc3d989fa53682c2425d9efbb46", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8", "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45" }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -5748,14 +6114,15 @@ }, "el-spice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vedang/el-spice.git", - "sha256": "736d6849712dff42d5bb4b821fe8cd5fc19cec08518357147c3d08e39ae45929", + "tag": "fetchFromGitHub", + "owner": "vedang", + "repo": "el-spice", + "sha256": "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i", "rev": "53921ffe9a84d9395eea90709309d3d5529921ea" }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -5764,20 +6131,38 @@ }, "package-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/package-utils.git", - "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ "epl" ] }, + "ruby-additional": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53195" + }, + "recipe": { + "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "emacs", + "ruby-mode" + ] + }, "open-junk-file": { "fetch": { "tag": "fetchurl", @@ -5786,21 +6171,22 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "beginend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/beginend.git", - "sha256": "5a4f1087045590e3a6c0090a753b656a8eb532620866dfeaa903bcf4cc5a1cfe", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9", "rev": "de3833a1a651532e76df668bd92cfa07893501f1" }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -5816,7 +6202,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] @@ -5829,35 +6215,37 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "vimgolf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "d455d10d8cd4dc59b8934b6b6a95f507426b95bb4df874f7bd12cdf8a757ce17", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i", "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [] }, "ac-geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xiaohanyu/ac-geiser.git", - "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -5873,21 +6261,22 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tuareg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocaml/tuareg.git", - "sha256": "bad0045a9fc7eca014c5b57812d44303fac6cb0a17494aecabf303ed3ae04870", + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb", "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e" }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.9", "deps": [ @@ -5896,28 +6285,30 @@ }, "twilight-anti-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", - "sha256": "4eb0ba1e308d302261e7b70e7e76f3004a7d08baa19ad6cbb66df488308efed5", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-anti-bright-theme", + "sha256": "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc", "rev": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b" }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "octicons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-octicons.git", - "sha256": "fc21d33f0cceef3f7fbb7ba26f89a5c16a730811480528eed22ec7a84e36cfa5", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw", "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556" }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -5926,56 +6317,60 @@ }, "loc-changes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-loc-changes.git", - "sha256": "0f4131c707c0753b7629355e6b15c68a0aa79ff5a1be719a6f538bb56693490f", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-loc-changes", + "sha256": "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp", "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b" }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "initsplit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dabrahams/initsplit.git", - "sha256": "8f94b86db5fb616cb531169661279c956ef92de568d5d3317d7faf61141adce5", + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g", "rev": "950bdc568e3fd08e6106170953caf98ac582a431" }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [] }, "downplay-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobias/downplay-mode.git", - "sha256": "ab46acd4a8fd65ed163fa2dd8b760f1b3bc0425ad464e9b44f8ff85d6b679f8d", + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb", "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c" }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "ruby-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.11", "deps": [ @@ -5990,7 +6385,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5999,14 +6394,15 @@ }, "alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/alchemist.el.git", - "sha256": "ca0356af2a1f5b9a49fc6ef6a9d5cfe53018495417008fac66449d12de45cc43", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "0961s25b1bjrh4gzzf7k67ycwafmdrc6jlbhzb25i34dmpigq1hz", "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683" }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -6019,28 +6415,30 @@ }, "pretty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akatov/pretty-mode.git", - "sha256": "f5258222d7b2b8ce52fad643e4500253547fbcca01763259296b5010bbd43be0", + "tag": "fetchFromGitHub", + "owner": "akatov", + "repo": "pretty-mode", + "sha256": "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh", "rev": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b" }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.3", "deps": [] }, "splitjoin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-splitjoin.git", - "sha256": "aebcfdc27d6fff5c72e6ae3fd2eaa537ebba4e415b2deefd50a3cee98adb691f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991", "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda" }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -6049,14 +6447,15 @@ }, "frame-restore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/frame-restore.el.git", - "sha256": "0c094115f3fc0a59aec2ae1bfafc07bd8593b320826ee32757e5b6919130e640", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz", "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804" }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -6065,14 +6464,15 @@ }, "link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] @@ -6085,49 +6485,52 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "button-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2", "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [] }, "fill-column-indicator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpaker/Fill-Column-Indicator.git", - "sha256": "c91797a46d3495d5d2bdbda683c3e1cede5972872653ee0855bc69dc8b87f039", + "tag": "fetchFromGitHub", + "owner": "alpaker", + "repo": "Fill-Column-Indicator", + "sha256": "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9", "rev": "5cbc077083775d4719a294455a8a8a53bb3151f8" }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.81", "deps": [] }, "serverspec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -6139,14 +6542,15 @@ }, "butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AshtonKem/Butler.git", - "sha256": "f9163e1a95db261a85d831a9f2edb0604b9353affd0520155e7584cc963c5488", + "tag": "fetchFromGitHub", + "owner": "AshtonKem", + "repo": "Butler", + "sha256": "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj", "rev": "0e91e0f01ac9c09422f076a096ee567ee138e7a4" }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -6157,84 +6561,90 @@ }, "iflipb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrosdahl/iflipb.git", - "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "ido-complete-space-or-hyphen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", - "sha256": "8244b7aed3a1d9b7c2c56eb75f3d1e371724e3ad145eefd78b7c8e608a4a4291", + "tag": "fetchFromGitHub", + "owner": "doitian", + "repo": "ido-complete-space-or-hyphen", + "sha256": "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5", "rev": "ad9baaec10e06be3f85db97b6c8fd970cf20df77" }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "sift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/sift.el.git", - "sha256": "e5ede66da711928d262225d77ead0a3db89fc2e0107e3cc448de9db67e71257d", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0g4fql83xbyx1ihaghxm6rk2cffz97jpy13hg865m6hh0j72dlr1", "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b" }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "moz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/mozrepl.git", - "sha256": "4cb8eaed3140058efa610ecb02c9cf813b81a5da9f7e56642a0fbf19ac2c6e8d", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c", "rev": "646208b67e6c9c56d188db1eba999846d518935f" }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "timer-revert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/timer-revert.git", - "sha256": "0512bbaaa1969cf9be710277637ec3b534ed6130961072b36f8820891b5054a6", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7", "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2" }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "helm-mt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfdeshom/helm-mt.git", - "sha256": "02bfbe8126eb7a023c17bd45aef7c766b767602dfec1b7671769880c3db3763e", + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2", "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7" }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -6246,42 +6656,45 @@ }, "darcula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/darcula-theme-emacs.git", - "sha256": "27543bdc25a13ee1958758ba067ce68162f8e7b2e29fcf94feb29c7823e38014", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "darcula-theme-emacs", + "sha256": "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f", "rev": "202a5affe59a5e1ac1d33a7e518d1df772bf2100" }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "cm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/criticmarkup-emacs.git", - "sha256": "201964c9b1cd5e5933bedceba5f35dfe5f7d0a8ae8cfa2cc881a07ba35a316ae", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690", "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082" }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "dynamic-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/dynamic-fonts.git", - "sha256": "aedeb7c912e76d6ace824ea021c0cff035d6d02c3b205814628dd25a1080a466", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f", "rev": "d318498b377d8941c7420f51616c78e3440d00f5" }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [ @@ -6292,14 +6705,15 @@ }, "bbdb2erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/bbdb2erc.git", - "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -6308,28 +6722,30 @@ }, "whitespace-cleanup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whitespace-cleanup-mode.git", - "sha256": "e2bd4b7e707fc063a7c6c9f7a542c72a78d8c8eba5fa52b2e3dc74b49687bc76", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whitespace-cleanup-mode", + "sha256": "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2", "rev": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4" }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "m-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/m-buffer-el.git", - "sha256": "dce09b1386be536db3baabb2b76ba1240846b03d0ca26a90e4107670eced40cd", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "1dnp9yj429scg94hkmc6rnrjkcy74mpf9c509k4avmlkdmmi2hzn", "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96" }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.12", "deps": [ @@ -6339,14 +6755,15 @@ }, "marshal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/marshal.el.git", - "sha256": "bb1694a831ac72ac22c611608a5ce74d12640daf459a23f07347c707a5f4316b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv", "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0" }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [ @@ -6356,14 +6773,15 @@ }, "zygospore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louiskottmann/zygospore.el.git", - "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "tag": "fetchFromGitHub", + "owner": "louiskottmann", + "repo": "zygospore.el", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z", "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] @@ -6376,35 +6794,37 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "scala-mode2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/scala-mode2.git", - "sha256": "262959f309c807c099a05933de01ad7cd6785cda0245065c45b69325bdf84cd1", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "scala-mode2", + "sha256": "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89", "rev": "34888c094990bc669347f106dbd516f487e55ae3" }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [] }, "rigid-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/rigid-tabs.el.git", - "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -6413,42 +6833,45 @@ }, "theme-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hadronzoo/theme-changer.git", - "sha256": "cda38adad5ef5e87992c14c58876e38d5fbfdf143892d03e8ec42692341e6e27", + "tag": "fetchFromGitHub", + "owner": "hadronzoo", + "repo": "theme-changer", + "sha256": "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd", "rev": "d3d9c9f62a138958262ac5dd61837df427268611" }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [] }, "hl-sentence": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/hl-sentence.git", - "sha256": "ca1533b4a5efce037d5ebca2c95a015336ef67493980c4f2c915b67bdf7af1c1", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa", "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085" }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3", "deps": [] }, "svg-mode-line-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/svg-mode-line-themes.git", - "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "svg-mode-line-themes", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic", "rev": "80a0e01839cafbd66899202e7764c33231974259" }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -6457,14 +6880,15 @@ }, "processing-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15", "rev": "228bc56369675787d60f637223b50ce3a1afebbd" }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -6477,35 +6901,37 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "grizzl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/grizzl.git", - "sha256": "fa87f7c61ec4fca444a7eb3c2d12612175bfe8cf8c6d2f2ab59d90d3d91c07af", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs", "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7" }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "hyde": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nibrahim/Hyde.git", - "sha256": "1b9aaf59f870db88fada26f83eb6406fa12c7880f0e0a392ef2d3a10e051cdb0", + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4", "rev": "181f9d2f91c2678a22243c5485162fa7999fd893" }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -6518,49 +6944,70 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/pabbrev.git", - "sha256": "864341b02b8be0ba8edddcc502fe99637b6f28f11bd661ee3846c92184ba781c", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6", "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564" }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.1", "deps": [] }, "auto-indent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/auto-indent-mode.el.git", - "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "auto-indent-mode.el", + "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y", "rev": "ad7032ee058a74405d04d775b0b384351536bc53" }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.126", "deps": [] }, + "helm-ls-svn": { + "fetch": { + "tag": "fetchsvn", + "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", + "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", + "rev": "143722" + }, + "recipe": { + "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, "evil-leader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-leader.git", - "sha256": "626882de36c100bb8f98f1a64f50a9a5983af10214694e33c09de60906bf9f80", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5", "rev": "753b01eb4958370ae2226b3780ff31fe157c2852" }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.3", "deps": [ @@ -6575,77 +7022,82 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "darktooth-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", - "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.37", "deps": [] }, "window-layout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-layout.git", - "sha256": "2efa26f19e4502d0fe4988507f0f9579890554363b07c59a17f20ff057adde4b", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-layout", + "sha256": "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif", "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef" }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "edit-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/edit-list.git", - "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "grapnel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/grapnel.git", - "sha256": "c5f9a8feb571ec64c449eefcd2e308c2b469afb342267a61862ef6f7f10c9275", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5", "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7" }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [] }, "ducpel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/ducpel.git", - "sha256": "143ea232a8e2be3d81fb0ce95c7711a702a57dc0650c4a2215f1600da8bcad19", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b", "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc" }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -6654,14 +7106,15 @@ }, "elfeed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -6670,14 +7123,15 @@ }, "resize-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dpsutton/resize-window.git", - "sha256": "9f1f5c17fec219ad389c8a34ba0e4dff6852d69be9d89afad26e94ec1c5b1efb", + "tag": "fetchFromGitHub", + "owner": "dpsutton", + "repo": "resize-window", + "sha256": "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv", "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403" }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -6686,14 +7140,15 @@ }, "forecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/forecast.el.git", - "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", "rev": "51526906140700f076bd329753abe7ae31b6da90" }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.9", "deps": [ @@ -6702,44 +7157,61 @@ }, "tox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/tox.el.git", - "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "init-open-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/init-open-recentf.el.git", - "sha256": "263187542cb19a3d83a9ca943981ba60c03755b151aa6ebe300f79099ddd811b", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "init-open-recentf.el", + "sha256": "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96", "rev": "39da6a50e7f39e6ccd9aada0c20d8b6d501cb487" }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ "emacs" ] }, + "geben": { + "fetch": { + "tag": "fetchsvn", + "url": "http://geben-on-emacs.googlecode.com/svn/trunk/", + "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4", + "rev": "124" + }, + "recipe": { + "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "date-field": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-date-field.git", - "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -6750,56 +7222,60 @@ }, "slamhound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/slamhound.git", - "sha256": "b35d9a4afdd2c9f617cce3ba54bafaf2d9c2fc9eb80be25e2a99bce96d2ba591", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8", "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9" }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.4", "deps": [] }, "evil-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-numbers.git", - "sha256": "60b9e039c3c27a5ddb78f8ecf150372db3d7cca7b3a2c5fec8a590456d007a88", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8", "rev": "8834eb2e8bd93561a706363946701d0d90546a9f" }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "switch-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/switch-window.git", - "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "helm-robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-robe.git", - "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -6808,14 +7284,15 @@ }, "ac-capf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-capf.git", - "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-capf", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da", "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -6825,28 +7302,30 @@ }, "lice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/lice-el.git", - "sha256": "acff239622bd1446262a456529d698b1957743a2415a2c04d2d9d50fac517c90", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl", "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03" }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "mark-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs-mark-tools.git", - "sha256": "1c178906b07365e7d51e3a118545b1996485eceb7500911a41f6247bfed59e39", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw", "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c" }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [] @@ -6859,49 +7338,52 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dedicated": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/dedicated.git", - "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "pixiv-novel-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", - "sha256": "0d0095e3032436b92e632dd1d1df253e8b403f192900d897b03d82d338bbe8f1", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "pixiv-novel-mode.el", + "sha256": "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d", "rev": "4dd9caf749190fab8f0b33862b3894b635de46c5" }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "edit-indirect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/edit-indirect.git", - "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -6910,28 +7392,30 @@ }, "morlock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/morlock.git", - "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/auto-complete.git", - "sha256": "aa9d97e3565a2b06818481f25855dca01b15b804eb321b65c7a8422a92cd8954", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06", "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c" }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -6941,14 +7425,15 @@ }, "sparql-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/sparql-mode.git", - "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "sparql-mode", + "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij", "rev": "303858e7f91829ec720141482c777460e66f310b" }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11.2", "deps": [ @@ -6957,28 +7442,30 @@ }, "expand-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/expand-region.el.git", - "sha256": "3dc2da684680a0ebfd74f148a67ef7d66aef30a8e517fff0d82a309340ef68ee", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "expand-region.el", + "sha256": "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg", "rev": "90c4e959ac8bf0bbd857dd679f38a121c592bf7a" }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [] }, "auto-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/auto-compile.git", - "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -6989,14 +7476,15 @@ }, "redpen-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karronoli/redpen-paragraph.el.git", - "sha256": "e9cad6d38d8ed4ddc278d14630084c263ff5d0ce2ff7480bd2ce584bd6cc85a5", + "tag": "fetchFromGitHub", + "owner": "karronoli", + "repo": "redpen-paragraph.el", + "sha256": "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9", "rev": "e942c41c0308d8fbac1f145387d4f6ea1091e26b" }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [ @@ -7006,14 +7494,15 @@ }, "r-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/r-autoyas.el.git", - "sha256": "af729ee67b50903c0b8380ee20f373f3d4a47a7ae2de06ad3b437b4ced6f6d09", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "r-autoyas.el", + "sha256": "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg", "rev": "563254f01ce530ca4c9be1f23395e3fd7d520ff9" }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.28", "deps": [] @@ -7026,7 +7515,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -7039,63 +7528,67 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "search-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomoya/search-web.el.git", - "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "clips-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grettke/clips-mode.git", - "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] }, "kivy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kivy/kivy.git", - "sha256": "ad3e966b86f786d3fd5cc5e46cf378c3d14e555901d5605b1dd29356f30a5e57", + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "0qz2q9c5q0l3ibhil2z10yb161fimgdwyp6q8izs9d59qdlmr8x8", "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [] }, "mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/mpv.el.git", - "sha256": "6f019a5015fbfcb88530aaa3bb9cdf2615ccfe315419859be8b478c7255b1d87", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3", "rev": "059135de3979e044f14503806047476d9be9f0e8" }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7114,21 +7607,22 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "concurrent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -7143,21 +7637,22 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-zhihu-daily": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", - "sha256": "fa2f6985f9bafef96d3a2230809f574608498bc032c5793699f4a3bb7add100f", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1", "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c" }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -7168,28 +7663,30 @@ }, "vector-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/vector-utils.git", - "sha256": "ff65d76b011cab6f357dea8bbd33f2114094499b7f2936dc2e97b5fc2b7c9c07", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "vector-utils", + "sha256": "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk", "rev": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685" }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "bongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/bongo.git", - "sha256": "d9ba33b4bac199d6fee44f1373d5805f1fcb9698c24a13d9814d1860b7d07ce0", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr", "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c" }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -7202,21 +7699,22 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "caskxy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/caskxy.git", - "sha256": "9f91ec7d29ede8e624c55321e59f352df982f71ac448ff866130c84fe4389876", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a", "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3" }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -7226,56 +7724,60 @@ }, "aurora-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bdd/aurora-config.el.git", - "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "tag": "fetchFromGitHub", + "owner": "bdd", + "repo": "aurora-config.el", + "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28", "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "twittering-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hayamiz/twittering-mode.git", - "sha256": "e4dcd4db555773f2199d07dad365f86cc41a0a2074f1499049a51e613f76cc29", + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z", "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13" }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0.0", "deps": [] }, "rtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "b0120b123c7e6e68100a84e4f1520986754e8ba10b2078702a618eb82774c1e7", + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0ndyvpgbvfcnxf74ffaby36rqsnwj10j1s9vr3gan9mqi6spcggf", "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "skewer-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/skewer-mode.git", - "sha256": "c9a189bf7dae904b358dbb2098733f22ed15bbe965233fca52a518ac32ce5e14", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "skewer-mode", + "sha256": "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv", "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4" }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.2", "deps": [ @@ -7286,14 +7788,15 @@ }, "yesql-ghosts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/yesql-ghosts.git", - "sha256": "4d63dc03994b48adbc2d622680bc6f6ef8cca880875599d68c4c92162b3d7f7b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "yesql-ghosts", + "sha256": "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd", "rev": "bd834e97f263f9f981758c1462bc6297a83ca852" }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7304,14 +7807,15 @@ }, "latex-extra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/latex-extra.git", - "sha256": "43eb81b85e81a1c0e7a48e99a3cc3146a4ad187a47d1145670782b70fa6326e7", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "latex-extra", + "sha256": "1rr6cgx70avqf1b19la7g8cav926676a76cflkkw18c1bsw83ss3", "rev": "455b7873de095cbce6aa256f33cf64dba3dbaa29" }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.11", "deps": [ @@ -7327,21 +7831,22 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-travis.git", - "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -7353,14 +7858,15 @@ }, "project-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/project-explorer.git", - "sha256": "7fbf7de574bc33a2a931671e7e5d2532e55e878de5646cf9719db9dcb4cf7864", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "project-explorer", + "sha256": "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7", "rev": "7c2cc86a81f679dda355110f916366b64893a5d4" }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14.3", "deps": [ @@ -7378,21 +7884,22 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-helm.git", - "sha256": "7a3ee9d691b6af01768cb8dc9c96d28de5b5beb90d44cf063c42cc7322277e89", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34", "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a" }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -7403,14 +7910,15 @@ }, "rainbow-delimiters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-delimiters.git", - "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-delimiters", + "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd", "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [] @@ -7423,21 +7931,22 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "genrnc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-genrnc.git", - "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7449,14 +7958,15 @@ }, "unicode-progress-reporter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", - "sha256": "554f17dfeea7bedc4807d163d9f79f0a0d88ae9f2277c2cc6fd1acd80329f15a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-progress-reporter", + "sha256": "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd", "rev": "f4705332412b12fc72ca868b77c78465561bda75" }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.4", "deps": [ @@ -7468,28 +7978,30 @@ }, "fm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fm.git", - "sha256": "9b09fd145c5fc3342870a154c2bd525c78f3ab7cafafdb81e1dc761fd1105264", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fm", + "sha256": "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv", "rev": "6266840de17ac396dd7275a71da72cd5120c35a6" }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "company-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-anaconda.git", - "sha256": "eab07dd62470c4495ecf4c6a520bbb5d6a8ec46bab3ae0ccd954ec54dba3610e", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy", "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98" }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7502,28 +8014,30 @@ }, "inlineR": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/inlineR.el.git", - "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "inlineR.el", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q", "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-tutor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-tutor.git", - "sha256": "3a81b3e27d0cdac2e7c9c751ab6af7a2bd96915d21e42c72d1780f3aa5b224f5", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2", "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b" }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -7532,14 +8046,15 @@ }, "flycheck-dmd-dub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", - "sha256": "0f50c15973c93116207359548e75629ffce546d5e4ead637f5ae8855654a9a64", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "flycheck-dmd-dub", + "sha256": "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh", "rev": "e8744adaba010415055ac15c702f780dd6e13e14" }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -7548,14 +8063,15 @@ }, "evil-visualstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-visualstar.git", - "sha256": "92a4e73ac25c1432b55ca0c47ca4bbbcd8632d3d01dbf8b1462c69d3e6034cd8", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "1n2c0gkd6s9c8sqzinq17lnn7n5wpfj7ri50bjsk452wq8xfg94j", "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac" }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7564,14 +8080,15 @@ }, "rainbow-identifiers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-identifiers.git", - "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -7580,14 +8097,15 @@ }, "demangle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/demangle-mode.git", - "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -7597,14 +8115,15 @@ }, "github-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/github-clone.el.git", - "sha256": "28129f5bcb0f6341918516ab991b16a460ccccf50358224e443a409d64414d61", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "github-clone.el", + "sha256": "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7", "rev": "ab048cf49d9ebda73acae803bc44e731e629d540" }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -7615,70 +8134,75 @@ }, "shrink-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", - "sha256": "e491b49323a15df9486f26f47212c7a902e06df65cc26dd55a54c7d980b53d7d", + "tag": "fetchFromGitHub", + "owner": "jcpetkovich", + "repo": "shrink-whitespace.el", + "sha256": "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32", "rev": "24518d58e8e692fa98a73d5e7cd44c1536ab4e42" }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "hi2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nilcons/hi2.git", - "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] }, "bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w", "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] }, "bbdb-": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/bbdb-.git", - "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", "rev": "2839e84c894de2513af41053e80a277a1b483d22" }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -7689,14 +8213,15 @@ }, "ace-pinyin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-pinyin.git", - "sha256": "79a67c04e64c1c0f76e1f5f74c8eb4d83abe970bd1aab2bc0bf887d89e0ec082", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-pinyin", + "sha256": "10n01sgdi1zq1fyb5ani1fbvwfnqnj74rxzmw5v0y72cwq27r9kr", "rev": "10f66ba2355bed78ef0a1ad24edb00972a0dbe02" }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -7706,14 +8231,15 @@ }, "prop-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/prop-menu-el.git", - "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "prop-menu-el", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc", "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -7730,49 +8256,52 @@ }, "recipe": { "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "bbcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/bbcode-mode.git", - "sha256": "7ec29cbb692c60a6682c8f0a1f9fab81880d6eeb7dab182751a7d03475fa7df7", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky", "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0" }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "fold-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fold-dwim.git", - "sha256": "461c17827f94d7ea8544b1cb44b7eff617f65cc36f8ab0e9a978775a23181fcd", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726", "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0" }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "cake-inflector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake-inflector.git", - "sha256": "07b48d2f9b0868a1818d5ef3f38be7571ac95da6c8e24fabd039fc737e6f7e0b", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far", "rev": "40bf11890842ba305954528694e1c39a8b73737b" }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -7781,14 +8310,15 @@ }, "purescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dysinger/purescript-mode.git", - "sha256": "323e5f8ecba85f946ab6f7965752ec1eb33aa15d2d0a5fc811610dd127dfa1cc", + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9", "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253" }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13.10", "deps": [] @@ -7801,21 +8331,22 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rectangle-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", - "sha256": "7587bc0b940809c3643631ccb3620f00caf9f0a2cb9b92cd26dc70025a961711", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm", "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb" }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -7825,28 +8356,30 @@ }, "hippie-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hippie-namespace.git", - "sha256": "cd90684612f10d4c49939556f51e3add4b846e02a0b6ef4423954c294f19cf8e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hippie-namespace", + "sha256": "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0", "rev": "79a662dfe9e61341e071b879f4f9101ca027ad10" }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.8", "deps": [] }, "sbt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/sbt-mode.git", - "sha256": "1a98d6e449809a89a33004f88ce77ee5b13e8eddbbc9b9cf1963969f7bd8b5e8", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "sbt-mode", + "sha256": "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q", "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -7855,28 +8388,30 @@ }, "shpec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shpec/shpec-mode.git", - "sha256": "439d3e3e69e415ee72e9e6df26dabc2cf6eb863517a0fe33e7ae7727aff1524e", + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h", "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76" }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "anything-replace-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-replace-string.git", - "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-replace-string", + "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k", "rev": "1962f24243d6013bcef7e8d23136277d42e13130" }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -7891,21 +8426,22 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "discover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/discover.el.git", - "sha256": "283c8e229566e5b7abf84b774495f68d9099298bfe65aac0eab0339a3f18bc63", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18", "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816" }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -7914,43 +8450,45 @@ }, "ledger-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ledger/ledger.git", - "branchName": "next", - "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1", "deps": [] }, "eshell-autojump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/eshell-autojump.git", - "sha256": "6c578729e54f7de25f3048c3e237d4f8d9418dd8e367db85072513213ae7755a", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc", "rev": "c0866d7f2789831665ebb01b812bae89d085bff0" }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "company-restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-restclient.git", - "sha256": "c486a2ed92644fb7c708f6469fe7335d52df99ea007e37deb08f72bc69812e44", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4", "rev": "98e4b2af0e84ba4192c16288123aed96541c6401" }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7963,14 +8501,15 @@ }, "ac-cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake.git", - "sha256": "cccc6fe7abdcf650f6908ca83a588fc0b675fea9ecfe5df0025ec2930eb6e88b", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake", + "sha256": "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c", "rev": "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff" }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -7986,21 +8525,22 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-transform-tree-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", - "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -8010,14 +8550,15 @@ }, "asilea": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/asilea.git", - "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -8033,21 +8574,22 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-package.git", - "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -8057,28 +8599,30 @@ }, "mmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/mmm-mode.git", - "sha256": "71840270a7d0cb96016fed7841dd1ffab923da9ec3a3fb12bfd8fa5af4c65a13", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "mmm-mode", + "sha256": "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8", "rev": "4085494df67e0a3207839a175ac62673dfd0acc1" }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.4", "deps": [] }, "git-lens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-lens.git", - "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", "rev": "1feacc217c58fd4a41f9378eb09658f664036509" }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -8087,14 +8631,15 @@ }, "emacs-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-setup.git", - "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -8107,21 +8652,22 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "highlight-quoted": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-quoted.git", - "sha256": "4bcada744da3b74dd475408ce425b6446b4f8df63f8acb01bff218ad3f4e0faa", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb", "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f" }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -8130,28 +8676,30 @@ }, "wordsmith-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/wordsmith-mode.git", - "sha256": "1ab2459d921b35a580b9f0fa4e06e8692dce7603bc593aaf1eb6c5285d957568", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs", "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969" }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "makey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/makey.git", - "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", "rev": "a61781e69d3b451551e269446e1c5f624ab81137" }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -8167,21 +8715,22 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.8", "deps": [] }, "magit-gitflow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jtatarik/magit-gitflow.git", - "sha256": "75b9e6b356b97b925c8bcaec49996b7d85fdeb423c8cab44743d269e4bf3041e", + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "00711dgbzmplqrfww8xf261ymz3jmhisnv9x1rhcw0ywmlfkbckz", "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb" }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -8190,28 +8739,30 @@ }, "wsd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/wsd-mode.git", - "sha256": "b6eec2bb80f6ffa2a1a67e6985580183bca73a0502b70e4cba5e3e570cb50e83", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "0v4bigqr8dwbn80x87r2wqncxcbb19giyazm1lnajcfg8s5z7jsn", "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "rubocop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/rubocop-emacs.git", - "sha256": "38f9631cfdbb02a256f50792c38ca58ae9c862545145367101ac0351c295b281", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q", "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c" }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -8221,14 +8772,15 @@ }, "ert-runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-runner.el.git", - "sha256": "7769e5db9f8c9d7acc6430f29d5d94e035b7c0bfbb736a68068d98a3262ccddd", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-runner.el", + "sha256": "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf", "rev": "00056c37817f15b1870ccedd13cedf102e3194dd" }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -8242,70 +8794,75 @@ }, "zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/zenburn-emacs.git", - "sha256": "9b9757092b7b6f2ff71aa36f6aeb229c43f286fce7a2976332696cfff8c557ff", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "zenburn-emacs", + "sha256": "1zspqpwgyv3969irg8p7zj3g4hww4bmnlvx33bvjyvvv5c4mg5wv", "rev": "ae42a7f3ec9491ddec001a2e57c7eb2f38d421cd" }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [] }, "web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/web-mode.git", - "sha256": "6ca47f32ac75196831723c243b7c28db269e4f455de00c011f7f2320aafce40a", + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "0b6izvqm3017hrys31ppcs76k0858r74a0jarb8djdi3hxzsgqfv", "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8" }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13", "deps": [] }, "gitconfig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "mwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/mwim.el.git", - "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "transmission": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/transmission.git", - "sha256": "bba824bcd540b8b3a109b7c6bb4e60ed3a19d055790ae1c4017bf8ecd47ddf91", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "14fzgpafry3v072f22krap81jfpdc17bpimp16hv7f20sny29a5v", "rev": "2769c9b17fa464e0634ac03046be74cefdb28880" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -8322,7 +8879,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -8337,7 +8894,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -8351,21 +8908,22 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.21", "deps": [] }, "nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -8375,14 +8933,15 @@ }, "pythonic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pythonic.git", - "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -8401,21 +8960,22 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emms-mode-line-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", - "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-mode-line-cycle", + "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938", "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -8425,42 +8985,45 @@ }, "go-errcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-errcheck.el.git", - "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-errcheck.el", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3", "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "minimal-session-saver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/minimal-session-saver.git", - "sha256": "92a6468ec3bc988283c03d8c84fd563bc2225fb70b2bcfec1c09f3798018eecc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "minimal-session-saver", + "sha256": "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5", "rev": "aaba48a8525e1310b221eeb96763304c22e9a4b4" }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [] }, "popup-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-popup-complete.git", - "sha256": "7c960dc4eff365940310d2947b02bb264ac4bba512513559caa9c7b96649053d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-popup-complete", + "sha256": "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4", "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9" }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -8469,14 +9032,15 @@ }, "cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake2.git", - "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [ @@ -8492,14 +9056,15 @@ }, "async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/emacs-async.git", - "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "emacs-async", + "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp", "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [ @@ -8509,16 +9074,17 @@ }, "gotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/gotest.el.git", - "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", - "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.8.0", + "version": "0.9.0", "deps": [ "emacs", "f", @@ -8528,14 +9094,15 @@ }, "floobits": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Floobits/floobits-emacs.git", - "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.1", "deps": [ @@ -8545,14 +9112,15 @@ }, "annoying-arrows-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/annoying-arrows-mode.el.git", - "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "annoying-arrows-mode.el", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02", "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -8566,63 +9134,67 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "weibo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austin-----/weibo.emacs.git", - "sha256": "1b1a19ed36d4b1c00beb8487f983dc184db58695ee8eeea093b7f242be7b7593", + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv", "rev": "a8af467e5660a35342029c2796de99cd551454b2" }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "stan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1.0", "deps": [] }, "edts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "f76caf8ffd4677d6f3298f2ba53de5799b51646c90bcf7828bb064e2951821a4", + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1", "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/avy.git", - "sha256": "13d54de07f7c19303c3df6a8ecc6c22de5f1829095b7332b1b1a6be2757dae97", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "15xfgmsy4sqs3cmk7dwmj21g3r9dqb3fra7n7ly306bwgzh4vm8k", "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0" }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -8632,14 +9204,15 @@ }, "marmalade": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/marmalade.git", - "sha256": "b885e4175d3f92a0080c8eaf2f05430b68c13c1a26f00043c2553f151849aae3", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9", "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7" }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -8655,7 +9228,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [ @@ -8664,14 +9237,15 @@ }, "zop-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/zop-to-char.git", - "sha256": "26911714138a5cee7915e71fc15081901e4b4747b475e9d47b02df8dbe1add48", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "zop-to-char", + "sha256": "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496", "rev": "7888bb6f09ae24e8e10bd3095edd31940e6a1c46" }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -8680,28 +9254,30 @@ }, "connection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "gmail-message-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/gmail-mode.git", - "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -8710,28 +9286,30 @@ }, "bug-reference-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/bug-reference-github.git", - "sha256": "1bdccc0396c0ac6e5c8499a7a9fea65f71855c7165aca76b25bacba150795f1e", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "bug-reference-github", + "sha256": "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v", "rev": "671d32083aad5cf813a5e61075b70889bc95dec5" }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53", "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.0.1", "deps": [ @@ -8740,14 +9318,15 @@ }, "utop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/diml/utop.git", - "sha256": "833f7e075155fbf54ca5c2cb768669a69bca88542bbfd31b5ae8419e714bf8b1", + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r", "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872" }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.18.1", "deps": [ @@ -8756,14 +9335,15 @@ }, "with-editor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -8774,14 +9354,15 @@ }, "evil-jumper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-jumper.git", - "sha256": "f7f5cce2cc49c5e43f9b73b8a2831478dbc262f62cf9db361b0b4f7cc0da8112", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-jumper", + "sha256": "04l1vb07qkqb3cvdpy9cyric5nvq2j1s5f3kkczy9ia9rkicrxgp", "rev": "ab87e865a1ffd815f937c98c2ecf70bf13510715" }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -8790,28 +9371,30 @@ }, "lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lugecy/lingr-el.git", - "sha256": "da4f57b9770cdab3e400c50743ffc50e79d99770da7b1061bd7e8355fe205c87", + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys", "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23" }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "auto-complete-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/auto-complete-sage.git", - "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", "rev": "a61a4e58b14134712e0737280281c0b10e56da93" }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -8821,14 +9404,15 @@ }, "rich-minority": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/rich-minority.git", - "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "rich-minority", + "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3", "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -8837,14 +9421,15 @@ }, "marcopolo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/marcopolo.git", - "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -8856,28 +9441,30 @@ }, "el-mock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/el-mock.el.git", - "sha256": "2eb7f7731f29f0547bbb327371c9b50eedf00dff37d2ad6423f81526475a3679", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "el-mock.el", + "sha256": "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7", "rev": "3069931de75bb6704ecf565af5390009dc4dae00" }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.25.1", "deps": [] }, "hydra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/hydra.git", - "sha256": "ee50c89853b10b97f04bf3a272d2d41b78b539aaee0c2a99719efde869493c22", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f", "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98" }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.3", "deps": [ @@ -8886,28 +9473,30 @@ }, "browse-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", - "sha256": "def280462d07dcca627c580a3a87a9b5e8eabf7440522db6243161dbf7d309cd", + "tag": "fetchFromGitHub", + "owner": "browse-kill-ring", + "repo": "browse-kill-ring", + "sha256": "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b", "rev": "2a7acf98c348c4f405a6b2ab216224ca14915be8" }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "auto-shell-command": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/auto-shell-command.git", - "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "auto-shell-command", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6", "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -8917,14 +9506,15 @@ }, "shelldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", - "sha256": "22ab3f9f59768dad0c674cfe34cf5ae588f4b6a8b9b73d8a474b194021a5658b", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax", "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b" }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -8934,14 +9524,15 @@ }, "malabar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m0smith/malabar-mode.git", - "sha256": "16edd53bb2d7f326de44706eb6c48777ecbd7bc2ea85d854a95126be06a85552", + "tag": "fetchFromGitHub", + "owner": "m0smith", + "repo": "malabar-mode", + "sha256": "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1", "rev": "4c5fde559f518509763a55040fdb0e4b6b04856a" }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.946", "deps": [ @@ -8950,14 +9541,15 @@ }, "fullframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/fullframe.git", - "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -8966,14 +9558,15 @@ }, "cperl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/cperl-mode.git", - "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "cperl-mode", + "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6", "rev": "06f5668653a114991836139344dbe8f0674577af" }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "6.3", "deps": [] @@ -8986,7 +9579,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -8999,63 +9592,67 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "comment-dwim-2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyferre/comment-dwim-2.git", - "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", "rev": "8cedecde018b5872195bfead6511af822776a430" }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [] }, "ctags-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/helm-etags-plus.git", - "sha256": "763f0e0884aa0de6d8ea36b33a5c007f2fbf4e9ac55cf829e27fa4347a8244f7", + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "helm-etags-plus", + "sha256": "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7", "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923" }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "pcsv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", - "sha256": "3fb8e07a3d078c7f8332edf0c6bc7314b2f34a64e8216ad7f643931a33ec630e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z", "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e" }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.6", "deps": [] }, "helm-unicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/helm-unicode.git", - "sha256": "40f9d9e737bf4806308da199da1daacb628ef5db8b7b3aacbed1b69ef46e8b92", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0", "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd" }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -9071,21 +9668,22 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "company-quickhelp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/company-quickhelp.git", - "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -9096,14 +9694,15 @@ }, "fxrd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/msherry/fxrd-mode.git", - "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "tag": "fetchFromGitHub", + "owner": "msherry", + "repo": "fxrd-mode", + "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b", "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -9112,14 +9711,15 @@ }, "gnus-desktop-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/gnus-desktop-notify.git", - "sha256": "dc6fdbd32d3fb7d0dae00f235aa6dae6033e4a1810356416c04997af22e84822", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "gnus-desktop-notify", + "sha256": "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw", "rev": "210c70f0021ee78e724f1d8e00ca96e1e99928ca" }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -9128,14 +9728,15 @@ }, "js-comint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/js-comint.git", - "sha256": "39263da6c8036dbb4c89aa22a50f49a78e3cffd1e4cbca5dca1ff9b8498ec6bd", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "1gf6ir4viy8zr9fwmjz4s7zkr3m7947sa8mai56bnv83r2k3s9ir", "rev": "69c8475573f1ef1f59331027a0fe445161b51000" }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -9144,56 +9745,60 @@ }, "qml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/qml-mode.git", - "sha256": "f4c3ba100a35f31f2af8199324f03f103c48c6356d988bd55eabb2cad55d3019", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "qml-mode", + "sha256": "069hbpawmcmbbvaqp63d6p34hg0h7zq294qrz0m1zwrm188bmhzl", "rev": "a69ee2d23e079dbedab22fde85181a8320af2222" }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "org-journal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/emacs-journal.git", - "sha256": "1fee380fc81fe5fde3077e88279e7b49dc678863e8871cb98095bfdd5a0eeaed", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79", "rev": "68974d86f1ef518defb3085e415d882ba4575714" }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.2", "deps": [] }, "selectric-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rbanffy/selectric-mode.git", - "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -9202,14 +9807,15 @@ }, "evm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/evm.el.git", - "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", "rev": "d0623b2355436a5fd9f7238b419782080c79196b" }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -9219,14 +9825,15 @@ }, "truthy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/truthy.git", - "sha256": "503a3c9695d59e9c9df9968016867c9d416ed78fb355e565475732fce6d6ff27", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397", "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3" }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.8", "deps": [ @@ -9235,28 +9842,30 @@ }, "php-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-mode.git", - "sha256": "5c4a63b593d5737ed238c3996b79be0eebe75ca36440390a5064e5ff8fc11a3e", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-mode", + "sha256": "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3", "rev": "f3201eebfebf1757cf6a636fe3c7a3b810ab6612" }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.17.0", "deps": [] }, "sotlisp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", - "sha256": "f3648f4ab2e5ea35e160759b99dce419ef47276928401d5d3cb09f0ccfa94988", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4", "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a" }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.1", "deps": [ @@ -9265,14 +9874,15 @@ }, "helm-spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-spaces.git", - "sha256": "84485ea38d7a4b595bac0be033e2308f7ab3d1ba22ca3c0a4deed841aedbe04f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44", "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c" }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9282,14 +9892,15 @@ }, "logito": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/logito.git", - "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9298,14 +9909,15 @@ }, "org-tracktable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tty-tourist/org-tracktable.git", - "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "tag": "fetchFromGitHub", + "owner": "tty-tourist", + "repo": "org-tracktable", + "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx", "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9321,21 +9933,22 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "electric-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/electric-operator.git", - "sha256": "86bd1e680208ed787f370d8ad82b81fb0007bf8be67e78a27941e938bce185f2", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr", "rev": "3d34101e065396389cfbb8fec333c78641a71dc6" }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9346,14 +9959,15 @@ }, "owdriver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/owdriver.git", - "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -9370,21 +9984,22 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/spotify-el.git", - "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] @@ -9397,35 +10012,37 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mustache-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mustache/emacs.git", - "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "persistent-soft": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/persistent-soft.git", - "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.10", "deps": [ @@ -9435,28 +10052,30 @@ }, "key-combo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/key-combo.git", - "sha256": "d8d0e38ad9917e6e5badb62d39b27896d94899a637427f8e27b23ab67db43292", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "key-combo", + "sha256": "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q", "rev": "0bc0cf6466a4257047a21a6d01913e92e6862165" }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [] }, "magit-filenotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-filenotify.git", - "sha256": "0404870e67798670c879e2d5779eec78b0489d7548c72fc126899ae64726a663", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal", "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96" }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9466,28 +10085,30 @@ }, "xterm-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/xterm-color.git", - "sha256": "5dc8de0d26c060930acf3667df41b5aab041c510a5bbd3fd248cef478c21b2fd", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x", "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1" }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "phpunit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/phpunit.el.git", - "sha256": "bef01490d1dd27a12a1e5135b1d60466e0438e9b416a256cef7edb663a14c288", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz", "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9" }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -9504,21 +10125,22 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-gcal.el.git", - "sha256": "cb619c6d37a8a2bc9197764b487c8eca02b4f0689d427fe74a6e503119ad0aaf", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498", "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036" }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9531,14 +10153,15 @@ }, "helm-rubygems-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neomantic/helm-rubygems-org.git", - "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "tag": "fetchFromGitHub", + "owner": "neomantic", + "repo": "helm-rubygems-org", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0", "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -9549,14 +10172,15 @@ }, "ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ag.el.git", - "sha256": "7792c562958d7bf9f708f2e732115a06b88caffca593379c3d32b4947394512b", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ag.el", + "sha256": "0hpsv2zyhhfm53hrd2lzvc9gpvfn6g5dpwmzxfl8l1sqjisips2a", "rev": "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb" }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.46", "deps": [ @@ -9567,28 +10191,30 @@ }, "smartscan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/smart-scan.git", - "sha256": "a455d112f2113a2418bf67bba0825493577c16e97d906b3bc9bb9210126ca7e9", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "smart-scan", + "sha256": "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4", "rev": "13c9fd6c0e38831f78dec55051e6b4a643963176" }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "el-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init.git", - "sha256": "a0dd080afe34bf2c6cf2949ea257875922e7784be5820c71f50b076c90fd8fdb", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n", "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597" }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -9599,14 +10225,15 @@ }, "alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/alert.git", - "sha256": "4638ce5d228a9e4763a052f2eeba61664f228b386f9138a9ceac990a081eecee", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "alert", + "sha256": "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26", "rev": "b301478e34a5c8bd27c17fc7605e6dd576e97935" }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -9616,28 +10243,30 @@ }, "slime-ritz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pallet/ritz.git", - "sha256": "2bbac9f46c148eb12ef67f1deb96db6fed4032ffcd1f27975d8e3c87d52d947f", + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96", "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244" }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [] }, "buffer-flip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/buffer-flip.el.git", - "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -9652,7 +10281,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -9665,7 +10294,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -9680,21 +10309,22 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tern-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/tern-django.git", - "sha256": "d92beb58d914c47d47673f53748f2c60d2fc7e1b9b5db6926b62eca6699de253", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p", "rev": "6d616c5f802d3432c4065dc306d7977d254df49f" }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -9711,21 +10341,22 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ido-ubiquitous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -9736,28 +10367,30 @@ }, "merlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "a026a3f80427f49d3db66fbd9c94b32b50f0b586ade0c9fb5a0cad49eca5d9c3", + "tag": "fetchFromGitHub", + "owner": "the-lambda-church", + "repo": "merlin", + "sha256": "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn", "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [] }, "org-multiple-keymap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-multiple-keymap.el.git", - "sha256": "80c03f90333f8b642ed2130266841ab93f3776ae2adacfa941d9a15bad5a910a", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-multiple-keymap.el", + "sha256": "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp", "rev": "20eb3be6be9f0abbad9f0d007e40cb00c8109201" }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9768,28 +10401,30 @@ }, "vagrant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ottbot/vagrant.el.git", - "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "tag": "fetchFromGitHub", + "owner": "ottbot", + "repo": "vagrant.el", + "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh", "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "windsize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grammati/windsize.git", - "sha256": "347ae1a31d4203f9c1673c937fcddb546d2324720f6269dd241a07325a079bb8", + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil", "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59" }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -9802,49 +10437,52 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "anti-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/anti-zenburn-theme.git", - "sha256": "afa90bbd8fea9c3b69c00aaa6e974a1ddf9991ca908d091fad3a4eba63490461", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "0q8495ivlkismlghk3chra8rkpqx9abnxahaq1lkp77aiyyhpadg", "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01" }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] }, "sws-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "ibuffer-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-projectile.git", - "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-projectile", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc", "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9853,14 +10491,15 @@ }, "lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic.git", - "sha256": "74c4c8b041a2672e6560feb60714236fa8254aba95c94f5f9be7eb7daa68b439", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "0x0vz6sn4ignbxihzydc3d5dhlk1aywa4264mhqxb3adq4n1ryc6", "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f" }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [ @@ -9873,32 +10512,48 @@ }, "ubuntu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/ubuntu-theme.git", - "sha256": "4c60e44d91f4cc4e4ccd0bd85d0b98c46fe82af414deec9e85633f691687814c", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "ubuntu-theme", + "sha256": "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c", "rev": "41f09ca6c203da93bdadb2077556efd48e3b5d5a" }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "04b", "deps": [] }, "lfe-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rvirding/lfe.git", - "sha256": "79a8dc4a0dbfb0daa287f6109187949804fb030920f14b3a0b4853aa18f60d02", + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k", "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b" }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.1", "deps": [] }, + "color-theme": { + "fetch": { + "tag": "fetchbzr", + "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk", + "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz", + "rev": "57" + }, + "recipe": { + "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ascii": { "fetch": { "tag": "fetchurl", @@ -9907,35 +10562,37 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "nyan-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/nyan-prompt.git", - "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "nyan-prompt", + "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp", "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "keymap-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keymap-utils.git", - "sha256": "fadbbaed0b24fb3c12d1cb6ab5ccd5eb7bc21dffcb1f7018cf0c86b33b9e5219", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs", "rev": "dd396093899a3792ef88742657e799339fd8aed5" }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -9944,28 +10601,30 @@ }, "xcscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dkogan/xcscope.el.git", - "sha256": "e7961d73b903ef3529617a839e170482b23f254b0eb2cca5c54291ab70d535d8", + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7", "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03" }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "weechat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-kenny/weechat.el.git", - "sha256": "ffa147f18ffbbd0e583fb635603aa95b2a00ee1d056647965ddaba0e36050d77", + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl", "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be" }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -9977,14 +10636,15 @@ }, "psci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-psci.git", - "sha256": "e330e5713a3b53fb4a3586f17e5e386131dfe3e5919bc33441c0df7628cffd71", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-psci", + "sha256": "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73", "rev": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4" }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -9997,14 +10657,15 @@ }, "go-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/go-scratch.el.git", - "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "go-scratch.el", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm", "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -10020,35 +10681,37 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "plenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karupanerura/plenv.el.git", - "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.32", "deps": [] }, "git-gutter+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-plus.git", - "sha256": "e08ba774438788ef8160d8621a2a82fbbd4cd511f925a4c51b5b8ea99a30f3a6", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb", "rev": "f8daebb6569bb116086d8653da3505382e03d940" }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -10057,14 +10720,15 @@ }, "wrap-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/wrap-region.git", - "sha256": "53effb0d885a46e080b9344218d75c11879e112bbf9639ffb0fd47b7477f86b6", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "wrap-region", + "sha256": "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0", "rev": "5a910ad23ebb0649e644bf62ad042587341da5da" }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.3", "deps": [ @@ -10073,70 +10737,75 @@ }, "flymake-gjshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-gjshint-el.git", - "sha256": "caaf8af6f05880a08084b7fd4b51656c17e19d85fc89a5f6fa5e3ab72d2156b1", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-gjshint-el", + "sha256": "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd", "rev": "71495ee5303de18293decd57ab9f9abdbaabfa05" }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [] }, "rnc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TreeRex/rnc-mode.git", - "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "tag": "fetchFromGitHub", + "owner": "TreeRex", + "repo": "rnc-mode", + "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih", "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.6", "deps": [] }, "pangu-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/pangu-spacing.git", - "sha256": "bec459054b69833ca33dc68e15afa45a91272e564309e95fc0e782e79ffaad3e", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y", "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed" }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "protobuf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/protobuf.git", - "sha256": "e000a50e04fe5b30fe6a12c989f851d8792c061df1922ebe1c3e6bd1f747ae0d", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070", "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c" }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.6.1", "deps": [] }, "metaweblog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/metaweblog.el.git", - "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -10145,14 +10814,15 @@ }, "imenus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/imenus.el.git", - "sha256": "b0a1cb702360584cb425e2b216b99c836a8a02914c34c04490b477a4f08cd3c6", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4", "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0" }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -10161,14 +10831,15 @@ }, "systemd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/systemd-mode.git", - "sha256": "e9d9f5747d9816721c1eff318cc436f68e6eecf862df406dbd884f80499eba2b", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9", "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3" }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -10183,7 +10854,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10196,7 +10867,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10209,37 +10880,53 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ov": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/ov.el.git", - "sha256": "bb92b9f10b1b69b35c4e157ce1420238c8124ad01fafd85a68a052896ec8fd1d", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc", "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095" }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.6", "deps": [ "emacs" ] }, + "applescript-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk", + "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml", + "rev": "584" + }, + "recipe": { + "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ibuffer-vc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-vc.git", - "sha256": "de3ad9481a5aa5f8f3e964f17301e1c56986ab99820c058003f014ce330a1c71", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8", "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a" }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [ @@ -10248,14 +10935,15 @@ }, "servant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/servant.el.git", - "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -10271,14 +10959,15 @@ }, "moz-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RenWenshan/emacs-moz-controller.git", - "sha256": "a0a11f02dc080796967f9880fc123c1a490f07efc38b485e90353d39290b31f0", + "tag": "fetchFromGitHub", + "owner": "RenWenshan", + "repo": "emacs-moz-controller", + "sha256": "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0", "rev": "42fd842039620de7fb122f7e4ffc1ab802ee97c5" }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -10287,42 +10976,45 @@ }, "dired-efap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/dired-efap.git", - "sha256": "dd8b414bf8bc4598b94bbdfdf93df2f4eaac7999bce779b968a8d1e977be7413", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv", "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf" }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "form-feed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/form-feed.git", - "sha256": "02aecef2b119007e0ea8a8acf601b328c6670c4b336a5723c351ac308cb2329c", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2", "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6" }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "auto-complete-nxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-nxml.git", - "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-nxml", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y", "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -10337,35 +11029,37 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ws-butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/ws-butler.git", - "sha256": "0ecddba9e263cba41a191d7d01f08fe2a0cea5b714fac200f5dddc4c8fa060d3", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f", "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85" }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "nsis-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/nsis-mode.git", - "sha256": "547f7686371acb7dae09d0dc6b5df80389cea045f833305851d61732d6729830", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl", "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187" }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.44", "deps": [] @@ -10379,35 +11073,37 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "less-css-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/less-css-mode.git", - "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "less-css-mode", + "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn", "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.20", "deps": [] }, "python-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/python-x.el.git", - "sha256": "79a9393609c3ddfc9baa61b51d3d2152700c49ec089c3185a0e5889309632702", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr", "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f" }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -10417,28 +11113,30 @@ }, "ruby-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/ruby-test-mode.git", - "sha256": "0e2d5a6ff2a5f3411a44ca554974bf5a976ab5e96f9a775a07b032f172921f01", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "ruby-test-mode", + "sha256": "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f", "rev": "7d3c04b60721665af93ffb4abc2a7b3191926431" }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "font-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/font-utils.git", - "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.8", "deps": [ @@ -10448,14 +11146,15 @@ }, "digistar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/digistar-mode.git", - "sha256": "4642f8cdbb64eee8dfbefc368bec3577b05cb40faf8d0693bfc640ac7754fc4b", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "digistar-mode", + "sha256": "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6", "rev": "0dcde58ec6e473042e55d4f283b223554546de5b" }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -10469,7 +11168,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0", "deps": [] @@ -10482,21 +11181,22 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pandoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/pandoc-mode.git", - "sha256": "a71770df1bb3a8889f1792846906ea32f1d08cd231beeef69c668b1b14d8cc51", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "14kxmcsgdrq9r8c17x8hz8vid0bn6rikvmddhc6wpbmp7shngvr1", "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139" }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.13.3", "deps": [ @@ -10506,28 +11206,30 @@ }, "highlight-parentheses": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-parentheses.el.git", - "sha256": "4a15287f4b94cde9aa46a232d086f32264f966f29ace1d647438d2b5a1b78308", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-parentheses.el", + "sha256": "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9", "rev": "5aa800a68e3795716de1e7f2722e836781190f31" }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "elx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/elx.git", - "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg", "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [ @@ -10536,14 +11238,15 @@ }, "hyai": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/hyai.git", - "sha256": "59ac0bfd83ef3f1c9969edd53bf49c8a54f5a7705a7b299db39fa38accc22a24", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "hyai", + "sha256": "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm", "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -10553,14 +11256,15 @@ }, "hackernews": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clarete/hackernews.el.git", - "sha256": "04a9d19989d519c8ca2bd5636d704a373464ce2da948359d732fbd6a691ad3b9", + "tag": "fetchFromGitHub", + "owner": "clarete", + "repo": "hackernews.el", + "sha256": "1ffk39lnmg9gfffkaj595p768d1p99q6sqym5g5ch6fmi6cx3a84", "rev": "97b178acfa26b929fc23177b25fb0c62d2958e32" }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -10569,14 +11273,15 @@ }, "powerline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/powerline.git", - "sha256": "f925c31f90d03b30d9f6d8e4f2f4e07d4a5c42253d08de45a96f1a118958a3db", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr", "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33" }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [ @@ -10585,14 +11290,15 @@ }, "helm-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/helm-sage.git", - "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -10603,14 +11309,15 @@ }, "skewer-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/skewer-less.git", - "sha256": "63636337aafb0cc1846514233afe1dd4d8eb80fc89044e3b74565e73da55ba3c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "skewer-less", + "sha256": "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3", "rev": "593001930f1d68c85233f34c5f6fb04173fc98d6" }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -10625,21 +11332,22 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-perlcritic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", - "sha256": "38cf37d7020f0ce4ab233c543b44e136c2076e6c8ea34653ad534257a0402987", + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq", "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8" }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [ @@ -10654,7 +11362,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10667,7 +11375,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -10676,14 +11384,15 @@ }, "emamux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-emamux.git", - "sha256": "b12d2c36f5a12a5a629c6b13ffc64dbdec905a888c049085ce28e0c64892bdbb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67", "rev": "53177ca59ed2824cc0837677af5a13a580691a71" }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [ @@ -10693,14 +11402,15 @@ }, "kill-or-bury-alive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", - "sha256": "14c2fc7d5ce2c8ea044cf818ae9a40d4e01b6f60d4eddf50a726b0d67b728db0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "kill-or-bury-alive", + "sha256": "11cqrjxfiflz89gkl9g5m0wx041s28xz879cvhl3i1yjnwyhzqay", "rev": "6e0d1ff08889d9cf3f89e366e327d9de930cf67c" }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -10710,14 +11420,15 @@ }, "ggtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/ggtags.git", - "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.11", "deps": [ @@ -10733,21 +11444,22 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake2.git", - "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -10757,28 +11469,30 @@ }, "cfengine-code-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cfengine/core.git", - "sha256": "5625440ba13ae29d7eaf4fff54e764107fa290d15db95196db851e0595953a9f", + "tag": "fetchFromGitHub", + "owner": "cfengine", + "repo": "core", + "sha256": "11a89pyz8zdjdkimpqaywp702xf9cmwz1djkjp5dghgpwi1aid72", "rev": "afed90c14a2b30bc36595626b959522c34a6565f" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.8.0b1", "deps": [] }, "corral": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nivekuil/corral.git", - "sha256": "9d1917289f677dbd57731b42f78ab70716d81dce030781eca3148225c29dec3e", + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx", "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9" }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -10791,21 +11505,22 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cacoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-cacoo.git", - "sha256": "4f7fcda583e31efdd767a11a71ff7e0a4a4d5ee8c47fbe0e191c25e1446dc48a", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx", "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6" }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [ @@ -10814,14 +11529,15 @@ }, "sprintly-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sprintly/sprintly-mode.git", - "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -10830,14 +11546,15 @@ }, "multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-multi.git", - "sha256": "fbf4cfc3df12c5500b1c877a3b026a86fcc5f8bb673290ac8919b68b8f5eea87", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v", "rev": "884203b11fdac8374ec644cca975469aab263404" }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.1", "deps": [ @@ -10846,28 +11563,30 @@ }, "json-reformat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/json-reformat.git", - "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [] }, "unicode-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-whitespace.git", - "sha256": "ef8ae47608207b2aa885d3ec1e539235a764b6215e2ce258e36e5fccb19de5aa", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy", "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db" }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -10878,14 +11597,15 @@ }, "kakapo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/listx/kakapo-mode.git", - "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "tag": "fetchFromGitHub", + "owner": "listx", + "repo": "kakapo-mode", + "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40", "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -10900,21 +11620,22 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "omni-tags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", - "sha256": "d0553e602917a69f8283d456c299060881f3c22ff7c2b79d4e3191ab4944bd15", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi", "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185" }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -10924,14 +11645,15 @@ }, "hcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-hcl-mode.git", - "sha256": "b3c699f37bdefe740a30cc42ffff6292a6429652d24e45927fd4a5f67ba3c2e4", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-hcl-mode", + "sha256": "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4", "rev": "f9757d4122d75ffdff92c97ec9e75694506caba5" }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -10946,91 +11668,97 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "page-break-lines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/page-break-lines.git", - "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "rope-read-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/rope-read-mode.git", - "sha256": "30717ad1cfa268a145632463ce28794d8602c76382d85630af146af81a8b6e8c", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h", "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569" }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "desktop+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/desktop-plus.git", - "sha256": "aa9b0d7f94e1e13b815d0766b245cb6c767bf4d85d7cd1c43dd4e5e83fc214dc", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3", "rev": "a484d24ca673c7536387368729421dad9dde5059" }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "bash-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/szermatt/emacs-bash-completion.git", - "sha256": "a10f5796a43389206dea92e3d456ec23f32d8f0456ec5d6914df9535721639cf", + "tag": "fetchFromGitHub", + "owner": "szermatt", + "repo": "emacs-bash-completion", + "sha256": "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd", "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2" }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "angular-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/angularjs-mode.git", - "sha256": "b2c0268d5ed6746718b31e199949e6efbd9f9ba8673ac26a54318486ab9a1e7e", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "angularjs-mode", + "sha256": "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp", "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2" }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "ctxmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-ctxmenu.git", - "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -11041,14 +11769,15 @@ }, "python-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-python-environment.git", - "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-python-environment", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk", "rev": "401006584e32864a10c69d29f14414828909362e" }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -11057,28 +11786,30 @@ }, "gotham-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/gotham-theme.git", - "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.5", "deps": [] }, "evil-quickscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/blorbx/evil-quickscope.git", - "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -11093,77 +11824,82 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "xbm-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/xbm-life.git", - "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", - "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1.2", + "version": "0.1.3", "deps": [] }, "elpa-mirror": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/elpa-mirror.git", - "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", "rev": "6c32875c2317736e590e067820996010b21acb1d" }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [] }, "edit-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs_chrome.git", - "sha256": "e1d51992cb04b45cddd3ad048e658d164f4228e3e3534d08f74b6c57e6dec5af", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn", "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6" }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.13", "deps": [] }, "dynamic-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/dynamic-ruler.git", - "sha256": "79512de4980dbcaa48d50df25929f5e58ccbeacb46dbb42606971f9ba17ee717", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr", "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb" }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "fontawesome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-fontawesome.git", - "sha256": "fe5d3a7c1e00d2ffac37ddcc6e7d2fc97b228e574a2d5fc75c3cca1e76bb3811", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc", "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7" }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -11173,56 +11909,60 @@ }, "o-blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/o-blog.git", - "sha256": "e839c4d86e153c74ef07c9fcf551460b701d9c6c15317ed3f164b8c022e76108", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs", "rev": "5db9594c6e3439c000b183551d7975c2e29131f4" }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "love-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/love-minor-mode.git", - "sha256": "f33aa4c7ef81e42b3ac9dea7a86e521bee02a03dc98b8843a53fbd4eb097c587", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk", "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954" }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "erc-hl-nicks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/erc-hl-nicks.git", - "sha256": "184a95d6ed5d0bf1a8c57f1a33c8d1a9ffdfc3fef579775952e693ce820e872d", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "erc-hl-nicks", + "sha256": "0bc71s1cx4z6a9cpfygmzv1xzzx9s74366kzqnlg22sxxpb9ajhq", "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87" }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "dash-functional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.12.1", "deps": [ @@ -11232,14 +11972,15 @@ }, "pdf-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/pdf-tools.git", - "sha256": "f5100845c4afd507f2dfb09e3c6e98e907e930a40ced8eb1ea05242cb7789296", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "pdf-tools", + "sha256": "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl", "rev": "0107f80dcf268d08ac075b01729820062c0fbd67" }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.70", "deps": [ @@ -11250,14 +11991,15 @@ }, "image+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-imagex.git", - "sha256": "c16830b0405e241cc6db87f1ddfa52d125c0d04bece26601f10fcc1b0ea84f1e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-imagex", + "sha256": "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv", "rev": "967508a6c151e6ab6e97d3ac332dc5599011830d" }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [ @@ -11266,42 +12008,45 @@ }, "dockerfile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spotify/dockerfile-mode.git", - "sha256": "38db9adb524d2c5c8590ca6c35debd32471c30ef086e9a20d58dba25f3ae258e", + "tag": "fetchFromGitHub", + "owner": "spotify", + "repo": "dockerfile-mode", + "sha256": "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2", "rev": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc" }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "telepathy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/telepathy.el.git", - "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "flycheck-haskell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-haskell.git", - "sha256": "2e30919e8ac2cf14e89ae317ce7318a6b1278c9bdce0a00209b352c54ca8cd5c", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj", "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc" }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.2", "deps": [ @@ -11314,14 +12059,15 @@ }, "evil-iedit-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-iedit-state.git", - "sha256": "5aa699537838d52937a09d86ca8e6692325239509724f229da7d148bbe48e1c0", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-iedit-state", + "sha256": "0r2367lbzcdhglvjjcamrzn5fmqy0jalcws8r0yc2al1vbsrn0fr", "rev": "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779" }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -11331,14 +12077,15 @@ }, "unicode-enbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-enbox.git", - "sha256": "3421f1cd186e616490bee841a2bd838fcd00945db3a8d8493bdf0da39530f4dc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7", "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5" }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -11350,14 +12097,15 @@ }, "flycheck-pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-pos-tip.git", - "sha256": "aa849fac9428d8026b5c095fcb92e664e03c085375ed7891af2e8a27efd8a82b", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-pos-tip", + "sha256": "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8", "rev": "0c2b31b615fa294f329f3cc387b464525ce3392d" }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -11368,14 +12116,15 @@ }, "ac-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/ac-dcd.git", - "sha256": "b672dc0768e1eac27ab668ab134f481894a279d5bf6c01bdd182716d01427a28", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "ac-dcd", + "sha256": "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn", "rev": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49" }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -11385,14 +12134,15 @@ }, "es-windows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-windows.git", - "sha256": "956a6e59a56c0d38e2a2540b377c33d7a5b78c42323482087e692d09b029193f", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-windows", + "sha256": "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9", "rev": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af" }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -11402,28 +12152,30 @@ }, "find-by-pinyin-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", - "sha256": "8f5da5d686f91604254d5d6e1934b5629e5a4f6a8b726ea7a626340959eff92d", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "find-by-pinyin-dired", + "sha256": "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr", "rev": "3137c367d58958858daa6d3dee1993b2eb9dd9b4" }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "smart-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71", "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.9", "deps": [ @@ -11439,49 +12191,52 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "live-py-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donkirkby/live-py-plugin.git", - "sha256": "fe5d1e2e5d5b0b93276081805ca0eb1680e683f6faaf5761d2766e76c8a04a7b", + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "1y81qqsjj2sa319xkwhvq7bl3f5gma4cs7w8x2w510ms32fgqa8x", "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf" }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.8.1", "deps": [] }, "pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pitkali/pos-tip.git", - "sha256": "63409684b48b55c45a717bf19c720fa3a74e26071aa2709bc5e1a069afb60b71", + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33", "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4" }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.6", "deps": [] }, "helm-gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil", "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -11500,21 +12255,22 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.92", "deps": [] }, "magit-gerrit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/terranpro/magit-gerrit.git", - "sha256": "6b75d69bfa1fba5032c022c8c02c926fc9fd13586c29047cfe0430d3e423a27a", + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb", "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142" }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -11523,14 +12279,15 @@ }, "org-pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lolownia/org-pomodoro.git", - "sha256": "bcdee69ec59fd5a8742a1759b9eee7fec43d405bcff4521b5c2598218efa4dba", + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw", "rev": "26452a3d070f4814b191a9de9e3493a54161b910" }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.3", "deps": [ @@ -11540,28 +12297,30 @@ }, "monokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", - "sha256": "7ffb3a138f316d28eed15277c2bfd0616924943543112f9b221725433499870b", + "tag": "fetchFromGitHub", + "owner": "oneKelvinSmith", + "repo": "monokai-emacs", + "sha256": "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz", "rev": "9a6f126e1f02ec49d41fe2ee79670ca96a563f1a" }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "kurecolor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/kurecolor.git", - "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -11571,14 +12330,15 @@ }, "flymake-haml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haml.git", - "sha256": "0ba58405ab0e49edd9501ba4505e70212d738e05b925698b567ef5331729e6c1", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haml", + "sha256": "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni", "rev": "343449920866238db343d61343bc845cc8bc5e1b" }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -11587,42 +12347,45 @@ }, "highlight-indentation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", - "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "Highlight-Indentation-for-Emacs", + "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k", "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "monroe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sanel/monroe.git", - "sha256": "d576b1160ecf8e7525f1ef73d92bfb6b1ca18e69b2ae32c16a92853d1dda17a8", + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm", "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279" }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "names": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/names.git", - "sha256": "b950d0f5c31b3a2b745f88e26b3ebf2863ea593422dc7e5b87fecc92b430446e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "05jvd272x92s6wk17l0hymdj8b4979maalkmk54dp7n4nrcmzx2f", "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855" }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.0", "deps": [ @@ -11632,28 +12395,30 @@ }, "log4j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/log4j-mode.git", - "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "log4j-mode", + "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk", "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "gnus-x-gm-raw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/gnus-x-gm-raw.git", - "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "gnus-x-gm-raw", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril", "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -11669,21 +12434,22 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "docker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/docker.el.git", - "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -11701,21 +12467,22 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "auto-package-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/auto-package-update.el.git", - "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "auto-package-update.el", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2", "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.1", "deps": [ @@ -11725,28 +12492,30 @@ }, "map-progress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-progress.git", - "sha256": "e7a0895adb3da353358bb486f6bcfc3782c5590efa389854af7ccdf8409571ba", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-progress", + "sha256": "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877", "rev": "6b8ef6b60626772082b2e80ec54d1f1275e1a1b8" }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "omni-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", - "sha256": "873f9f41578b55f53ee15bc5b99acc73cf64ace65c1fdfeaf8648defa79407d6", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-log.el", + "sha256": "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk", "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b" }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -11758,14 +12527,15 @@ }, "zombie-trellys-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", - "sha256": "dcf550053b59a865ddbf0a7b8f5ebaf049ff4d1b83afde20e396be4ae422ab4a", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "zombie-trellys-mode", + "sha256": "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz", "rev": "9e99d444a387dd1634cab62ef802683f5bf5d907" }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -11776,28 +12546,30 @@ }, "karma": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/karma.el.git", - "sha256": "5a86cb2eb129e30fb7ba7cc87bba140015c6b79c77e59bad0ae9e158989162b9", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "karma.el", + "sha256": "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8", "rev": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e" }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "imenu-anywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/imenu-anywhere.git", - "sha256": "26381e7e06aba0ca8e3db4c2d556344b22b59838808fb37f575ddde3ca358961", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "imenu-anywhere", + "sha256": "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16", "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2" }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -11806,42 +12578,45 @@ }, "js3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomblake/js3-mode.git", - "sha256": "7559b1c4ed70982e8babaac425ff6c31bc9be69220645ddf595e9d8d814bd43b", + "tag": "fetchFromGitHub", + "owner": "thomblake", + "repo": "js3-mode", + "sha256": "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n", "rev": "5ccda46ba39998a74bd724fdffb34634be5b6563" }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "aproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vietor/aproject.git", - "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "helm-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -11853,28 +12628,30 @@ }, "ahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ahk-mode.git", - "sha256": "48297d6746b2ac0d50adc798ccc94df706e20d4e102e71c99e740dc66c7219e3", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8", "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a" }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.5", "deps": [] }, "requirejs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/requirejs-emacs.git", - "sha256": "8a4166316c65ddcfa07807e9163361fcf74201a3f3c80fb3c935a7734e1603ad", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca", "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01" }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -11886,28 +12663,30 @@ }, "pastehub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/pastehub.git", - "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "pastehub", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n", "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "langtool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-langtool.git", - "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -11922,65 +12701,83 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "uzumaki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/geyslan/uzumaki.git", - "sha256": "ba219e5da5ae66ce5e09ef87210d99295a997bd443dd808d3be8d2a771b2a37c", + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds", "rev": "a75956e1757f4b98aad3384a4616481aede70cb1" }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ "cl-lib" ] }, + "eredis": { + "fetch": { + "tag": "fetchsvn", + "url": "http://eredis.googlecode.com/svn/trunk/", + "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49", + "rev": "28" + }, + "recipe": { + "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "fvwm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theBlackDragon/fvwm-mode.git", - "sha256": "a92314bf63c063d6ebfc1f18e3a10fcc52eb36d410a7d037a36fe5f245668a2b", + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv", "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704" }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.4", "deps": [] }, "factlog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/factlog.git", - "sha256": "a48a989df1713afdc9593eed113a0c40d138e2100163b034c5486645fb6fd3b1", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka", "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf" }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "kaesar-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -11989,14 +12786,15 @@ }, "boon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jyp/boon.git", - "sha256": "6c21f4bf038291745e4387609ab4440b478f3fced5b347f6a4731933241385f7", + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "0alxz27pyf669mkw5wvkidrvwm11iwbkl9k7v8lzq05kgy59bwkq", "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -12006,14 +12804,15 @@ }, "inflections": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", "rev": "fb7355615276f00397b15182076bf472336448a9" }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] @@ -12026,63 +12825,67 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "color-theme-sanityinc-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", - "sha256": "5468eb6d549d5a09c62f4473f4239fdd609d51d2391a75e48fe547e12bf79cab", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-solarized", + "sha256": "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc", "rev": "554e941131d009c0a5d7129ed96796182b4cc590" }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.29", "deps": [] }, "ido-yes-or-no": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", - "sha256": "e5a469d437bd139ab3edfe2abc8188021158c83cb9faad879af36a225a4a8513", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-yes-or-no", + "sha256": "0i3s80ws3qbhb3vsvf09mbq661c5140v4phgbl4cz6z545ha2bj7", "rev": "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4" }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "mode-line-debug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/mode-line-debug.git", - "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [] }, "helm-mode-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-mode-manager.git", - "sha256": "f35f85c2ca073578a149fa7bd2a61d7933e83ad3a661af8e55fff4a4812b3deb", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-mode-manager", + "sha256": "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk", "rev": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5" }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12091,14 +12894,15 @@ }, "helm-aws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-aws.git", - "sha256": "5bc6c04bd2e5cc49378356c424872371ed297937fd995471409d94f6b52eb704", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv", "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c" }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12107,14 +12911,15 @@ }, "pcache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/pcache.git", - "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -12129,21 +12934,22 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "reverse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-reverse-theme.git", - "sha256": "d0bc0fb317a93165b8939e468ba4d393ec103ecdb1f21a6bec9a0b111df9b697", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h", "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0" }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [] @@ -12156,21 +12962,22 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/perspective-el.git", - "sha256": "784c10983791e9742d1ce2b64dff1a39acd5a9d9ff42c3b2129465ed61ce8289", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q", "rev": "3a8d59045a6370fae1ec2011865190a7465d707f" }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.12", "deps": [ @@ -12179,28 +12986,30 @@ }, "offlineimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/offlineimap.el.git", - "sha256": "ebe4a1a09edf95ccec425d8cabb501d2baf74e15ba302fe9dd9ca8fd1ca5e42b", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b", "rev": "646482203aacdf847d57d0a96263fddcfc33fb61" }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1", "deps": [] }, "es-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-lib.git", - "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -12215,35 +13024,37 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/pt.el.git", - "sha256": "7c16f66b195fd34cc14166005c82d1a0801a9202516b54fb423c9a04c13913dc", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw", "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e" }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "gitignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] @@ -12256,21 +13067,22 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "fold-dwim-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/fold-dwim-org.git", - "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -12279,14 +13091,15 @@ }, "ac-mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/igjit/ac-mozc.git", - "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "tag": "fetchFromGitHub", + "owner": "igjit", + "repo": "ac-mozc", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5", "rev": "4c6c8be4701010d9362184437c0f783e0335c631" }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -12297,28 +13110,30 @@ }, "logalimacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/logaling/logalimacs.git", - "sha256": "914ea957aa321e0bada3ccb62be66065f716469e825e3e1d1fcdb1f750a0e2e5", + "tag": "fetchFromGitHub", + "owner": "logaling", + "repo": "logalimacs", + "sha256": "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm", "rev": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac" }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "company-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -12335,21 +13150,22 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-json": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-json.git", - "sha256": "064aef39b5c1b996c06631bb0b24141f0c0a5aeb743ecac6efc62a42a9037ca0", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv", "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65" }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -12358,14 +13174,15 @@ }, "sass-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/sass-mode.git", - "sha256": "68ec20a25190f04abb6a1a76f84f5a0a1706e8e460291cb2c1f74d369e66571b", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln", "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343" }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0.18", "deps": [ @@ -12374,14 +13191,15 @@ }, "string-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/string-edit.el.git", - "sha256": "bcdd15928f06feac800eb30589889934ea7e3addbf50ff46b4ca4eec189d3148", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "string-edit.el", + "sha256": "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x", "rev": "9f9c9cd659156fd2217be814eb4e91da48d44647" }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -12396,21 +13214,22 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-haskell-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haskell-multi.git", - "sha256": "6876a0e8793c26af02282909133aef966609ed324182da52ec82979d9032c1c9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz", "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9" }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12419,28 +13238,30 @@ }, "git-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-timemachine.git", - "sha256": "5a99eb89819eb281789dc16088c7d6260622bd55e6643b3d8cb6cdccef8172f2", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "1wkjh7pwrkdnihyknr76anyj41i6sv3qhq61kmw83clyh64yp6as", "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073" }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.7", "deps": [] }, "evil-search-highlight-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "evil-search-highlight-persist", + "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk", "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.8", "deps": [ @@ -12449,14 +13270,15 @@ }, "edn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/edn.el.git", - "sha256": "1691dbf8c20bb27abc2ebc79cfd89a144db6b11abea8bb12123498d92228c5ed", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd", "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7" }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [ @@ -12475,49 +13297,52 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-table-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-table-comment.el.git", - "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-table-comment.el", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb", "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "hl-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/hl-sexp.git", - "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", "rev": "0606100422321c18db51ceda80f25cd7717c2e01" }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "avy-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/avy-migemo.git", - "sha256": "a32d2628b9c93b978b0ffb6e3b63a82478d749b946322547eab25926169e0b25", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "098bkqb2cndjx93jacj6p54xfy14m1iknvpv1y5rffy9p4l2cbd3", "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185" }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.11", "deps": [ @@ -12534,7 +13359,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -12545,14 +13370,15 @@ }, "osx-browse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/osx-browse.git", - "sha256": "515731c2d6275a74981d4731fcbb6e4a41a25812232943b81e1f4af52d52c897", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "osx-browse", + "sha256": "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m", "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7" }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.8", "deps": [ @@ -12562,14 +13388,15 @@ }, "helm-orgcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-orgcard.git", - "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-orgcard", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3", "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -12578,14 +13405,15 @@ }, "phpcbf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nishimaki10/emacs-phpcbf.git", - "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -12594,28 +13422,30 @@ }, "dispass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/dispass.el.git", - "sha256": "d4d2ea781b22c6e74efa7971114bec37d5b464c52c3c89dae4665bc3f80a2aac", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl", "rev": "38b880e72cfe5e65179b16791903b0900c73eff4" }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "ac-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-inf-ruby.git", - "sha256": "55fba20ab7482cbea6658465d28bd2a5075972fe9d6916ffdeafe954ec0895a9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-inf-ruby", + "sha256": "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm", "rev": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318" }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -12625,14 +13455,15 @@ }, "cider-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", - "sha256": "5225d62e374c2c2f9fe0ae1b198409247e87bd42bfb4e344ddd95132df5932f5", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-eval-sexp-fu", + "sha256": "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf", "rev": "dbe6a19c835ea42b099dd17f040db0baf9774aaf" }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -12643,14 +13474,15 @@ }, "wn-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luismbo/wn-mode.git", - "sha256": "df22db01f4185a30728333bbec9a5b4957919c98f6d752e1c6e4b5980619261b", + "tag": "fetchFromGitHub", + "owner": "luismbo", + "repo": "wn-mode", + "sha256": "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix", "rev": "6e7029b0d5773a79914a289937be068784931cad" }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -12659,28 +13491,30 @@ }, "goto-last-change": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/goto-last-change.el.git", - "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "goto-last-change.el", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5", "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [] }, "flymake-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-css.git", - "sha256": "25fb26439cadc5694166f34e45fe71d0274a40c749f068b846dd9e768192a295", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa", "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed" }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12689,14 +13523,15 @@ }, "auto-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/auto-yasnippet.git", - "sha256": "b8ddb6d6eafb2160713776764967f65f59cffc2d1e12248e167e6936903c7958", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "auto-yasnippet", + "sha256": "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq", "rev": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f" }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -12705,28 +13540,30 @@ }, "emacsql-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "haskell-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-snippets.git", - "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-snippets", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6", "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -12735,14 +13572,15 @@ }, "typed-clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/typedclojure/typed-clojure-mode.git", - "sha256": "199dab92d6bc3033f5ccd2b8a6c8f2b323706b5d6535729ebb6658a2c601e947", + "tag": "fetchFromGitHub", + "owner": "typedclojure", + "repo": "typed-clojure-mode", + "sha256": "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7", "rev": "00bc20db78901204a67722ab47482660e36d0463" }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12752,14 +13590,15 @@ }, "vim-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-vim-region.git", - "sha256": "a935f83c55fa7257b30c93cef5eb70463059b6a3ab74a850552b565f4c7fa09c", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-vim-region", + "sha256": "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9", "rev": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d" }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -12774,49 +13613,52 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tumble": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/febuiles/tumble.git", - "sha256": "fea19a7c6970a71b315e8f6819992064f0afef19690260065dbefcce0b971246", + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy", "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3" }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [] }, "aurel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/aurel.git", - "sha256": "f2caf606144e0d18bf755d4d490515d438ac465209077176de0fbc02dcb05df9", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7", "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0" }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] }, "anaconda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/anaconda-mode.git", - "sha256": "106ab7fe82ae79f3247d0a175da4a092e659c0c7aa269073e03db5959a0e1634", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714", "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404" }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -12829,14 +13671,15 @@ }, "js2-closure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/js2-closure.git", - "sha256": "8a40e9ad3574c56de369ef489c1652da94350caebd1505bf023c27501fc55034", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "js2-closure", + "sha256": "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a", "rev": "e1b3e7db13285e63c3c428d87c018289352bd043" }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -12845,28 +13688,44 @@ }, "drag-stuff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/drag-stuff.git", - "sha256": "4cea54bcfe3d760a6bd738e40a5409789bd0072df661458ca0bcebe5fe4846a8", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5", "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d" }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, + "dsvn": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", + "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", + "rev": "1720849" + }, + "recipe": { + "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "clocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/clocker.el.git", - "sha256": "773e6b16e868ae6988510a33a8ebdd5dfa846b1ff739efa9200af7afd2cc75c0", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "1s05644m048clz0lxizzgarh1bkyjxr96b0mbpxi2p003322aw09", "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01" }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.10", "deps": [ @@ -12882,7 +13741,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -12896,21 +13755,22 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.5", "deps": [] }, "tracking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] @@ -12923,21 +13783,22 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "whitaker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/whitaker.git", - "sha256": "64956ae44a8e645555894001f9613d40f2c4a8bb03584f18cfec8a145d86dc05", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4", "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45" }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12946,14 +13807,15 @@ }, "company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-mode.git", - "sha256": "e02f89af12f8425fa23c5d9ee0874cc241308bb052286efcb3dd706ab4c91a5a", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0", "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9" }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.12", "deps": [ @@ -12963,28 +13825,30 @@ }, "macro-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/macro-math.el.git", - "sha256": "8db36fd45ba8bad70377e4b826432ac2c6f96a103d38baa260048ad678e0ec04", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "macro-math.el", + "sha256": "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj", "rev": "105e03c80290d1b88984b2d265a149a13d722920" }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "elscreen-mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/elscreen-mew.git", - "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -12993,14 +13857,15 @@ }, "helm-backup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/helm-backup.git", - "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", "rev": "184026b9fe454aab8e7730106b4ca494fe307769" }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -13017,21 +13882,22 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rinari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.11", "deps": [ @@ -13043,14 +13909,15 @@ }, "ucs-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ucs-utils.git", - "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ucs-utils", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m", "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.4", "deps": [ @@ -13061,14 +13928,15 @@ }, "string-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/string-utils.git", - "sha256": "635852a6853573c0a066dfbf4e0ce8f82c6d7c720ebbf5705bdfda85575ca6d7", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "string-utils", + "sha256": "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s", "rev": "3ae530143899f533a9ef5e1f26f28b577ebe72ee" }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -13084,35 +13952,37 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "egison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/egisatoshi/egison3.git", - "sha256": "87323240534725aa4dc723685346c8f198a45007e15ebb311da4e3a8b192d7bf", + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg", "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de" }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.5.10", "deps": [] }, "ido-occur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-occur.git", - "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -13128,63 +13998,67 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "outshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outshine.git", - "sha256": "d4c6610a0c2e63434b38868e5b0c191909b205083f4250c0f6fde1c2023fefe2", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98", "rev": "cf1097692b3ea0367d3c821769399fec5831e200" }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "ack-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/ack-menu.git", - "sha256": "f76d463f0dbe41a65c85aacd063ebb33f642d5ff262070d6bf9d7e250a803818", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "ack-menu", + "sha256": "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f", "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059" }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [] }, "golden-ratio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/golden-ratio.el.git", - "sha256": "276af59970a0fcf2655aea7688c9d4e02d9073227445a71c32e97a16005aeb5e", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "golden-ratio.el", + "sha256": "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm", "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d" }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-mark-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-mark-replace.git", - "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -13193,14 +14067,15 @@ }, "helm-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ag.git", - "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ag", + "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6", "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.48", "deps": [ @@ -13210,14 +14085,15 @@ }, "direx-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/direx-grep.git", - "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "direx-grep", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h", "rev": "1109a512a80b2673a70b18b8568514049017faad" }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -13232,7 +14108,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -13245,21 +14121,22 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kitware/CMake.git", - "sha256": "22770d107b8e17d8360f8f57ec45b1c2a0a7770d4cb9489c635ac17a109ac03a", + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "054i416l7kwdnwlb55ya89zpnsyxg9h4b2ll3d4dhx2qpph7w9s2", "rev": "fd7180f0c0c2554c31afda235469df986a109fe4" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.4.1", "deps": [] @@ -13272,7 +14149,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -13281,28 +14158,30 @@ }, "interleave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/interleave.git", - "sha256": "721d21a98b52285b18b5ed2e389f0ef4a126d32e7d86dbc81fdcb2af137180f6", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "1bidhc4pgszx2gqsm125nw7i5ysy0mzc1ifcfkfgns1cpjr74rpn", "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041" }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "eyebrowse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/eyebrowse.git", - "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "eyebrowse", + "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7", "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.9", "deps": [ @@ -13318,91 +14197,97 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "speech-tagger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/speech-tagger.git", - "sha256": "f4073504fe97f141710263a970242076a4dbdc5e7e886c6aeaf62a2c7070ee2a", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3", "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c" }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.0", "deps": [] }, "whole-line-or-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whole-line-or-region.git", - "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whole-line-or-region", + "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d", "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "git-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/git-link.git", - "sha256": "1fac6cb1bc50a7bc4ddcb29c32f79ae0c1aedce2754c6a29f3698b1cfa463c9c", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z", "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b" }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "evil-nerd-commenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", - "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-nerd-commenter", + "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx", "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [] }, "aes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sauermann/emacs-aes.git", - "sha256": "1ff74e70eea1b566cc45c5c330d03b68c307bae9703c96714a1bacdfde4e837a", + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2", "rev": "d78796facc034b09f379cda5f27090f3139305ec" }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "orgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/orgit.git", - "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -13414,28 +14299,30 @@ }, "jump-to-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/jump-to-line.git", - "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "jump-to-line", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s", "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "pkg-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/pkg-info.el.git", - "sha256": "05e8680852c3ad9d0566bb23cb3bb6a49c3e675a1bf72a5b5f50ef0a97f0d50e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1", "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e" }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -13444,14 +14331,15 @@ }, "evil-space": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-space.git", - "sha256": "33e36e204effe277eae7a8579f14b2732fdf2e6d089864bae939e10db65590e5", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk", "rev": "f77860fa00662e2def3e1885adac777f051e1e61" }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -13460,28 +14348,30 @@ }, "wcheck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/wcheck-mode.git", - "sha256": "356171bba2026d943c826723a147decafa7cf12a94c1e789acd0b5ed539922d1", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "1l92k59yvdfhmj4yghcl5bqprynavr3s28v7h8y98v82laxp2q9m", "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a" }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2015.11.29", "deps": [] }, "overseer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/overseer.el.git", - "sha256": "8a582f4a661ab11cb7300c7a568a97fe6fc3a8fcfbc526d1e1de7fd69e8bf9b8", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx", "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba" }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -13498,35 +14388,37 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "win-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/win-switch.git", - "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "nrepl-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lein-sync.git", - "sha256": "68865267e6eadbac115128960110dfc8ad4e2f35bbd78e190a24a35a6d5beb6a", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy", "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b" }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -13535,14 +14427,15 @@ }, "erefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", - "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -13551,28 +14444,30 @@ }, "identica-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", - "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "tag": "fetchFromGitHub", + "owner": "gabrielsaldana", + "repo": "Emacs-Identica-mode", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk", "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "mentor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skangas/mentor.git", - "sha256": "1d4e392c0c241512df945907939bb8e0be2b382f7642dfebf8414149b1dd4b1b", + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf", "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0" }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -13585,21 +14480,22 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-alchemist.git", - "sha256": "703766c49a96deaee2b3141da5bd95b6a1ab22b64af1c09124e3f32b8ec01442", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5", "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92" }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -13610,14 +14506,15 @@ }, "jvm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martintrojer/jvm-mode.el.git", - "sha256": "036952c019f79cc09f3b236d524ca98bd76f76ee5c4435fda5a1d460b6b6059d", + "tag": "fetchFromGitHub", + "owner": "martintrojer", + "repo": "jvm-mode.el", + "sha256": "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83", "rev": "16d84c8c80bb214367bae6ed30b08756521c27d6" }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -13627,44 +14524,47 @@ }, "replace-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/replace-symbol-el.git", - "sha256": "2e0f5f9f06bab79ffc2ee42801d4f540e36c9cf99c16b80bbcb1e5c73c1cff6a", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "replace-symbol-el", + "sha256": "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk", "rev": "153197a4631a1ed0c3485d210efb41b4b727326c" }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "which-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-which-key.git", - "sha256": "966381db690345e6e7aceee095b37de26fbd18394ac9c681da8061cc95260372", - "rev": "777c28444a2497733a2fb62308fa5e2ef434f427" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", + "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.7", + "version": "0.8", "deps": [ "emacs" ] }, "esxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tali713/esxml.git", - "sha256": "17355d533a4ee874430af42bc57622faf576a5855de598a3b35ac03117c59b4c", + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p", "rev": "cd096242fadbf878d9428786306e54ed60522b43" }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -13673,28 +14573,30 @@ }, "fwb-cmds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/fwb-cmds.git", - "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "notmuch-labeler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/notmuch-labeler.git", - "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -13703,14 +14605,15 @@ }, "helm-c-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", - "sha256": "2ef985f43c054e17002c5fab4b904bbb2c3fff18c36dd7266ef1355517410581", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-c-yasnippet", + "sha256": "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f", "rev": "1fa400233ba8e990066c47cca1e2af64bd192d4d" }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.7", "deps": [ @@ -13721,14 +14624,15 @@ }, "codic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-codic.git", - "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-codic", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz", "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -13738,14 +14642,15 @@ }, "spaceline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/spaceline.git", - "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -13758,70 +14663,75 @@ }, "auto-complete-clang-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Golevka/emacs-clang-complete-async.git", - "sha256": "5fbafb006c891827a05306a500b04efe68a369d68433bd882291ffb90dc10ccc", + "tag": "fetchFromGitHub", + "owner": "Golevka", + "repo": "emacs-clang-complete-async", + "sha256": "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj", "rev": "a5114e3477793ccb9420acc5cd6a1cb26be65964" }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "gscholar-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gscholar-bibtex.git", - "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "anyins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/anyins.git", - "sha256": "3845cb0352860e1402a476b5a29f35ae3cdcc969a87dc7916ca467e3ff416896", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721", "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562" }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "d-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", - "sha256": "66f36dfcd8e643efa275b320e67448c9dee14db9ce7b84f1d5e842c92f33ef2a", + "tag": "fetchFromGitHub", + "owner": "Emacs-D-Mode-Maintainers", + "repo": "Emacs-D-Mode", + "sha256": "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6", "rev": "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626" }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.6", "deps": [] }, "google-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/emacs-google-this.git", - "sha256": "d9a1d487a8444e1f3a4df204949ce3f4a7a2b624bb327de7e225fc71b89e835c", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x", "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11" }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [ @@ -13836,35 +14746,37 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dired-fdclone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/dired-fdclone.el.git", - "sha256": "005be73159ffda7f811c8f6c88b7f4885c761892d0082a4b3fe7c12710202c53", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "dired-fdclone.el", + "sha256": "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0", "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf" }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [] }, "package-safe-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/package-safe-delete.git", - "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "package-safe-delete", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd", "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.7", "deps": [ @@ -13874,56 +14786,60 @@ }, "emacsc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/emacsc.git", - "sha256": "92f8550024d3349d4356e13684218e7db463a5663dff83cfb2bf4ce6cebacce4", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j", "rev": "69607bdc3a0c070e924a3bcac93180f917992368" }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.20131027", "deps": [] }, "fuzzy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/fuzzy-el.git", - "sha256": "5ae7426af9e7edc1fa90f5dadb51d8f0bef298e506292eef78dcb2a260f2f5bc", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss", "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c" }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "evil-snipe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hlissner/evil-snipe.git", - "sha256": "2f9648b97305fdcf46c1713ab2a94ee63e20256cae25e8ed5bad65b9f67d7490", + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig", "rev": "9df049eb83789ea5711632672e077cebf4c54e14" }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -13934,14 +14850,15 @@ }, "cask-package-toolset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", - "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [ @@ -13957,14 +14874,15 @@ }, "wc-goal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/wc-goal-mode.git", - "sha256": "fcd4a50ddc14002f5a03b18e18288b21e5c64ad6b560669281b22ba4bd98ce56", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "wc-goal-mode", + "sha256": "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w", "rev": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb" }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] @@ -13978,35 +14896,37 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "window-numbering": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/window-numbering.el.git", - "sha256": "de22abd1050ecf9930e9a91b8d7adc4bc261902cb996ef71f4d0b4c6b797a82b", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64", "rev": "653afce73854d629c2b9d63dad73126032d6a24c" }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "company-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/company-math.git", - "sha256": "7e4a48e63736c1de5e5fd363beb4267b3fffd16673477dbe07d6bda7c1052e01", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky", "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad" }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -14022,35 +14942,37 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "minibuffer-complete-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-complete-cycle.git", - "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-complete-cycle", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk", "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.25.20130814", "deps": [] }, "imgix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imgix/imgix-emacs.git", - "sha256": "0896e37823f0458605d3241487c0064f1cf7fe0501f0fc60d61f4eb0009c26a9", + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd", "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30" }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -14063,14 +14985,15 @@ }, "bog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/bog.git", - "sha256": "a47d1a691743a6edaf001b6f863e251db0c4113656865beee1b33fac34433a1a", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "bog", + "sha256": "1jm7qg7c75yrynrj66304p6ajamr8qxpaqbx9mjw5025936gsd18", "rev": "19c70efa3e4e9bd27308f68bdae62dff16852c0f" }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -14079,14 +15002,15 @@ }, "fixmee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/fixmee.git", - "sha256": "69aa279b81af9eac7a9c3283238249bb651cb96b447b4989c274b2efb8a6746d", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0", "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74" }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.6", "deps": [ @@ -14106,21 +15030,22 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "relax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/relax.el.git", - "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", "rev": "6e33892623ab87833082262321dc8e1977209626" }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14129,28 +15054,30 @@ }, "omni-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", - "sha256": "0b76288138867c098c55dd666567a5b7eccf7783d181aef968c9cbb6fe8ded5a", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady", "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b" }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [] }, "git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/git.el.git", - "sha256": "7ae1a96861dfc809f2c0218ad5fe0ead974d25752d3948ebc029f29c9b3a2e3b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5", "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a" }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -14161,14 +15088,15 @@ }, "operate-on-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/operate-on-number.el.git", - "sha256": "abdd6093b640c9564b31c520a90f24f1a547e43834ab5761a0d0ecc7da4c008b", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "operate-on-number.el", + "sha256": "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb", "rev": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6" }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -14181,7 +15109,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -14191,14 +15119,15 @@ }, "browse-url-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/browse-url-dwim.git", - "sha256": "38ab7b880e6ab926f6d95fc0197998b59e6d5219ac169fa32d327c56e91dd48c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "browse-url-dwim", + "sha256": "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y", "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30" }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.8", "deps": [ @@ -14207,28 +15136,30 @@ }, "emmet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smihica/emmet.git", - "sha256": "97a30c99cc4763805a2e5da53125f5a059898ee3b95e6d940d6b0fdd7fdaa9e0", + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi", "rev": "bf76d717c60f33d223cdac35513105e9f9244885" }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.8", "deps": [] }, "edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-edbi.git", - "sha256": "3aad067e7805c47c47a9dd9467d1b94b8813d86e19642e03d2431d1291c1c377", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s", "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2" }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -14239,14 +15170,15 @@ }, "markdown-toc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/markdown-toc.git", - "sha256": "2d82c36f88564b6c2c4795b48eeb6a3b16423783f932381cb11c2542e3fcc7f1", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "1syvz866xb0b0c3qkf786qzin4r27yppx0vmm9vx7rr0nfz7prz0", "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.8", "deps": [ @@ -14257,14 +15189,15 @@ }, "ac-html": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ac-html.git", - "sha256": "43464e45c5da6071edd5ae6a0a593727e655ac368b0591bf26c08252bd0041c6", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz", "rev": "415a78c3b84855b0c0411832d21a0fb63239b184" }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.31", "deps": [ @@ -14274,14 +15207,15 @@ }, "swiper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm", "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -14290,28 +15224,50 @@ }, "eldoc-eval": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", - "sha256": "73c7137585afacafec8da5f4a98ef86afcaf88798c7a5d89e7f3b3644c6f09ba", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk", "rev": "deca5e39f31282a06531002d289258cd099433c0" }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, + "elm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "0asry7b5s1mj0hpvwhazrn7l1ipyzm0sv4jp6jxshsjvmy6mgxwd", + "rev": "51f0dabb23b924725744f36501468b2017972f56" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "0.5.0", + "deps": [ + "emacs", + "f", + "let-alist", + "s" + ] + }, "helm-descbinds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "77c9fd1ae420adadf73826a11e7a73cddb53ffc2d1cc42aae0a20709b8daa2b2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-descbinds", + "sha256": "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp", "rev": "5d8e84e6c047ce8a042fdcd827abb421f4848ac7" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.08", "deps": [ @@ -14320,14 +15276,15 @@ }, "wispjs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/wispjs-mode.git", - "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -14336,28 +15293,30 @@ }, "neotree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaypei/emacs-neotree.git", - "sha256": "db74bef5fc7295191f5aea67dc5b572796a73d8a49383d9a760a5ce56ca439c8", + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n", "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493" }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "magit-topgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-topgit.git", - "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", "rev": "732de604c31c74e9da24616428c6e9668b57c881" }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [ @@ -14367,14 +15326,15 @@ }, "express": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/express.git", - "sha256": "1311be097f5bdd16d2fdccf6e1fd7fac6af8a58b2420a1c23c6b114616f37f61", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y", "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60" }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -14383,14 +15343,15 @@ }, "company-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/company-web.git", - "sha256": "b9fc754c76b45fac12bcbb321c67c7115f6d0f492d46cc5643040ef27239132c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "company-web", + "sha256": "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r", "rev": "ffb6b969813041d2d90680a7696a9e0208eaed61" }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -14402,14 +15363,15 @@ }, "helm-recoll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-recoll.git", - "sha256": "01c2710f5024844700c111b5bf148b0e06ea0e0c28d80705fcf69d8d7bd57c99", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-recoll", + "sha256": "16bwsmxqv7gnzh2hgn181h7fl1hficabzd8iq404g114a07p3hh1", "rev": "957a099b9425b91d1c6a1fc43110aa5fc834e2e1" }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14424,21 +15386,22 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/emacs-refactor.git", - "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.6", "deps": [ @@ -14455,14 +15418,15 @@ }, "emacs-eclim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/emacs-eclim.git", - "sha256": "305d13f0849c092a0f78e09df2a56d50d67375c66ea98ffcd6894b4ffe40bbf4", + "tag": "fetchFromGitHub", + "owner": "emacs-eclim", + "repo": "emacs-eclim", + "sha256": "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra", "rev": "c5c7272ae30e5017ebd08d4e03508abc6b23bf4c" }, "recipe": { - "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -14474,28 +15438,30 @@ }, "typo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/typoel.git", - "sha256": "621610add50d3dc6e0ddf691b78884e5d746e0d3cbf1ee9f083f16c8f2230dca", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2", "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972" }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "foreman-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/foreman-mode.git", - "sha256": "89538f300cc0086d7c3ae0ea23c34c020954e7488897ccadc3dcef25dcf233a5", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9", "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb" }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -14508,14 +15474,15 @@ }, "timesheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmarble/timesheet.el.git", - "sha256": "e4845d4a0dbac894dca4cdfe632b134260c5c644d25f1edbdb7a2adf5e1f9ffa", + "tag": "fetchFromGitHub", + "owner": "tmarble", + "repo": "timesheet.el", + "sha256": "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl", "rev": "354131b1216ccca51a68da74e9491b5518fd7820" }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -14526,56 +15493,60 @@ }, "slideview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-slideview.git", - "sha256": "d3c976b63e9dacc9b024c46b22b712d1c2ac3e38af663e399ca2e016aa126166", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-slideview", + "sha256": "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk", "rev": "ec2340e7b0e74201206d14e3eaef1e77149f122d" }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [] }, "direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/direx-el.git", - "sha256": "6e1c6b01dd9f4becc5bd0abd580e023b970ccb1e716c7d436d31a0fc24140c5d", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f", "rev": "423caeed13249e37afc937dc8134cb3c53e0f111" }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "yaxception": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/yaxception.git", - "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [] }, "haskell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-mode.git", - "sha256": "4a34e6cacdefa5c114f667f2602c2260aed0fa1ed9b03fcac50cd45ad7d3e898", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv", "rev": "ea81bbb966a839527a786739b7628fd9cd777456" }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13.16", "deps": [ @@ -14590,49 +15561,52 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "linum-relative": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/linum-relative.git", - "sha256": "4c33a1dac10f605afc3500cd869c397bb5bc9f896d1e4bdd2d407766d2228fd4", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc", "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5" }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "flymake-jslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-jslint.git", - "sha256": "31fb74daad79a05d70721bc0e98b45841df5a206384ad3b041436b8af9a8f303", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri", "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c" }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.23", "deps": [] }, "org-bullets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/org-bullets.git", - "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [] @@ -14645,7 +15619,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14658,21 +15632,22 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/org-projectile.git", - "sha256": "cd2769c56ed01b544c11c2f35a434d5e448a9db8be064049039521da618a6b01", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6", "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700" }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -14688,21 +15663,22 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flyspell-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/flyspell-popup.git", - "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14711,28 +15687,30 @@ }, "pyvenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/pyvenv.git", - "sha256": "da4d1a78fe1ed7ab82164befcfc2c697925dfc5d39bc6156374c6ec7c6acf1f5", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z", "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce" }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9", "deps": [] }, "persp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bad-ptr/persp-mode.el.git", - "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.7", "deps": [] @@ -14745,7 +15723,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14759,7 +15737,7 @@ }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.96", "deps": [] @@ -14772,21 +15750,22 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [ @@ -14795,16 +15774,31 @@ "emacs" ] }, + "sml-modeline": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:~nxhtml/nxhtml/main", + "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", + "rev": "835" + }, + "recipe": { + "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "wonderland": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", - "sha256": "ecfed5679ebd26cfcdad6288984809c27ba5a3bc48e8d433e3037cf45b191905", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc", "rev": "28cf6b37000c395ece9519db53147fb826a42bc4" }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -14816,14 +15810,15 @@ }, "plsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-plsense.git", - "sha256": "e44451c0abe549496c023c904914e5fc19c299cdee2115fd10e5a7ccaaaae6ab", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-plsense", + "sha256": "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg", "rev": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a" }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.7", "deps": [ @@ -14840,7 +15835,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14853,7 +15848,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14866,21 +15861,22 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dionysos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/dionysos.git", - "sha256": "44ab211ad157d2f901397351e0c189c34928ad73ae6a6ca4351781bc29461bf3", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w", "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b" }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -14892,14 +15888,15 @@ }, "graphene": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene", + "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.5", "deps": [ @@ -14918,14 +15915,15 @@ }, "flycheck-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-package.git", - "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-package", + "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd", "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -14943,49 +15941,52 @@ }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.9.3e", "deps": [] }, "annotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/annotate.el.git", - "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", "rev": "a1690384317ce366e5a33aec916949e3328a0117" }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.4", "deps": [] }, "zerodark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/zerodark-theme.git", - "sha256": "cc6d516fbf738ebe96cb5a252d43f67a3d771c3a7f2effe22c71c4765434bedf", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1pxy6ia7di3i5kigybkz78f7fgbsyr1js9asrfbbx3kkpxpm2vfc", "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321" }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc", "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -14994,14 +15995,15 @@ }, "hardhat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hardhat.git", - "sha256": "5eabdfcb353d8ad55a3cde14d146f27164389979ee85af13d5b7e5a28b0144c5", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f", "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf" }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.4", "deps": [ @@ -15010,14 +16012,15 @@ }, "pinyin-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/pinyin-search.el.git", - "sha256": "e0fc1d7f197fafd58280447910bd7e64d486524bb418294b334a4ce6de6c508a", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "pinyin-search.el", + "sha256": "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70", "rev": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e" }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -15030,7 +16033,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -15044,21 +16047,22 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.6", "deps": [] }, "mc-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/mc-extras.el.git", - "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -15074,63 +16078,67 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "test-kitchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jjasghar/test-kitchen-el.git", - "sha256": "b63de5a6d586ec1dc76405bcdcfc8504e48bfc90668764fb233a1fae4625770b", + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn", "rev": "9464c7dda14020099053218e959971117396091e" }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "thrift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apache/thrift.git", - "sha256": "a132e886758ffb4c72cacaea5833a97eebd24f45c354fb438642121425193ef7", + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii", "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731" }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [] }, "better-defaults": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/better-defaults.git", - "sha256": "1508575387f1290ef308bb096f6e5d9c38a49109e63cd76be51221ac6c1b9625", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "09cn3dnaq88jwmmxfg76168s8f4wbmp6y2dv13rhwagihx9mf20m", "rev": "c286d55528f148733c696fe07eb01073dc412fb8" }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "plsense-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/plsense-direx.git", - "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "plsense-direx", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1", "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -15148,7 +16156,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -15162,21 +16170,22 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.17.1", "deps": [] }, "ac-html-bootstrap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "a37e8552f2e08a0aa5cab25bf9f81a001a6d57fc65c8fab101c1aa8146e74c4c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-bootstrap", + "sha256": "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a", "rev": "591e1e996c820da218ea1eee0a500c556769f128" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -15185,28 +16194,30 @@ }, "julia-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JuliaLang/julia.git", - "sha256": "c45b5c254ebb09537ad61b409bcfe46793b0910b60a677b9930f25f3bca21716", + "tag": "fetchFromGitHub", + "owner": "JuliaLang", + "repo": "julia", + "sha256": "0ahn6bdl6vmy71knag1m4nq4s8gsmf239fhjn0mhpnavx9lv1apq", "rev": "bb73f3489d837e3339fce2c1aab283d3b2e97a4c" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [] }, "flycheck-status-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/flycheck-status-emoji.git", - "sha256": "2458c64fb30fcfaa74416a6157baa7f9ea002a8d7f819593f45f0e4a5ce79be1", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "flycheck-status-emoji", + "sha256": "0yi2xmk0bxzqmjf9sy3r3gacqw7z1jrf6hwn05zaqqgn7y78z37i", "rev": "37ed04b76b7338afd2237d3a11487bef3970ff0f" }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -15217,14 +16228,15 @@ }, "gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil", "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -15242,21 +16254,22 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "common-lisp-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/common-lisp-snippets.git", - "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -15265,42 +16278,45 @@ }, "apples-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tequilasunset/apples-mode.git", - "sha256": "c45cd8fab7b9f7eb10001a18373c179d5a97d57bd6f807f9f7555083512f2771", + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy", "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f" }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "reveal-in-osx-finder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", - "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "reveal-in-osx-finder", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v", "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [] }, "minitest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arthurnn/minitest-emacs.git", - "sha256": "763f79991eb0797db89c0e73ee1018ccf419a966a27afea516f1e9ec61f5e8b2", + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh", "rev": "2bed01262b0d888473468b5c7bd7d73694d31320" }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.0", "deps": [ @@ -15309,42 +16325,45 @@ }, "evil-matchit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-matchit.git", - "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", "rev": "8b80b3df9472217d55962981025539f2da603296" }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [] }, "sqlup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/trevoke/sqlup-mode.el.git", - "sha256": "b37f1c7a10eac786efa5a5c4d9450b361b87f47b41d70447443adc128d835416", + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn", "rev": "7a51e34685c65952cd0635c3d35a36337fde361b" }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [] }, "flycheck-gometalinter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/favadi/flycheck-gometalinter.git", - "sha256": "37acb536623a5cb224deb506e146bf6353dddf7d1a4d650b7d9b72934027eafa", + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1ypa4x096wlvgl5nak8sgpgxslv3px3f21mmvqjb4p1sc8vbbb1p", "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473" }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -15354,14 +16373,15 @@ }, "ir-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/ir-black-theme.el.git", - "sha256": "beee6c020fded073b7d25542b97924ee31e63056cd0f82adadf11eeec748d80c", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "ir-black-theme.el", + "sha256": "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy", "rev": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2" }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] @@ -15375,7 +16395,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.5", "deps": [ @@ -15392,35 +16412,37 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "extend-dnd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/extend-dnd.git", - "sha256": "74226cea94d4361a0aa566002866e6a84c607799842d14f5c6ee75af5d2d0ecb", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d", "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119" }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "ac-haskell-process": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-haskell-process.git", - "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-haskell-process", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41", "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -15430,14 +16452,15 @@ }, "flx-ido": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc", "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15447,14 +16470,15 @@ }, "helm-open-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-open-github.git", - "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-open-github", + "sha256": "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya", "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [ @@ -15465,14 +16489,15 @@ }, "nvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/nvm.el.git", - "sha256": "a297ebf755b1297421ba6918803505a462a91fbda80e6f1823c5583bfc3b9445", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "nvm.el", + "sha256": "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf", "rev": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad" }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -15484,14 +16509,15 @@ }, "editorconfig-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15501,14 +16527,15 @@ }, "imenu-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/imenu-list.git", - "sha256": "2c612c4ae40526bafac23bd3a66cc3f1af2ba4743baa9e964baaf0e9551c51a4", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "imenu-list", + "sha256": "192i3iaykw5a9fb9xaivfjj2pbziqdnadlrvqbxbl9h5wi52qq9c", "rev": "1324cffd571df5e35113efc57e1cdc8490068f9c" }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -15523,21 +16550,22 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-less.git", - "sha256": "95062e781f49a4b6a23cf7ff6ed0f56fb2fe7fce59028c1a171092fe8a46dadf", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z", "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893" }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -15546,14 +16574,15 @@ }, "malinka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/LefterisJP/malinka.git", - "sha256": "95d36927c70689216d37d8effdb3839d72c2e179d3496284051798662d8d0fa4", + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97", "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1" }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -15567,14 +16596,15 @@ }, "aggressive-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/aggressive-indent-mode.git", - "sha256": "3379a4c259b62e0fbbab52365b34d1bb0fad093ef1e00800069e62f4b3115a5b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "aggressive-indent-mode", + "sha256": "0nss26rz8qly0q00iq7i7q4ss3xvs4s5ndjjmfxhybmnb71a8y9k", "rev": "970c5e3bd4519deed8b8b604a5a96269166bf697" }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.2", "deps": [ @@ -15584,14 +16614,15 @@ }, "helm-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/helm-pt.git", - "sha256": "3b2fb3e9c6912a8fa4f594db4887de50700bfbc015403b43ad93342fadb5a64a", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "helm-pt", + "sha256": "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv", "rev": "03e35e2bb5b683d79897d07acb57ee67009cc6cd" }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -15600,28 +16631,30 @@ }, "subemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbauer/subemacs.git", - "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "magit-find-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bradleywright/magit-find-file.el.git", - "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "tag": "fetchFromGitHub", + "owner": "bradleywright", + "repo": "magit-find-file.el", + "sha256": "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w", "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [ @@ -15637,21 +16670,22 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ace-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/ace-isearch.git", - "sha256": "a91ecfb998618a2a19c9d378801ebbe2f2e729330188b3a12f5ec32f4c546308", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9", "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec" }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -15663,14 +16697,15 @@ }, "sparkline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/woudshoo/sparkline.git", - "sha256": "de9e32d6eef90b32ac34472d567229d4af4c9bdd444c6c6815ffd2deffacb5be", + "tag": "fetchFromGitHub", + "owner": "woudshoo", + "repo": "sparkline", + "sha256": "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny", "rev": "e44498cf1a58fb165991198fe5104d51c92ea904" }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -15679,28 +16714,30 @@ }, "slime-volleyball": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fitzsim/slime-volleyball.git", - "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "tag": "fetchFromGitHub", + "owner": "fitzsim", + "repo": "slime-volleyball", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3", "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "emms-player-simple-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", - "sha256": "588b4e8c26e3d85ca026aa30a53c17af28b9fd218a4b9d5d5e25732aae436b95", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-simple-mpv", + "sha256": "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq", "rev": "ae4c0032d4d2d0b069ee147b19f962e6a8a73c79" }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -15711,14 +16748,15 @@ }, "ta": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/ta.el.git", - "sha256": "73ffa3802cce1263812dc00ff89d4b0253a00235f337d05314bb683e506fd626", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "ta.el", + "sha256": "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk", "rev": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2" }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -15728,28 +16766,30 @@ }, "enlive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/enlive.git", - "sha256": "c36c7103247446f602b679e53d61a69eac25fb86632e159a223e23bfd3594622", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63", "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8" }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "rake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/rake.git", - "sha256": "917cabbe0f0854f0595587541dc909096e9df793b9b75a04ca509aca055b5391", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq", "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0" }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -15760,28 +16800,30 @@ }, "slim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slim-template/emacs-slim.git", - "sha256": "e7e90c997aba0e11141e5fea65ef7415104980ae12ce404749eab019665588b2", + "tag": "fetchFromGitHub", + "owner": "slim-template", + "repo": "emacs-slim", + "sha256": "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7", "rev": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8" }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "mu4e-maildirs-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", - "sha256": "dd83e8d67adb06c3a3f48d258883cff08b58006ecfe045f9372058aed845cdd3", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "mu4e-maildirs-extension", + "sha256": "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx", "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528" }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] @@ -15794,49 +16836,52 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "move-dup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wyuenho/move-dup.git", - "sha256": "7dee5a2856d9126512fc4fa60d37855df91251547e4d2ba30fea7d53211292f1", + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2", "rev": "4df67072eebac69d6be7619335b03f56f9960235" }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "stash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/stash.el.git", - "sha256": "dbe5b7ccd2e0c9d4091ce9b6ac1ef54e1ac3ec3fb4fccbaf3b453413161912e7", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4", "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19" }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [] }, "autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/autopair.git", - "sha256": "d81ea0125a65a725846190b9b93ccb28357df794e5c26504afea470e7268d33c", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq", "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39" }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15845,14 +16890,15 @@ }, "chinese-word-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", - "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "chinese-word-at-point.el", + "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j", "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -15861,14 +16907,15 @@ }, "key-seq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vlevit/key-seq.el.git", - "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "tag": "fetchFromGitHub", + "owner": "vlevit", + "repo": "key-seq.el", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f", "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -15877,14 +16924,15 @@ }, "ox-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ox-pandoc.git", - "sha256": "497825b3a7df60f0dfc4f9939a67f940523df6cdc2e453b54987ee93a8bb8940", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ox-pandoc", + "sha256": "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29", "rev": "035f1d60a0139349232c382cfd23a96902b7003d" }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.150707", "deps": [ @@ -15896,14 +16944,15 @@ }, "helm-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-ghc.git", - "sha256": "a7141edd983871ee53b4fae9d5fad8b5f78ca376fbad6430e888edd2dfd1c6eb", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-ghc", + "sha256": "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn", "rev": "d3603ee18299b789be255297dc42af16dd431869" }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -15915,14 +16964,15 @@ }, "projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -15932,28 +16982,30 @@ }, "fabric": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/fabric.el.git", - "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "fabric.el", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5", "rev": "004934318f63d8cf955022f87b2c33eb97ada280" }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "sage-shell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/sage-shell-mode.git", - "sha256": "1c61b8c3125c9c029452b9a05fcefa3215a65646f5ab60df46023c9c8e3ca5ce", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "sage-shell-mode", + "sha256": "0aw95qkql6apyn79la0jbpr0nlixhl9zvi9miry2h5y5pawb3yvf", "rev": "8e659438ff419f7f1fddd1b56fb706dbecf9e469" }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.8.9", "deps": [ @@ -15963,14 +17015,15 @@ }, "flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck.git", - "sha256": "f945da0f043a220fd0dd78d22366cc79a9a60bb80b25f3e51c2b7f17e0e9ef61", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck", + "sha256": "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi", "rev": "efaf2e3894428fec065ac6ab0b204db66dbdaa85" }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.25.1", "deps": [ @@ -15984,14 +17037,15 @@ }, "cuda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chachi/cuda-mode.git", - "sha256": "5d728e7b073f3959c550a986742b891bb466cdca87f00fc1967356850ef8db77", + "tag": "fetchFromGitHub", + "owner": "chachi", + "repo": "cuda-mode", + "sha256": "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn", "rev": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf" }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -16004,21 +17058,22 @@ }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/mocker.el.git", - "sha256": "02769eb735b52f2a0f96f992d659685522813c42f922bcd5ebc3ec40aa3a5bd1", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2", "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c" }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -16034,21 +17089,22 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pungi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/pungi.git", - "sha256": "f55917cbfe377b1c4088a5f4169e8977f106a7f483ef80b48d1b529ee1d95404", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm", "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723" }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16058,14 +17114,15 @@ }, "colorsarenice-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/colorsarenice-theme.git", - "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.20", "deps": [ @@ -16080,7 +17137,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -16089,14 +17146,15 @@ }, "ace-jump-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-buffer.git", - "sha256": "fa652b2e228226c215e09fcc391984ce0afd58cfc7eb8babd2359895295002fd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-buffer", + "sha256": "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs", "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7" }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -16112,21 +17170,22 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-octave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/ac-octave.git", - "sha256": "aef1b37cddecb17d908001fd2d031f4f9114f8ce9e2470a4d31679f3db86c899", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf", "rev": "eb6463631a69dfd06fe750c1c155594d11de0590" }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -16135,14 +17194,15 @@ }, "ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ansi.git", - "sha256": "cc8e3a51e192745f9d738cb5e5f23a72713cc118db5d13afdd61367bc8b04e16", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g", "rev": "a042c5954453bab9a74177e2b78ad17a824caebc" }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [ @@ -16152,14 +17212,15 @@ }, "ido-describe-bindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-describe-bindings.git", - "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -16169,28 +17230,30 @@ }, "birds-of-paradise-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", - "sha256": "5acd6d3cbd05bf6d8d480c5994f1a2e6fb59bb13bfa30ffb30067915084effbf", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "birds-of-paradise-plus-theme.el", + "sha256": "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn", "rev": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa" }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "elixir-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/elixir-lang/emacs-elixir.git", - "sha256": "89ab5d3eb060ba3c2cadc5605eab0976ec331b6621d777e47bf8a998b72fdb1b", + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj", "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94" }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.8", "deps": [ @@ -16200,14 +17263,15 @@ }, "hookify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/hookify.git", - "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", "rev": "e76127230716f7fab6662410c03c3872d17a172b" }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -16217,28 +17281,30 @@ }, "gntp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/gntp.el.git", - "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", "rev": "767571135e2c0985944017dc59b0be79af222ef5" }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "github-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/github-browse-file.git", - "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -16247,28 +17313,30 @@ }, "diminish": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "662d9ccb0608806cfc7541a9e3dea71228608b80087717db26ff6788ee73ef62", + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6", "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65" }, "recipe": { - "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.45", "deps": [] }, "easy-kill-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/easy-kill-extras.el.git", - "sha256": "20aee5587b635e522b0d0c9bbe5dde8b84e2017e8037a7389ac1a4997ea7cda1", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "easy-kill-extras.el", + "sha256": "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0", "rev": "242844bc95b9015396405d84c4335338037968c3" }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [ @@ -16277,14 +17345,15 @@ }, "projekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/projekt.git", - "sha256": "08fd5f68bbbfc87f36dd8cc476da7141fc7be1a46c9a11e4e179aceb042f85e7", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88", "rev": "107232c191375b59d065354470d0af83062e2a4c" }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -16299,21 +17368,22 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ranger.el.git", - "sha256": "288588d875c4a38106af55b08b4c7a971c86faed68e670c52119ac0c6e42723a", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198", "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6" }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.7", "deps": [ @@ -16322,42 +17392,45 @@ }, "yascroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/yascroll-el.git", - "sha256": "1fb71ec47cd5db6b84762efa31cee68bc138a8b151bc034711f3b467f819e800", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz", "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629" }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "date-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/date-at-point.el.git", - "sha256": "e9ba32c149a949cec5834a61f3b82ef58b66d84d489f53a2c2252426787e75a5", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "date-at-point.el", + "sha256": "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k", "rev": "662f8350a83311503dc0aae47a28752f9f1270c9" }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "flycheck-ledger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-ledger.git", - "sha256": "66b10443c2b728a856c19f5aeeb3a77991ab8dd8d251fa992bd523340bd7badd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-ledger", + "sha256": "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6", "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e" }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -16366,28 +17439,30 @@ }, "killer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/killer.git", - "sha256": "d420457dda39d440224a4a33271b5f679fb983b2fa4ef4c6dafb5f1e15a3be46", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l", "rev": "52256640aebbb8c25f8527843c2425b848031cd8" }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "flycheck-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/flycheck-tip.git", - "sha256": "03f13fadd0b9c4547d6212f05610e612579a59381016e657e05c848bcd8e5a61", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s", "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e" }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -16396,30 +17471,49 @@ "popup" ] }, + "tablist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "0.70", + "deps": [ + "emacs" + ] + }, "iedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/victorhge/iedit.git", - "sha256": "e240bd5d73807651ea9a04208b20e6d83b5d4154b66d9bfec7449e184104445f", + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm", "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0" }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.9", "deps": [] }, "term-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-alert.git", - "sha256": "fb08773ac2d47cc4c4397a9db227c81a4dd689568ce4678b2b977f34eb652890", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g", "rev": "879ea638120639299aae602f06c46d9c27312ff1" }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -16429,14 +17523,15 @@ }, "org-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/org-vcard.git", - "sha256": "c47bd23b8776fe466110de600193b99e6ae2c06dc583d84ec7c18bf034bec4e1", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "org-vcard", + "sha256": "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4", "rev": "5c4e17c166fb0406d5dfdc8876b0e182ba7af8fd" }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -16450,7 +17545,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [] @@ -16463,7 +17558,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -16472,14 +17567,15 @@ }, "weather-metno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/weather-metno-el.git", - "sha256": "3d9baeea5611b478eb1c447ffca1269bf98fe83b1130e80743715de3f8e43ea3", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z", "rev": "b59680c1ab908b32513954034ba894dfb8564dd8" }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -16489,28 +17585,30 @@ }, "gitconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/gitconfig.el.git", - "sha256": "9b10b3d62ce88daa8831594bcb589d0320e4de1fdc0331dbe9f5aa08b9371c48", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "gitconfig.el", + "sha256": "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v", "rev": "6c313a39e20702ddcebc12d146f69db1ce668901" }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "auth-password-store": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/auth-password-store.git", - "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "auth-password-store", + "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq", "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [ @@ -16522,28 +17620,30 @@ }, "cpputils-cmake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cpputils-cmake.git", - "sha256": "c484cc2f6d0334b4db9d28b40bba28cde8ce15ede3812cc869a6d7b4d36a7f9d", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cpputils-cmake", + "sha256": "03nzbrvvs31xgaqhxmrj9bypywsg42q06k4z4z1fpjssg9az0j4p", "rev": "d11e5496a0bf885900e7d0d004decc66f95dda3f" }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-anzu.git", - "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.59", "deps": [ @@ -16553,56 +17653,60 @@ }, "format-sql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/format-sql.el.git", - "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "format-sql.el", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0", "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "writegood-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/writegood-mode.git", - "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.2", "deps": [] }, "simpleclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/simpleclip.git", - "sha256": "cbd26ff22ff3360b12e1690ab3fed6335146a4981298774297b7dea3994447b1", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v", "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669" }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "pallet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -16614,14 +17718,15 @@ }, "org-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arbox/org-sync.git", - "sha256": "0e7defe6571bc6697dfb7c6c1e351fbed36ed13c79af8ff2ad08f74610366bb7", + "tag": "fetchFromGitHub", + "owner": "arbox", + "repo": "org-sync", + "sha256": "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1", "rev": "8c65dceaa2f3d436f83ed591916f22556a6e7f91" }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -16632,14 +17737,15 @@ }, "rcirc-styles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaron-em/rcirc-styles.el.git", - "sha256": "76f7fa9563766606fd159ad52a3217aca64cffa0b7a2c4100f5825ee55ae8ff8", + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "1y4gmrayw9aq1w8c98mpl3zlr9mc2wr2mmcs2pyhcrkncfazmxvn", "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16654,21 +17760,22 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "yatemplate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mineo/yatemplate.git", - "sha256": "481b34908818b9a3c20994241cd59604aa8152921d6f88f4c583f87c8f54f4fa", + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8", "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6" }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -16677,42 +17784,45 @@ }, "nginx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajc/nginx-mode.git", - "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [] }, "emoji-fontset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/emoji-fontset.el.git", - "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", "rev": "3b8c2204284b95934383836b5b36efeefb65663b" }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "ergoemacs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "d04116072b6b4eaeeb9aee59c8b1dddecea67c833112e1667045fe6e9adbd954", + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf", "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.14.7.3.1", "deps": [ @@ -16722,14 +17832,15 @@ }, "cyphejor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/cyphejor.git", - "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "cyphejor", + "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw", "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -16738,14 +17849,15 @@ }, "guide-key-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/guide-key-tip.git", - "sha256": "a39777308865e3d00de50254daf310cbaeb07a3e37be1b38baef3d21a1631510", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "guide-key-tip", + "sha256": "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3", "rev": "e08b2585228529aeaae5e0ae0948f898e83a6200" }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -16761,21 +17873,22 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-racer.git", - "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -16786,42 +17899,45 @@ }, "nemerle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rsdn/nemerle.git", - "sha256": "e8c7798e8a4b02040e5b5a055bb41fc3f07bf0743dfb2004268074a3d8e2fb34", + "tag": "fetchFromGitHub", + "owner": "rsdn", + "repo": "nemerle", + "sha256": "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48", "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "haskell-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [] }, "terraform-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-terraform-mode.git", - "sha256": "768dadff0ed54515f9608800f513542f98d7f75044d4a5ef4b3aa0d9b5e42214", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "0jv047dhvbfjyw6ca73gjdrqb1rf2vykvdyrp9581als8n8xyy0y", "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -16830,14 +17946,15 @@ }, "elpa-audit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elpa-audit.git", - "sha256": "7de472b1c16b50d2ac81845df3d21a9b790f71916a868ee0eeac01e801809d50", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7", "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5" }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -16850,35 +17967,37 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "inline-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", - "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "tag": "fetchFromGitHub", + "owner": "Sodel-the-Vociferous", + "repo": "inline-crypt-el", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6", "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "fsharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", - "sha256": "e33f9218a55ef0461e9a7cdaea2ce3bf6996faf6c96486e5fd097c2311586e8c", + "tag": "fetchFromGitHub", + "owner": "rneatherway", + "repo": "emacs-fsharp-mode-bin", + "sha256": "133fb08j6z09zpjqcr69yvx9csdzwcnfmnkwk8g4dw2yllc94gz3", "rev": "21ec2209cf0aa33f6046735e2455fe58490b7406" }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.1", "deps": [ @@ -16898,7 +18017,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16907,14 +18026,15 @@ }, "auto-complete-pcmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-pcmp.git", - "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-pcmp", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26", "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -16925,42 +18045,45 @@ }, "macrostep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/macrostep.git", - "sha256": "eeaf77cc89002d23c35b3e01ee99879c3a35ac3d12d7469ab7a07a99e357c24a", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "macrostep", + "sha256": "0dkigxa39f3cmndxw79mgadwsj7w3bphns6l2hzhv6w0wdllpifp", "rev": "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a" }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "keydef": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/keydef.git", - "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.15", "deps": [] }, "flymake-coffee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-coffee.git", - "sha256": "0ba81f88c646b0f2cd8b910150eaedbf2b0dce9811d82b803ce6a18fa3247ee9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc", "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0" }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.12", "deps": [ @@ -16969,14 +18092,15 @@ }, "magit-svn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-svn.git", - "sha256": "c85c3590b4a58a6dcc2469edf1438e4011e92738e34a0a293729363434c01fbd", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68", "rev": "c6222981d4aae088d658cce5e58a14efea8590d6" }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [ @@ -16992,21 +18116,22 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "diffview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgalgs/diffview-mode.git", - "sha256": "e60f691a7eb49bfda1d8e7279b8d9d5768489e77e7c0aec532e344407d7d22b2", + "tag": "fetchFromGitHub", + "owner": "mgalgs", + "repo": "diffview-mode", + "sha256": "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6", "rev": "471dc36af93e68849bf2da0db991e186283b3546" }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -17019,21 +18144,22 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-cscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/helm-cscope.el.git", - "sha256": "2c9d13a87a81c59e1c6ccbae2f4672f511d6516b07b947cb0ea40af1099bd876", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "helm-cscope.el", + "sha256": "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c", "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288" }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -17045,28 +18171,30 @@ }, "cil-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ForNeVeR/cil-mode.git", - "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "tag": "fetchFromGitHub", + "owner": "ForNeVeR", + "repo": "cil-mode", + "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1", "rev": "1cacd8bca125dbdeb97fdf156e32c2b74bac2186" }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "babel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/babel.git", - "sha256": "39b6b01990badd4b937bb9e462f4d39e44a179fef719e87304eb846ba53ef0fa", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7", "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f" }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [] @@ -17079,21 +18207,22 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-firefox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-firefox.git", - "sha256": "44e25977368189a7f1ca1a1e9778b810da20db759ad3b01c7f920af1a7b3fc77", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0xzwnfkz22ljgwfb1lwsfpdj1nhhp1w9f7hsrbqsg2c16rvmkqj4", "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f" }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -17104,42 +18233,45 @@ }, "engine-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hrs/engine-mode.git", - "sha256": "5c1bec4cf6afad4a22f64d9db176cf50913c3ec23b55c0576b40dc98461e4ab7", + "tag": "fetchFromGitHub", + "owner": "hrs", + "repo": "engine-mode", + "sha256": "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw", "rev": "9e8b10b029f63bc0399f8975a28247eaa78dfcbc" }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "textmate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/textmate.el.git", - "sha256": "58e075cee06e236462beda466363f565ed6f36a4d31856563ca36517ce8598cc", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1", "rev": "484845493a3c9b570799aea5195a5435a5a01b76" }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1", "deps": [] }, "flycheck-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/squiggly-clojure.git", - "sha256": "ed89d95e003327c50c9f78713236b626ad4f6afad681909cbe0d99c7f59dfb2a", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx", "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298" }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -17157,49 +18289,52 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "el-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/el-autoyas.el.git", - "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "system-specific-settings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", - "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "emacs-system-specific-settings", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7", "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "haskell-emacs-base": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [ @@ -17214,49 +18349,52 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ert-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-async.el.git", - "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "textmate-to-yas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/textmate-to-yas.el.git", - "sha256": "87fb26aeceb8d5b15d4dcddf878fd6428b0592d2af30451e194e7b65cfba4a3a", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "textmate-to-yas.el", + "sha256": "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7", "rev": "8805e5159329e1b74629b7b584373fc446f57d31" }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.21", "deps": [] }, "dracula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenorocha/dracula-theme.git", - "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "tag": "fetchFromGitHub", + "owner": "zenorocha", + "repo": "dracula-theme", + "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v", "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -17265,14 +18403,15 @@ }, "elixir-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hisea/elixir-yasnippets.git", - "sha256": "3fcf57d4937e80032d25b658c4a70e17965e529c18db2ec35d8231e6f480a537", + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz", "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea" }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -17287,21 +18426,22 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "drupal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-mode.git", - "sha256": "debf980d5421a33089434d488631504641a3b81110bb9f44b3bb998a79acb264", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s", "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0" }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -17310,16 +18450,17 @@ }, "company-jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-company-jedi.git", - "sha256": "79622ef1df065fd2af7524b46be9695b039693045b6d22d87d455aa81b0f0742", - "rev": "5533e12d6895be1d0909c73374f704e7dd13c055" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-company-jedi", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1", + "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b" }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.03", + "version": "0.04", "deps": [ "cl-lib", "company", @@ -17329,14 +18470,15 @@ }, "termbright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/termbright-theme-el.git", - "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "termbright-theme-el", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d", "rev": "bec6ab14336c0611e85f45486276004f16d20607" }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -17345,28 +18487,30 @@ }, "list-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/list-utils.git", - "sha256": "d4df944deb07788d680ec83df1f2f977944faa0f2d91e87d132c191ac0f5ac2c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x", "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97" }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [] }, "helm-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ack.git", - "sha256": "a40a1b043251c0fa83902e4f18d8ee583e57235f575d82bf4144450547e586ae", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21", "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118" }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [ @@ -17376,14 +18520,15 @@ }, "packed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/packed.git", - "sha256": "91d93518b6a8dea48516e82e85bce0779700364b2cb51f42ca6870b90905b44c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0k5l0l4vjw38r911zd9c9cv015vpw2y8abp82s2s9pm8nqc3bnci", "rev": "478613da38b0a47f4419acc50017ac871433b13c" }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -17393,14 +18538,15 @@ }, "guide-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kai2nenobu/guide-key.git", - "sha256": "c40fd6d06cdf9fcdda09394c0f2558b240e93aceb66f054b8d88d6b1a0f71501", + "tag": "fetchFromGitHub", + "owner": "kai2nenobu", + "repo": "guide-key", + "sha256": "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g", "rev": "626f3aacfe4561eddc46617570426246b88e9cab" }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.5", "deps": [ @@ -17409,14 +18555,15 @@ }, "pip-requirements": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/pip-requirements.el.git", - "sha256": "7a8f5664aac4eae210e96c5d1c7287ec1bc0f400de921b519bd0555342224fb7", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "pip-requirements.el", + "sha256": "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs", "rev": "733ec3e4c30875944601b566e9dba6ef05812fcd" }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -17425,14 +18572,15 @@ }, "cliphist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cliphist.git", - "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -17441,14 +18589,15 @@ }, "haskell-emacs-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [ @@ -17457,14 +18606,15 @@ }, "synosaurus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rootzlevel/synosaurus.git", - "sha256": "02ca926eeb8bf0dcb98281634980ab6e21ca60ba5b1424d7ece75e9aa9932242", + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2", "rev": "56efdc38952b9bd56a445591fcdeb626aede8678" }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17473,14 +18623,15 @@ }, "flycheck-color-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-color-mode-line.git", - "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-color-mode-line", + "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5", "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -17491,14 +18642,15 @@ }, "ph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/ph.git", - "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17507,28 +18659,30 @@ }, "es-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/es-mode.git", - "sha256": "53c27c18e729bcf01b2dfa811fb291d3e1b9cfacb296ec6628692ada7e6cbe80", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "105ydizdlak951kfr5mjmk7vkqfkj6r1z0gs5ldz1g19wwc7rhjk", "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f" }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.0.0", "deps": [] }, "flymake-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-ruby.git", - "sha256": "a55cd028a0fae7e4f52df164fd3a0cf5353ef30d219831e1f0e3388aad420d31", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0", "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d" }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -17537,14 +18691,15 @@ }, "commander": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/commander.el.git", - "sha256": "c4dff12a535a110fd209b5babd0692f51215e9ec27e7eace0b57bcb494849a2c", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45", "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9" }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -17556,42 +18711,45 @@ }, "olivetti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/olivetti.git", - "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "olivetti", + "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h", "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "gmpl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gmpl-mode.git", - "sha256": "61938c80449fa09a326120975bbb0a4f635048cfcad4923d9ee2cce916490a74", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1", "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71" }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "back-button": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/back-button.git", - "sha256": "06c5fd0c252700985d76841f7cb00121074033d97d80fad40e98fa6fcb21e7ca", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf", "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87" }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.6", "deps": [ @@ -17604,42 +18762,45 @@ }, "ox-twbs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marsmining/ox-twbs.git", - "sha256": "c922adbbf9140e17b6a08524bbbc025f448c5803707b4c06c9760028eb87ba82", + "tag": "fetchFromGitHub", + "owner": "marsmining", + "repo": "ox-twbs", + "sha256": "10mshzmjh03nr434qyvh0dc8qi2z0aybn945l2v1f3hlz6xss8n9", "rev": "b54058ae4e26e8ce2318c36e5b7369cbbed7c4b1" }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [] }, "mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/mediawiki-el.git", - "sha256": "3b16a0831d2c765ed84bdac324d86ca3961a0688425a4ebe6e1c6aadf0899691", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3", "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d" }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.5", "deps": [] }, "helm-pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-pydoc.git", - "sha256": "870f16c968f4a252251058dcf2dc96891d476705de5dea41980117dde4fb57f1", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs", "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9" }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -17649,14 +18810,15 @@ }, "org-pdfview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/org-pdfview.git", - "sha256": "929aaf570e20d37d9067aca6cd0cd24b46702aa52758ed1ace4c7e9afd839a92", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj", "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd" }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -17666,14 +18828,15 @@ }, "pushbullet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/revolver.git", - "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -17689,35 +18852,37 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "artbollocks-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sachac/artbollocks-mode.git", - "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "tag": "fetchFromGitHub", + "owner": "sachac", + "repo": "artbollocks-mode", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91", "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "org-elisp-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/org-elisp-help.git", - "sha256": "1446224783e61a7d83acd53f477369fb6f1a20ca5343f2d3a9ca4dcca461a8a3", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "org-elisp-help", + "sha256": "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl", "rev": "0ead4f715b0a8fd21428f763cfc502177d82b3db" }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17727,15 +18892,15 @@ }, "elpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/elpy.git", - "branchName": "release", - "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.0", "deps": [ @@ -17748,28 +18913,30 @@ }, "fcitx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/fcitx.el.git", - "sha256": "3da89ffffefbe218b44138afd53f743cfda15f85d8b6f4179941e236ffa81dac", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "fcitx.el", + "sha256": "1b0xm3zkdqj1k4bz9dnqhmgs3z9wfhzxbbrq86s1iqpvzvzrza1x", "rev": "bdcbccc04934766e6d3fc54b2bccfe38c25859c1" }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "avy-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/avy-zap.git", - "sha256": "098cf9fa52b9dabba5b7c4c5a82d11287fe8bccb94f0119d39b0e1142f19bb52", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309", "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239" }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -17778,28 +18945,46 @@ }, "inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/inf-ruby.git", - "sha256": "5fd6d528dcc7528a84cb9734c62052c6ae064e67a4355446c4ce325f76befa87", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz", "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8" }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.4.0", "deps": [] }, + "confluence": { + "fetch": { + "tag": "fetchsvn", + "url": "http://confluence-el.googlecode.com/svn/trunk/", + "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", + "rev": "170" + }, + "recipe": { + "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "xml-rpc" + ] + }, "dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] @@ -17812,21 +18997,22 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cl-lib-highlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/cl-lib-highlight.git", - "sha256": "9c152f4d82e166f5c5a98d1ade78f20e66eaec78e931f9ecef7474165b896f8b", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw", "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa" }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -17835,14 +19021,15 @@ }, "ob-http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-http.git", - "sha256": "cd0e118c4e826786693a58b8594ac00e00ef7642a3def528253c563649687b66", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-http", + "sha256": "1zbqiqilms8vxqlvzb3gjh8gh2cl7cpmh3yiqsj94jx69w8dy4xl", "rev": "89ba18b22cf6b8533358a9c76a82326343391f0b" }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -17852,14 +19039,15 @@ }, "wiki-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2", "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -17869,14 +19057,15 @@ }, "ac-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/ac-clang.git", - "sha256": "12b0c782dc28657a40c4169b02a5fa7eb18fdbb595b776668d25bae780ac48b2", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "ac-clang", + "sha256": "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam", "rev": "610ff778697eb5499394be3fc3652756d0bfb772" }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -17889,14 +19078,15 @@ }, "stekene-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/stekene-theme.git", - "sha256": "eec242ed6ea1369ee35834b251279b588451de7e1c699b689a1d7a8d7035335e", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "stekene-theme", + "sha256": "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf", "rev": "5a5ed0aed5c6c6c56aa1e59516a40c697b04a673" }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.15", "deps": [ @@ -17905,14 +19095,15 @@ }, "checkbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/checkbox.el.git", - "sha256": "f4ecf1068bcb02814ae76d3026d3cdf2355757e79f52ea88362666c149e66aae", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj", "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1" }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -17922,14 +19113,15 @@ }, "color-theme-modern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/replace-colorthemes.git", - "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "replace-colorthemes", + "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj", "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -17938,14 +19130,15 @@ }, "opam": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/opam.el.git", - "sha256": "c8e7fda52940759e314bf09eb6f1b2650d60543e07a01c775b853bf2de993785", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8", "rev": "83fb2850d29ec792754e0af18b015e089aad2695" }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -17954,14 +19147,15 @@ }, "ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -17974,14 +19168,15 @@ }, "zone-nyan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/zone-nyan.git", - "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "zone-nyan", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy", "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -17996,35 +19191,37 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gitattributes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "emojify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "c829cee6c7fa5873651329163df4aca312f43d6370555e56098400ba5c43e912", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "03hc2c8cyn0saasw63vv75iswcxxj8xd8ni78xnccpni1i16lgwj", "rev": "e3c269838277db29560352365b7b9ceb3db9593e" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18035,14 +19232,15 @@ }, "sx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/sx.el.git", - "sha256": "a7a7db38a7e664b54a70a86472aeb3f525824beced899c2647aa513bd248e3e5", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p", "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c" }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -18055,14 +19253,15 @@ }, "mykie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/mykie-el.git", - "sha256": "8be15aaa2b19239984f619141354667ed7f39d61a8d994d062b14d0e6bf64264", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "mykie-el", + "sha256": "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5", "rev": "ab8f7549f9018c26278d101af1b90997c9e5e0b3" }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -18072,28 +19271,30 @@ }, "esup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/esup.git", - "sha256": "bf4cec8fdda5b56a00e9b551bf7b2a9c038461c0cf71b763bcb140a3a668ebdf", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z", "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171" }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "evil-rsi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-rsi.git", - "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -18102,14 +19303,15 @@ }, "letcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/letcheck.git", - "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -18122,7 +19324,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -18132,14 +19334,15 @@ }, "find-file-in-repository": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoffstaetter/find-file-in-repository.git", - "sha256": "2dcb896b642cdc455ba606ecb930a14cfdb53661f2862bcf4b4726fcfe665c56", + "tag": "fetchFromGitHub", + "owner": "hoffstaetter", + "repo": "find-file-in-repository", + "sha256": "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md", "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420" }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] @@ -18152,21 +19355,22 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "clojure-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpenet/clojure-snippets.git", - "sha256": "867aa04bfbec648b281295210c58b4e8ceb61c7b4421f388da461199ea401cdc", + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6", "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2" }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -18175,28 +19379,30 @@ }, "helm-lobsters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/helm-lobste.rs.git", - "sha256": "22cfa1913ce86bc58b0440a383066507ffbd08e8e445ad752d2e9daf4f39e62e", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "helm-lobste.rs", + "sha256": "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar", "rev": "d798bebb1a65e255c8ec791753a0c78e6b19243b" }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "helm-commandlinefu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-commandlinefu.git", - "sha256": "706e8e12413fd38f3398f77c81cc15e41181bc63c074f9cb9be7e3179a66c1d0", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh", "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b" }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -18208,14 +19414,15 @@ }, "ac-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-emoji.git", - "sha256": "7bb2d5f19e5afa5b9aba35cb6dcbd42185d844986afb7756012676b729896444", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-emoji", + "sha256": "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg", "rev": "53677f754929ead403ccde64b714ebb6b8fc808e" }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -18225,14 +19432,15 @@ }, "ido-load-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ido-load-library.git", - "sha256": "212ab3c4e43d6fa97e785fd1e9713b3aef6e0d7c16cbed2c6543dab488b78f24", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ido-load-library", + "sha256": "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf", "rev": "8589cb1e4303066eb333f1cfc789835d1cbe21df" }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -18242,14 +19450,15 @@ }, "elmacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/elmacro.git", - "sha256": "30b1dcc07e45fb6c922d79799e060e91764456803ff921b74f7adea9998d5150", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h", "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3" }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -18266,21 +19475,22 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-make": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-make.git", - "sha256": "ca3b3ea59d269af0d33a11032917a1473ffd72143d8930dec642494bef029a9e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya", "rev": "6558a79d20d04465419b312da198190be6832647" }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -18290,14 +19500,15 @@ }, "go-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303", "deps": [ @@ -18306,28 +19517,30 @@ }, "beeminder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/beeminder.el.git", - "sha256": "38c80e55438d15e7ea099d1ba355715868d7ffb0c7fd7a5a272ac5faa802a105", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q", "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44" }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "idris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idris-hackers/idris-mode.git", - "sha256": "288613fcd1db826f580766354dcb3127fae1f7a9b246f918b14108d29d18a36e", + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92", "rev": "314a0baea5752069de08e814bb134a9643fb675d" }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.19", "deps": [ @@ -18338,42 +19551,45 @@ }, "exec-path-from-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/exec-path-from-shell.git", - "sha256": "d8e2773e0c2fd6e193e56997d380f399b3a25d7458ff917413fe04e4a2124f14", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "exec-path-from-shell", + "sha256": "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml", "rev": "30c793b388312e5044afb7549b50996bf2b71941" }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-symbol.el.git", - "sha256": "d878a11e94cf23173b5d91819cca8a61aed633eb1aadc1fc7a10c5dacfaa5b9e", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6", "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2" }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "ppd-sr-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -18389,21 +19605,22 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "vbasense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-vbasense.git", - "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -18420,21 +19637,22 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "creds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-creds.git", - "sha256": "83f8ce55aa2f6346c359a302fefb1f4e42cf603dfc5d5e40a67f982243be8105", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs", "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c" }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6.1", "deps": [ @@ -18444,14 +19662,15 @@ }, "helm-project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-project-persist.git", - "sha256": "33a2bcaa44d86821983183c22fe8f6d7e806acdeb7689bae843bf2469174f0e0", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-project-persist", + "sha256": "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik", "rev": "df63a21b9118f9639f0f4a336127b4fb8ec6deec" }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -18461,28 +19680,30 @@ }, "eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", - "sha256": "259a6dda365422bc4f0c809254f16e28d733cf035bbf1b8a4bb4f63655a29753", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "eval-sexp-fu.el", + "sha256": "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5", "rev": "b28d9c4d57511072aa17b2464693e38b769482e0" }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "httprepl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/httprepl.el.git", - "sha256": "6a8dcdd3de194f8f55e37ab6291f54eabe02b12a1c712dc0c1e3a7179614f8f6", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9", "rev": "d2de8a676544deed1a5e084631a7799e487dbe55" }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -18493,14 +19714,15 @@ }, "tern-auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a", "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16.0", "deps": [ @@ -18512,14 +19734,15 @@ }, "ox-ioslide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-ioslide.git", - "sha256": "9c684f010d49207e9b483ad788f657423e3efbdb4e16dd8d8320efed501ab4e6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-ioslide", + "sha256": "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3", "rev": "e81f7a6dab512da7eaa8c2c50c673538b97db267" }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18531,14 +19754,15 @@ }, "quasi-monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", - "sha256": "6807ae76325c6506c1e4495c9ae63355e1bb09b29ca94deb7a631961166dd551", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-quasi-monochrome", + "sha256": "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8", "rev": "e329a8d55b22151e29df1f81552a4361f85aeafa" }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -18551,21 +19775,22 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "editorconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -18574,14 +19799,15 @@ }, "evil-anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-evil-anzu.git", - "sha256": "635af6719d5aa3e38525f9646ee3e28c8e29b4b5fcd78984d979dd34328c9089", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-evil-anzu", + "sha256": "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr", "rev": "64cc08a3546373f28cd7bfd76a3e93bd78efa251" }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -18591,14 +19817,15 @@ }, "hl-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/hl-anything.git", - "sha256": "b47802d0a59f6e45ad6729686d4a1636b7e681e450cc1ae44b29b810e785f3fb", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as", "rev": "990fe4b323b6222d6c6a35898d8128cddda34848" }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.9", "deps": [ @@ -18607,14 +19834,15 @@ }, "restart-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/restart-emacs.git", - "sha256": "97ef135d16e568cefa6f0ef1b80e9731a47d773d361ead6599d2961447e8acf5", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz", "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b" }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -18627,21 +19855,22 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "passthword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/passthword.git", - "sha256": "d167ccbd4f4e3566fc3aa51fb29d7ca9cbf9c969a482451663583814d3db15bc", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi", "rev": "58a91defdbeec9014b4e46f909a7411b3a627285" }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -18650,28 +19879,30 @@ }, "s": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/s.el.git", - "sha256": "c95259ab71d1f953b7300e29f5c16108f44337db2e0f210ec1698f6105ec6099", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "s.el", + "sha256": "16b0xh2n33v9q47223rfvcvl7x08c70zaa8f62vm7yfif6mmjln9", "rev": "b16c6641649cb79435f745863bd76aaed3da3698" }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.0", "deps": [] }, "sweetgreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "b834e70ecc2cdda6e930b1d392fe85de583cda6fa17af950a11a5614e9b31cf3", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs", "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -18683,42 +19914,45 @@ }, "immutant-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/immutant-server.el.git", - "sha256": "9da08d58efc99c5fffe1730295ff62d2b189b0bbb6dcfd1f81db7f8f20bec7dd", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x", "rev": "6f3d303354a229780a33e6bae64460a95bfefe60" }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "git-ps1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/git-ps1-mode-el.git", - "sha256": "867282922b84a0e78a6fc80ae3497a12b25b47b60bcade9f73a077daf11894e6", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "0pkzpihn94z2xy28nwaiv7883hq604xbmhrpxz2xh8cjix81h8ha", "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "evil-textobj-anyblock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/evil-textobj-anyblock.git", - "sha256": "725fcc86659326299879749e9d94f1faa693820f685a765861478a45bf3f4e6f", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj", "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68" }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -18728,42 +19962,45 @@ }, "osx-plist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/osx-plist.git", - "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "osx-plist", + "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv", "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "cyberpunk-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "48d9d161170c7af95a4d7f2f5685ee91b40461e4a7f03f3c2b8c23123585938a", + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "12lkhlsi48wc5cy3zw57wihh9d4ixs2mcbvz9mdgjyhc2xhx3na8", "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.16", "deps": [] }, "elwm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/elwm.git", - "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", "rev": "c33b183f006ad476c3a44dab316f580f8b369930" }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -18772,14 +20009,15 @@ }, "airline-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", - "sha256": "971f8e6bfa542e167ddc184447643b4c1958f46cfd6e7cb33f179803233d3561", + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "0q9m7lih760p7yrpqvpxdks5h6ac7dj4fi0qviyicbjlz9mqw7wp", "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a" }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -18788,14 +20026,15 @@ }, "shackle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/shackle.git", - "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [ @@ -18804,14 +20043,15 @@ }, "scpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/scpaste.git", - "sha256": "f5bafb3ad1ea01909f4b649f87e39b5324933bb0ad00f7d072a9756ec285488f", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm", "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4" }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.5", "deps": [ @@ -18820,14 +20060,15 @@ }, "helm-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-themes.git", - "sha256": "6fad66e983daaa7bd17ca4315836b6bebbbe5bd991fdeffc8fb1744164d16464", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-themes", + "sha256": "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li", "rev": "8c979f4efc6174eed7df5f3b62db955246202818" }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.05", "deps": [ @@ -18836,28 +20077,30 @@ }, "gnuplot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruceravel/gnuplot-mode.git", - "sha256": "1c844c79b48b597f31c01a02f1e093b80c9028627b691f3739cee2d1667d8bbb", + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn", "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3" }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "ac-etags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-etags.git", - "sha256": "a20500d1add2940e44f8c63dbeb6e3f064960a650fe608ed871299f6f0885646", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2", "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8" }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.06", "deps": [ @@ -18866,28 +20109,30 @@ }, "rect+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", - "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.10", "deps": [] }, "flymake-hlint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-hlint.git", - "sha256": "a38ac0d1a28b5e2ff9b2807037c468ae9dee6029d31ffe7d4a9f7685bcce9bda", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31", "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c" }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18896,14 +20141,15 @@ }, "flycheck-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -18915,14 +20161,15 @@ }, "ansible-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/ansible-doc.el.git", - "sha256": "b79e6e46242288cf7741d768d26f5ad608c862cedc9bad4565cd6b7e6304a61e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "ansible-doc.el", + "sha256": "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds", "rev": "6ab94392c860e23439ea3213b74ca56834d1ab14" }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -18931,28 +20178,30 @@ }, "ido-vertical-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/creichert/ido-vertical-mode.el.git", - "sha256": "075a402e74e760a09eba5a1812de96c0cc7ad223592340a21aea6e515c1a7a53", + "tag": "fetchFromGitHub", + "owner": "creichert", + "repo": "ido-vertical-mode.el", + "sha256": "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k", "rev": "c3e0514405ba5c15b5527e7f8e2d42dff259788f" }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.6", "deps": [] }, "stan-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1.0", "deps": [ @@ -18962,14 +20211,15 @@ }, "emacsql-mysql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -18980,28 +20230,30 @@ }, "cdlatex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cdominik/cdlatex.git", - "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "tag": "fetchFromGitHub", + "owner": "cdominik", + "repo": "cdlatex", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d", "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.7", "deps": [] }, "sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -19012,28 +20264,30 @@ }, "guru-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/guru-mode.git", - "sha256": "a06bbf201e2c47ecd42775916ca568f09ceb99957a6e262e07cbcdc752c386f8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "guru-mode", + "sha256": "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0", "rev": "62a9a0025249f2f8866b94683c4114c39f48e1fa" }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "msvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/msvc.git", - "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -19045,14 +20299,15 @@ }, "describe-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netromdk/describe-number.git", - "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "tag": "fetchFromGitHub", + "owner": "netromdk", + "repo": "describe-number", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq", "rev": "40618345a37831804b29589849a785ef5aa5ac24" }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -19061,28 +20316,30 @@ }, "smex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/smex.git", - "sha256": "45364a69b81d20776b7bdbb98b38634490b0c4238ba38c44b771fc7e4e8192c1", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5", "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26" }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0", "deps": [] }, "fancy-battery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/fancy-battery.el.git", - "sha256": "63b4cd1df91529341c713dc85c3fa9b5ee67b27378d76ed72881f3e83c6dbd93", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g", "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff" }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -19091,14 +20348,15 @@ }, "org-trello": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/org-trello/org-trello.git", - "sha256": "aedae59ff245df4c11960ef1d0f6c73ad7edef9af63cfe9adf56cc0927347ae6", + "tag": "fetchFromGitHub", + "owner": "org-trello", + "repo": "org-trello", + "sha256": "1561nxjva8892via0l8315y3fih4r4q9gzycmvh33db8gqzq4l86", "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73" }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.5", "deps": [ @@ -19112,28 +20370,30 @@ }, "know-your-http-well": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/for-GET/know-your-http-well.git", - "sha256": "2f2e03c099dacf13aff312763dacb2af3bd51837f89bf65a0ca57fd3e6dd218e", + "tag": "fetchFromGitHub", + "owner": "for-GET", + "repo": "know-your-http-well", + "sha256": "077hidc464kpmgd1vz50j0pygl956llhbqy1c9mwl3r0jh86q0rg", "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "homebrew-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/homebrew-mode.git", - "sha256": "252a82e0203233ccbace28fe557a20df9138eb5ee7c57104aa5c3e33bd1e8488", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn", "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12" }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -19142,6 +20402,20 @@ "inf-ruby" ] }, + "caml": { + "fetch": { + "tag": "fetchsvn", + "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/", + "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw", + "rev": "16548" + }, + "recipe": { + "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "deft": { "fetch": { "tag": "fetchgit", @@ -19151,35 +20425,37 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "autodisass-java-bytecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-java-bytecode.git", - "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "helm-bundle-show": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", - "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [ @@ -19188,14 +20464,15 @@ }, "irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/irony-mode.git", - "sha256": "bac2fbf0bdbc5b105502ee8928d42cc040836604b5a5e62c530904dd4a38a423", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2", "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e" }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -19204,14 +20481,15 @@ }, "swiper-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper-helm.git", - "sha256": "c47414370da836bac42ab54b931f3b709c237a9e1284df51dcf2b619475b4df8", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper-helm", + "sha256": "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64", "rev": "f3d6dba865629eed8fb14f92dab1fad50734891b" }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19222,14 +20500,15 @@ }, "e2wm-sww": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-sww.git", - "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-sww", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g", "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -19245,21 +20524,22 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [] }, "syntactic-sugar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/syntactic-sugar.git", - "sha256": "f99d0ce0d23f308180186b0c748a3f8e66347beaf0f38be92cd9e5215072b8e0", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da", "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9" }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] @@ -19272,35 +20552,37 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smartrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/smartrep.el.git", - "sha256": "6e30c6384aab88d6a26b9bd5910203aaf3c40075228f86f85f1b519f5f7ab448", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f", "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446" }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "prodigy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/prodigy.el.git", - "sha256": "e4a2630ee03593ab8c4f1d05647f11500e3aa14d75c54e659d0ea52717c32596", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3", "rev": "7034873908a616853b3a65258a7580a3b402e8a2" }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -19312,32 +20594,48 @@ }, "scss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/scss-mode.git", - "sha256": "0936cd77ffb8cc071c8cb3869a47c59f266795e597c2fab87d993c745972f27e", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "scss-mode", + "sha256": "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9", "rev": "d663069667d9b158d56e863b80dd4cc02984e49f" }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "buttercup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", - "sha256": "700de58289e3cf15637c4b59a6df1c01704340639153adb1385b29d9b21fe4ff", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "1xmzvl9l87adw7kqznnzhnh8l3iplbf82vmqax38bd8ykbw92jlf", "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, + "maude-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk", + "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy", + "rev": "63" + }, + "recipe": { + "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "list-register": { "fetch": { "tag": "fetchurl", @@ -19346,7 +20644,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -19359,7 +20657,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -19372,21 +20670,22 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emms-player-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/emms-player-mpv.git", - "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", "rev": "a1be1d266530ede3780dd69a7243d898f1016127" }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -19395,14 +20694,15 @@ }, "kibit-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brunchboy/kibit-helper.git", - "sha256": "fb0b2e37e33849513572b5d8fc82fef2fd28b187f22fdfa8c635c300fb31c14f", + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv", "rev": "ec5f154db3bb0c838e86f527353f08644cede926" }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -19412,14 +20712,15 @@ }, "slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slime/slime.git", - "sha256": "83978dda1e08373fa2e4de859401de2b892f9808cb0af513aca144ddaa27460c", + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "10ydinwsm7m5jlggynhsihxl18zl8cph4rliic8i72hjc3nhqfmy", "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1" }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.15", "deps": [ @@ -19428,30 +20729,46 @@ }, "define-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/define-word.git", - "sha256": "2f211540bd9abd369e262aa3eab2155d5b8e64e1cc1ba715158b1df9586ad8d3", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "define-word", + "sha256": "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g", "rev": "38e2f94779652fc6280a51b68dc910431513a8e1" }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ "emacs" ] }, + "zeitgeist": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:zeitgeist-datasources", + "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", + "rev": "181" + }, + "recipe": { + "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ecukes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/ecukes.git", - "sha256": "7fa51478598883ba688536380cd98c94b382b27c8727b291145d8aa31b59ed2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs", "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5" }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.15", "deps": [ @@ -19465,42 +20782,45 @@ }, "shell-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/shell-switcher.git", - "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "shell-switcher", + "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria", "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] }, "dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.12.1", "deps": [] }, "haml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/haml-mode.git", - "sha256": "168924444661a40ce3a04b230b2e60994eee74ac4cdb66d06b36735f7170d1c4", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988", "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b" }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.9", "deps": [ @@ -19509,14 +20829,15 @@ }, "helm-github-stars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-github-stars.git", - "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-github-stars", + "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn", "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -19526,28 +20847,30 @@ }, "elmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/elmine.git", - "sha256": "dfad27564b59011c73deb420a54a25ff4a81b324fcdb2339a8055c9b4202f1e9", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3", "rev": "091f61c70c9e7630a74b7b127488051d143a35e7" }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "ace-jump-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-zap.git", - "sha256": "8ad57561be7bc861478564045c86558c340a1f4131c7dd18994de1ef1536cf7a", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-zap", + "sha256": "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca", "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359" }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -19563,21 +20886,22 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smeargle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-smeargle.git", - "sha256": "83235ec6befe1000f80d16ae9dcaf05636a7c4ebd1f0413201d8e4463da517f8", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng", "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097" }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -19587,14 +20911,15 @@ }, "epc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-epc.git", - "sha256": "1f254cf7bfa6fe944c67242bea23c2cebc30a195e874f0987eb92df8fea92217", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z", "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7" }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19604,28 +20929,30 @@ }, "suomalainen-kalenteri": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", - "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "suomalainen-kalenteri", + "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann", "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2015.11.29", "deps": [] }, "init-loader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/init-loader.git", - "sha256": "d9e5689702f7a229afc6ec9a80a66306ce7b472c3ed726c44e1fd9c4b98ea686", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az", "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde" }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [] @@ -19638,35 +20965,37 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "session": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/session.git", - "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3a", "deps": [] }, "bundler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/bundler.el.git", - "sha256": "0dd553d24d928787bec405c592d4f5fdf4daa1bbb614bb69dec74b8221d96e0a", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h", "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf" }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19675,42 +21004,45 @@ }, "jsfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brettlangdon/jsfmt.el.git", - "sha256": "1d1c1914b5a70a06c690bba51bf8e73e3c1a70f7dae122c76269d1ca3bd5555e", + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x", "rev": "c5d9742872509143db0250a77db705ef78f02cd0" }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "go-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "04bf758fafd269d176985fd84a241f3eb5fa0bf5e6acf805f30c43ea23d61ee9", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx", "rev": "dce210fdde620bed3d179816fda79dc83a66b8de" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "xtest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/xtest.git", - "sha256": "09ac67e5e3125da57124d65f240e47cf00de12eaaec0d8bca411578629341df3", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09", "rev": "b227414d714e7baddef79bd306a43024b9a34d45" }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19719,14 +21051,15 @@ }, "noccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/noccur.el.git", - "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -19739,35 +21072,37 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "lispyscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/lispyscript-mode.git", - "sha256": "f2771440e04eb3e0063fd4269f9b41ad74bc5a6864a47656f4f4b426e1fa948b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk", "rev": "9a4200085e2a15725a58616d131a56f5edce214b" }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.5", "deps": [] }, "ac-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/ac-anaconda.git", - "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19784,21 +21119,22 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -19812,28 +21148,30 @@ }, "sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly.git", - "sha256": "9eba7edf46db8987d3d8d42fcf4dde7fbbdcef15a7f29f09ef6d32322442770c", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly", + "sha256": "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf", "rev": "1942c53fc40fd6ace0e822b5c9bf551f59061f32" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.14", "deps": [] }, "magit-stgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-stgit.git", - "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [ @@ -19843,28 +21181,30 @@ }, "shelltest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rtrn/shelltest-mode.git", - "sha256": "bacfb378ce6ccd095e2ccbbc865d9bec7a239348578651842a67fb20375fc756", + "tag": "fetchFromGitHub", + "owner": "rtrn", + "repo": "shelltest-mode", + "sha256": "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs", "rev": "fead97c7ff1b39715ec033a793de41176f1788f5" }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "tagedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/tagedit.git", - "sha256": "950cdd0b92e25fc9bfe7d60061cee1d3a22e688a2b1f5983f98b996a3ff93035", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb", "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f" }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.0", "deps": [ @@ -19874,28 +21214,30 @@ }, "navi-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/navi.git", - "sha256": "72a4847930f56b502ddcc2ea3730410965c1f652cca89a3e0f8e2cbe21ec9ec6", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh", "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022" }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "flymake-sass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-sass.git", - "sha256": "e189465dc3913a629853321f5144fe92d9a6a8969e187a951f04bed13860cdae", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8", "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4" }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -19904,28 +21246,30 @@ }, "sackspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/sackspace.el.git", - "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.2", "deps": [] }, "org2blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/org2blog.git", - "sha256": "f46457d13a51f2ffdccd86395bcbda6790adc05afab4ea67d1440f2bcf21612b", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l", "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55" }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -19936,14 +21280,15 @@ }, "mhc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/mhc.git", - "sha256": "5de67a67ba5c00b4003fd07a939e989395db60d3dc4129ce228961ff50e6f290", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "mhc", + "sha256": "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl", "rev": "46d2a983b77b3139c9694ffba16ae875edc7d5b0" }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -19952,14 +21297,15 @@ }, "company-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-ghc.git", - "sha256": "afea0aefdb018729e8c73b2ef59a9800fc7a666088e544ab824806248b4b8f13", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r", "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090" }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19978,7 +21324,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.8", "deps": [ @@ -19988,28 +21334,30 @@ }, "ruby-end": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-end.git", - "sha256": "6467b8c73cd98f11a4402415753f3189fcf0511d7042db0a593cb709f2d1b29b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-end", + "sha256": "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds", "rev": "648b81af136a581bcef387744d93c011d9cdf54b" }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [] }, "f": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/f.el.git", - "sha256": "fad74e0febe9e7bb8a7dde19366b6b44b20a96cdf839aeb44b242502b7e3790a", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "13issmwp77mswrqwhx2qcyxavv68x7lrql5za5cz24yzzy6zrp2x", "rev": "7003428ead6d80e81ff14c3614239efdbce7391b" }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.18.0", "deps": [ @@ -20019,14 +21367,15 @@ }, "ac-cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/ac-cider.git", - "sha256": "c979c406c5fd29220ad7f46dbf558497417078028126f18574aed3bd3a05f2ee", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "ac-cider", + "sha256": "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9", "rev": "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4" }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -20044,7 +21393,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] @@ -20057,7 +21406,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -20070,7 +21419,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -20079,14 +21428,15 @@ }, "sound-wav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sound-wav.git", - "sha256": "465fd9213339a245b3f93c692860247cf5c52807bf4bd33a120b38c60c3ac26f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g", "rev": "215e23b118fba11a7132b7c79326ad0a723e2605" }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -20096,14 +21446,15 @@ }, "psession": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/psession.git", - "sha256": "e8edec68eb59df2342363fa2a95f0685054f5c117db7fb072c1eca9604434a57", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8", "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2" }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -20113,14 +21464,15 @@ }, "elfeed-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -20131,14 +21483,15 @@ }, "cljr-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/cljr-helm.git", - "sha256": "0a426d4c392c271125a19207b17516beb0bac4b4295b829909d8c75beb46fba1", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha", "rev": "916d070503d0f484f36626c7a42f156b737e3fab" }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -20148,14 +21501,15 @@ }, "ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -20165,42 +21519,45 @@ }, "japanlaw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/japanlaw.el.git", - "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.1", "deps": [] }, "link-hint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/link-hint.el.git", - "sha256": "68a0a230e419b312634adc5a75b69c31ef32c5bf5d349b00a3a6fab37b538eec", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838", "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2" }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "git-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -20211,14 +21568,15 @@ }, "json-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshwnj/json-mode.git", - "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "tag": "fetchFromGitHub", + "owner": "joshwnj", + "repo": "json-mode", + "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3", "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -20228,14 +21586,15 @@ }, "fountain-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/fountain-mode.git", - "sha256": "b8fd1d7d825997599cfe1cd9ff33909e15e494968811bd82b7f4e19dc6b0cc7b", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "fountain-mode", + "sha256": "0yycn339vqglny1bs4c8jsaf85cyj0rzzn8wzsf5k5srh9yivzdq", "rev": "167238b3cdd5e510300abe3afd02b820f026b501" }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -20244,28 +21603,30 @@ }, "ace-jump-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/winterTTr/ace-jump-mode.git", - "sha256": "6893c9ba9c6bed8157c926c0eebcd8f676ed01c12f1115625d6329b247898832", + "tag": "fetchFromGitHub", + "owner": "winterTTr", + "repo": "ace-jump-mode", + "sha256": "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb", "rev": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71" }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "ob-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-translate.git", - "sha256": "3b2a963f859474741476a547a7b959c0ac13b7d8610aef13749d126cba1dd5c0", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia", "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3" }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20275,28 +21636,30 @@ }, "default-text-scale": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/default-text-scale.git", - "sha256": "0161a470d5da1fc590d5cc335868de67f2339abc6499c74e3812201c34452e0c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "default-text-scale", + "sha256": "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81", "rev": "c90c08b9fe5f25474067a00c4a4babdb413b25b1" }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "shm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/structured-haskell-mode.git", - "sha256": "b496595dcf8d87b822f3effa1a85a36b6a13cb1fe7959efc28d6037798690ed6", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk", "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f" }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.20", "deps": [] @@ -20309,7 +21672,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -20322,21 +21685,22 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "git-gutter-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", - "sha256": "66cce8dfe64ea79ca1e62472f160f44f741f39801f7da57f75698641876b55c2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter-fringe", + "sha256": "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv", "rev": "3efa997ec8330d3e408a225616273d1d40327aec" }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [ @@ -20348,42 +21712,45 @@ }, "flyspell-lazy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/flyspell-lazy.git", - "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "flyspell-lazy", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm", "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.10", "deps": [] }, "insert-shebang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psachin/insert-shebang.git", - "sha256": "31b6c945adcd80ba8b36fc26b703b9532ee68343c8a600aada2a239bb7e9753a", + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f", "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97" }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] }, "anything-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", - "sha256": "2d0fbc1db0d4be6a839f2388b9b1ae5f80c43ea9a5f87657e2e575954a489c06", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-exuberant-ctags", + "sha256": "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd", "rev": "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c" }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20392,14 +21759,15 @@ }, "py-autopep8": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-autopep8.el.git", - "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-autopep8.el", + "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd", "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] @@ -20413,107 +21781,114 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "nyan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TeMPOraL/nyan-mode.git", - "sha256": "4b0a710b2c25392a3f20940935999d4b491c60271d50eacd99886263b49191dd", + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw", "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3" }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "repeatable-motion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-repeatable-motion.git", - "sha256": "6da320bd363ec0f4d025389c65c0b8692d7a64633e3327e15fa687701cbbae6f", - "rev": "69f71c02a1dbec5d7406492449f5c03048d6e529" + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1", + "version": "0.2", "deps": [ "emacs" ] }, "abc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/abc-mode.git", - "sha256": "db675eb1f68af49c9150acd4c427b00bf030e04f64cd09502db593fe7ba2c48d", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv", "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287" }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.944", "deps": [] }, "enotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/enotify.git", - "sha256": "c5671705a16324e4da80ff60525f5d22f6b266743364fa254809462393b66ebd", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5", "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388" }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [] }, "org-outlook": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-outlook.el.git", - "sha256": "eb3cdcf784b90f61dea05aa6f54871e59bb83c52b53615d3af657e4f2fe04cf8", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-outlook.el", + "sha256": "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a", "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc" }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11", "deps": [] }, "kill-ring-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/kill-ring-search.el.git", - "sha256": "52cd2895527401bf21354be6ea23f3eef50f707ebdb9ad63080b957c6354ac9d", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "kill-ring-search.el", + "sha256": "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93", "rev": "3a5bc1767f742c91aa788df79ecec836a0946edb" }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "scala-outline-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ancane/scala-outline-popup.git", - "sha256": "23f20d5776753125ead2be6e5417a87ea2618039b033ad90661ebe0f43c8f2e6", + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "scala-outline-popup", + "sha256": "1sq0p0na0yxkipv6fv4wcrfpl1k9sb8nyqmwg0ql2i7gwlpiqrx9", "rev": "f950e026ffbf471046f02edea56f0d329cca0e01" }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.4", "deps": [ @@ -20524,28 +21899,30 @@ }, "smart-tabs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcsalomon/smarttabs.git", - "sha256": "9f349f0f0abaa9f7319d83b96cdedec99d15e3b8b3d8ef3167e814a40984d1cd", + "tag": "fetchFromGitHub", + "owner": "jcsalomon", + "repo": "smarttabs", + "sha256": "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z", "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7" }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "amd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/amd-mode.el.git", - "sha256": "db1e25df20688e9a290ece00cf7d28d553b6a54714e439761253f71cc22deab2", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy", "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101" }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -20560,28 +21937,30 @@ }, "lua-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/lua-mode.git", - "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "lua-mode", + "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb", "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025", "deps": [] }, "ace-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-window.git", - "sha256": "0607ef26eef8f351173745fccf9dc0791797e72a563892b4dc0de757e56fac1e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6", "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae" }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -20590,14 +21969,15 @@ }, "ace-popup-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ace-popup-menu.git", - "sha256": "b38c602a7c718376ac55d607e1e2f49071eb40d432ec8626581313c5bf6e84cd", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ace-popup-menu", + "sha256": "061gi4w43dvdys2i0ffc3bnzhrkc83h5x2c43yv4fwb3xz0zn9h0", "rev": "eb8d0d938debdf89575d2ed204aeb7c0b52060b0" }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -20608,28 +21988,30 @@ }, "zoom-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-zoom-window.git", - "sha256": "529cca01315230346f1e4e4a818544c2f7eaef3b7a438cba089cc13c2c938cec", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-zoom-window", + "sha256": "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303", "rev": "d92dcf265170cf8ea0294d1aaf2e6025eda228e6" }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [] }, "ghc-imported-from": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", - "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "ghc-imported-from-el", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi", "rev": "fcff08628a19f5d26151564659218cc677779b79" }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20638,14 +22020,15 @@ }, "company-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/company-emoji.git", - "sha256": "89bd9629aa8d549711d274a9158df1b96b1848aac45db654dcc6a4ed55f5ca4c", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd", "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5" }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.0", "deps": [ @@ -20655,28 +22038,30 @@ }, "graphene-meta-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene-meta-theme.git", - "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene-meta-theme", + "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17", "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "e2wm-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-term.git", - "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", "rev": "65b5ac88043d5c4048920a048f3599904ca55981" }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -20693,21 +22078,22 @@ }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "x86-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/x86-lookup.git", - "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -20717,14 +22103,15 @@ }, "badwolf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "tag": "fetchFromGitHub", + "owner": "bkruczyk", + "repo": "badwolf-emacs", + "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j", "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -20733,14 +22120,15 @@ }, "rspec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pezra/rspec-mode.git", - "sha256": "d52d765c4b396436bfb9e133c34fcab50a99a033459e1315a333f8acff592358", + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp", "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb" }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.11", "deps": [ @@ -20750,14 +22138,15 @@ }, "mb-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/mb-url.git", - "sha256": "42e575014e3756a0328301cfb2dfb48e960d62942810df8205928178a5e08b64", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "mb-url", + "sha256": "1si2givpzihjb1szbcdm3iy9kkm7bj0hq10s0h2dfm8axdnlirm5", "rev": "34234214d1e62b9980cc64dac582e6771c92638d" }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -20766,42 +22155,45 @@ }, "shell-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/shell-toggle.el.git", - "sha256": "f8d40d6363946fd69d53d8a1567e3f8f7b415263467af9b7f48aae956d516a73", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "shell-toggle.el", + "sha256": "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q", "rev": "9820b0ad6f22c700759555aae8a454a7dc5a46b3" }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "idomenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/birkenfeld/idomenu.git", - "sha256": "8264c3b375e802f319cfcf7261deffd7f4dffdb8d2cb4a3c37678f6bf8251e2f", + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0", "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321" }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "goto-gem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/goto-gem.git", - "sha256": "a79f1941e3925dd8cefc66b6b762f04b50be8da3a88ac18756e2201fb23c18a1", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7", "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac" }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -20810,28 +22202,46 @@ }, "minibuffer-cua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-cua.el.git", - "sha256": "924fe22b5dfa26a4bd5a0efcd9d1285ac2d63e35557733429e635ccaafb0cb1e", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj", "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb" }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, + "clang-format": { + "fetch": { + "tag": "fetchsvn", + "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", + "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", + "rev": "256039" + }, + "recipe": { + "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "cl-lib" + ] + }, "yagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/yagist.el.git", - "sha256": "10ed1b028dc775e876754c32b92416b74b1c1380fa3b362124529ccd11422b51", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h", "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167" }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.12", "deps": [ @@ -20840,28 +22250,30 @@ }, "maxframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmm5t/maxframe.el.git", - "sha256": "1e20817a8f5fdfdcfb1e8abd30560b9e2f984669ff83db7d920959ca519beb21", + "tag": "fetchFromGitHub", + "owner": "rmm5t", + "repo": "maxframe.el", + "sha256": "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y", "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1" }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "company-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/company-irony.git", - "sha256": "9f25a2de3007af631a0d45d0be2a5dd4fdf04b5bcd0ebba3577468f69152babd", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz", "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d" }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -20873,14 +22285,15 @@ }, "easy-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/easy-kill.git", - "sha256": "35359ebb02fd6424042547ec66643b3b523f71c10d43a3fd295f452333b6a664", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "easy-kill", + "sha256": "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m", "rev": "e3b2442e2096cefff94ea8656e49af07fee58f47" }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -20890,42 +22303,45 @@ }, "dired-imenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/dired-imenu.git", - "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "dired-imenu", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid", "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "nix-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NixOS/nix.git", - "sha256": "acbc789f5aca62495c5f53bd4fb519fe41b1cf0517f9bca4f516e59060f2572c", + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "03kbdrar5w475qng4j7bbak5y6ipb7pgpxj3hblcn3pnvgh7whv6", "rev": "71a5161365f40699092e491bbff88473237fc432" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "angular-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/angular-snippets.el.git", - "sha256": "4a8050fb380c8fe2d1245276b86f3049e73286b24932e0f1827b595563043141", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a", "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d" }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -20935,14 +22351,15 @@ }, "emacsagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacsagist.git", - "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -20951,56 +22368,60 @@ }, "yafolding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/yafolding.el.git", - "sha256": "d1a8d0f5d9b527a3f97483c611a31f46d801badec6bc7e648ebad16aaa53f4e6", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i", "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388" }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "term-cmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-cmd.git", - "sha256": "2e00d60dfe2e0999c77f0739d22280150a88c79c5339512411c1f237004f291b", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51", "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4" }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "shell-split-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/shell-split-string-el.git", - "sha256": "e8d7b425c91d840384798cfe7b5626a1a2edcbd5fd675b8552096265ab18a505", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "shell-split-string-el", + "sha256": "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306", "rev": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb" }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "evil-visual-mark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-visual-mark-mode.git", - "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-visual-mark-mode", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz", "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -21010,14 +22431,15 @@ }, "package+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/package.git", - "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -21030,49 +22452,52 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rvm.el.git", - "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rvm.el", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm", "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.0", "deps": [] }, "isgd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/isgd.el.git", - "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "swift-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/swift-mode.git", - "sha256": "4d702c5eddb989254cf779c753d4e646e949d686c0e7cdfcb71e5d576be45609", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "swift-mode", + "sha256": "1fi5zdvplw7h5hnyi37k92c8s8qnjgizbnv1mah18y8d30n1r77n", "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a" }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -21081,14 +22506,15 @@ }, "logview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doublep/logview.git", - "sha256": "e8879cbfad63ab4707d951715d68ab76f97a55a612980930319cc306d62361da", + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s", "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa" }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -21103,21 +22529,22 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "narrow-reindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emallson/narrow-reindent.el.git", - "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -21126,14 +22553,15 @@ }, "epl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/epl.git", - "sha256": "f2f8994650b852285a09dce3ff9b65d3acd0c0b57766108e669c49721d3bb6a3", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr", "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837" }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -21142,14 +22570,15 @@ }, "paradox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/paradox.git", - "sha256": "838e99809dfdfd006927e2949ad5fd965cdf33f33c2de1d5d4e70abe7e280030", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "06c2a55bmnhfvjpd43kq6d2l9yijgiq16yq19x6m8050f8hzxnyb", "rev": "d62d883b8c980d679970bed79c12091df9120a77" }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.6", "deps": [ @@ -21164,14 +22593,15 @@ }, "ix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/ix.el.git", - "sha256": "eaa0ad3db29d0e79210d7e573683a113920fce9474ca46cb4ab4a1b46580fd66", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "ix.el", + "sha256": "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a", "rev": "498dac674f4f1910d39087b1457c5da5465a0614" }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -21180,14 +22610,15 @@ }, "req-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/req-package.git", - "sha256": "ece8ab206556d4c27045d9a9e5351af1a3782ae6daf3eceabcd26b46497bece7", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs", "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb" }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -21198,14 +22629,15 @@ }, "cmake-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alamaison/emacs-cmake-project.git", - "sha256": "b3af015dad9677d00245ec6e0ebc0f66b4b13c0b84db26edb653f6a784b7b483", + "tag": "fetchFromGitHub", + "owner": "alamaison", + "repo": "emacs-cmake-project", + "sha256": "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk", "rev": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f" }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] @@ -21219,21 +22651,22 @@ }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-time-budgets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/org-time-budgets.git", - "sha256": "86b8707d377d16c69dc7700a3665554ef1323592a1fd0372e9198be59c143c26", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46", "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b" }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -21243,14 +22676,15 @@ }, "fancy-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/fancy-narrow.git", - "sha256": "21e9872e1f435e6e1fc4c7acf88c8d075e9b3fc5a2a851aeee4587faa935ba81", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "fancy-narrow", + "sha256": "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91", "rev": "cd381c1acd5e0d9b6acd7f3e76c3b1de21e8b6df" }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] @@ -21263,7 +22697,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -21273,14 +22707,15 @@ }, "test-case-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/test-case-mode.git", - "sha256": "bd618ace09584d69e30fef55183008d153426aac52170227492ed2b2a7ff2b24", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f", "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec" }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -21289,14 +22724,15 @@ }, "fiplr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/fiplr.git", - "sha256": "9bb9875b2c8110ddcd9c21aef65ae8f88e71a9648d675980719da62c13626a6f", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07", "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24" }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -21305,14 +22741,15 @@ }, "rainbow-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/rainbow-blocks.git", - "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "rainbow-blocks", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c", "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -21325,7 +22762,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -21338,21 +22775,22 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ido-grid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larkery/ido-grid-mode.el.git", - "sha256": "8b8ac3b031fa3ddccbaece48689cdf7e9d4b1dc3362518bc602c2b402d333738", + "tag": "fetchFromGitHub", + "owner": "larkery", + "repo": "ido-grid-mode.el", + "sha256": "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb", "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab" }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.5", "deps": [ @@ -21361,14 +22799,15 @@ }, "company-sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -21381,14 +22820,15 @@ }, "kaesar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -21398,14 +22838,15 @@ }, "e2wm-pkgex4pl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", - "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-pkgex4pl", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d", "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -21415,14 +22856,15 @@ }, "org-linkany": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-linkany.git", - "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-linkany", + "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p", "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -21432,28 +22874,30 @@ }, "powershell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/powershell.el.git", - "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "underwater-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/underwater-theme.el.git", - "sha256": "125eafa3c23b23cee42764d051517500cecd46d2a4c1fd6817716041be6f34bc", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj", "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927" }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -21466,21 +22910,22 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "magit-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -21491,28 +22936,30 @@ }, "bbdb-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tohojo/bbdb-vcard.git", - "sha256": "f62474f3cf4e1657fb80ebdef0ed75893d60cbff3fff27035a2daa9525531a22", + "tag": "fetchFromGitHub", + "owner": "tohojo", + "repo": "bbdb-vcard", + "sha256": "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df", "rev": "9e11fafef1a94bc6395bd1eeacd00f94848ac560" }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "helm-hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-hayoo.git", - "sha256": "0d07855c576fd17d9adbdd3f3050df3cc4b25132a618541dc09236e001625c41", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp", "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664" }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -21529,35 +22976,37 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gnome-calendar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", - "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "evil-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edwtjo/evil-org-mode.git", - "sha256": "675e87b22f0ae0c3611c000808563ed46077046f007f144e9e81249613bc8026", + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7", "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9" }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21567,14 +23016,15 @@ }, "modalka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/modalka.git", - "sha256": "4f6463d8db0cbf332b8acc16a461a605b041f30296782fbe0d651f0fbfa448f0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "1pgr1zlp26c7xy77qfvjfmv5i2j1c45xp59x83k8nllyhckxyqn6", "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3" }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21583,14 +23033,15 @@ }, "subshell-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrewmains12/subshell-proc.git", - "sha256": "ae1f2c78b2c628f3480a80bb534a1cb4bdf0f516aee208866b622862b748a857", + "tag": "fetchFromGitHub", + "owner": "andrewmains12", + "repo": "subshell-proc", + "sha256": "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf", "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b" }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -21603,21 +23054,22 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "phi-search-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/phi-search-mc.el.git", - "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "phi-search-mc.el", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv", "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.1", "deps": [ @@ -21627,42 +23079,45 @@ }, "bury-successful-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/bury-successful-compilation.git", - "sha256": "dc476a3cbce544b2146a265560d53dcea251d9e19a7f20a89a4c4ac1e3580a0e", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "bury-successful-compilation", + "sha256": "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw", "rev": "ca58a5df0aa3f266a8df0e3e5d3d962c086be0a9" }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "html-to-markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/html-to-markdown.git", - "sha256": "da321b02f003277a25dc90c4d20ad8967dd1bfb7267f6353c759f25f6843c430", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns", "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199" }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [] }, "srefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-refactor.git", - "sha256": "2c931ef7fcc4afc2b1220465d2932e64ce6aef2bc325129e702b23381fa2a873", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc", "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f" }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -21671,14 +23126,15 @@ }, "wacspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/wacspace.el.git", - "sha256": "83ddb67e606e103356d8df08df8e9653b5e9d59235efba14ad19cf8c8a9492f7", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd", "rev": "b951995c204ff23699d2bda515a96221147a725d" }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -21688,14 +23144,15 @@ }, "helm-pages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-pages.git", - "sha256": "52a1e29e2d1eea8df36d04ce5c0639d8299a00c68a2aa06195f9938253fc5ed9", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-pages", + "sha256": "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf", "rev": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e" }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21706,14 +23163,15 @@ }, "php-auto-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-auto-yasnippets.git", - "sha256": "86624c94b77fd9d672fd17ea6ffe514a0341f8438dc5c0de0fddf419020a417f", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-auto-yasnippets", + "sha256": "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6", "rev": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf" }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -21729,21 +23187,22 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-ls-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-git.git", - "sha256": "e3aa5dbd1ed838f8fbb52ee43b3aef767cbb486a73adda2cfcf99f9bcb0e6d90", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-git", + "sha256": "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf", "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2" }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.8.0", "deps": [ @@ -21752,42 +23211,45 @@ }, "hl-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/hl-todo.git", - "sha256": "b83b44813262ed7a5976a7aa96a1f5af48a72c0d71b1daa3fecd9174dee5391e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq", "rev": "878220c111add155b9ee1aeb3d3475cc5e488525" }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.5", "deps": [] }, "cython-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cython/cython.git", - "sha256": "76a34abcc29b2cdfb377f36fa550ce7ec678a729ff1b28d8e4e7e92eb642d48d", + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq", "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0" }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.23.4", "deps": [] }, "cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "235fe476a251fcaec6b1e363c27a98ecd9976dcfcbbe1d911c3c5bde6c4f62bf", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "1bcmqbqc5p4m31rximdpzwlrv2nann5mkbfxiba2xm7fgl2iym64", "rev": "7cc4a192323ef0911c150e6150d3bbd319253342" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [ @@ -21807,7 +23269,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -21820,21 +23282,22 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-slime.git", - "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -21845,14 +23308,15 @@ }, "fastnav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gleber/fastnav.el.git", - "sha256": "cbf0e87027006fde039286dbe5be2e6bc05cc957727991d1b75bd9d2bc11947a", + "tag": "fetchFromGitHub", + "owner": "gleber", + "repo": "fastnav.el", + "sha256": "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1", "rev": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1" }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.7", "deps": [] @@ -21865,35 +23329,37 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "traad-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "el-init-viewer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init-viewer.git", - "sha256": "f181a535e9c34ea1d000ef84444d17e9eb7a72523860a54323c45da14822b7f2", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l", "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5" }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -21907,14 +23373,15 @@ }, "gist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/gist.el.git", - "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "gist.el", + "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8", "rev": "144280f5353bceb902d5278fa64078337e99fa4d" }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -21924,14 +23391,15 @@ }, "clojure-mode-extra-font-locking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53", "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.0.1", "deps": [ @@ -21940,28 +23408,30 @@ }, "ggo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/ggo-mode.git", - "sha256": "ff073c756976e25246e3698260552e4225d58735c57aecac32eead73715239d5", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "ggo-mode", + "sha256": "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz", "rev": "ea5097f87072309c7b77204888d459d084bf630f" }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130521", "deps": [] }, "clojure-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", - "sha256": "70610f4067e1bb3f5b2d8e14a638a0d3f2f88699850cdb38f0067411a0010c5a", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx", "rev": "f8db406b7b13a580c142d08865c9a03c101235fa" }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -21971,14 +23441,15 @@ }, "org-gnome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/org-gnome.el.git", - "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "org-gnome.el", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1", "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -21989,14 +23460,15 @@ }, "osx-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/osx-dictionary.el.git", - "sha256": "7b77e62a818833d7a3cdd516c993ba8ed7bdd7ea0f3e820949b17988f8c7dcef", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "osx-dictionary.el", + "sha256": "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv", "rev": "b909e38723caa37157ad6be90ac107c1c7102e07" }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -22006,14 +23478,15 @@ }, "zzz-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/zzz-to-char.git", - "sha256": "72e4ea3baaa2f5f29a3780d1e301faecdda8691e5b359c734663d194f423b670", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "zzz-to-char", + "sha256": "1hif9jrp4w7xvca0a4qm29scpkwhf5n61c4i5x8n5p7gbwjhh98q", "rev": "82dc3382e58091ae32160a91e8c781b813faf856" }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -22024,14 +23497,15 @@ }, "pass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/pass.git", - "sha256": "5848c7b1eaca4a08c28859acbd04785f0ed0809fe4b1968f02a38eaf26bb7a68", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "pass", + "sha256": "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj", "rev": "93d99883a95e70f931d2abad87e697f5243115d3" }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -22042,14 +23516,15 @@ }, "request": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -22063,21 +23538,22 @@ }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "sphinx-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naiquevin/sphinx-doc.el.git", - "sha256": "4feff4aaaf956ac45e63534e9948778cf60508afd9c7139e5f9feffe5132a3fe", + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c", "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666" }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -22087,14 +23563,15 @@ }, "evil-smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/evil-smartparens.git", - "sha256": "441faf9df12c2ed062fbd39b3b318599088c9943161d46b1a6373e08d528529a", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "evil-smartparens", + "sha256": "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415", "rev": "12521212b8e4a02cbec733882bb89c6fac37301f" }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -22106,42 +23583,45 @@ }, "org-protocol-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vonavi/org-protocol-jekyll.git", - "sha256": "3e2718635958f26ff64bac708921fa35c2d667bd2e9ebb640477e75292fcb2b3", + "tag": "fetchFromGitHub", + "owner": "vonavi", + "repo": "org-protocol-jekyll", + "sha256": "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry", "rev": "c1ac46793eb9bf22b1a601e841947428be5c9766" }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "autodisass-llvm-bitcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", - "sha256": "1821eaaa3f6ccff93fea6692df48090142951452bd7cfb6efc3269a139225dfe", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-llvm-bitcode", + "sha256": "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85", "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0" }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "sourcemap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sourcemap.git", - "sha256": "b11a36528c0f01ccf8561aa73c386f17c8e59fbaa76bc8b1089fceac7fff3a29", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d", "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9" }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -22151,14 +23631,15 @@ }, "json-snatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sterlingg/json-snatcher.git", - "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "tag": "fetchFromGitHub", + "owner": "Sterlingg", + "repo": "json-snatcher", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw", "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -22173,21 +23654,22 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-link-travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-link-travis.git", - "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-link-travis", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8", "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -22196,28 +23678,30 @@ }, "cryptol-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thoughtpolice/cryptol-mode.git", - "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "company-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -22229,14 +23713,15 @@ }, "literate-coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", - "sha256": "2c388ff418ba113bc02f45c5ff7c2e45692dacbfe45688d21e0cf7e123e1d5bc", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-literate-coffee-mode", + "sha256": "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8", "rev": "39fe3bfa1f68a7b8b91160875589219b214a2cd6" }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.04", "deps": [ From c39058852e2231c0bd6abe0d751e0c51ae301587 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 17:08:39 -0600 Subject: [PATCH 379/707] elpa-packages 2015-12-18 --- pkgs/applications/editors/emacs-modes/elpa-packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index 9e78fb7c1ca..a3813435f63 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json @@ -734,10 +734,10 @@ "ggtags": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/ggtags-0.8.10.el", - "sha256": "0bigf87idd2rh40akyjiy1qvym6y3hvvx6khyb233b231s400aj9" + "url": "http://elpa.gnu.org/packages/ggtags-0.8.11.el", + "sha256": "1q2bp2b7lylf7n6c1psfn5swyjg0y78ykm0ak2kd84pbyhqak2mq" }, - "version": "0.8.10", + "version": "0.8.11", "deps": [ "cl-lib", "emacs" From b72161608a20419199ea6a555ce762489fe19cbd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:08:02 -0600 Subject: [PATCH 380/707] melpa-packages: include fetchFromGitHub --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index d94a34cd2de..c75717f408d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,13 +23,13 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From be568d55da5d847985d2895a29f3227bd4a19018 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:08:17 -0600 Subject: [PATCH 381/707] melpa-stable-packages: include fetchFromGitHub --- .../editors/emacs-modes/melpa-stable-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index d65ce4db80e..8a8b7d4eb19 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,13 +25,13 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From ecc50e9285ec0246bb9c5305114dd88324316199 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:19:49 -0600 Subject: [PATCH 382/707] melpa-packages: use fetchFromGitLab --- .../editors/emacs-modes/melpa-packages.json | 74 +++++++++++-------- .../editors/emacs-modes/melpa-packages.nix | 5 +- 2 files changed, 45 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index c5d8fe80a2a..39e720553ca 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -8526,16 +8526,17 @@ }, "python-mode": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/python-mode-devs/python-mode.git", - "sha256": "2c17d1a6cdff6a910fe868c46924cc37e88d776db28b673d23450c77eeab9316", - "rev": "0740af7b7fff37eb0fe74f9221f8eb3b3f09e5b0" + "tag": "fetchFromGitLab", + "owner": "python-mode-devs", + "repo": "python-mode", + "sha256": "1204804m31kfsb0vlfm6ndvxs16maqpghw96s8wmvyg16s8vnczj", + "rev": "c6dd413218221a0b7c85d12b6733229fac8f7788" }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151218.630", + "version": "20151219.555", "deps": [] }, "ob-sml": { @@ -10767,9 +10768,10 @@ }, "bbdb-csv-import": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/iankelling/bbdb-csv-import.git", - "sha256": "34248f4f6ec5afeb8960cb563c5487fa7fa78099d7bb5f7896ffb7b1788a3bc1", + "tag": "fetchFromGitLab", + "owner": "iankelling", + "repo": "bbdb-csv-import", + "sha256": "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l", "rev": "7739d10ebe1787a72aa74085e9baedd0f4988b00" }, "recipe": { @@ -11821,9 +11823,10 @@ }, "git-commit-insert-issue": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/emacs-stuff/git-commit-insert-issue.git", - "sha256": "e17279ceedb59f98913c2425d2842af952723d7ee79ea277d7ad22cd4046be2b", + "tag": "fetchFromGitLab", + "owner": "emacs-stuff", + "repo": "git-commit-insert-issue", + "sha256": "0axy8r0cs8mdsxvs57p7gqyp4lpr5a2d49947j8ri7xmxp77jwp1", "rev": "1bdfd1960bc279ca830e034a6708b25493b3f460" }, "recipe": { @@ -11927,9 +11930,10 @@ }, "org-if": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/org-if.git", - "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" }, "recipe": { @@ -15318,9 +15322,10 @@ }, "totd": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/egh/emacs-totd.git", - "sha256": "e2234b4c1f04d87beffdb1c6479be478c26e34aaeef44b8d1588a8a5a37ee157", + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "emacs-totd", + "sha256": "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g", "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660" }, "recipe": { @@ -19328,9 +19333,10 @@ }, "visible-mark": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/iankelling/visible-mark.git", - "sha256": "cf1745da4f5fc3b4104e73bc7a2c961a80328a8ed7de3691b9672ce1d7a2909c", + "tag": "fetchFromGitLab", + "owner": "iankelling", + "repo": "visible-mark", + "sha256": "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv", "rev": "c1852e13b6b61982738b56977a452ec9026faf1b" }, "recipe": { @@ -21433,9 +21439,10 @@ }, "punctuality-logger": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/punctuality-logger.git", - "sha256": "d8f8e1bc61f21b3217ac92c532925a626997d49053521a77e400f8a7847e73ae", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q", "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0" }, "recipe": { @@ -27740,9 +27747,10 @@ }, "majapahit-theme": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/franksn/majapahit-theme.git", - "sha256": "ab910e3f9ddaec984d05be53cf4f4a593e67d95fbe90705d9fa708ca41377c45", + "tag": "fetchFromGitLab", + "owner": "franksn", + "repo": "majapahit-theme", + "sha256": "0ibw6x0wl257kxfp145ybzcnfgjr997wylxy0m6riv6sklzhx4db", "rev": "09a038826ef00b82684e569eaca07ceff7228219" }, "recipe": { @@ -31688,9 +31696,10 @@ }, "sexp-move": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/sexp-move.git", - "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", "rev": "117f7a91ab7c25e438413753e916570122011ce7" }, "recipe": { @@ -33313,9 +33322,10 @@ }, "zotxt": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/egh/zotxt-emacs.git", - "sha256": "f47b0203b523bb56da6cec85af00db38f33d783c0e996c60e164eba7a37ebd04", + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "zotxt-emacs", + "sha256": "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl", "rev": "3809f0932660c09910639eaecb3d0a8e784420b3" }, "recipe": { diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index c75717f408d..af5a2c220c5 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,13 +23,14 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From fbc345fd69a512388bdf5428f2706891cf41ed46 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:20:17 -0600 Subject: [PATCH 383/707] melpa-stable-packages: use fetchFromGitLab --- .../emacs-modes/melpa-stable-packages.json | 21 +++++++++++-------- .../emacs-modes/melpa-stable-packages.nix | 5 +++-- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index 50e11182e44..bc8c2fd0b0d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -6195,9 +6195,10 @@ }, "org-if": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/org-if.git", - "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" }, "recipe": { @@ -11066,9 +11067,10 @@ }, "punctuality-logger": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/punctuality-logger.git", - "sha256": "fea22e9fc260da054ab2c081a709ad6b6d63b06391e935bc5f3c671ccf8888ec", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py", "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714" }, "recipe": { @@ -16040,9 +16042,10 @@ }, "sexp-move": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/sexp-move.git", - "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", "rev": "117f7a91ab7c25e438413753e916570122011ce7" }, "recipe": { diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 8a8b7d4eb19..ce5bfe6f7d6 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,13 +25,14 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:44:21 -0600 Subject: [PATCH 384/707] melpa-packages: fix evaluation error --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index af5a2c220c5..b39e3d04127 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -24,13 +24,14 @@ let mkPackage = self: name: recipe: let drv = { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg }: + , fetchgit, fetchhg, fetchsvn }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 752e4095ecf07e5aeb077ccbee39587f3a3d1b22 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:44:55 -0600 Subject: [PATCH 385/707] melpa-stable-packages: fix evaluation error --- .../editors/emacs-modes/melpa-stable-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index ce5bfe6f7d6..ce9dc42554e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -26,13 +26,14 @@ let mkPackage = self: name: recipe: let drv = { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg }: + , fetchgit, fetchhg, fetchsvn }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 3fbd697b24fd869addb2cc5660c77f6ea0d2a5ee Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:49:23 -0600 Subject: [PATCH 386/707] melpa-packages: fix evaluation error --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index b39e3d04127..43d48d0d298 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,15 +23,15 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg, fetchsvn }: + { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg, fetchsvn, fetchurl }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg - fetchsvn; + inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn fetchurl; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 274678b38cee731d19a1d33d2581a84f3830d1ef Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:49:57 -0600 Subject: [PATCH 387/707] melpa-stable-packages: fix evaluation error --- .../editors/emacs-modes/melpa-stable-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index ce9dc42554e..aa940016b5e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,15 +25,15 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg, fetchsvn }: + { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg, fetchsvn, fetchurl }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg - fetchsvn; + inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn fetchurl; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 53a3294e956fbb91c884e0dfe43ee749b23334c3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 19 Dec 2015 02:07:09 +0100 Subject: [PATCH 388/707] pkgs.slurm-llnl-full: Add full variant of slurm-llnl Add a variant of slurm-llnl that includes sview (based on gtk). pkgs.slurm-llnl also gains the ncurses-based smap tool. --- pkgs/servers/computing/slurm/default.nix | 15 +++++++-------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index 5e55724a290..6df27eaf328 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -1,6 +1,5 @@ -{ stdenv, fetchurl, python, munge, perl, pam, openssl, mysql }: - -#TODO: add sview support based on gtk2 +{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl, + ncurses, mysql, gtk }: stdenv.mkDerivation rec { name = "slurm-llnl-${version}"; @@ -11,12 +10,12 @@ stdenv.mkDerivation rec { sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1"; }; - buildInputs = [ python munge perl pam openssl mysql.lib ]; + buildInputs = [ pkgconfig curl python munge perl pam openssl mysql.lib ncurses gtk ]; - configureFlags = '' - --with-munge=${munge} - --with-ssl=${openssl} - ''; + configureFlags = + [ "--with-munge=${munge}" + "--with-ssl=${openssl}" + ] ++ stdenv.lib.optional (gtk == null) "--disable-gtktest"; preConfigure = '' substituteInPlace ./doc/html/shtml2html.py --replace "/usr/bin/env python" "${python.interpreter}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8781b13329..1c6350d3e5f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9556,7 +9556,9 @@ let storm = callPackage ../servers/computing/storm { }; - slurm-llnl = callPackage ../servers/computing/slurm { }; + slurm-llnl = callPackage ../servers/computing/slurm { gtk = null; }; + + slurm-llnl-full = appendToName "full" (callPackage ../servers/computing/slurm { }); tomcat5 = callPackage ../servers/http/tomcat/5.0.nix { }; From 563ea391e94410dd9681a5ccc3dd594c1a19f263 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 16:33:50 +0000 Subject: [PATCH 389/707] mediainfo: 0.7.79 -> 0.7.80 --- pkgs/applications/misc/mediainfo-gui/default.nix | 4 ++-- pkgs/applications/misc/mediainfo/default.nix | 12 ++++++------ pkgs/development/libraries/libmediainfo/default.nix | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index a7dfac1eb0d..9bed20c0c73 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 560e0ef1433..b45bee56de0 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; @@ -15,15 +15,15 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-libmediainfo=${libmediainfo}" ]; preConfigure = "sh autogen.sh"; - meta = { + meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file"; longDescription = '' MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. ''; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index d9619fd2712..5fbc6bb1dbf 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0lanhx1zg7s36wgi9ndv4zz7dbhkqz4dc99mva6x9rcj2p5p8c6d"; + sha256 = "0v9px37qx0dkx67gqwi1rd9x4m7zm1ml8sdj5fx0isj6qymbd1z5"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; From d3d39376a21dc668749b54606d15b7090e077430 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Mon, 14 Dec 2015 17:17:35 +0100 Subject: [PATCH 390/707] dropbox: 3.12.4 -> 3.12.5 --- pkgs/applications/networking/dropbox/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 69ebdb429ff..6b3034424f5 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -20,11 +20,11 @@ let # NOTE: When updating, please also update in current stable, as older versions stop working - version = "3.12.4"; + version = "3.12.5"; sha256 = { - "x86_64-linux" = "0xq5gjqmrl4fn6vp7krj44jhb71npxvsjzbqb01whyyw7mdlc8gf"; - "i686-linux" = "093bfnak5xv50p9fxpr68w25hc1d08fcvrqnb4a6nb9wdfv3lkr6"; + "x86_64-linux" = "1agy20b8vrvdfyzjf7wr2z6vradvvg49wn31vzrl38f0m1l3gb7s"; + "i686-linux" = "0a68m2i5lyyadf12g82rvzryw9b1v6sfq5szx94jsc4qhyl7mcaj"; }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); arch = From 3b9619e8042bdb18eb2881dbe905ac1520b2faf0 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Thu, 17 Dec 2015 14:04:37 +0100 Subject: [PATCH 391/707] wine: 1.8-rc3 -> 1.8-rc4 --- pkgs/misc/emulators/wine/versions.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index bfdbd0177da..971baee0fec 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,7 +1,7 @@ { unstable = { - wineVersion = "1.8-rc3"; - wineSha256 = "0j65v0jr1z56p9g16c0412ssx44zif8gfna7a6m865wz8gs1fnm6"; + wineVersion = "1.8-rc4"; + wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; geckoVersion = "2.40"; geckoSha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s"; gecko64Version = "2.40"; @@ -20,8 +20,8 @@ monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; staging = { - version = "1.8-rc3"; - sha256 = "1jp91w4sn10ycd21rwqsgxmpr425r4in4d2g085dhiw6g57ixfnj"; + version = "1.8-rc4"; + sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; }; winetricks = { version = "20151116"; From 016e88b2d2497a9e237c986eeaaff84f894a6859 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 17:37:37 +0000 Subject: [PATCH 392/707] git: 2.6.3 -> 2.6.4 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index d060acef53e..84b033f981f 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.6.3"; + version = "2.6.4"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "18vxb5fmwmrps504m23a4xdl29m7ibca3hmz0mn9jc38sz9y95yn"; + sha256 = "0rnlbp7l4ggq3lk96v24rzw7qqawp6477i3b4m0b5q3346ap008w"; }; patches = [ From 8b890cac072b08540c9434b9d3a2f83d180e8757 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 11:56:50 -0600 Subject: [PATCH 393/707] qt55.qtbase: manage patches with quilt --- .../qt-5/5.5/qtbase/0002-dlopen-resolv.patch | 39 ------ .../qt-5/5.5/qtbase/0003-dlopen-gl.patch | 25 ---- .../5.5/qtbase/0005-dlopen-libXcursor.patch | 29 ----- .../qt-5/5.5/qtbase/0007-dlopen-dbus.patch | 25 ---- .../5.5/qtbase/0009-decrypt-ssl-traffic.patch | 25 ---- .../qt-5/5.5/qtbase/0010-mkspecs-libgl.patch | 27 ---- .../qt-5/5.5/qtbase/decrypt-ssl-traffic.patch | 13 ++ .../libraries/qt-5/5.5/qtbase/default.nix | 115 +++++++++--------- .../qt-5/5.5/qtbase/dlopen-dbus.patch | 13 ++ .../libraries/qt-5/5.5/qtbase/dlopen-gl.patch | 13 ++ ...n-gtkstyle.patch => dlopen-gtkstyle.patch} | 35 ++---- .../qt-5/5.5/qtbase/dlopen-libXcursor.patch | 17 +++ ...pen-openssl.patch => dlopen-openssl.patch} | 24 +--- .../qt-5/5.5/qtbase/dlopen-resolv.patch | 26 ++++ .../qt-5/5.5/qtbase/mkspecs-libgl.patch | 15 +++ ...patch => nix-profiles-library-paths.patch} | 22 +--- .../libraries/qt-5/5.5/qtbase/series | 7 ++ .../qtbase/{0004-tzdir.patch => tzdir.patch} | 24 +--- ...onfig-dirs.patch => xdg-config-dirs.patch} | 31 ++--- 19 files changed, 196 insertions(+), 329 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0001-dlopen-gtkstyle.patch => dlopen-gtkstyle.patch} (73%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0006-dlopen-openssl.patch => dlopen-openssl.patch} (66%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0011-nix-profiles-library-paths.patch => nix-profiles-library-paths.patch} (57%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/series rename pkgs/development/libraries/qt-5/5.5/qtbase/{0004-tzdir.patch => tzdir.patch} (68%) rename pkgs/development/libraries/qt-5/5.5/qtbase/{0008-xdg-config-dirs.patch => xdg-config-dirs.patch} (64%) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch deleted file mode 100644 index ce768fec80c..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 51ae02d8c9de1cb93bf22b2519efb119dd2e39d9 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:55 -0600 -Subject: [PATCH 02/11] dlopen-resolv - ---- - qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +- - qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp -index fa782da..912ecc7 100644 ---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp -@@ -79,7 +79,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); - if (!lib.load()) - return; - } -diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp -index 90a6f76..758407a 100644 ---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp -@@ -95,7 +95,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); - if (!lib.load()) - return; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch deleted file mode 100644 index 0f8bd78aa32..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch +++ /dev/null @@ -1,25 +0,0 @@ -From d1f7bf62e4bab26df5deea37f08cfdd278cca47c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:08 -0600 -Subject: [PATCH 03/11] dlopen-gl - ---- - .../plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -index 5166372..bdeb69a 100644 ---- a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -+++ b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -@@ -560,7 +560,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) () - { - extern const QString qt_gl_library_name(); - // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); - glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); - } - } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch deleted file mode 100644 index 61c9b9846f5..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 9fbdfd6c1231ee4778acc9a2edf297cf4b9314ac Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:33:51 -0600 -Subject: [PATCH 05/11] dlopen-libXcursor - ---- - qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -index e51ab85..7ec4b0b 100644 ---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) - #ifdef XCB_USE_XLIB - static bool function_ptrs_not_initialized = true; - if (function_ptrs_not_initialized) { -- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); -+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); - bool xcursorFound = xcursorLib.load(); - if (!xcursorFound) { // try without the version number -- xcursorLib.setFileName(QLatin1String("Xcursor")); -+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); - xcursorFound = xcursorLib.load(); - } - if (xcursorFound) { --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch deleted file mode 100644 index dcd5855e824..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch +++ /dev/null @@ -1,25 +0,0 @@ -From d060d32d8df3e320a12567ebdfc2c1d01c648168 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:27 -0500 -Subject: [PATCH 07/11] dlopen dbus - ---- - qtbase/src/dbus/qdbus_symbols.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp -index b82d92b..f72c9cb 100644 ---- a/qtbase/src/dbus/qdbus_symbols.cpp -+++ b/qtbase/src/dbus/qdbus_symbols.cpp -@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() - #ifdef Q_OS_WIN - QLatin1String("dbus-1"), - #endif -- QLatin1String("libdbus-1") -+ QLatin1String("@dbus_libs@/lib/libdbus-1") - }; - - lib->unload(); --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch deleted file mode 100644 index 1d7202924cd..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 44378743aa6ca21eb61de93476daa8356081c0fc Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:53:42 -0500 -Subject: [PATCH 09/11] decrypt ssl traffic - ---- - qtbase/src/network/ssl/qsslsocket_openssl.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -index 049666b..e8342ab 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -@@ -48,7 +48,7 @@ - ****************************************************************************/ - - //#define QSSLSOCKET_DEBUG --//#define QT_DECRYPT_SSL_TRAFFIC -+#define QT_DECRYPT_SSL_TRAFFIC - - #include "qssl_p.h" - #include "qsslsocket_openssl_p.h" --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch deleted file mode 100644 index 0f418e600f1..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5113406661f06afa01da48ebc0567a4d0f69051c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:12:46 -0500 -Subject: [PATCH 10/11] mkspecs libgl - ---- - qtbase/mkspecs/common/linux.conf | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/mkspecs/common/linux.conf b/qtbase/mkspecs/common/linux.conf -index 8d6fb6f..0ff9181 100644 ---- a/qtbase/mkspecs/common/linux.conf -+++ b/qtbase/mkspecs/common/linux.conf -@@ -12,8 +12,8 @@ QMAKE_INCDIR = - QMAKE_LIBDIR = - QMAKE_INCDIR_X11 = - QMAKE_LIBDIR_X11 = --QMAKE_INCDIR_OPENGL = --QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib - QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL - QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL - QMAKE_INCDIR_EGL = --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch new file mode 100644 index 00000000000..2cb3f7dfa70 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp +@@ -48,7 +48,7 @@ + ****************************************************************************/ + + //#define QSSLSOCKET_DEBUG +-//#define QT_DECRYPT_SSL_TRAFFIC ++#define QT_DECRYPT_SSL_TRAFFIC + + #include "qssl_p.h" + #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7c48c4571d9..3bbbefefa3c 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, substituteAll, makeWrapper +{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper , srcs , xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi @@ -23,11 +23,9 @@ , decryptSslTraffic ? false }: -with stdenv.lib; - let inherit (srcs.qt5) version; - system-x86_64 = elem stdenv.system platforms.x86_64; + system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; in stdenv.mkDerivation { @@ -54,47 +52,44 @@ stdenv.mkDerivation { ''; patches = - let dlopen-gtkstyle = substituteAll { - src = ./0001-dlopen-gtkstyle.patch; - # substituteAll ignores env vars starting with capital letter - gconf = GConf; - inherit gnome_vfs libgnomeui gtk; - }; - dlopen-resolv = substituteAll { - src = ./0002-dlopen-resolv.patch; - glibc = stdenv.cc.libc; - }; - dlopen-gl = substituteAll { - src = ./0003-dlopen-gl.patch; - openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path"; - }; - tzdir = ./0004-tzdir.patch; - dlopen-libXcursor = substituteAll { - src = ./0005-dlopen-libXcursor.patch; - inherit libXcursor; - }; - dlopen-openssl = substituteAll { - src = ./0006-dlopen-openssl.patch; - inherit openssl; - }; - dlopen-dbus = substituteAll { - src = ./0007-dlopen-dbus.patch; - dbus_libs = dbus; - }; - xdg-config-dirs = ./0008-xdg-config-dirs.patch; - decrypt-ssl-traffic = ./0009-decrypt-ssl-traffic.patch; - mkspecs-libgl = substituteAll { - src = ./0010-mkspecs-libgl.patch; - inherit mesa; - }; - nix-profiles-library-paths = ./0011-nix-profiles-library-paths.patch; - in [ - dlopen-resolv dlopen-gl tzdir dlopen-libXcursor dlopen-openssl - dlopen-dbus xdg-config-dirs nix-profiles-library-paths - ] - ++ optional gtkStyle dlopen-gtkstyle - ++ optional decryptSslTraffic decrypt-ssl-traffic - ++ optional mesaSupported mkspecs-libgl; + copyPathsToStore (lib.readPathsFromFile ./. ./series) + ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch + ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch + ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; + + inherit decryptSslTraffic gtkStyle mesaSupported; + + postPatch = '' + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" + + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" + + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" + + if [[ -n "$gtkStyle" ]]; then + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + fi + + if [[ -n "$mesaSupported" ]]; then + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@openglDriver@" "${mesa.driverLink}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + fi + ''; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" @@ -121,7 +116,7 @@ stdenv.mkDerivation { -release -shared -c++11 - ${optionalString developerBuild "-developer-build"} + ${lib.optionalString developerBuild "-developer-build"} -largefile -accessibility -rpath @@ -142,15 +137,15 @@ stdenv.mkDerivation { -glib -xcb -qpa xcb - -${optionalString (cups == null) "no-"}cups - -${optionalString (!gtkStyle) "no-"}gtkstyle + -${lib.optionalString (cups == null) "no-"}cups + -${lib.optionalString (!gtkStyle) "no-"}gtkstyle -no-eglfs -no-directfb -no-linuxfb -no-kms - ${optionalString (!system-x86_64) "-no-sse2"} + ${lib.optionalString (!system-x86_64) "-no-sse2"} -no-sse3 -no-ssse3 -no-sse4.1 @@ -174,14 +169,14 @@ stdenv.mkDerivation { -make libs -make tools - -${optionalString (buildExamples == false) "no"}make examples - -${optionalString (buildTests == false) "no"}make tests + -${lib.optionalString (buildExamples == false) "no"}make examples + -${lib.optionalString (buildTests == false) "no"}make tests ''; # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag # if dependency paths contain the string "pq", which can occur in the hash. # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; propagatedBuildInputs = [ xlibs.libXcomposite libX11 libxcb libXext libXrender libXi @@ -191,15 +186,15 @@ stdenv.mkDerivation { ] # Qt doesn't directly need GLU (just GL), but many apps use, it's small and # doesn't remain a runtime-dep if not used - ++ optionals mesaSupported [ mesa mesa_glu ] - ++ optional (cups != null) cups - ++ optional (mysql != null) mysql.lib - ++ optional (postgresql != null) postgresql - ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + ++ lib.optionals mesaSupported [ mesa mesa_glu ] + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; buildInputs = [ bison flex gperf ruby ] - ++ optional developerBuild gdb; + ++ lib.optional developerBuild gdb; nativeBuildInputs = [ python perl pkgconfig ]; @@ -210,7 +205,7 @@ stdenv.mkDerivation { postInstall = '' - ${optionalString buildDocs '' + ${lib.optionalString buildDocs '' make docs && make install_docs ''} @@ -223,7 +218,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = http://qt-project.org; description = "A cross-platform application framework for C++"; license = "GPL/LGPL"; diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch new file mode 100644 index 00000000000..401cfd5c295 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/dbus/qdbus_symbols.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() + #ifdef Q_OS_WIN + QLatin1String("dbus-1"), + #endif +- QLatin1String("libdbus-1") ++ QLatin1String("@dbus_libs@/lib/libdbus-1") + }; + + lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch new file mode 100644 index 00000000000..8e25a12b069 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +@@ -563,7 +563,7 @@ void (*QGLXContext::getProcAddress(const + { + extern const QString qt_gl_library_name(); + // QLibrary lib(qt_gl_library_name()); +- QLibrary lib(QLatin1String("GL")); ++ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); + glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); + } + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch similarity index 73% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch index a4211378b90..ad1719c46e2 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch @@ -1,17 +1,7 @@ -From 5334f7d5d3e7be31ea25c3553dfb60f283a14669 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:21:58 -0600 -Subject: [PATCH 01/11] dlopen-gtkstyle - ---- - qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +- - qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp -index 489d456..c38e986 100644 ---- a/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtk2painter.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp @@ -96,7 +96,7 @@ static void initGtk() static bool initialized = false; if (!initialized) { @@ -21,11 +11,11 @@ index 489d456..c38e986 100644 QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -index 0e119a1..ad6caa1 100644 ---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus) +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus void QGtkStylePrivate::resolveGtk() const { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -34,7 +24,7 @@ index 0e119a1..ad6caa1 100644 gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); -@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() const +@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() cons pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); @@ -45,7 +35,7 @@ index 0e119a1..ad6caa1 100644 } /* \internal -@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets() +@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets static bool resolveGConf() { if (!QGtkStylePrivate::gconf_client_get_default) { @@ -58,6 +48,3 @@ index 0e119a1..ad6caa1 100644 } return (QGtkStylePrivate::gconf_client_get_default !=0); } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch new file mode 100644 index 00000000000..e66ce1676d3 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c + #ifdef XCB_USE_XLIB + static bool function_ptrs_not_initialized = true; + if (function_ptrs_not_initialized) { +- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); ++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); + bool xcursorFound = xcursorLib.load(); + if (!xcursorFound) { // try without the version number +- xcursorLib.setFileName(QLatin1String("Xcursor")); ++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); + xcursorFound = xcursorLib.load(); + } + if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch similarity index 66% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch index ad48133d93f..1cc6fac583b 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch @@ -1,17 +1,8 @@ -From 2d7e4e21291238e2b41d0e173f918cd3530c8ade Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:04 -0500 -Subject: [PATCH 06/11] dlopen openssl - ---- - qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -index e2700df..a7ccf88 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -640,8 +640,8 @@ static QPair loadOpenSsl() +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +@@ -640,8 +640,8 @@ static QPair loadO #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so // first attempt: the canonical name is libssl.so. @@ -22,7 +13,7 @@ index e2700df..a7ccf88 100644 if (libcrypto->load() && libssl->load()) { // libssl.so. and libcrypto.so. found return pair; -@@ -658,8 +658,8 @@ static QPair loadOpenSsl() +@@ -658,8 +658,8 @@ static QPair loadO // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third // attempt, _after_ /Contents/Frameworks has been searched. // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. @@ -33,6 +24,3 @@ index e2700df..a7ccf88 100644 if (libcrypto->load() && libssl->load()) { // libssl.so.0 and libcrypto.so.0 found return pair; --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch new file mode 100644 index 00000000000..a79c806462f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +@@ -79,7 +79,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc/lib/resolv")); + if (!lib.load()) + return; + } +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +@@ -95,7 +95,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); + if (!lib.load()) + return; + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch new file mode 100644 index 00000000000..10115e8144a --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch @@ -0,0 +1,15 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf ++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +@@ -12,8 +12,8 @@ QMAKE_INCDIR = + QMAKE_LIBDIR = + QMAKE_INCDIR_X11 = + QMAKE_LIBDIR_X11 = +-QMAKE_INCDIR_OPENGL = +-QMAKE_LIBDIR_OPENGL = ++QMAKE_INCDIR_OPENGL = @mesa@/include ++QMAKE_LIBDIR_OPENGL = @mesa@/lib + QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL + QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL + QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch similarity index 57% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch index 8eaf2f4ffac..470526b1dcd 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch @@ -1,17 +1,8 @@ -From 2da5e660c4b470444e756f2ec88cb520a124bc99 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:20:35 -0500 -Subject: [PATCH] nix profiles library paths - ---- - qtbase/src/corelib/kernel/qcoreapplication.cpp | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -diff --git a/qtbase/src/corelib/kernel/qcoreapplication.cpp b/qtbase/src/corelib/kernel/qcoreapplication.cpp -index ecafe91..96e3eb5 100644 ---- a/qtbase/src/corelib/kernel/qcoreapplication.cpp -+++ b/qtbase/src/corelib/kernel/qcoreapplication.cpp -@@ -2496,6 +2496,21 @@ QStringList QCoreApplication::libraryPaths() +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp +@@ -2498,6 +2498,21 @@ QStringList QCoreApplication::libraryPat } } } @@ -33,6 +24,3 @@ index ecafe91..96e3eb5 100644 } return *(coreappdata()->app_libpaths); } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series new file mode 100644 index 00000000000..d4b356a2918 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -0,0 +1,7 @@ +dlopen-resolv.patch +tzdir.patch +dlopen-libXcursor.patch +dlopen-openssl.patch +dlopen-dbus.patch +xdg-config-dirs.patch +nix-profiles-library-paths.patch diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch similarity index 68% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch index c2564df4e1a..92adeda8273 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch @@ -1,17 +1,8 @@ -From 26c73d6da84f1b4797421b9ddecef18d6ce588f0 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:22 -0600 -Subject: [PATCH 04/11] tzdir - ---- - qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------ - 1 file changed, 15 insertions(+), 6 deletions(-) - -diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -index 29f0e17..3878974 100644 ---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -62,7 +62,10 @@ typedef QHash QTzTimeZoneHash; +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -62,7 +62,10 @@ typedef QHash Q // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -23,7 +14,7 @@ index 29f0e17..3878974 100644 if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -553,12 +556,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) +@@ -560,12 +563,18 @@ void QTzTimeZonePrivate::init(const QByt if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -47,6 +38,3 @@ index 29f0e17..3878974 100644 } } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch similarity index 64% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch index ebb572081bf..24dc3bde148 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch @@ -1,18 +1,8 @@ -From 253c0829d4bc30da0152a22114a949449796ec7d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:57 -0500 -Subject: [PATCH 08/11] xdg config dirs - ---- - qtbase/src/corelib/io/qsettings.cpp | 18 ++++++++++++++++++ - qtbase/src/corelib/io/qsettings_p.h | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -diff --git a/qtbase/src/corelib/io/qsettings.cpp b/qtbase/src/corelib/io/qsettings.cpp -index 413f569..8ff4974 100644 ---- a/qtbase/src/corelib/io/qsettings.cpp -+++ b/qtbase/src/corelib/io/qsettings.cpp -@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format, +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp +@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSetti if (!application.isEmpty()) confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); @@ -37,10 +27,10 @@ index 413f569..8ff4974 100644 #else QString confName = getPath(format, QSettings::UserScope) + org; if (!application.isEmpty()) -diff --git a/qtbase/src/corelib/io/qsettings_p.h b/qtbase/src/corelib/io/qsettings_p.h -index 93d63fd..160b197 100644 ---- a/qtbase/src/corelib/io/qsettings_p.h -+++ b/qtbase/src/corelib/io/qsettings_p.h +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings_p.h ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h @@ -240,7 +240,7 @@ public: F_Organization = 0x1, F_User = 0x0, @@ -50,6 +40,3 @@ index 93d63fd..160b197 100644 #else SandboxConfFile = 0, NumConfFiles = 1 --- -2.5.2 - From 14f27e5eb737260457c248ff54e35b114498ecec Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 11:59:05 -0600 Subject: [PATCH 394/707] qt55.qtbase: move sed scripts to postPatch --- .../libraries/qt-5/5.5/qtbase/default.nix | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 3bbbefefa3c..a39d9996b1d 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -41,16 +41,6 @@ stdenv.mkDerivation { mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase ''; - prePatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - ''; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series) ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch @@ -60,6 +50,19 @@ stdenv.mkDerivation { inherit decryptSslTraffic gtkStyle mesaSupported; postPatch = '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ + --replace /usr/lib/X11/locale ${libX11}/share/X11/locale + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ --replace "@glibc@" "${stdenv.cc.libc}" substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ @@ -95,11 +98,6 @@ stdenv.mkDerivation { export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" export configureFlags+=" -docdir $out/share/doc/qt5" ''; From 081b1f1707a20fbf12768d855c6a7880059e4bbe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:02:57 -0600 Subject: [PATCH 395/707] qt55.qtbase: set compose search path This was previously set using substituteInPlace, but this leads to duplicate search paths. --- .../qt-5/5.5/qtbase/compose-search-path.patch | 16 ++++++++++++++++ .../libraries/qt-5/5.5/qtbase/default.nix | 7 ++++--- .../development/libraries/qt-5/5.5/qtbase/series | 1 + 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch new file mode 100644 index 00000000000..08d12087f08 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch @@ -0,0 +1,16 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio + // the QTCOMPOSE environment variable + if (qEnvironmentVariableIsSet("QTCOMPOSE")) + m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); +- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale")); ++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale")); + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index a39d9996b1d..0cb06301046 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -53,9 +53,6 @@ stdenv.mkDerivation { substituteInPlace configure --replace /bin/pwd pwd substituteInPlace qtbase/configure --replace /bin/pwd pwd substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" @@ -77,6 +74,10 @@ stdenv.mkDerivation { substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ --replace "@dbus_libs@" "${dbus}" + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + if [[ -n "$gtkStyle" ]]; then substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series index d4b356a2918..3cfa50e85b7 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/series +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -5,3 +5,4 @@ dlopen-openssl.patch dlopen-dbus.patch xdg-config-dirs.patch nix-profiles-library-paths.patch +compose-search-path.patch From 9f62af08854a446e6e87434895ae0032d19778f4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:15:33 -0600 Subject: [PATCH 396/707] qt55.qtbase: fallback libGL path If libGL is not found on the system library path, fall back to the default Mesa driver. --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 2 +- .../libraries/qt-5/5.5/qtbase/dlopen-gl.patch | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 0cb06301046..57ae127c908 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation { if [[ -n "$mesaSupported" ]]; then substituteInPlace \ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@openglDriver@" "${mesa.driverLink}" + --replace "@mesa@" "${mesa}" substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" fi ''; diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch index 8e25a12b069..14411a95f3a 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch @@ -2,12 +2,16 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_in =================================================================== --- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -@@ -563,7 +563,7 @@ void (*QGLXContext::getProcAddress(const +@@ -563,7 +563,12 @@ void (*QGLXContext::getProcAddress(const { extern const QString qt_gl_library_name(); // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); ++ // Check system library paths first + QLibrary lib(QLatin1String("GL")); ++ if (!lib.load()) { ++ // Fallback to Mesa driver ++ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ } glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); } } From 0a54898a20468ddc62d7ff4a3f0f0df2ac40ba3a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:18:06 -0600 Subject: [PATCH 397/707] qt55.qtbase: don't include optional dependencies unconditionally --- .../libraries/qt-5/5.5/qtbase/default.nix | 32 ++++++++----------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 57ae127c908..589f2a1de1e 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -47,8 +47,6 @@ stdenv.mkDerivation { ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; - inherit decryptSslTraffic gtkStyle mesaSupported; - postPatch = '' substituteInPlace configure --replace /bin/pwd pwd substituteInPlace qtbase/configure --replace /bin/pwd pwd @@ -77,22 +75,20 @@ stdenv.mkDerivation { substituteInPlace \ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ --replace "@libX11@" "${libX11}" - - if [[ -n "$gtkStyle" ]]; then - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ - --replace "@gnome_vfs@" "${gnome_vfs}" \ - --replace "@libgnomeui@" "${libgnomeui}" \ - --replace "@gconf@" "${GConf}" - fi - - if [[ -n "$mesaSupported" ]]; then - substituteInPlace \ - qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" - fi + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" ''; preConfigure = '' From 98e2fbe6302b5f642340e80770d75aab9c658a44 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:18:48 -0600 Subject: [PATCH 398/707] qt55.qtbase: remove non-existent paths from LD_LIBRARY_PATH --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 589f2a1de1e..9854ba6b392 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation { ''; preConfigure = '' - export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" + export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" From 09e9e3e35963c27857b38900625bf5a474305f24 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:26:45 -0600 Subject: [PATCH 399/707] fixup! qt55.qtbase: don't include optional dependencies unconditionally --- .../libraries/qt-5/5.5/qtbase/default.nix | 75 ++++++++++--------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 9854ba6b392..7bfaafaf69a 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -47,49 +47,50 @@ stdenv.mkDerivation { ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; - postPatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + postPatch = + '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" - substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" - substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ - --replace "@libXcursor@" "${libXcursor}" + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" - substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ - --replace "@openssl@" "${openssl}" + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" - substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ - --replace "@dbus_libs@" "${dbus}" + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" - substituteInPlace \ - qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace "@libX11@" "${libX11}" - '' - + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ - --replace "@gnome_vfs@" "${gnome_vfs}" \ - --replace "@libgnomeui@" "${libgnomeui}" \ - --replace "@gconf@" "${GConf}" - '' - + lib.optionalString mesaSupported '' - substituteInPlace \ - qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" - ''; + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + ''; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" From 36dda9231794e7a9fb2bd808e1fdf49dab94c718 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:26:54 -0600 Subject: [PATCH 400/707] qt55.qtbase: don't interpolate needlessly --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7bfaafaf69a..24e5ccb36f3 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -201,12 +201,11 @@ stdenv.mkDerivation { postInstall = '' - ${lib.optionalString buildDocs '' - make docs && make install_docs - ''} - # Don't retain build-time dependencies like gdb and ruby. sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri + '' + + lib.optionalString buildDocs '' + make docs && make install_docs ''; inherit lndir; From dac2c651098012c96848819c48890cf158e62caf Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sat, 19 Dec 2015 22:09:20 +0200 Subject: [PATCH 401/707] azure agent service: provide SSL certificates path --- nixos/modules/virtualisation/azure-agent.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index e657cc51939..ef4e3e1e48d 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -156,6 +156,12 @@ in after = [ "ip-up.target" ]; wants = [ "ip-up.target" ]; + environment = { + GIT_SSL_CAINFO = "/etc/ssl/certs/ca-certificates.crt"; + OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; + SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; + }; + path = [ pkgs.e2fsprogs ]; description = "Windows Azure Agent Service"; unitConfig.ConditionPathExists = "/etc/waagent.conf"; From 1402c20bfd59d0584884b74d53e8cb1214c259e1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 16:20:27 -0600 Subject: [PATCH 402/707] qt54: backport Qt infrastructure changes from Qt 5.5 --- .../libraries/qt-5/5.4/0003-glib-2.32.patch | 25 -- .../qt-5/5.4/0004-dlopen-resolv.patch | 39 -- .../libraries/qt-5/5.4/0005-dlopen-gl.patch | 25 -- .../qt-5/5.4/0010-dlopen-libXcursor.patch | 29 -- .../libraries/qt-5/5.4/0012-dlopen-dbus.patch | 13 - .../qt-5/5.4/0014-mkspecs-libgl.patch | 17 - .../libraries/qt-5/5.4/0100-ssl.patch | 13 - .../libraries/qt-5/5.4/default.nix | 400 ++++-------------- .../libraries/qt-5/5.4/fetchsrcs.sh | 47 ++ .../libraries/qt-5/5.4/make-qt-wrapper.sh | 42 ++ .../libraries/qt-5/5.4/manifest.json | 301 ------------- .../libraries/qt-5/5.4/manifest.sh | 9 - .../libraries/qt-5/5.4/qt-submodule.nix | 54 --- .../development/libraries/qt-5/5.4/qtbase.nix | 211 --------- .../qt-5/5.4/qtbase/compose-search-path.patch | 16 + .../qt-5/5.4/qtbase/decrypt-ssl-traffic.patch | 13 + .../libraries/qt-5/5.4/qtbase/default.nix | 224 ++++++++++ .../qt-5/5.4/qtbase/dlopen-dbus.patch | 13 + .../libraries/qt-5/5.4/qtbase/dlopen-gl.patch | 17 + .../dlopen-gtkstyle.patch} | 37 +- .../qt-5/5.4/qtbase/dlopen-libXcursor.patch | 17 + .../dlopen-openssl.patch} | 12 +- .../qt-5/5.4/qtbase/dlopen-resolv.patch | 26 ++ .../qt-5/5.4/qtbase/mkspecs-libgl.patch | 15 + .../qtbase/nix-profiles-library-paths.patch | 26 ++ .../libraries/qt-5/5.4/qtbase/series | 8 + .../libraries/qt-5/5.4/qtbase/setup-hook.sh | 100 +++++ .../{0006-tzdir.patch => qtbase/tzdir.patch} | 24 +- .../xdg-config-dirs.patch} | 20 +- .../libraries/qt-5/5.4/qtconnectivity.nix | 6 + .../0001-nix-profiles-import-paths.patch | 37 ++ .../qt-5/5.4/qtdeclarative/default.nix | 8 + pkgs/development/libraries/qt-5/5.4/qtdoc.nix | 6 + .../libraries/qt-5/5.4/qtenginio.nix | 6 + .../libraries/qt-5/5.4/qtgraphicaleffects.nix | 6 + .../libraries/qt-5/5.4/qtimageformats.nix | 6 + .../libraries/qt-5/5.4/qtlocation.nix | 6 + .../libraries/qt-5/5.4/qtmultimedia.nix | 12 + .../0001-nix-profiles-import-paths.patch | 37 ++ .../libraries/qt-5/5.4/qtquick1/default.nix | 7 + .../libraries/qt-5/5.4/qtquickcontrols.nix | 6 + .../qt-5/5.4/qtscript/0001-glib-2.32.patch | 25 ++ .../libraries/qt-5/5.4/qtscript/default.nix | 7 + .../libraries/qt-5/5.4/qtsensors.nix | 6 + .../0001-dlopen-serialport-udev.patch} | 20 +- .../qt-5/5.4/qtserialport/default.nix | 7 + pkgs/development/libraries/qt-5/5.4/qtsvg.nix | 6 + .../libraries/qt-5/5.4/qttools.nix | 6 + .../libraries/qt-5/5.4/qttranslations.nix | 6 + .../libraries/qt-5/5.4/qtwebkit-examples.nix | 6 + .../0001-dlopen-webkit-nsplugin.patch} | 36 +- .../0002-dlopen-webkit-gtk.patch} | 16 +- .../0003-dlopen-webkit-udev.patch} | 16 +- .../libraries/qt-5/5.4/qtwebkit/default.nix | 33 ++ .../libraries/qt-5/5.4/qtwebsockets.nix | 6 + .../libraries/qt-5/5.4/qtx11extras.nix | 6 + .../libraries/qt-5/5.4/qtxmlpatterns.nix | 6 + .../libraries/qt-5/5.4/setup-hook.sh | 77 ---- pkgs/development/libraries/qt-5/5.4/srcs.nix | 245 +++++++++++ pkgs/top-level/all-packages.nix | 2 +- 60 files changed, 1225 insertions(+), 1243 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0100-ssl.patch create mode 100755 pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh create mode 100644 pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/manifest.json delete mode 100755 pkgs/development/libraries/qt-5/5.4/manifest.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/qt-submodule.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch rename pkgs/development/libraries/qt-5/5.4/{0001-dlopen-gtkstyle.patch => qtbase/dlopen-gtkstyle.patch} (72%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch rename pkgs/development/libraries/qt-5/5.4/{0011-dlopen-openssl.patch => qtbase/dlopen-openssl.patch} (75%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/series create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh rename pkgs/development/libraries/qt-5/5.4/{0006-tzdir.patch => qtbase/tzdir.patch} (68%) rename pkgs/development/libraries/qt-5/5.4/{0013-xdg_config_dirs.patch => qtbase/xdg-config-dirs.patch} (68%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdoc.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtenginio.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtimageformats.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtlocation.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtsensors.nix rename pkgs/development/libraries/qt-5/5.4/{0009-dlopen-serialport-udev.patch => qtserialport/0001-dlopen-serialport-udev.patch} (60%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtsvg.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qttools.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qttranslations.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix rename pkgs/development/libraries/qt-5/5.4/{0002-dlopen-webkit-nsplugin.patch => qtwebkit/0001-dlopen-webkit-nsplugin.patch} (50%) rename pkgs/development/libraries/qt-5/5.4/{0007-dlopen-webkit-gtk.patch => qtwebkit/0002-dlopen-webkit-gtk.patch} (50%) rename pkgs/development/libraries/qt-5/5.4/{0008-dlopen-webkit-udev.patch => qtwebkit/0003-dlopen-webkit-udev.patch} (62%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtx11extras.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/setup-hook.sh create mode 100644 pkgs/development/libraries/qt-5/5.4/srcs.nix diff --git a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch deleted file mode 100644 index 4abb69da4d8..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a41c3e3a3a1ce4b373b1bbb98f3a835e9e8a0718 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:39 -0600 -Subject: [PATCH] glib-2.32 - ---- - qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -index 1f6d25e..087c3fb 100644 ---- a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -+++ b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -@@ -81,7 +81,7 @@ - #include - #elif PLATFORM(GTK) - #include --typedef struct _GMutex GMutex; -+typedef union _GMutex GMutex; - typedef struct _GCond GCond; - #endif - --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch deleted file mode 100644 index e6b921b771d..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 63af41c6eeca28c911c13b1a77afeaf860863c2d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:55 -0600 -Subject: [PATCH] dlopen-resolv - ---- - qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +- - qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp -index 8c5a0eb..27ebf16 100644 ---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp -@@ -87,7 +87,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); - if (!lib.load()) - return; - } -diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp -index df8c8b1..613d0e0 100644 ---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp -@@ -103,7 +103,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); - if (!lib.load()) - return; - } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch deleted file mode 100644 index d112427bdd6..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 6aaf6858bf817172a4c503158e1701c4837ee790 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:08 -0600 -Subject: [PATCH] dlopen-gl - ---- - qtbase/src/plugins/platforms/xcb/qglxintegration.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -index 67235e0..2220a2e 100644 ---- a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -@@ -434,7 +434,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) () - { - extern const QString qt_gl_library_name(); - // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); - glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); - } - } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch deleted file mode 100644 index 49ade86fae3..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch +++ /dev/null @@ -1,29 +0,0 @@ -From b56e3737ca97e3de664603976989da4419297eb3 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:33:51 -0600 -Subject: [PATCH] dlopen-libXcursor - ---- - qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -index 6dbac90..4b23fc2 100644 ---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -305,10 +305,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) - #ifdef XCB_USE_XLIB - static bool function_ptrs_not_initialized = true; - if (function_ptrs_not_initialized) { -- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); -+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); - bool xcursorFound = xcursorLib.load(); - if (!xcursorFound) { // try without the version number -- xcursorLib.setFileName(QLatin1String("Xcursor")); -+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); - xcursorFound = xcursorLib.load(); - } - if (xcursorFound) { --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch deleted file mode 100644 index 77eb7bc85af..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp -index 6764309..33f25f9 100644 ---- a/qtbase/src/dbus/qdbus_symbols.cpp -+++ b/qtbase/src/dbus/qdbus_symbols.cpp -@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus() - #ifdef Q_OS_WIN - QLatin1String("dbus-1"), - #endif -- QLatin1String("libdbus-1") -+ QLatin1String("@dbus_libs@/lib/libdbus-1") - }; - - lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch deleted file mode 100644 index 1fc4bbd6076..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch +++ /dev/null @@ -1,17 +0,0 @@ -Ensure Qt knows where libGL is. - -Author: Bjørn Forsman -diff -uNr qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf ---- qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf 2014-09-11 12:48:07.000000000 +0200 -+++ qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf 2015-08-23 13:03:30.617473019 +0200 -@@ -12,8 +12,8 @@ - QMAKE_LIBDIR = - QMAKE_INCDIR_X11 = - QMAKE_LIBDIR_X11 = --QMAKE_INCDIR_OPENGL = --QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib - QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL - QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL - QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch b/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch deleted file mode 100644 index 4607274de74..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -index 8833e3f..c56d381 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -@@ -47,7 +47,7 @@ - ****************************************************************************/ - - //#define QSSLSOCKET_DEBUG --//#define QT_DECRYPT_SSL_TRAFFIC -+#define QT_DECRYPT_SSL_TRAFFIC - - #include "qssl_p.h" - #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index 136c352d1aa..4bb24427b9f 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -1,8 +1,8 @@ # Maintainer's Notes: # # Minor updates: -# 1. Edit ./manifest.sh to point to the updated URL. -# 2. Run ./manifest.sh. +# 1. Edit ./fetchsrcs.sh to point to the updated URL. +# 2. Run ./fetchsrcs.sh. # 3. Build and enjoy. # # Major updates: @@ -11,350 +11,98 @@ # if it exists. Then follow the minor update instructions. Be sure to check if # any new components have been added and package them as necessary. -{ autonix, fetchurl, newScope, stdenv - -, bison2 -, mesa_noglu -, cups -, gnome +{ pkgs # options , developerBuild ? false , decryptSslTraffic ? false }: -with autonix; +let inherit (pkgs) makeSetupHook makeWrapper stdenv; in + with stdenv.lib; let - srcs = + + mirror = "http://download.qt.io"; + srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; }; + + qtSubmodule = args: let - manifest = builtins.fromJSON (builtins.readFile ./manifest.json); - mirror = "http://download.qt.io"; - fetch = src: fetchurl (src // { url = "${mirror}/${src.url}"; }); - mkPair = pkg: nameValuePair (builtins.parseDrvName pkg.name).name (fetch pkg.src); - pairs = map mkPair manifest; - in listToAttrs pairs; + inherit (args) name; + inherit (srcs."${args.name}") version src; + inherit (pkgs.stdenv) mkDerivation; + in mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - version = "5.4.2"; + propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - callPackage = newScope (self // { inherit qtSubmodule; }); + NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; + dontAddPrefix = args.dontAddPrefix or true; + dontFixLibtool = args.dontFixLibtool or true; + configureScript = args.configureScript or "qmake"; - qtSubmodule = callPackage ./qt-submodule.nix { - inherit srcs version; - inherit (stdenv) mkDerivation; - }; + enableParallelBuilding = args.enableParallelBuilding or true; - self = - { + meta = { + homepage = http://qt-project.org; + description = "A cross-platform application framework for C++"; + license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; + maintainers = with maintainers; [ bbenoist qknight ttuegel ]; + platforms = platforms.linux; + } // (args.meta or {}); + }); - activeqt = callPackage - ( - { qtSubmodule, base }: + addPackages = self: with self; + let + callPackage = self.newScope { inherit qtSubmodule srcs; }; + in { - qtSubmodule { - name = "qtactiveqt"; - qtInputs = [ base ]; - } - ) - {}; - - /* androidextras = not packaged */ - - base = callPackage ./qtbase.nix { - mesa = mesa_noglu; - cups = if stdenv.isLinux then cups else null; + qtbase = callPackage ./qtbase { + mesa = pkgs.mesa_noglu; + cups = if stdenv.isLinux then pkgs.cups else null; # GNOME dependencies are not used unless gtkStyle == true - inherit (gnome) libgnomeui GConf gnome_vfs; - bison = bison2; # error: too few arguments to function 'int yylex(... - inherit developerBuild srcs version decryptSslTraffic; + inherit (pkgs.gnome) libgnomeui GConf gnome_vfs; + bison = pkgs.bison2; # error: too few arguments to function 'int yylex(... + inherit developerBuild decryptSslTraffic; }; - connectivity = callPackage - ( - { qtSubmodule, base, declarative }: + /* qt3d = not packaged */ + /* qtactiveqt = not packaged */ + /* qtandroidextras = not packaged */ + /* qtcanvas3d = not packaged */ + qtconnectivity = callPackage ./qtconnectivity.nix {}; + qtdeclarative = callPackage ./qtdeclarative {}; + qtdoc = callPackage ./qtdoc.nix {}; + qtenginio = callPackage ./qtenginio.nix {}; + qtgraphicaleffects = callPackage ./qtgraphicaleffects.nix {}; + qtimageformats = callPackage ./qtimageformats.nix {}; + qtlocation = callPackage ./qtlocation.nix {}; + /* qtmacextras = not packaged */ + qtmultimedia = callPackage ./qtmultimedia.nix { + inherit (pkgs.gst_all_1) gstreamer gst-plugins-base; + }; + qtquick1 = callPackage ./qtquick1 {}; + qtquickcontrols = callPackage ./qtquickcontrols.nix {}; + qtscript = callPackage ./qtscript {}; + qtsensors = callPackage ./qtsensors.nix {}; + qtserialport = callPackage ./qtserialport {}; + qtsvg = callPackage ./qtsvg.nix {}; + qttools = callPackage ./qttools.nix {}; + qttranslations = callPackage ./qttranslations.nix {}; + /* qtwayland = not packaged */ + /* qtwebchannel = not packaged */ + /* qtwebengine = not packaged */ + qtwebkit = callPackage ./qtwebkit {}; + qtwebkit-examples = callPackage ./qtwebkit-examples.nix {}; + qtwebsockets = callPackage ./qtwebsockets.nix {}; + /* qtwinextras = not packaged */ + qtx11extras = callPackage ./qtx11extras.nix {}; + qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; - qtSubmodule { - name = "qtconnectivity"; - qtInputs = [ base declarative ]; - } - ) - {}; - - declarative = callPackage - ( - { qtSubmodule, python, base, svg, xmlpatterns }: - - qtSubmodule { - name = "qtdeclarative"; - qtInputs = [ base svg xmlpatterns ]; - nativeBuildInputs = [ python ]; - } - ) - {}; - - doc = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtdoc"; - qtInputs = [ declarative ]; - } - ) - {}; - - enginio = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtenginio"; - qtInputs = [ declarative ]; - } - ) - {}; - - graphicaleffects = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtgraphicaleffects"; - qtInputs = [ declarative ]; - } - ) - {}; - - imageformats = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtimageformats"; - qtInputs = [ base ]; - } - ) - {}; - - location = callPackage - ( - { qtSubmodule, base, multimedia }: - - qtSubmodule { - name = "qtlocation"; - qtInputs = [ base multimedia ]; - } - ) - {}; - - /* macextras = not packaged */ - - multimedia = callPackage - ( - { qtSubmodule, base, declarative, pkgconfig - , alsaLib, gstreamer, gst_plugins_base, libpulseaudio - }: - - qtSubmodule { - name = "qtmultimedia"; - qtInputs = [ base declarative ]; - buildInputs = [ - pkgconfig alsaLib gstreamer gst_plugins_base libpulseaudio - ]; - } - ) - {}; - - quick1 = callPackage - ( - { qtSubmodule, script, svg, webkit, xmlpatterns }: - - qtSubmodule { - name = "qtquick1"; - qtInputs = [ script svg webkit xmlpatterns ]; - } - ) - {}; - - quickcontrols = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtquickcontrols"; - qtInputs = [ declarative ]; - } - ) - {}; - - script = callPackage - ( - { qtSubmodule, base, tools }: - - qtSubmodule { - name = "qtscript"; - qtInputs = [ base tools ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = [ ./0003-glib-2.32.patch ]; - } - ) - {}; - - sensors = callPackage - ( - { qtSubmodule, base, declarative }: - - qtSubmodule { - name = "qtsensors"; - qtInputs = [ base declarative ]; - } - ) - {}; - - serialport = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtserialport"; - qtInputs = [ base ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = [ ./0009-dlopen-serialport-udev.patch ]; - } - ) - {}; - - svg = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtsvg"; - qtInputs = [ base ]; - } - ) - {}; - - tools = callPackage - ( - { qtSubmodule, activeqt, base, declarative, webkit }: - - qtSubmodule { - name = "qttools"; - qtInputs = [ activeqt base declarative webkit ]; - } - ) - {}; - - translations = callPackage - ( - { qtSubmodule, tools }: - - qtSubmodule { - name = "qttranslations"; - qtInputs = [ tools ]; - } - ) - {}; - - /* wayland = not packaged */ - - /* webchannel = not packaged */ - - /* webengine = not packaged */ - - webkit = callPackage - ( - { qtSubmodule, declarative, location, multimedia, sensors - , fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt - , sqlite, udev - , bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby - , substituteAll - , flashplayerFix ? false - }: - - qtSubmodule { - name = "qtwebkit"; - qtInputs = [ declarative location multimedia sensors ]; - buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ]; - nativeBuildInputs = [ - bison2 flex gdb gperf perl pkgconfig python ruby - ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = - optional flashplayerFix - (substituteAll - { - src = ./0002-dlopen-webkit-nsplugin.patch; - inherit gtk gdk_pixbuf; - } - ) - ++ optional flashplayerFix - (substituteAll - { - src = ./0007-dlopen-webkit-gtk.patch; - inherit gtk; - } - ) - ++ [ - (substituteAll - { - src = ./0008-dlopen-webkit-udev.patch; - inherit udev; - } - ) - ]; - } - ) - {}; - - webkit-examples = callPackage - ( - { qtSubmodule, tools, webkit }: - - qtSubmodule { - name = "qtwebkit-examples"; - qtInputs = [ tools webkit ]; - } - ) - {}; - - websockets = callPackage - ( - { qtSubmodule, base, declarative }: - - qtSubmodule { - name = "qtwebsockets"; - qtInputs = [ base declarative ]; - } - ) - {}; - - /* winextras = not packaged */ - - x11extras = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtx11extras"; - qtInputs = [ base ]; - } - ) - {}; - - xmlpatterns = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtxmlpatterns"; - qtInputs = [ base ]; - } - ) - {}; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; -in self +in makeScope pkgs.newScope addPackages diff --git a/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh new file mode 100755 index 00000000000..0fd5bb8d5fe --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh @@ -0,0 +1,47 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +cd .. diff --git a/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh new file mode 100644 index 00000000000..d61665455bf --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh @@ -0,0 +1,42 @@ +addQtDependency() { + addToSearchPath QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPath QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPath QML2_IMPORT_PATH "$1/lib/qt5/qml" + addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPath XDG_DATA_DIRS "$1/share" +} + +wrapQtProgram() { + local prog="$1" + shift + wrapProgram "$prog" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + "$@" +} + +makeQtWrapper() { + local old="$1" + local new="$2" + shift + shift + makeWrapper "$old" "$new" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + "$@" +} + +# cannot use addToSearchPath because these directories may not exist yet +export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$out/lib/qt5/plugins" +export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$out/lib/qt5/imports" +export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$out/lib/qt5/qml" +export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}$out/etc/xdg" +export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}$out/share" + +envHooks+=(addQtDependency) diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.json b/pkgs/development/libraries/qt-5/5.4/manifest.json deleted file mode 100644 index 83dedb41706..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/manifest.json +++ /dev/null @@ -1,301 +0,0 @@ -[ - { - "name": "qtbase-opensource-src-5.4.2", - "store": "/nix/store/60xy2xnsl5kwraqkgh8d950nj1pk3kmi-qtbase-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz", - "sha256": "0x2szpjjvsrpcqw0dd3gsim7b1jv9p716pnllzjbia5mp0hggi4z", - "name": "qtbase-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtenginio-opensource-src-5.4.2", - "store": "/nix/store/4iprnq6sm0b1pnxmxb5krip7kk40xqmr-qtenginio-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz", - "sha256": "082i3fapjw6xs0jkz7x529dn3pb6w1pfli3cjrgvggff86gwlgwn", - "name": "qtenginio-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtserialport-opensource-src-5.4.2", - "store": "/nix/store/l9k1v23ddnhjch5b2p3l28xbqkhz63yl-qtserialport-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz", - "sha256": "1h6p5rb0ldxgzd4md3n79gy0j9blhj736670xqjd9vlvh1743kck", - "name": "qtserialport-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtscript-opensource-src-5.4.2", - "store": "/nix/store/n4ixnakw3fiflyimshkp43h7ijlpiif6-qtscript-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz", - "sha256": "0izsmy0cr8iii78r10ndkidyljxqd2k9g03f5xb9nxacvr2f8hp0", - "name": "qtscript-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebchannel-opensource-src-5.4.2", - "store": "/nix/store/qbkqkn4ck0fqbndl9fzp7iaz6c475xq8-qtwebchannel-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz", - "sha256": "0vy1zjbghfa1wirxd8fd2n2n8yryykzr09913qm2nlfbcxdsgqsn", - "name": "qtwebchannel-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwinextras-opensource-src-5.4.2", - "store": "/nix/store/9kmig3lg8d8s5r1jl3xj5q3jrkp3p8sx-qtwinextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwinextras-opensource-src-5.4.2.tar.xz", - "sha256": "0sgybvr1y2xsddlqc95ninxj3rfmd4gv7a8f7rqcxdynjan5gij0", - "name": "qtwinextras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebsockets-opensource-src-5.4.2", - "store": "/nix/store/zk4s5pgp3mh6xdq6z3svi305vn0pli27-qtwebsockets-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz", - "sha256": "0lv1la8333qnirxmscs42xnnra0xry1gjbhi3bxrf1hrfs2im9j4", - "name": "qtwebsockets-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtmultimedia-opensource-src-5.4.2", - "store": "/nix/store/n8wpy6b8jw1rf51z1qhxbbym7j8rr8ay-qtmultimedia-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz", - "sha256": "0h29cs8ajnjarhjx1aczdnxqwvg6pqs9s8w28hw488s149wqqrnj", - "name": "qtmultimedia-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtgraphicaleffects-opensource-src-5.4.2", - "store": "/nix/store/2q2vk530mf32zzd1v8bpax8iixviw6q5-qtgraphicaleffects-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz", - "sha256": "02p8xm5ajicjam30ry3g1lm2p4nja2q0sls8dzimqrxhw5xlg3xs", - "name": "qtgraphicaleffects-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtxmlpatterns-opensource-src-5.4.2", - "store": "/nix/store/3fqgpa668hb1xmwjw056cw58qzb3r0g4-qtxmlpatterns-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz", - "sha256": "0ar7znqp1i02ha5ngy2kzk3hlgkafjbn2xa8j2k78gzmwsmdhzxa", - "name": "qtxmlpatterns-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qttranslations-opensource-src-5.4.2", - "store": "/nix/store/mg9b5z2nznzxrz501hm06b7l27jjwaca-qttranslations-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz", - "sha256": "0b4l69c16z8gjd4mq75zz3lj2gxarr9wyk0vk60jg1mi62vxvdls", - "name": "qttranslations-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtdeclarative-opensource-src-5.4.2", - "store": "/nix/store/bjmv4fgphx9bggzcwy4lcdas9phbwjsg-qtdeclarative-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz", - "sha256": "1bj1wwms6lpj8s70y8by3j0hjsw6g9v8m6fybx68krzzizbj2c5p", - "name": "qtdeclarative-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebkit-opensource-src-5.4.2", - "store": "/nix/store/pfhq8ask8jhzdh2x882d014b10ddywma-qtwebkit-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz", - "sha256": "0vffbpiczag2n2hp5gc0nii8n7vkidr8f8pp8a47px0183hl6hiy", - "name": "qtwebkit-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtquick1-opensource-src-5.4.2", - "store": "/nix/store/n807cxddkvhbzw3ciqs29zc5mw47z2qs-qtquick1-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz", - "sha256": "0178z15a31fw3l6933fwxs7sk0csifpwckydp3rqnn3fg5f2fwvp", - "name": "qtquick1-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtquickcontrols-opensource-src-5.4.2", - "store": "/nix/store/gq8afk8zr2vrrsfmp4caqv02209qk9xb-qtquickcontrols-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz", - "sha256": "137z3c3drxlvkdfc7zgcl0xqmavw0ladzqy0i3bq51h756qdc877", - "name": "qtquickcontrols-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtimageformats-opensource-src-5.4.2", - "store": "/nix/store/cmpx0338z1j0wzk6scfpay5k10023d46-qtimageformats-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz", - "sha256": "1nny6j9pm5ri3n1vwl5lrfrdz0fl81rx127wa49rkg2rjai2aawb", - "name": "qtimageformats-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtdoc-opensource-src-5.4.2", - "store": "/nix/store/jv4wgs6pz9xqmin9m4q4mifr2vfcjn3h-qtdoc-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz", - "sha256": "15lamv6jvd7v33ldpcrazcdksv6qibdcgh4ncbyh774k8avgrlh8", - "name": "qtdoc-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwayland-opensource-src-5.4.2", - "store": "/nix/store/qa3yi9lyx2dm4wqzb3qzvzba1sgnj74z-qtwayland-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz", - "sha256": "14pmpkfq70plw07igxjaiji4vnjg5kg7izlb0wwym1lisg7bwkg0", - "name": "qtwayland-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtmacextras-opensource-src-5.4.2", - "store": "/nix/store/wdq1z3bzr9n11yln8avx10sgzgyvp8cl-qtmacextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtmacextras-opensource-src-5.4.2.tar.xz", - "sha256": "0h0p3s0rvd3g9rgr4hwcggdbsav2g30vijqwmdxgxd8c00yply80", - "name": "qtmacextras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtactiveqt-opensource-src-5.4.2", - "store": "/nix/store/0ik7vc3zwdjvrp4fpyqf1zpyqdxvvqvq-qtactiveqt-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtactiveqt-opensource-src-5.4.2.tar.xz", - "sha256": "014kwficqydciwdm1yw88yms81qm8pmi6xfhhfpbc9k85pc6jlla", - "name": "qtactiveqt-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtlocation-opensource-src-5.4.2", - "store": "/nix/store/sa4dawsw2wv45ld3afbz9nfc64qkyx1s-qtlocation-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz", - "sha256": "1v43hl2zzi90vaw11y8dvsksrjn0r2v0br7pw6njl8lqadpg4jnw", - "name": "qtlocation-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtconnectivity-opensource-src-5.4.2", - "store": "/nix/store/v2aiscvf582azyzg696rglway56l7xl2-qtconnectivity-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz", - "sha256": "1nj68bzgm3r1gg171kj0acnifzb3jx0m5pf4f81xb7zl4hfxasrs", - "name": "qtconnectivity-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtx11extras-opensource-src-5.4.2", - "store": "/nix/store/nz62qld9h96z5a0b7fg52fsh5d6q0kqw-qtx11extras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz", - "sha256": "0jgyywjxavfpiz8202g3s0g9izfl185mmak4fs9h80w1i3gn5zzn", - "name": "qtx11extras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qttools-opensource-src-5.4.2", - "store": "/nix/store/i8n6xrhalg3z4i0min4w79rq9h9hch0x-qttools-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz", - "sha256": "1d5nx01r7wxhdg9f1i9xhsvsbwgaz3yv516s068riy970bhdgwzd", - "name": "qttools-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtsensors-opensource-src-5.4.2", - "store": "/nix/store/0ar28gp8klqxynjnc1r4kj9x7g8cknk2-qtsensors-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz", - "sha256": "1yawvjbdymgw8af7ir9zcin89xxck9dm2l6hnc43lwrky0frcvcf", - "name": "qtsensors-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebengine-opensource-src-5.4.2", - "store": "/nix/store/ikr8cc3bn62jlv9afpzhxvqs5qhsc2yc-qtwebengine-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz", - "sha256": "06cyl733prakniqrn8sd807lclk5im2vmysjdcijry2mcyah2ih8", - "name": "qtwebengine-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtsvg-opensource-src-5.4.2", - "store": "/nix/store/0llm31zpiaqig940a8dsp1dk2npxsnjc-qtsvg-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz", - "sha256": "1dsyncp154xvb7d82nmnfjm0ngymnhqmliq58ljwxsjmpjlncakz", - "name": "qtsvg-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qt5-opensource-src-5.4.2", - "store": "/nix/store/0jrx1clg8vqid9b2n9z8f0xbwjm0yynr-qt5-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qt5-opensource-src-5.4.2.tar.xz", - "sha256": "17a0pybr4bpyv9pj7cr5hl4g31biv89bjr8zql723h0b12ql1w44", - "name": "qt5-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebkit-examples-opensource-src-5.4.2", - "store": "/nix/store/6pmmi9bjbdxkbw2xkkc1srk5ambnjcxv-qtwebkit-examples-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-examples-opensource-src-5.4.2.tar.xz", - "sha256": "0pm9ik1j09jfb5xflc16449nff2xsfyfms7vxlcdjg4dhcqfmll8", - "name": "qtwebkit-examples-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtandroidextras-opensource-src-5.4.2", - "store": "/nix/store/grrsklibvplaj5pdwjp2zirxmqnq10hf-qtandroidextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtandroidextras-opensource-src-5.4.2.tar.xz", - "sha256": "0krfm0wg26x7575p8isswdhrkb0jxyp169grwklil7mfw8yg3xhx", - "name": "qtandroidextras-opensource-src-5.4.2.tar.xz" - } - } -] diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.sh b/pkgs/development/libraries/qt-5/5.4/manifest.sh deleted file mode 100755 index 780269a6417..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/manifest.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -set -x - -# The extra slash at the end of the URL is necessary to stop wget -# from recursing over the whole server! (No, it's not a bug.) -$(nix-build ../../../../.. --no-out-link -A autonix.manifest) \ - http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ \ - -A '*.tar.xz' diff --git a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix b/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix deleted file mode 100644 index 4012b637e28..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ stdenv, mkDerivation -, srcs, version -, lndir -, base -}: - -with stdenv.lib; - -args: - -mkDerivation (args // { - - name = "${args.name}-${version}"; - inherit version; - - srcs = args.srcs or [srcs."${args.name}-opensource-src"]; - - qtSubmodule = args.qtSubmodule or true; - dontAddPrefix = args.dontAddPrefix or true; - dontFixLibtool = args.dontFixLibtool or true; - configureScript = args.configureScript or "qmake"; - - postInstall = '' - rm "$out/bin/qmake" "$out/bin/qt.conf" - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -h "$out/$file" ]]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -d "$out/$file" ]]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" - ''; - - propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - - enableParallelBuilding = - args.enableParallelBuilding or true; # often fails on Hydra, as well as qt4 - - meta = args.meta or { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - }; - -}) diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase.nix b/pkgs/development/libraries/qt-5/5.4/qtbase.nix deleted file mode 100644 index 30d53eb874b..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase.nix +++ /dev/null @@ -1,211 +0,0 @@ -{ stdenv, substituteAll -, srcs, version - -, xorg, libX11, libxcb, libXcursor, libXext, libXrender, libXi -, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon -, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre -, zlib, libjpeg, libpng, libtiff, sqlite, icu - -, coreutils, bison, flex, gdb, gperf, lndir, ruby -, python, perl, pkgconfig - -# optional dependencies -, cups ? null -, mysql ? null, postgresql ? null - -# options -, mesaSupported, mesa, mesa_glu -, buildDocs ? false -, buildExamples ? false -, buildTests ? false -, developerBuild ? false -, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk -, decryptSslTraffic ? false -}: - -with stdenv.lib; - -let system-x86_64 = elem stdenv.system platforms.x86_64; in - -stdenv.mkDerivation { - - name = "qtbase-${version}"; - inherit version; - - srcs = with srcs; [ qt5-opensource-src qtbase-opensource-src ]; - sourceRoot = "qt-everywhere-opensource-src-${version}"; - - postUnpack = '' - mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase - ''; - - prePatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - ''; - - patches = - optional gtkStyle - (substituteAll { - src = ./0001-dlopen-gtkstyle.patch; - # substituteAll ignores env vars starting with capital letter - gconf = GConf; - inherit gnome_vfs libgnomeui gtk; - }) - ++ [ - (substituteAll { - src = ./0004-dlopen-resolv.patch; - glibc = stdenv.cc.libc; - }) - (substituteAll { - src = ./0005-dlopen-gl.patch; - openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path"; - }) - ./0006-tzdir.patch - (substituteAll { src = ./0010-dlopen-libXcursor.patch; inherit libXcursor; }) - (substituteAll { src = ./0011-dlopen-openssl.patch; inherit openssl; }) - (substituteAll { src = ./0012-dlopen-dbus.patch; dbus_libs = dbus; }) - ./0013-xdg_config_dirs.patch - ] ++ optional mesaSupported - (substituteAll { src = ./0014-mkspecs-libgl.patch; inherit mesa; }) - ++ (optional decryptSslTraffic ./0100-ssl.patch); - - preConfigure = '' - export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" - export MAKEFLAGS=-j$NIX_BUILD_CORES - - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" - export configureFlags+=" -docdir $out/share/doc/qt5" - ''; - - prefixKey = "-prefix "; - - # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa - # TODO Remove obsolete and useless flags once the build will be totally mastered - configureFlags = '' - -verbose - -confirm-license - -opensource - - -release - -shared - -c++11 - ${optionalString developerBuild "-developer-build"} - -largefile - -accessibility - -rpath - -optimized-qmake - -strip - -reduce-relocations - -system-proxies - -pkg-config - - -gui - -widgets - -opengl desktop - -qml-debug - -nis - -iconv - -icu - -pch - -glib - -xcb - -qpa xcb - -${optionalString (cups == null) "no-"}cups - -${optionalString (!gtkStyle) "no-"}gtkstyle - - -no-eglfs - -no-directfb - -no-linuxfb - -no-kms - - ${optionalString (!system-x86_64) "-no-sse2"} - -no-sse3 - -no-ssse3 - -no-sse4.1 - -no-sse4.2 - -no-avx - -no-avx2 - -no-mips_dsp - -no-mips_dspr2 - - -system-zlib - -system-libpng - -system-libjpeg - -system-xcb - -system-xkbcommon - -openssl-linked - -dbus-linked - - -system-sqlite - -${if mysql != null then "plugin" else "no"}-sql-mysql - -${if postgresql != null then "plugin" else "no"}-sql-psql - - -make libs - -make tools - -${optionalString (buildExamples == false) "no"}make examples - -${optionalString (buildTests == false) "no"}make tests - ''; - - # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag - # if dependency paths contain the string "pq", which can occur in the hash. - # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; - - propagatedBuildInputs = [ - xorg.libXcomposite libX11 libxcb libXext libXrender libXi - fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre - zlib libjpeg libpng libtiff sqlite icu - xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon - ] - # Qt doesn't directly need GLU (just GL), but many apps use, it's small and - # doesn't remain a runtime-dep if not used - ++ optionals mesaSupported [ mesa mesa_glu ] - ++ optional (cups != null) cups - ++ optional (mysql != null) mysql.lib - ++ optional (postgresql != null) postgresql - ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; - - buildInputs = - [ bison flex gperf ruby ] - ++ optional developerBuild gdb; - - nativeBuildInputs = [ python perl pkgconfig ]; - - # freetype-2.5.4 changed signedness of some struct fields - NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; - - postInstall = - '' - ${optionalString buildDocs '' - make docs && make install_docs - ''} - - # Don't retain build-time dependencies like gdb and ruby. - sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri - ''; - - inherit lndir; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; # often fails on Hydra, as well as qt4 - - meta = { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - }; - -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch new file mode 100644 index 00000000000..08d12087f08 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch @@ -0,0 +1,16 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio + // the QTCOMPOSE environment variable + if (qEnvironmentVariableIsSet("QTCOMPOSE")) + m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); +- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale")); ++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale")); + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch new file mode 100644 index 00000000000..10e7e01a07f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp +@@ -47,7 +47,7 @@ + ****************************************************************************/ + + //#define QSSLSOCKET_DEBUG +-//#define QT_DECRYPT_SSL_TRAFFIC ++#define QT_DECRYPT_SSL_TRAFFIC + + #include "qssl_p.h" + #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix new file mode 100644 index 00000000000..36bd3822bf7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix @@ -0,0 +1,224 @@ +{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper +, srcs + +, xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi +, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon +, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre +, zlib, libjpeg, libpng, libtiff, sqlite, icu + +, coreutils, bison, flex, gdb, gperf, lndir, ruby +, python, perl, pkgconfig + +# optional dependencies +, cups ? null +, mysql ? null, postgresql ? null + +# options +, mesaSupported, mesa, mesa_glu +, buildDocs ? false +, buildExamples ? false +, buildTests ? false +, developerBuild ? false +, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk +, decryptSslTraffic ? false +}: + +let + inherit (srcs.qt5) version; + system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; +in + +stdenv.mkDerivation { + + name = "qtbase-${version}"; + inherit version; + + srcs = with srcs; [ qt5.src qtbase.src ]; + + sourceRoot = "qt-everywhere-opensource-src-${version}"; + + postUnpack = '' + mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase + ''; + + patches = + copyPathsToStore (lib.readPathsFromFile ./. ./series) + ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch + ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch + ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; + + postPatch = + '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" + + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" + + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" + + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + ''; + + preConfigure = '' + export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" + export MAKEFLAGS=-j$NIX_BUILD_CORES + + export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" + export configureFlags+=" -docdir $out/share/doc/qt5" + ''; + + prefixKey = "-prefix "; + + # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa + # TODO Remove obsolete and useless flags once the build will be totally mastered + configureFlags = '' + -verbose + -confirm-license + -opensource + + -release + -shared + -c++11 + ${lib.optionalString developerBuild "-developer-build"} + -largefile + -accessibility + -rpath + -optimized-qmake + -strip + -reduce-relocations + -system-proxies + -pkg-config + + -gui + -widgets + -opengl desktop + -qml-debug + -nis + -iconv + -icu + -pch + -glib + -xcb + -qpa xcb + -${lib.optionalString (cups == null) "no-"}cups + -${lib.optionalString (!gtkStyle) "no-"}gtkstyle + + -no-eglfs + -no-directfb + -no-linuxfb + -no-kms + + ${lib.optionalString (!system-x86_64) "-no-sse2"} + -no-sse3 + -no-ssse3 + -no-sse4.1 + -no-sse4.2 + -no-avx + -no-avx2 + -no-mips_dsp + -no-mips_dspr2 + + -system-zlib + -system-libpng + -system-libjpeg + -system-xcb + -system-xkbcommon + -openssl-linked + -dbus-linked + + -system-sqlite + -${if mysql != null then "plugin" else "no"}-sql-mysql + -${if postgresql != null then "plugin" else "no"}-sql-psql + + -make libs + -make tools + -${lib.optionalString (buildExamples == false) "no"}make examples + -${lib.optionalString (buildTests == false) "no"}make tests + ''; + + # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag + # if dependency paths contain the string "pq", which can occur in the hash. + # To prevent these failures, we need to override PostgreSQL detection. + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + + propagatedBuildInputs = [ + xlibs.libXcomposite libX11 libxcb libXext libXrender libXi + fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre + zlib libjpeg libpng libtiff sqlite icu + xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon + ] + # Qt doesn't directly need GLU (just GL), but many apps use, it's small and + # doesn't remain a runtime-dep if not used + ++ lib.optionals mesaSupported [ mesa mesa_glu ] + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + + buildInputs = + [ bison flex gperf ruby ] + ++ lib.optional developerBuild gdb; + + nativeBuildInputs = [ python perl pkgconfig ]; + + propagatedNativeBuildInputs = [ makeWrapper ]; + + # freetype-2.5.4 changed signedness of some struct fields + NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + + postInstall = + '' + # Don't retain build-time dependencies like gdb and ruby. + sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri + '' + + lib.optionalString buildDocs '' + make docs && make install_docs + ''; + + inherit lndir; + setupHook = ./setup-hook.sh; + + enableParallelBuilding = true; + + meta = with lib; { + homepage = http://qt-project.org; + description = "A cross-platform application framework for C++"; + license = "GPL/LGPL"; + maintainers = with maintainers; [ bbenoist qknight ttuegel ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch new file mode 100644 index 00000000000..05e98d8be71 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/dbus/qdbus_symbols.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp +@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus() + #ifdef Q_OS_WIN + QLatin1String("dbus-1"), + #endif +- QLatin1String("libdbus-1") ++ QLatin1String("@dbus_libs@/lib/libdbus-1") + }; + + lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch new file mode 100644 index 00000000000..d6e08cd2410 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp +@@ -560,7 +560,12 @@ void (*QGLXContext::getProcAddress(const + { + extern const QString qt_gl_library_name(); + // QLibrary lib(qt_gl_library_name()); ++ // Check system library paths first + QLibrary lib(QLatin1String("GL")); ++ if (!lib.load()) { ++ // Fallback to Mesa driver ++ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ } + glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); + } + } diff --git a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch similarity index 72% rename from pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch index 3f411139f5b..c2be7377949 100644 --- a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch @@ -1,18 +1,8 @@ -From 35d5995a58c86a6addbf0aaf0d1be64d39182872 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:21:58 -0600 -Subject: [PATCH] dlopen-gtkstyle - ---- - qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +- - qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp -index 7b9bd97..075947a 100644 ---- a/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp -@@ -104,7 +104,7 @@ static void initGtk() +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtk2painter.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp +@@ -96,7 +96,7 @@ static void initGtk() static bool initialized = false; if (!initialized) { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -21,11 +11,11 @@ index 7b9bd97..075947a 100644 QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -index 2c64225..3343d32 100644 ---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -@@ -334,7 +334,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus) +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp +@@ -326,7 +326,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus void QGtkStylePrivate::resolveGtk() const { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -34,7 +24,7 @@ index 2c64225..3343d32 100644 gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); -@@ -432,8 +432,8 @@ void QGtkStylePrivate::resolveGtk() const +@@ -424,8 +424,8 @@ void QGtkStylePrivate::resolveGtk() cons pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); @@ -45,7 +35,7 @@ index 2c64225..3343d32 100644 } /* \internal -@@ -601,9 +601,9 @@ void QGtkStylePrivate::cleanupGtkWidgets() +@@ -593,9 +593,9 @@ void QGtkStylePrivate::cleanupGtkWidgets static bool resolveGConf() { if (!QGtkStylePrivate::gconf_client_get_default) { @@ -58,6 +48,3 @@ index 2c64225..3343d32 100644 } return (QGtkStylePrivate::gconf_client_get_default !=0); } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch new file mode 100644 index 00000000000..608c68b6d5b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -297,10 +297,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c + #ifdef XCB_USE_XLIB + static bool function_ptrs_not_initialized = true; + if (function_ptrs_not_initialized) { +- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); ++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); + bool xcursorFound = xcursorLib.load(); + if (!xcursorFound) { // try without the version number +- xcursorLib.setFileName(QLatin1String("Xcursor")); ++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); + xcursorFound = xcursorLib.load(); + } + if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch similarity index 75% rename from pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch index a79f0f36389..b648a58b570 100644 --- a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch @@ -1,8 +1,8 @@ -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -index c1fea93..bc1c0f0 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -611,8 +611,8 @@ static QPair loadOpenSsl() +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +@@ -611,8 +611,8 @@ static QPair loadO #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so // first attempt: the canonical name is libssl.so. @@ -13,7 +13,7 @@ index c1fea93..bc1c0f0 100644 if (libcrypto->load() && libssl->load()) { // libssl.so. and libcrypto.so. found return pair; -@@ -629,8 +629,8 @@ static QPair loadOpenSsl() +@@ -629,8 +629,8 @@ static QPair loadO // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third // attempt, _after_ /Contents/Frameworks has been searched. // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch new file mode 100644 index 00000000000..a79c806462f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +@@ -79,7 +79,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc/lib/resolv")); + if (!lib.load()) + return; + } +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +@@ -95,7 +95,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); + if (!lib.load()) + return; + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch new file mode 100644 index 00000000000..10115e8144a --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch @@ -0,0 +1,15 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf ++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +@@ -12,8 +12,8 @@ QMAKE_INCDIR = + QMAKE_LIBDIR = + QMAKE_INCDIR_X11 = + QMAKE_LIBDIR_X11 = +-QMAKE_INCDIR_OPENGL = +-QMAKE_LIBDIR_OPENGL = ++QMAKE_INCDIR_OPENGL = @mesa@/include ++QMAKE_LIBDIR_OPENGL = @mesa@/lib + QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL + QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL + QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch new file mode 100644 index 00000000000..824d2ea0817 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp +@@ -2442,6 +2442,21 @@ QStringList QCoreApplication::libraryPat + } + } + } ++ ++ // Add library paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/plugins"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty() ++ && !app_libpaths->contains(canonicalPath)) { ++ app_libpaths->append(canonicalPath); ++ } ++ } ++ } + } + return *(coreappdata()->app_libpaths); + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/series b/pkgs/development/libraries/qt-5/5.4/qtbase/series new file mode 100644 index 00000000000..3cfa50e85b7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/series @@ -0,0 +1,8 @@ +dlopen-resolv.patch +tzdir.patch +dlopen-libXcursor.patch +dlopen-openssl.patch +dlopen-dbus.patch +xdg-config-dirs.patch +nix-profiles-library-paths.patch +compose-search-path.patch diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh new file mode 100644 index 00000000000..b86b6df28ac --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh @@ -0,0 +1,100 @@ +if [[ -z "$QMAKE" ]]; then + +linkDependencyDir() { + @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" + if [[ -n "$NIX_QT_SUBMODULE" ]]; then + find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" + fi +} + +addQtModule() { + if [[ -d "$1/mkspecs" ]]; then + # $1 is a Qt module + linkDependencyDir "$1" mkspecs + + for dir in bin include lib share; do + if [[ -d "$1/$dir" ]]; then + linkDependencyDir "$1" "$dir" + fi + done + fi +} + +propagateRuntimeDeps() { + local propagated + for dir in "etc/xdg" "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports" "share"; do + if [[ -d "$1/$dir" ]]; then + propagated= + for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs $1" + fi + break + fi + done +} + +rmQtModules() { + cat "$out/nix-support/qt-inputs" | while read file; do + if [[ -h "$out/$file" ]]; then + rm "$out/$file" + fi + done + + cat "$out/nix-support/qt-inputs" | while read file; do + if [[ -d "$out/$file" ]]; then + rmdir --ignore-fail-on-non-empty -p "$out/$file" + fi + done + + rm "$out/nix-support/qt-inputs" +} + +rmQMake() { + rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" +} + +setQMakePath() { + export PATH="$qtOut/bin${PATH:+:}$PATH" +} + +qtOut="" +if [[ -z "$NIX_QT_SUBMODULE" ]]; then + qtOut=`mktemp -d` +else + qtOut=$out +fi + +mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" + +cp "@out@/bin/qmake" "$qtOut/bin" +cat >"$qtOut/bin/qt.conf" < -Date: Mon, 1 Dec 2014 17:23:22 -0600 -Subject: [PATCH] tzdir - ---- - qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------ - 1 file changed, 15 insertions(+), 6 deletions(-) - -diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -index b4ea91e..a56a245 100644 ---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -68,7 +68,10 @@ typedef QHash QTzTimeZoneHash; +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -61,7 +61,10 @@ typedef QHash Q // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -23,7 +14,7 @@ index b4ea91e..a56a245 100644 if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -559,12 +562,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) +@@ -552,12 +555,18 @@ void QTzTimeZonePrivate::init(const QByt if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -47,6 +38,3 @@ index b4ea91e..a56a245 100644 } } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch similarity index 68% rename from pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch index 63066658f0f..dbf5eac52e6 100644 --- a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch @@ -1,8 +1,8 @@ -diff --git a/qsettings.cpp b/qsettings.cpp -index 35b3ed4..210dfeb 100644 ---- a/qsettings.cpp -+++ b/qtbase/src/corelib/io/qsettings.cpp -@@ -1174,6 +1174,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format, +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp +@@ -1128,6 +1128,24 @@ QConfFileSettingsPrivate::QConfFileSetti if (!application.isEmpty()) confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); @@ -27,11 +27,11 @@ index 35b3ed4..210dfeb 100644 #else QString confName = getPath(format, QSettings::UserScope) + org; if (!application.isEmpty()) -diff --git a/qsettings_p.h b/qsettings_p.h -index a28b583..b2a240d 100644 ---- a/qsettings_p.h -+++ b/qtbase/src/corelib/io/qsettings_p.h -@@ -244,7 +244,7 @@ public: +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings_p.h ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h +@@ -240,7 +240,7 @@ public: F_Organization = 0x1, F_User = 0x0, F_System = 0x2, diff --git a/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix new file mode 100644 index 00000000000..95cd6fea79b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtconnectivity"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch new file mode 100644 index 00000000000..8e86f97a947 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch @@ -0,0 +1,37 @@ +From 3f6fa74067aacd0e595e45b4ef7ce754514cb205 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 17 Oct 2015 09:28:18 -0500 +Subject: [PATCH] nix profiles import paths + +--- + src/qml/qml/qqmlimport.cpp | 14 ++++++++++++++ + 1 file changed, 14 insertions(+) + +diff --git a/src/qml/qml/qqmlimport.cpp b/src/qml/qml/qqmlimport.cpp +index 5a54609..f33c2f9 100644 +--- a/src/qml/qml/qqmlimport.cpp ++++ b/src/qml/qml/qqmlimport.cpp +@@ -1549,6 +1549,20 @@ QQmlImportDatabase::QQmlImportDatabase(QQmlEngine *e) + QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath); + addImportPath(installImportsPath); + ++ // Add import paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/qml"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty()) { ++ addImportPath(canonicalPath); ++ } ++ } ++ } ++ + // env import paths + QByteArray envImportPath = qgetenv("QML2_IMPORT_PATH"); + if (!envImportPath.isEmpty()) { +-- +2.5.2 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix new file mode 100644 index 00000000000..9181c37b225 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix @@ -0,0 +1,8 @@ +{ qtSubmodule, python, qtbase, qtsvg, qtxmlpatterns }: + +qtSubmodule { + name = "qtdeclarative"; + patches = [ ./0001-nix-profiles-import-paths.patch ]; + qtInputs = [ qtbase qtsvg qtxmlpatterns ]; + nativeBuildInputs = [ python ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdoc.nix b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix new file mode 100644 index 00000000000..578ea6ba0b2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtdoc"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtenginio.nix b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix new file mode 100644 index 00000000000..b860a73ef89 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtenginio"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix new file mode 100644 index 00000000000..3273f12eb83 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtgraphicaleffects"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix new file mode 100644 index 00000000000..03d0fffbe80 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtimageformats"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtlocation.nix b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix new file mode 100644 index 00000000000..1e134057c4b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtmultimedia }: + +qtSubmodule { + name = "qtlocation"; + qtInputs = [ qtbase qtmultimedia ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix new file mode 100644 index 00000000000..b6b4d8ea0cf --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix @@ -0,0 +1,12 @@ +{ qtSubmodule, qtbase, qtdeclarative, pkgconfig +, alsaLib, gstreamer, gst-plugins-base, libpulseaudio +}: + +qtSubmodule { + name = "qtmultimedia"; + qtInputs = [ qtbase qtdeclarative ]; + buildInputs = [ + pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio + ]; + configureFlags = "GST_VERSION=1.0"; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch new file mode 100644 index 00000000000..63b141f6ce5 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch @@ -0,0 +1,37 @@ +From bbc706b3fcb90ca3b2b51d5e3434145572152711 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 17 Oct 2015 09:29:51 -0500 +Subject: [PATCH] nix profiles import paths + +--- + src/declarative/qml/qdeclarativeimport.cpp | 14 ++++++++++++++ + 1 file changed, 14 insertions(+) + +diff --git a/src/declarative/qml/qdeclarativeimport.cpp b/src/declarative/qml/qdeclarativeimport.cpp +index 9404834..d185ed5 100644 +--- a/src/declarative/qml/qdeclarativeimport.cpp ++++ b/src/declarative/qml/qdeclarativeimport.cpp +@@ -725,6 +725,20 @@ QDeclarativeImportDatabase::QDeclarativeImportDatabase(QDeclarativeEngine *e) + + addImportPath(installImportsPath); + ++ // Add import paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/imports"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty()) { ++ addImportPath(canonicalPath); ++ } ++ } ++ } ++ + // env import paths + QByteArray envImportPath = qgetenv("QML_IMPORT_PATH"); + if (!envImportPath.isEmpty()) { +-- +2.5.2 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix new file mode 100644 index 00000000000..d1c7bb389a4 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtscript, qtsvg, qtwebkit, qtxmlpatterns }: + +qtSubmodule { + name = "qtquick1"; + patches = [ ./0001-nix-profiles-import-paths.patch ]; + qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix new file mode 100644 index 00000000000..93a864621b8 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtquickcontrols"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch new file mode 100644 index 00000000000..887e107b6c1 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch @@ -0,0 +1,25 @@ +From abd80356449bb36c8adcc5c9ca1df6b47715d265 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 23 Aug 2015 09:13:34 -0500 +Subject: [PATCH] glib-2.32 + +--- + src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +index 1f6d25e..087c3fb 100644 +--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h ++++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +@@ -81,7 +81,7 @@ + #include + #elif PLATFORM(GTK) + #include +-typedef struct _GMutex GMutex; ++typedef union _GMutex GMutex; + typedef struct _GCond GCond; + #endif + +-- +2.5.0 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix new file mode 100644 index 00000000000..127766e2ebd --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtbase, qttools }: + +qtSubmodule { + name = "qtscript"; + qtInputs = [ qtbase qttools ]; + patches = [ ./0001-glib-2.32.patch ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsensors.nix b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix new file mode 100644 index 00000000000..61e64dc47e4 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtsensors"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch similarity index 60% rename from pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch rename to pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch index e1e66a3ce95..6636cc9265a 100644 --- a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch @@ -1,17 +1,17 @@ -From 17c7257e54c00ea2121f2cf95fb2be5e5db6b4ad Mon Sep 17 00:00:00 2001 +From d81c2c870b9bea8fb8e6b85baefb06542f568338 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:31:03 -0600 -Subject: [PATCH] dlopen-serialport-udev +Date: Sun, 23 Aug 2015 09:16:02 -0500 +Subject: [PATCH] dlopen serialport udev --- - qtserialport/src/serialport/qtudev_p.h | 4 ++-- + src/serialport/qtudev_p.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/qtserialport/src/serialport/qtudev_p.h b/qtserialport/src/serialport/qtudev_p.h -index 09940ab..45460f9 100644 ---- a/qtserialport/src/serialport/qtudev_p.h -+++ b/qtserialport/src/serialport/qtudev_p.h -@@ -119,9 +119,9 @@ inline void *resolveSymbol(QLibrary *udevLibrary, const char *symbolName) +diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h +index 6f2cabd..81b9849 100644 +--- a/src/serialport/qtudev_p.h ++++ b/src/serialport/qtudev_p.h +@@ -105,9 +105,9 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN inline bool resolveSymbols(QLibrary *udevLibrary) { if (!udevLibrary->isLoaded()) { @@ -24,5 +24,5 @@ index 09940ab..45460f9 100644 qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); return false; -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix new file mode 100644 index 00000000000..fa7383fc1e7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtserialport"; + qtInputs = [ qtbase ]; + patches = [ ./0001-dlopen-serialport-udev.patch ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix new file mode 100644 index 00000000000..b9ccac7cf93 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtsvg"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qttools.nix b/pkgs/development/libraries/qt-5/5.4/qttools.nix new file mode 100644 index 00000000000..65edc450812 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qttools.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qttools"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qttranslations.nix b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix new file mode 100644 index 00000000000..50fc8cf6826 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qttools }: + +qtSubmodule { + name = "qttranslations"; + qtInputs = [ qttools ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix new file mode 100644 index 00000000000..64f85c42d19 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qttools, qtwebkit }: + +qtSubmodule { + name = "qtwebkit-examples"; + qtInputs = [ qttools qtwebkit ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch similarity index 50% rename from pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch index 0752cdcf479..0eeacce1bc0 100644 --- a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch @@ -1,19 +1,19 @@ -From 8c30f72dbe11752e8ed25f292c6e5695d7733f72 Mon Sep 17 00:00:00 2001 +From 862ce7d357a3ec32683ac6ec7c0ebdc9346b44ba Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:23 -0600 -Subject: [PATCH] dlopen-webkit-nsplugin +Date: Sun, 23 Aug 2015 09:18:54 -0500 +Subject: [PATCH 1/3] dlopen webkit nsplugin --- - qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +- - qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +- - .../WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +- + Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +- + Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +- + Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) -diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -index 679480b..2c373cc 100644 ---- a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -@@ -132,7 +132,7 @@ static void initializeGtk(QLibrary* module = 0) +diff --git a/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/Source/WebCore/plugins/qt/PluginPackageQt.cpp +index a923d49..2731d05 100644 +--- a/Source/WebCore/plugins/qt/PluginPackageQt.cpp ++++ b/Source/WebCore/plugins/qt/PluginPackageQt.cpp +@@ -136,7 +136,7 @@ static void initializeGtk(QLibrary* module = 0) } } @@ -22,10 +22,10 @@ index 679480b..2c373cc 100644 if (library.load()) { typedef void *(*gtk_init_check_ptr)(int*, char***); gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check"); -diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp +diff --git a/Source/WebCore/plugins/qt/PluginViewQt.cpp b/Source/WebCore/plugins/qt/PluginViewQt.cpp index de06a2f..363bde5 100644 ---- a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp -+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp +--- a/Source/WebCore/plugins/qt/PluginViewQt.cpp ++++ b/Source/WebCore/plugins/qt/PluginViewQt.cpp @@ -697,7 +697,7 @@ static Display *getPluginDisplay() // support gdk based plugins (like flash) that use a different X connection. // The code below has the same effect as this one: @@ -35,10 +35,10 @@ index de06a2f..363bde5 100644 if (!library.load()) return 0; -diff --git a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp +diff --git a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp index d734ff6..62a2197 100644 ---- a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp -+++ b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp +--- a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp ++++ b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp @@ -64,7 +64,7 @@ static Display* getPluginDisplay() // The code below has the same effect as this one: // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default()); @@ -49,5 +49,5 @@ index d734ff6..62a2197 100644 return 0; -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch similarity index 50% rename from pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch index 9582b714c90..bb5d1f74364 100644 --- a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch @@ -1,16 +1,16 @@ -From 089db8835c80bf2b7dd91a97a5c6eb26636b6ab9 Mon Sep 17 00:00:00 2001 +From 6a407d30357c2551abceac75c82f4a1688e47437 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:26:39 -0600 -Subject: [PATCH] dlopen-webkit-gtk +Date: Sun, 23 Aug 2015 09:19:16 -0500 +Subject: [PATCH 2/3] dlopen webkit gtk --- - qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +- + Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -diff --git a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp +diff --git a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp index 8de6521..0b25748 100644 ---- a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp -+++ b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp +--- a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp ++++ b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp @@ -53,7 +53,7 @@ static void messageHandler(QtMsgType type, const QMessageLogContext&, const QStr static bool initializeGtk() @@ -21,5 +21,5 @@ index 8de6521..0b25748 100644 return false; typedef void* (*gtk_init_ptr)(void*, void*); -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch similarity index 62% rename from pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch index e8a4ba6a215..f3b9d407bd7 100644 --- a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch @@ -1,16 +1,16 @@ -From 25d2922cce383fcaa4c138e0cc6c8d92328eeacb Mon Sep 17 00:00:00 2001 +From 864020dd47c3b6d532d9f26b82185904cf9324f2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:30:41 -0600 -Subject: [PATCH] dlopen-webkit-udev +Date: Sun, 23 Aug 2015 09:19:29 -0500 +Subject: [PATCH 3/3] dlopen webkit udev --- - qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++-- + Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp +diff --git a/Source/WebCore/platform/qt/GamepadsQt.cpp b/Source/WebCore/platform/qt/GamepadsQt.cpp index 60ff317..da8ac69 100644 ---- a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp -+++ b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp +--- a/Source/WebCore/platform/qt/GamepadsQt.cpp ++++ b/Source/WebCore/platform/qt/GamepadsQt.cpp @@ -111,12 +111,12 @@ private: bool load() { @@ -27,5 +27,5 @@ index 60ff317..da8ac69 100644 return resolveMethods(); } -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix new file mode 100644 index 00000000000..596c02d39af --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix @@ -0,0 +1,33 @@ +{ qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors +, fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt +, sqlite, udev +, bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby +, substituteAll +, flashplayerFix ? false +}: + +with stdenv.lib; + +qtSubmodule { + name = "qtwebkit"; + qtInputs = [ qtdeclarative qtlocation qtmultimedia qtsensors ]; + buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ]; + nativeBuildInputs = [ + bison2 flex gdb gperf perl pkgconfig python ruby + ]; + patches = + let dlopen-webkit-nsplugin = substituteAll { + src = ./0001-dlopen-webkit-nsplugin.patch; + inherit gtk gdk_pixbuf; + }; + dlopen-webkit-gtk = substituteAll { + src = ./0002-dlopen-webkit-gtk.patch; + inherit gtk; + }; + dlopen-webkit-udev = substituteAll { + src = ./0003-dlopen-webkit-udev.patch; + inherit udev; + }; + in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ] + ++ [ dlopen-webkit-udev ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix new file mode 100644 index 00000000000..fbdfbbcf0db --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtwebsockets"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix new file mode 100644 index 00000000000..a765161e2d7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtx11extras"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix new file mode 100644 index 00000000000..9a8ddbba2bd --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtxmlpatterns"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/setup-hook.sh deleted file mode 100644 index 3bc4890f3bb..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh +++ /dev/null @@ -1,77 +0,0 @@ -addQtModule() { - if [[ -d "$1/mkspecs" ]]; then - - @lndir@/bin/lndir -silent "$1/mkspecs" "$qtOut/mkspecs" - if [[ -n $qtSubmodule ]]; then - find "$1/mkspecs" -printf 'mkspecs/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - - if [[ -d "$1/bin" ]]; then - @lndir@/bin/lndir -silent "$1/bin" "$qtOut/bin" - if [[ -n $qtSubmodule ]]; then - find "$1/bin" -printf 'bin/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - - if [[ -d "$1/include" ]]; then - @lndir@/bin/lndir -silent "$1/include" "$qtOut/include" - if [[ -n $qtSubmodule ]]; then - find "$1/include" -printf 'include/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - - if [[ -d "$1/lib" ]]; then - @lndir@/bin/lndir -silent "$1/lib" "$qtOut/lib" - if [[ -n $qtSubmodule ]]; then - find "$1/lib" -printf 'lib/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - - if [[ -d "$1/lib/qt5/plugins" ]]; then - QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$1/lib/qt5/plugins"; - fi - - if [[ -d "$1/lib/qt5/imports" ]]; then - QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$1/lib/qt5/imports"; - fi - - if [[ -d "$1/lib/qt5/qml" ]]; then - QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$1/lib/qt5/qml"; - fi - fi - - if [[ -d "$1/share" ]]; then - @lndir@/bin/lndir -silent "$1/share" "$qtOut/share" - if [[ -n $qtSubmodule ]]; then - find "$1/share" -printf 'share/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - fi -} - -setQMakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -qtOut="" -if [[ -z $qtSubmodule ]]; then - qtOut="$PWD/qmake-$name" -else - qtOut=$out -fi - -mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" \ - "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" - -cp "@out@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" < Date: Sat, 19 Dec 2015 23:28:16 +0100 Subject: [PATCH 403/707] wine stable: 1.6.2 -> 1.8 restructure versions file for clarity and brevity --- pkgs/misc/emulators/wine/versions.nix | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index 971baee0fec..c308dd3c87f 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,26 +1,26 @@ -{ - unstable = { - wineVersion = "1.8-rc4"; - wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; +rec { + stable = { + wineVersion = "1.8"; + wineSha256 = "1x66lzpk7v8qx57clmcq5ag7yh3mqplf1plypwghgchjh70lafzk"; + ## see http://wiki.winehq.org/Gecko geckoVersion = "2.40"; geckoSha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s"; gecko64Version = "2.40"; gecko64Sha256 = "0c4jikfzb4g7fyzp0jcz9fk2rpdl1v8nkif4dxcj28nrwy48kqn3"; + ## see http://wiki.winehq.org/Mono monoVersion = "4.5.6"; monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; - stable = { - wineVersion = "1.6.2"; - wineSha256 = "1gmc0ljgfz3qy50mdxcwwjcr2yrpz54jcs2hdszsrk50wpnrxazh"; - geckoVersion = "2.21"; - geckoSha256 = "1n0zccnvchkg0m896sjx5psk4bxw9if32xyxib1rbfdasykay7zh"; - gecko64Version = "2.21"; - gecko64Sha256 = "0grc86dkq90i59zw43hakh62ra1ajnk11m64667xjrlzi7f0ndxw"; - monoVersion = "4.5.6"; - monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; + unstable = { + wineVersion = "1.8-rc4"; ## wait for staging 1.8 + wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; + inherit (stable) + geckoVersion geckoSha256 + gecko64Version gecko64Sha256 + monoVersion monoSha256; }; staging = { - version = "1.8-rc4"; + version = unstable.wineVersion; sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; }; winetricks = { From 758901397b3c6ce971d1b8b3e2c5b8d7d7137238 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:25:04 -0600 Subject: [PATCH 404/707] qt5LibsFun: build against all Qt 5 versions --- pkgs/top-level/all-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9764ee6e3c..342f35a5581 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8153,8 +8153,13 @@ let developerBuild = true; }); - qt54 = recurseIntoAttrs (import ../development/libraries/qt-5/5.4 { inherit pkgs; }); - qt55 = recurseIntoAttrs (import ../development/libraries/qt-5/5.5 { inherit pkgs; }); + qt54 = + let imported = import ../development/libraries/qt-5/5.4 { inherit pkgs; }; + in recurseIntoAttrs (imported.override (super: qt5LibsFun)); + + qt55 = + let imported = import ../development/libraries/qt-5/5.5 { inherit pkgs; }; + in recurseIntoAttrs (imported.override (super: qt5LibsFun)); qt5 = qt54; From 986f446674271385baaf28313555c8686a60ab7b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:15:36 +0100 Subject: [PATCH 405/707] include-what-you-use: 0.4 -> 0.5 Compatible with llvm+clang 3.7. Changes: - Added Boost and Qt mappings. - Better support for using declarations. - Allow size_t from multiple headers. - Fixed handling includes with common path prefix. More: http://include-what-you-use.org/ --- .../tools/analysis/include-what-you-use/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 57d5cadf98c..4ad8b3f8380 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, cmake, llvmPackages_36 }: +{ stdenv, fetchurl, cmake, llvmPackages_37 }: let - version = "0.4"; - llvmPackages = llvmPackages_36; + version = "0.5"; + llvmPackages = llvmPackages_37; in stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; From ca8903c3c2b96bef02f04168e4322b81d0a02e2f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:22:24 +0100 Subject: [PATCH 406/707] include-what-you-use: use unversioned llvm attribute ...in the expression itself, while hard-coding the officially supported version in all-packages.nix for sanity's sake (mine). --- .../tools/analysis/include-what-you-use/default.nix | 9 ++++----- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 4ad8b3f8380..75e4dba003b 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,9 +1,8 @@ -{ stdenv, fetchurl, cmake, llvmPackages_37 }: +{ stdenv, fetchurl, cmake, llvmPackages }: -let - version = "0.5"; - llvmPackages = llvmPackages_37; -in stdenv.mkDerivation rec { +# Also bump llvmPackages in all-packages.nix to the supported version! +let version = "0.5"; in +stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; src = fetchurl { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 305ed0a4735..9cd7dfafdc0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5746,7 +5746,9 @@ let inherit (perlPackages) XMLSimple; }; - include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { }; + include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { + llvmPackages = llvmPackages_37; + }; indent = callPackage ../development/tools/misc/indent { }; From 1b6128cdc9e7201d9741a487bf48cc4a3b89da2a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:34:43 +0100 Subject: [PATCH 407/707] clipgrab: 3.5.4 -> 3.5.5 --- pkgs/applications/video/clipgrab/default.nix | 34 ++++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index 7d136de779a..4075c87146b 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -1,29 +1,15 @@ -{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }: +{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }: -let version = "3.5.4"; in +let version = "3.5.5"; in stdenv.mkDerivation rec { name = "clipgrab-${version}"; src = fetchurl { - sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r"; + sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd"; # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz! url = "http://download.clipgrab.de/${name}.tar.gz"; }; - meta = with stdenv.lib; { - inherit version; - description = "Video downloader for YouTube and other sites"; - longDescription = '' - ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, - Dailymotion and many other online video sites. It converts downloaded - videos to MPEG4, MP3 or other formats in just one easy step. - ''; - homepage = http://clipgrab.org/; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ ffmpeg qt4 ]; postPatch = stdenv.lib.optionalString (ffmpeg != null) '' @@ -53,4 +39,18 @@ stdenv.mkDerivation rec { install -Dm644 icon.png $out/share/pixmaps/clipgrab.png cp -r ${desktopItem}/share/applications $out/share ''; + + meta = with stdenv.lib; { + inherit version; + description = "Video downloader for YouTube and other sites"; + longDescription = '' + ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, + Dailymotion and many other online video sites. It converts downloaded + videos to MPEG4, MP3 or other formats in just one easy step. + ''; + homepage = http://clipgrab.org/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } From 10a7021c830de157dfb27f599625315778008679 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 19 Dec 2015 22:42:16 -0600 Subject: [PATCH 408/707] nixpkgs: duperemove 0.09.4 -> 0.10 Signed-off-by: Austin Seipp --- pkgs/tools/filesystems/duperemove/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/filesystems/duperemove/default.nix b/pkgs/tools/filesystems/duperemove/default.nix index 4836e39d439..146414a47e1 100644 --- a/pkgs/tools/filesystems/duperemove/default.nix +++ b/pkgs/tools/filesystems/duperemove/default.nix @@ -1,17 +1,18 @@ -{ lib, stdenv, fetchFromGitHub, libgcrypt, pkgconfig, glib, linuxHeaders }: +{ lib, stdenv, fetchFromGitHub, libgcrypt +, pkgconfig, glib, linuxHeaders, sqlite }: stdenv.mkDerivation rec { name = "duperemove-${version}"; - version = "0.09.4"; + version = "0.10"; src = fetchFromGitHub { owner = "markfasheh"; repo = "duperemove"; rev = "v${version}"; - sha256 = "1d586k6rbfqb5557i1p5xq8ngbppbwpxlkw8wqm7d900a3hp36nl"; + sha256 = "1fll0xjg1p3pabgjiddild4ragk9spbdmdzrkq0hv5pxb1qrv7lp"; }; - buildInputs = [ libgcrypt pkgconfig glib linuxHeaders ]; + buildInputs = [ libgcrypt pkgconfig glib linuxHeaders sqlite ]; makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; @@ -19,8 +20,7 @@ stdenv.mkDerivation rec { description = "A simple tool for finding duplicated extents and submitting them for deduplication"; homepage = https://github.com/markfasheh/duperemove; license = lib.licenses.gpl2; - - maintainers = [ lib.maintainers.bluescreen303 ]; + maintainers = with lib.maintainers; [ bluescreen303 thoughtpolice ]; platforms = lib.platforms.all; }; } From 5b553893c18cdee7226ca563d21220e76e283d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Kemetm=C3=BCller?= Date: Fri, 18 Dec 2015 15:16:39 +0000 Subject: [PATCH 409/707] grib-api: init at 1.14.4 --- .../libraries/grib-api/default.nix | 32 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/libraries/grib-api/default.nix diff --git a/pkgs/development/libraries/grib-api/default.nix b/pkgs/development/libraries/grib-api/default.nix new file mode 100644 index 00000000000..ee505b54e7e --- /dev/null +++ b/pkgs/development/libraries/grib-api/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv, curl, + netcdf, jasper, openjpeg }: + +stdenv.mkDerivation rec{ + name = "grib-api-${version}"; + version = "1.14.4"; + + src = fetchurl { + url = https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.14.4-Source.tar.gz; + sha256 = "1w8z9y79wakhwv1r4rb4dwlh9pbyw367klcm6laxz91hhvfrpfq8"; + }; + + buildInputs = [ netcdf + jasper + openjpeg + curl # Used for downloading during make test + ]; + doCheck = true; + + meta = with stdenv.lib; { + homepage = "https://software.ecmwf.int/wiki/display/GRIB/Home"; + license = licenses.asl20; + description = "ECMWF Library for the GRIB file format"; + longDescription = '' + The ECMWF GRIB API is an application program interface accessible from C, + FORTRAN and Python programs developed for encoding and decoding WMO FM-92 + GRIB edition 1 and edition 2 messages. + ''; + + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b4541cc550..e29a20e78b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6567,6 +6567,8 @@ let gperftools = callPackage ../development/libraries/gperftools { }; + grib-api = callPackage ../development/libraries/grib-api { }; + gst_all_1 = recurseIntoAttrs(callPackage ../development/libraries/gstreamer { callPackage = pkgs.newScope (pkgs // { libav = pkgs.ffmpeg; }); }); From e24211df8ff785fc36045b0d9feb4d453f4e4819 Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 20 Dec 2015 22:26:25 +0900 Subject: [PATCH 410/707] firefox-bin: 43.0 -> 43.0.1 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 5f409d32799..e9b171dc94d 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_sources.rb > sources.nix { - version = "43.0"; + version = "43.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "982ba19766fd7d4a1f795ce6737f87be6b990d2272fce4f867cf3dfddd3a21cb"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "d2f09953fa7abd561a660d57ce9b7e8e44537119d09eb0161edd0acd9c9a6e9b"; } - { locale = "af"; arch = "linux-i686"; sha256 = "45fa84f6ee80c781268ae665f8510b00fff7faa77fb52e620e2337d660a24e25"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c18a542f753299a192acf70b221b07d7146e0e25b4c417d5af315f6f447b8080"; } - { locale = "an"; arch = "linux-i686"; sha256 = "7552d4f6dd4cf1fb3541ab991b85e76877d038eeaee480d8e4a036c289732877"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "5493af457fe9ec4a5c4265814610d3227dd491221dbf407f39428b7c6d876d30"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "e543731d752c5b24b1247e8088dae8423d957b199da57f57e02d545885d20083"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "e8bd2be14e44ac51848090ca3f024a4a948742cbf8c5cf3ef46ef91fc3141bf5"; } - { locale = "as"; arch = "linux-i686"; sha256 = "a536eb962a704c63072bca9da947d3b8908dec1c635a7c28e634ed086c116b6f"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "e69ebae4c9a85a3c6a7c3a0d89361c17ae31330db294e2407363c2c2f9ce0698"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "bcd1139f78453f9bf36d1476e66025301f52122a7e93816abec0c7a8c798a25a"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "7462ce0b7481ca65fc29972c5601862386be5b60ae1da55b955b3bd4b2383286"; } - { locale = "az"; arch = "linux-i686"; sha256 = "75860f86e7f7b558c9ae0de86efc6e4ec26abaf097fccea7d2e220849c76f90d"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "d3499b08d94980f89aa92a444023014f15f327180171984eb30198bc312b39c3"; } - { locale = "be"; arch = "linux-i686"; sha256 = "125d6fe56fffeec2d13ff4d222552249573490b621f4c4b891f9741e54f4b97f"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "d29b2645fdf3ada8ad1cac6ad72a0184c850d17e0ad13d8495c22185d49d2cc1"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "9f484b9ef919f5e62f5762f46ebba098d87270f263dfffeb1671e4badeb7ce4c"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "4ca360eee75a93ecff0ca75ffc533802b5acdff225c8d494792d57b5a5822674"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "6270cb85d1b11e36a38933d1dd2b1592302844220530bc099cc06ccb9632bf2e"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "7547142fac57bb305c159e9ec63b42e7d47e399418de9ca98ad0e44c189bb13a"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "e17b2c5930666d9a6f7b523dbbbd118e74665b351a1002f92cb979b7e95ff695"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "6e689634aface136ff1ca4af4e51f54b2f116a48aec7b738ca7bb8e7ad0ae714"; } - { locale = "br"; arch = "linux-i686"; sha256 = "e9045c2bfe041eb9e6d69562ebaf170a93d164cc15ea99f6cd4ddc70614b82e4"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "bc9e9bf595aa4f27b275b913756c952dd2d9f6079022b22355ef6f76b67b8b3c"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "2ba45e18275193d0d693fa195e8ccaa7e171dd5d155b4943f6e0aeb1f4ce1664"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "d1e39ade01b628df66c1bf106c81a7d7c2f3ed8f81cf21610a78d767f7bd5309"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "32ba458dadb02eddf7b54989bf00bd3484143625b601866a0b1560eeffcd3934"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "3ff4b423e3b524e80c2275a064f35c96612fc8e0d95ec18233941313c1f43305"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "73fd0275d55e396f7c2ae88baa0d6d163ccda3d6ba6a5d9f371058bc7142ff5b"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "cafedf882d49e5f91ab3f31a99b65474a8c9044bc21db7f8a1cd6ce8fd7e9ada"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "1544de88d5388142e256521c268a9aa6c694c0abec483833b889a0a91d13bb19"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2fffc929b935961eab53eb41bf74af80a152863c87b15f651bc9b63ee287c602"; } - { locale = "da"; arch = "linux-i686"; sha256 = "eb3ae8ddc10da4b6b4d3d0449577db8025d728f17447ea0d75b2538a6de01cc7"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "29670adf7370200052ebfe37457859568e4246e9bebf19424d22aa08bd209b23"; } - { locale = "de"; arch = "linux-i686"; sha256 = "ca070f4a12756f7f524ef286375561239229150d55e418c9911dc0f13a82a8aa"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "3186bae10e7ccd49b2d92f61ac34ff05de88aac497f3823216b119102bcb6505"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "3488156b5c0c1d0832d65e7fe3d9ecfb858cb6bfccaf4eb849b55391be750472"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "73ae802fcef1bce7ee360eebddee7f21624e3949c81f4ca0e5a14234398654f9"; } - { locale = "el"; arch = "linux-i686"; sha256 = "baf75fd4b6bb45e8e2be9a685b38858edaef26fae2e761f11dfa09c0623fbfef"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "eef57f4ff6fd1dc43d80aaf5e20d064dcb53d50031f363901cd249593c6023c6"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "93fd10d7a97b817b94924db0a16eea6932c1858c3bc113231354ff9e1183da49"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6f6c8d1985b224bf3d6e1c5b5bf7f2b209f3bf4a7c676f9a5d12c97872e9106b"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "e01575f0145514c814c3d9a607a6d633de0fd0782e7e6758405bb745ffe73c35"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "54c84a972c53de4bfc75f126435cf7d7c07710235e6556d1e8214302da6349bc"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8290bd4d9d22a46240d9c3e7a573a0a79613bfdf6de20a463ccee9cd5630d69c"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "3d639e60082922c330ed45d2caeb0706425e2722d137c18841c9cbce3a1a0360"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "4db791125c5856fb191434df45ee95dc2909525911ca8a503546b6176d80e935"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "6feb494c6b1d822084ebc021de6bde1e13263da75cd7a93d7050b727656edf51"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "62c5043ddff9a4f53a98f0be119dbaecc1a67fa6aa2437c7e0d129f152dc4649"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "2f073e925474eff6c323529eec0796ba88d4df118d9f660044af72a7598a115d"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "ba865758213094e1bfff0450d464fd8cc04234636889cc3b61aefe5e2ec991d0"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "c4d6201ab240e9448e427ff0c99454d91d85bf83442ed1fbe1b1540921fe299e"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "f9a569785dd6dea163c3218f9f5cbf8ab257aa4e2f54f85ba94cff735ffd3888"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6895fdc030d92521e157279f07a0f4f45aa09638d6306f3dd14de497ad28ff25"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "323eaec354645ed5bcc89dbde31c68024af86c048e09fec8928009fd63c540ff"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "16b44182b8340f55456c101501284237b564a7f8ec7904a747a77812ea36e26e"; } - { locale = "et"; arch = "linux-i686"; sha256 = "93796e0c0998dbdbbeb9774abfde33ffecb2120747de35bdf9a4fe716b5c5c26"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "6959270bbc217a4e6ed574690a1350796601076b66fc5a2d399199fb361724a7"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "b902d0ffa5a8f470258ac32f0d044206353348609b5f7058fb9c919d04dde4d9"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "19144f8b85e1c95a1651e5284ae2bf306dfc0cc44a0479e96e8f8eeb024210b6"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "c2555942a22d4b98b300dc59103c909bf87cff72004fde3898b37a0159c27b1d"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "da9c4471ad0ee6d7e251b66cb16c28a17c1eeffb8e5ffc3ba3671b50abb54ba8"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "bff3ed957cd63e9c563fcd9c3d22656ac6ad0249ce1b508ca6c2e2bd704b33ff"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "aaff9be56db81c295d979a70bff85d7f714ce2f0cc7c0e6b16641ee2da98e053"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "47fa1bbf54704447f2beb1561895a0c564bf29dd260d6517763d2bc7646a81f5"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "c49d524dd277da165dfe267367b3a05e007e5ce0a71ce68d5d2ee6365307dbf3"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "61c974883e7a6ceedf9c500763db6ea805538389991b1741e34033d7f5a1d803"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "e9afcc65a47aad3c287c9dfa3885c2c64340dc53a95f2cc6f2dc78da71876fe3"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "32cc4754a5415edc0c8ac2a081560ee0b783c4101fce31c63d83489459008748"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "3d5947f09ca893f28d9cb5d5fcc9b052c6e9dfca4af791084ca3ff4480205882"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "8924881fa49579ace5c1421b4c51ee6aff0489d15a2b70d53372af8c10f1d788"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ca643791c3611b9a266907d03082d51b9b363556cc044f638c8551f523c505fd"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "9fc96c7c11b9a0faf3e19f910a0af03ddfa66f64adbae4a4bef3dec9d9cbcfb2"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "bc129515675937c1db6b90721ce12cb832024f2234d48d8750ff8b78e7d8b48f"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "972dc9dfbc81fe0d541103c17791f3e101c7d5caa4b7fac9f6c6021f2292eb23"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "903aaa2c69984b6270e73c6d64fb9d78e70bbef18fa8abae1c13eb39d5016000"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fa7e415da478db2431676fdce4f12c1f751644a2e30cf544ddc3222a3b6d2927"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "1373df42590573aabae82990da82f529b9809f7b5221077af4c0f6e2c4f60bf8"; } - { locale = "he"; arch = "linux-i686"; sha256 = "19fd9098441adfd0956c20d5b188e3e621718c9ec7a7d8f45d999c5d216c1008"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "49bef59a55547c3b633a1bf4b60e48d0a28fe0a320218835462086da8d352010"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "af57e15c754c805a90fb0712784f1632dadb59d05e414ec0507e997a7f5e2fb8"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "3fd560f148816ca2d7926eabea8d786fd6e7602266b4620c78cc6515bd307168"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "e955e7d6d97ae6ebec3df7a079ce1f81e007711548dc294ee7372a730411f9ed"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "a49eb1c665736fa48f3411833ebcadf209e316be020e04e0b0cbba194c041de3"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "443be07db7e46c182aef031d96505698cf66db97b5e6537b7b1c4f3d76da7a6f"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "c4ecf15c893bb5d284782daf4ff1f732e8a3d56d21907c8496bb8ed36e9dc36d"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "f8b994f5a243d5c43ffb57911080b88aaf1d2ec453a614aa34c441ea6e432e12"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "a18897a597551eef6976a2c920dbad32c69d8467d21b3a194c56b7234d99c13e"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "6772f390516c4315e434cb4d191282c3f4604e935ab7fa9be9c20251af8feafc"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "4cdfdab611336f2bd2bddfd5d7f3c268321f8837777307f1cbef312857cdba23"; } - { locale = "id"; arch = "linux-i686"; sha256 = "f65a4cd2b3abb198fc1fe911814c1ac6660723740c20b6d3c7db9edc462c5bf7"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "502090306fce236ffa979ed762fbca37fc9fe088bb576d9ad64e96b0814b97a7"; } - { locale = "is"; arch = "linux-i686"; sha256 = "f7a91b3fe7d7ec8f2e06d2c1aa2c018f60e79f0b62cadb09b65be78ee72110db"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "13d183ff7e2944b4ed86013d6f3e9f7016e5ef2bc24bce853ca91e15da4a89c0"; } - { locale = "it"; arch = "linux-i686"; sha256 = "097d8d24721f01c4891c12fe36058b68b37febcd44e29ca7669a5a4939c8d6b7"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "59d045ee4ce4823ce031f870f1f9c4864143bf5dcd49355d0bae3af541d50c65"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "be055054270cdb6487f48355a41e81414a4f4467ee4c057f204ebb854e3c53f5"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "bc69790970be93c0d6eac9f3d9c8f6ba714f398bd0b35313a5ba04b584c18c3e"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "a1450ef10e3901d0a3b10e15cb5b4b53e6500b62342ad9008ef69df0bb3b133c"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "175b5326133c4243d0141a892346db1f573ee6be6260fbf79ee16a76c073f3f3"; } - { locale = "km"; arch = "linux-i686"; sha256 = "f75d50c214ae66007dc3a31567f7fd527a4a9753b0bee320883b7e3d7c7585ce"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "5be1306bcb56a3af227de5fabe2e80bf29403e9fefe6e12c36f9ca16070a341a"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "16676e0d00bc33d15222a56c3bd426708c265c2ac64bb31198c0f75417b917ec"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "6002d7dcdb2d927a8dccb035c87b452604d8e284752fdac0766f0a2fd11b9b06"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "e01319a0e2f08c0c7d610696b8820049d22c43efb1a434574d46c52ce69ef5ce"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "f539ab8f0f9d1edbd3d85985f369cc9824d8a19ac8888739f95195b63869239b"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "1afd8f5d8ba61aaf659106f096ab35588e04d7b72f8b159ffc00dec604d3f3ec"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "30f1bca8be807a3e12a7caf37da9e0f41d0268e98feb02ea5b58357e8ffc5eaf"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "bfd0e553b91750d42541e0832ee4b3a1e82e4d98691518c4b88fe8307186f1eb"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "64c36d2b1f856fd8c2d980007895d0680ad5193791fb4a40b1791b00418551dc"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "3893e87f6e3f3ced6bcbb05a2fcf35f00c2720bc5c15a6ecbae9e2294e274739"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "37b2494ae6ce999d7aa30b44f2d558a7e38465d08add4bd428882886623fe80a"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "a350cab87ee54f2be47897787648cc5f489383b32441966bc9e908d4324d72af"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "9e9fe30e4e096b35be58225fe666715954891b685744f3ca1f4a1ef264f15876"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "3675909d4168548f29ece3e5f7612214da8b82715244b7e99adcd3c514ff1638"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "8abeb1a0c0a35dac15b4213ffdab7d5c9f6c2e053be96f0cdfa30fc3bef88877"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "52366a36b292d24d5a226119ccb703085a129c9ff8db05cbce45a51d40d062d7"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "88ca8b418251df0a862917dfc2e129bc563f5e6f9812cc470460aec745dd7d57"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "af94fb37ecb6aaabba88a987d509b2049a74dff741243608d5126c2a95df17a1"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "4f99abcc53d92677c4b0ac59141b5e499d74fc850316ea4a4ffe085b7e7e5259"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "79b6fee1cac2dba877b849f2850fe030995d2b805b1717ffa968979ffb487f89"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "6f4b381f5d5d0b99bb3ace8e29fa60289abcffcc0abc2aa2b006b344a5747385"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "182632c120fb86fb0a6b7ab1aa294ae4afb31b886dbc2876257b050fbf625de6"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "41acd3dff5ce040c3efcb7a52910f7332ddc603fafb3e1c4c3a306676d7307cb"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "f04b2f1ee8352293910f99efc27d0bfc1d419844059073d72ba2e807c1006a1d"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "823d167ef1ad2006fdcc460d6212a3d5c1296658445b061b874c548671641acd"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "eb98445046c7a8f47edfab5731b0b11813883afdd9b0254505d24254cf92138e"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "7e649da6fa32382fe8211ca42d0ec182b140672d4666c5b7efc819fd3ccdf669"; } - { locale = "or"; arch = "linux-i686"; sha256 = "b7ed61ccf3c5894b7867389cc1ae7a7d0412f90ce1c0e9a30ce5a15fc6e9a42d"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "9f704141d9d9f15b043e0dea43b7e916506e654631ca1ef4e17a35aeb7e9bcc6"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "0e18759ce39decd72fe6e61bfa731867ce882cebc4825b8635f5a11a7cc1d1d8"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "da7ce2cccc02524514cebb7829efd5f9be827464d0a481389c3d7dbe706fd19e"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "0a6d86210cd4db00f1d841ee505ca15eca4cd88c99fc1172fcc4ddb1c58b787c"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "24d7c14626243859b3e69733d39566e0f4ab12bd7b92cff84abc74dc22470809"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82f9d5e5dd7b4898b43f0e7cf02128a985c2b7c320683c088310608eed9d5612"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "ff27814b5b4eccca0d038feb2dfa85c7e88cd8cabd8575fa36d9eabf1a66f518"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "330ce0315724345c94ed58fa6c1c5a6aae5616014c1ffc4713094a26559cf2a5"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "fe0c98295399b31f96b2caf873d72874fbd088679b13c1d01153ad257f8175b4"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "681430fda3ce3ca1da2b12069b7f6062c97a57144667f72f515d2b3e0ac9e97f"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "09d7676c37f46e6668302f36c6435158a8a518220fce3137313f858faf10f9eb"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "43dead80097cb96988f10945c0545714ddccb28ccfb795028807f1c80888f0e5"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "31f4acde5c7173760d9dd242c851cbc7ba36cd420c107d80bd1008cdcc4572ba"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "252151abbcb3af9e9eb7ba7d973903ffd377d06b9211ec267d1a79b71290f803"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "117040737bf87263c0f476871adb2cbd3a35e63aff4e3f4e51c9e587bccec8a4"; } - { locale = "si"; arch = "linux-i686"; sha256 = "1a77467ca7f830dec897fac26f6ca0ababa05b5dbe953bcacc7474be20245841"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "7508411a21b32572f33acca6ba898d43806fe15cbe55759617d1cc5a3cdbd8ff"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "5bb1c4bb6cce5250427cb5aa21a14397d80ca9f7a883b0107c15427015337646"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "1bbec6fe4aee6114b3c26a1b7b2dd51c4110426ef05c03d6d635bf7238fdbb3a"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "a2d2d3c63c7992a06b5860c29d2d1d8dafd4f45379f96d749cfb1b841f392dbc"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "4db1e2b45a8ea66b13dab359034ebacdfa15fcef753eaeb4969271e911c8782f"; } - { locale = "son"; arch = "linux-i686"; sha256 = "bce8f2cff7c86479ae0c60428a4c6fdb228467edeaee95b0fdac6968b1e89f38"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "2a799848da011fb14eb401e32876afcc8c3fb443008bf4cec9b058925c930777"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "0e6f9bb41ee9bd9898f09f8c71f1c93c646e01a3bf5e8f221673ad1fa102971b"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "feb0d974833e5a51505a25edc6cc20d70e23663b1b1b83f6897f24c42e08ca5a"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "b2cf68237c0508809ee5364fc3b8c9fdf6e3ecade6425af3bbdbdadcaaef05f2"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "ada2a925357962c7a3a65f1dd5d5bc219bd6e34a24c695f3b1d8a51821e9bda0"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "b6354dc50b354a51c6ca71b24ca4d4c382b04f1e45b12669c70a170531c382bd"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d1141b2e01f58aab45d79ecf18b9116b79e1338e7a06524cf7ec85b6be5234b1"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "bdfede4d8b5594838d5cafc66f7f4895b0e0ca0c9b9c6d2cafc677cd26dbd943"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "7e277836132360a58b048ded166e74d5b8f4ea41f8aea3f2c9d2e73f7202808c"; } - { locale = "te"; arch = "linux-i686"; sha256 = "8bd3ce91d690b7f93c409aac981513175b72d291c9d6e0cede3448d8c4a66687"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "2395676f9e4dcbe6dc09add685190f106c2299fd78fdee747898b85379715e24"; } - { locale = "th"; arch = "linux-i686"; sha256 = "52505a11229622bb2f65c0f8da9a27b0c5c33b6078c89163e65f6ee0b879211f"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "23cc6ffd71b2efa6f330addf1c901843b3e18569a375571be502c0c16b32e785"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "9bc4e40737e63a57906378f60b5f14720ee212878f13f370565d54047e81a769"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "5c16aa2c664c78e9b11f23fa466e23d99ee35da93b44b1315c37055b2a447233"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "54a46561dc3f10dc15a16f644383026d51369e61e573cc0d63e98549bf6afcd9"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "953a40460342a0e7ebf8e3236e853503042278ba89347c58929b3e7b75c27a54"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "88ac21648110aedd354c9c3ecd66017543cf55bfcb9c1939bc45af984d9bafed"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "f25374c2ea2b874a081e1e18618c4cd95f3b47f2242780b476f24550868d54b4"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "edc208611860bceddfa56239793f566375a45c4e56d5e2d366b0f9c9860efb7d"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "0fb1a8b32e9a923e56278001ca515b49e17bcd1455819cabe5d432ed97ef9e09"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "36f88783ff39d9a22708fcec5f442c953061004552052388a54f71ed775b7900"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "047897075676154b56134389adc81bc3192e0b61206914aaab9fc744572eb895"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "f91ef1bb954412ad75ae1a17bddc080897f70994a20cca3647ee2e7814f076af"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "87114eaf80a0b9666db5aec0ac13467a1104267436c6c73ee8d6e4b89e799e5d"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "29be9c6dcea74c18f668d6b3535cf8fb642115c2f9f5d41cc136b26fc914e301"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "93af78e3a309a381e352acaa2ebf218c99f858d3fd9ddc40ed15b032745a4ac6"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "77cd7332ecebd3e51cb45896d61494e95e57707dcc1393af00695f8232274c17"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "792d25a8d536d32dc89b655f5e3961b704fa27618395d3ae637180242eae2b71"; } + { locale = "af"; arch = "linux-i686"; sha256 = "fe211798f211a316a5ecf5a5c4dd61389e448b45166c681f886fa1e97bff4734"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "7a6e077c0702e7c832a9b9c5f35a70f19dd4c0c9f910a8a254fe165a5f3d8331"; } + { locale = "an"; arch = "linux-i686"; sha256 = "a01769decb90c7235f2cffcb6eaa135ba0a838e182f8398e12ff664e8be500c0"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "8e4b243cca233a6f00b07ccb5ac2330edc5de590d2d6b787d753e965fd6e777c"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "e572f980f5d28b994b930d3a5665e92f8ab5c149a19a99132bf93cdf2bf75fbc"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "b42f56de042899d67461fab43d41f9b23817e879df23cd0c4be748b701a8d5da"; } + { locale = "as"; arch = "linux-i686"; sha256 = "652919614ebd2775d3a13706ffb09959655f9bb12f0a120698c1deec6c244554"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "62793f511b7a4244beca42d5dbb235df8431f7156a09fc4c1227cfaf19fe8885"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "e6a8ab24ef5585cc5204b5150066c8e96fb30c15b89a7c885fb8def445f2734f"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "e8c286528d5149c58bbae4a75b2d95c408e81de85cfe68e431d97f51c19ec0b0"; } + { locale = "az"; arch = "linux-i686"; sha256 = "829728affcb12321102bee38eb5b0e428d9a9d910a69bb299e77452c5bca6f02"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "aed06f78b55620e2632a9fcb4cbbf36f34ad1510ab7df2dc3de94c8c57f79263"; } + { locale = "be"; arch = "linux-i686"; sha256 = "257afd489537fa53ae84daf819a859a62757122d824d501d95c5010235c345e1"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "7021ac97b762b7d17a498c86c52551056b0cc388a8e10e81e034b845e05f0925"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "a2c74efe9233c4b3bf1a6b9beee417b869ef129e6b60a3078e9528a84d354149"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "a492710cc54c9bc6e406d558063bd16158059fe2e87bf172405b3c6ea38eb391"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "465bad32dc16f8ddb669d032a217ca5863410384b40a86b81290f85b2fc85811"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "063b1642e0ea6ac8b07baa3969698337bfc3a96db724b7a32a668c2e4cf516f1"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "cebcf89bafe0cb88e1d725bf4b4caf72f845a6abd7d5c0ff9b9ed02c99eba686"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "85b51db611b917d3ffddc6b1bf39405eadb69d64473731780fb21f4db42a94af"; } + { locale = "br"; arch = "linux-i686"; sha256 = "997ae06800cf75ec62084db0f453caebe9e6ef0cc43abaf14a623785ca365a2e"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "4455965e809900bb42595c7c05365ec1d26b7508c9d7ca24ac636be4b6583147"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "0e88abaa021e9e435e41baf59590e4d2ee7c3ec442b01620297671f4c4fa023e"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "229ad924b0c72823e7599f8a53df0c1fe46fc4d9972e18a32caa78bbd7f72dec"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5f03a177cd4ea81732329f7ee62494ad25f79e65f12ad4e0cb244aaa95c66e0a"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "67f29e97d323fa8ccf1e14f1638beeecf5489701a13509cd824b61e6c64e0b96"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "100c1ce1bcdbfc9b4a6f3e576e71ca9cbc771ac7d28d916fbfbbf40c7e37a42c"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "178373db4c0ca4edd6150595529d62fa38912a71ab0d6122fe8ba2ee5947f7dd"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "fbdf1b10f6f07c21669a5d515e9c14b3ad8b2a606e2bb997cb75df4928021f48"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "7444923521bf421fe60c721fa16b6005f40a108813e547ef32c0c1263d687630"; } + { locale = "da"; arch = "linux-i686"; sha256 = "4277aa0783b92e5a101ef52ea191347fb873700f8366d06480dc2445fe7c391e"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "9300787407ca226bf1ac9a25f8f4e9428793c032ca102c65b1841a12ebb508b6"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ceaef87cf7553368a919396c3c303033fe6e1bb23477549ff25d2426473127e6"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "55b7296fa2643d7caee38fa0e282959cd0160fb7f8a89bca11085d6bba40a679"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "7b92682d19f457d162c537bea71f9c026b36cefdda440f2a1ea489f44fc57f63"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "be235c2af381500a5cbc4f0c400106a31b00a49fcf19d2a981f5ee7221f7617e"; } + { locale = "el"; arch = "linux-i686"; sha256 = "832c7f65d97795a284e93bec61c14ffcffaf74fa3fc844f1ae896058f0409e72"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "4758c97ab627cd7818f4a38febca52c11084e2c8e0ee2d05f70a6e1f2b67661f"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "02b926d46100116ab7bab27ecbfa60ded6674d5d687f76412443a52e5fdb4283"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "98d83b9434d948d7fbc24708363d1c8e8d37551711994c7b8448f6e924f49be7"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "a8530e2b5d5c16c1afef6759a9015e83767271046537a050442fd6c457986746"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "ea797acf50c2efb39968773864aeac0bd17dc3a1dc726b3ff95780aec01ea669"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "4baa2cc65dd053e226f4391a975c162c8c709f31f82c31d7707ab168f8c249c2"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "93ddb0c696131e9a7a258fc44eed88d5aecac50f101106211e69220e602c949a"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "eabb1fad074ccc3887fb56eda2d71f51af3aa22541d310f0c25ddab0a52ba7a8"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "280f9010cad2583eaca8892cbb2600e3b98d77181ef30f5cf233951e26414df9"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "82741dd5a2bdb7541d931ed8606ec483f44b0d6416a3f4d9b3fa1c1e57cd3390"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "10499b8c57d6d6c8976e80e5b50c278846c45d408a2ead66328c780cb5a40ed2"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "e5879a71124b429250f6bea231f0411e80c28718a7cecdd7713e9512d21c22f6"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "177b19854746c70fbe1243db51b22e3a96e660def60763d79a340b08c7537d6d"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "b1f2baa7fdeb2a670289fdbea089084f01171c1a5295142aff38a36efe7c4f3f"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "231e9d0d9588732d4aa440e7d56eaa4d6a94457b0805802643c4ab6b5be46087"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "917e235734993f4a121eb01fd91cf1788b018f52477116b1848a2faebdf6c4d0"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "de6ec93363ae0f814737bb63ff17d5beb2e756d5990ca15f7dca445bfcf83331"; } + { locale = "et"; arch = "linux-i686"; sha256 = "dacfc817b23972d066a89c2430d0e4ae450fa7c05cc148c726e0a739aa248dcc"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "e114477a85c27f199e807b203c78c148b9b594d3dcf8fefa08bb6b15c1b60deb"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0fba5ce5724309e251cc010b5bdff861b21934fe21ce810c11bc8f25ef6f2854"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "d43fa45c2e78c112a2dfc00e5486dad0150aca3d14ea87e6184392a394ca0e0a"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "fb37966eca9e8077b96187b73925e3ff9d2725954db4ce6a9dcf8fe7004d1213"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "46e103d2bbaf66e123a2f178b29c20fc7e87dec3cd1ef4cf7edbee379104774a"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "46658e4701c21276a2731efa1c64783dce29fd3cfca35edebb36dd094f826280"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "aae29a8ab6a2245536a7828dc688973589d46c32f60e3e08424d417b2fdca1ce"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "45c19f14327a5ec2a6ca64e9126467d88ff43995e98a9954a3b50b5440a2cc46"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "2ea74f89de5af4ffdcc27746a524114f5160ddc38d041a344367c85856830c7e"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "05b2998f27e59ef1a771deceef92888995503b220b4bd6e60bf62d5bf5bb3b91"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "8b39731c52323fda138e82a6152cefa5f90bed9b3997415feb508498faa96c34"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "b51c3801e852f6ded7f5cc166dba95398e14a316103e34dab71b7bb82260880f"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44f8629a19a48748b10246df108b2dfb3b685b261462a925c64c337649ee6b55"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "62d5eda1223150bb402ab56a5bd106e5b5e95229b5f4f7542d786d7d6b4e55d0"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "8b1329faf13cd75e960f5958c98002ef486cbd76d8429e800b8930707d23bbc4"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "6f572140ee8ff1a299613c6f459a7de0097519f04fb4094bfd9736fb13bd9d58"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "4d03d82c86cf1e574264786ff2cf6d70201d0ec657ab729530ae90303a160fdc"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "f0f1ab79f93a5467f097b7c5c4ac20847c1029b975ea2bd40b772a9a6ae8c759"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "093cad0eac9c3f399a24ed5cc954f520a997562e05920cb833b44f19dfe35807"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ab234f32b8fbedbcf80965661f0db0245826e965d6f6266a329723ea2f5a19f"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "d10681ce58b2b2ff00b0219b0807707efb4005dcb1bb7d63ce4c297d2c6f6213"; } + { locale = "he"; arch = "linux-i686"; sha256 = "10f8c4ce42dc5a74754bc18d1f2883eee7c02884900435f432be01a7fdb4b8ed"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "9bc878bc21c03717f75f6a24ba604f7822dc2872afe02a00d01fefec593679d0"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "e5cf142f1aedbaee1044ef07e2ab78f9a11658d11544dd4a0f2d5a756862e8ba"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "adea7b2dffbd2b354c1fbb395c661ddf433e65ba2ea0e121e3275ecc0d691df4"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "12152b2510a30b0961715af872c93f16e178d9251b76e69e036f48576795fff9"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "37013843d5ec1056139cfd54d12c490314cf22cd0cef54dd95540baeeee6230c"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "5f9cda6b0a8a86bf22697d05625abb0b12776a5dd28e696ccece9a2eb5147bc6"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "d927c16ad103a0b2c2fa701e474d68b89cf45813b94714d1fed82140ae699d66"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "26522239478dad6fc04c06cf1a4e13998cdc69dd026afe127f5c62cf40114332"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "3742d3f582d5229e58fe918d022b8bd55e856957b95f7d75aed4aefa2983713f"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "d847834c540d40344678d20e4c0a9f30cb3af3b28e0147da9905522c1e43d553"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "672bb8abca09194ffcf402ac89296c31d46c5dd10cec7d98e7588faf98112d15"; } + { locale = "id"; arch = "linux-i686"; sha256 = "d6388edc053ffd8d1c8b96d09edacec503109f33b42ba89a3a35fee8593e1b58"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "7968be1865b6381f970e514f1f9268bd41cfda5b8e5695544dd93627ec0c8124"; } + { locale = "is"; arch = "linux-i686"; sha256 = "7239ce4db17389e1717a63827faad3ef4957ef496f2f7b4d7e1e9fc96aa864cd"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "babbec58f631050242183926f0956a3c5ff2a064a8aafdc2d1bdd945b0c353ad"; } + { locale = "it"; arch = "linux-i686"; sha256 = "75b5f2fa097819a5de8450422b368f0b2bd4fb8e5ff67b60abc9a014939113f5"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "63737299f29d8f52f9ef00e43160ecc3c8a9046c050e6b78c651079750853505"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "6ee7bc9487d9ac5d121a706920e8efaabe9bdc5bb7527f02f38fe27771aa1042"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "f9add10fe74ad4b1fb42618a93f686ae3929e862b24248eed7abb3ab8129808d"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "8e10163a29fd333f31bbfa57ad92f2b3cfedec23726779cafa567de80e217548"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "b20fcb23b481ad30089bf94b704847ae8deae3841c3d032b39d3ec43eef0eda5"; } + { locale = "km"; arch = "linux-i686"; sha256 = "6df67080e6e2b8236432bdf7d215b674ef2d534c63dcabeb3a894966e4e8866f"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "983571f48d4517f25e22a0c828240bd00e8cdf5f643c7ad0b094b2a73d7cd2f5"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "27e20cc9794805763539683407d3e40a02b8cc77ea7e4ec6d63a73bad36d6a74"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "6d4733730e57ea4aac60e0fb55b8db00c41d9848f1b9b28811cbada781b557d8"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "81cc34afd043bebd79760ec759eb47b5ac32374ee1e3698327a3520d51f308b8"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "2401953e6f1fdf8a7b5c3bf01c9ae7b0873697f8519ac8c27495053e1a23990c"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "3d3917d0fad2cea34325d95e21208f7bc33a5f8823b633c5c4c3e38979f0e4d4"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "85e8b23f22a5349a649f892b5134ece615ba2832257cdbeebe4d44900d140070"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "4ac4805e59b4a9546b5a035d5599be3bb828d06f53ceaef1a38d7e906da40030"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "b9f0ae9691e2c956a7e7227552d86624a03e99258caab7a4fa8a028f28a50551"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "552e9bd5a00373135a165bbf05d2edfbc6ee6708b0b6e2ff71c7762d44baa303"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "7591d8edf125a3c98383b2fdcb84016659ada7314cf15390401183641fffbe2a"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "c25de9a04ae447b39c1ba33e0e1ab56a1e085a2fc6d0bffe4d47f3c2e6353587"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "b8bd88d4e472f12518e848900947fea0070dd6acba698fe7330a0aec0e2241c4"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "baa001a2118908ec106717260b6aa8e8a66372f72a6424c4ec77545ddfc586c5"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "cbb8e8c9184ae617809603c0ab0704d0271d7bc5a84b0d7697dd5ab980a1108e"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "5defd3a75c2f7858335b5bd2f5d46e555e237af7be3cb671f324a107fecc04dc"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "bc5dadffe98a2fb127fa0a83442880359123630e944516410b48a923659f0f70"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "fa324f6e164be65b94e5d9dd56f52dfed744f71403d06e1ee6db6d653fa9c56e"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "e52a794c144c062925e310d2aae725152e70b2c1c61657772ae639f2a36bf656"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "a27bf493efba61fc01f2c64308338e510671708895567af4b209fa3bc41718da"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "da349192ee2a36ed48e3ae8ff4d1acea55877544c77a2b07dd2f017ce4f6e1b7"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "37245f0291b519b436b1b862299960a7961bfb496ca18c247cc5014ccddf9427"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "02c93155e20775db45d05cd46a8b28e2e88c2a20dc4c847ca0ac4844691c4a2a"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "c449d3b9b9b1aa3e438e7380f7c9c89c3d91f207f798a7a5dea11ea05371caa5"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "15ccabff42c778fdff18757bfca234e0bf1bde589b76c7fb950783437cd9c0b8"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "1ec5fea33f0a150c1039386ebefef81acb004142ca4d18023d6e86852969cffb"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "3a8d31dd02895a7113ed3eb4cc004b2748c39badff206f69f2f9fe0aceb1b013"; } + { locale = "or"; arch = "linux-i686"; sha256 = "fa93ce73fa59876f7beb0f48e484dd4561a4d4c2c187d8c896f5e1e5f9306342"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "bd3cdf10fce0ac75bfa2e5fac591b09c8351a3ae2f2018e45546e77d85c384f5"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "5f2917636c1b193b3b7136bf6444a0924f693916f981456965cb452d58812400"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "a8f440c37462a4712df9cd274fd939a4c5bd1a5e4d38435499f598be36b18e1a"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "757cc7c6d9e6cfd701b0a84cce6973f356b0f16781ba80ad92b66c5bc8389d65"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "45702d113636970e97222bb7ff48f8e54e16912e39f9c576a17b1ee3fd2530a0"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "241ba56480c8e7a983e26fa8382c3a5f177d31858fd4453b6ba42578d1d0c9ef"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "90f03fbbe12256824024050698e231c3093630ebd09be56e372d4f76e89b55b2"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "af2e770bd86a2d683883ce9e28be32837be55c3e705430dd5b60d6684154969f"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "dbaefe62b8285931e1a09b70f6082c7c52404117d0ee92a343250b419a2399e3"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "b559d1ffb96587ecf335b6cefcd8f4155161780f6121d19f244d59b051f2145f"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "247029e16aa38a83aec68e7269a93a1ee6f6cb9846aca97fd4a2c44a22ff2b64"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "d3555d64bb64958c577af8ffd958eebaec8cba00a9755b2005bf480527fa52cf"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "e81aeb9737cfece9ae9e886fcf32a85aea943ef4211af8a4fee46cca8b9c9027"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "ab93abbabb9f0d605cc8a0775d3a25e383e5d16c19eda2c5d88fbb7353f4983e"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "304c4eec5ddb2416b71fec38bb2eb0bb9260a9746bccc4c31b9ebf97351d09fb"; } + { locale = "si"; arch = "linux-i686"; sha256 = "4f946959e40dfff8fa83654c733e3c7dc5cd4bfe2d166d454a1f9c98cf3a7d65"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "e06e5d2ea19ea5f4e8db666a53c1854f7861a06f53d2bfac8bc3c128bddc9f87"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "10aa224b3e7eac73f196d4c8ef836b903938c326ee86024f56847afb667cad35"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "376e803c1626a6cd47f1627c4d735fba422e48385bfb5333b58a52115ce13ae8"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "fb15fc51459c916a9c9c6e3969dedd873fdd89d7864d17d6cbedb29e905b6749"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "ae545eae7e637aff1825913b454eb9be87321a1fd6d9777c6aea33aa4159f629"; } + { locale = "son"; arch = "linux-i686"; sha256 = "9df97e243e34df135c91476a4bfb632e0a1e0935afc643f142b1536d0f6c3c1a"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "f8f0ba26226d12bc5896d67fb52e4f5166f307dcc1ea4a09faf11a3a57bdefa4"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "0478e708713d8a8d966442d26f02654945e8b888213e1df017b09de066ddbeb0"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "516a655ac44e81f530673aecfd3ce2d50487b79e00a89ad196ba8772bd87eb3b"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "777d1582a745eaa1134282cf9b299fabf1eaabfefa045701fdf5ccc33ea7f439"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "2675e68d168baa851bd8c7b320818add6135ac96f938ef9039807286c82d9321"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2af1b6c6f2a054176e2ae19d4a8d1ff659fdf25fbb6dda1ae01fe1d3e20fce6"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc8ed365766fe29849f3840d05516be2c68018b3165a2a83bce4c4f1fff63a9e"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "d24f0fe9ee72cb88a214873a49d7734b9a0e78fbcf39baaa5bf72a50aea34ff7"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "5a88e39ccad7f3aca46d5f0558194b13c33e557c58c24683eadd4484566be219"; } + { locale = "te"; arch = "linux-i686"; sha256 = "78b61877ba4b89b9a7d2198d59c3331b2e697f8bf9c55a3e6e734cb3f4e3df91"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "693e5253f4564ae69a21a25e18fbbf5902e2e5e39b388d1cc30e35f9a49029c4"; } + { locale = "th"; arch = "linux-i686"; sha256 = "372f36a5ea8fe5b92c2aa1ec7fcde80ca0bd006cdc220b14d1175eeb11fb7679"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "03b1f0037809b14f7e2daafa7dd43471ed914e445fdf4d12c5bba50c4b66e0aa"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "d030908f9ed247e93a4417d48ef3b4ab136dd5325d5a7e8894f186a6a5179a3f"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "9e15c843feff5d071a4a8e3be64cb2faba9021846c7d5bfe13f206ce91300eb9"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "1b377aec5af5af4021b5385f2a46198d181d1c4d8994b2a1a4108bf9cacdcac3"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "0b158a684610ca92d95868605f18dd61040e0bab820ef7e858505d04d8b5685f"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "8d905bac16fd022354aa54743ae12afabc6f823609586f9ca12ea6b9717ef9e7"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "e22740daf104694323437ae5885aaba67fb7392719c0872ba6f07e2ea73557c1"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "372904386e107a595179b6a0f6bed84e7f986878e054c7e052c3e0378b2a9b2e"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "9c6e2f5cfec7d468dbbf3bda667b00865fec1f10d90a0ba9971ca4c33e8e87b9"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "b056ba0741f09be1d2d2e7980ecc17e813c587080328959e7f4362409fabac3e"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "075effe19f422430948c0a90255ba26bcbf0a4b21153652c1d582ab626eb6be6"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "e3e8b0e0bba1a9a583cb0f82e24d3898f453a9fc478f119ca15f9a8c280dc1e8"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "92236719b5553aad48215b51d13173f7c2673afc4f05d16d92d74a102efa8a22"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "7400fe4f31e95472ca7ddaf2fc0ededa7b8fe709d32674a264639bd065885aaf"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "7f5dd7597600175f7d049d99558c44910ca5a3d07b4ee1140d1ad7e5fb4e6c16"; } ]; } From 6f32a29f54475da745db9208a4a349c39c7afe03 Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Sun, 20 Dec 2015 15:27:31 +0200 Subject: [PATCH 411/707] fira-code 0.6 -> 1.100 --- pkgs/data/fonts/fira-code/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 1ed63f7ac9e..02db24203b7 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { name = "fira-code-${version}"; - version = "0.6"; + version = "1.100"; src = fetchurl { - url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode-Regular.otf"; - sha256 = "1blalxnmrxqlm5i74jhm8j29n0zsnmqi3gppxa9szjzv4x2k5s0a"; + url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip"; + sha256 = "1fprryfy8b79ncya1jzbzbxs75kvr1zwinflr8sl3d2m1r5kl03x"; }; - phases = [ "installPhase" ]; + buildInputs = [ unzip ]; + phases = [ "unpackPhase" "installPhase" ]; + sourceRoot = "."; installPhase = '' mkdir -p $out/share/fonts/opentype - cp -v $src $out/share/fonts/opentype/FiraCode-Regular.otf + cp -r *.otf $out/share/fonts/opentype ''; meta = with stdenv.lib; { From 664a64ef132ccd7781d5a16f1d8d551ea077e940 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:29:30 -0600 Subject: [PATCH 412/707] grantlee: Qt 5 infrastructure update --- .../libraries/grantlee/5.x-old.nix | 32 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 pkgs/development/libraries/grantlee/5.x-old.nix diff --git a/pkgs/development/libraries/grantlee/5.x-old.nix b/pkgs/development/libraries/grantlee/5.x-old.nix deleted file mode 100644 index 4127280fb9a..00000000000 --- a/pkgs/development/libraries/grantlee/5.x-old.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchurl, qt5, cmake }: - -stdenv.mkDerivation rec { - name = "grantlee-5.0.0"; - -# Upstream download server has country code firewall, so I made a mirror. - src = fetchurl { - urls = [ - "http://downloads.grantlee.org/${name}.tar.gz" - "http://www.loegria.net/grantlee/${name}.tar.gz" - ]; - sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa"; - }; - - buildInputs = [ cmake qt5.base qt5.script ]; - - meta = { - description = "Qt5 port of Django template system"; - longDescription = '' - Grantlee is a plugin based String Template system written using the Qt - framework. The goals of the project are to make it easier for application - developers to separate the structure of documents from the data they - contain, opening the door for theming. - - The syntax is intended to follow the syntax of the Django template system, - and the design of Django is reused in Grantlee.''; - - homepage = http://gitorious.org/grantlee; - maintainers = [ stdenv.lib.maintainers.urkud ]; - inherit (qt5.base.meta) platforms; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 342f35a5581..4faf28518eb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6638,8 +6638,6 @@ let grantlee = callPackage ../development/libraries/grantlee { }; - grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { }; - gsasl = callPackage ../development/libraries/gsasl { }; gsl = callPackage ../development/libraries/gsl { }; @@ -15815,6 +15813,7 @@ aliases = with self; rec { exfat-utils = exfat; # 2015-09-11 firefoxWrapper = firefox-wrapper; fuse_exfat = exfat; # 2015-09-11 + grantlee5 = qt5.grantlee; # added 2015-12-19 htmlTidy = html-tidy; # added 2014-12-06 inherit (haskell.compiler) jhc uhc; # 2015-05-15 inotifyTools = inotify-tools; From 2a8b6959cccea20806793f88b9fc7c7c230c2dc0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:38:39 -0600 Subject: [PATCH 413/707] libdbusmenu-qt: Qt 5 infrastructure update --- .../libraries/libdbusmenu-qt/qt-5.4.nix | 23 ------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix diff --git a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix b/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix deleted file mode 100644 index 5f76162453c..00000000000 --- a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, fetchbzr, qt5, cmake }: - -stdenv.mkDerivation { - name = "libdbusmenu-qt-0.9.3+14"; - - src = fetchbzr { - url = "http://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk"; - rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2"; - sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd"; - }; - - buildInputs = [ qt5.base ]; - nativeBuildInputs = [ cmake ]; - - cmakeFlags = "-DWITH_DOC=OFF"; - - meta = with stdenv.lib; { - homepage = "http://launchpad.net/libdbusmenu-qt"; - description = "Provides a Qt implementation of the DBusMenu spec"; - maintainers = [ maintainers.ttuegel ]; - inherit (qt5.base.meta) platforms; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4faf28518eb..e55121ea39e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7026,8 +7026,6 @@ let libdbusmenu_qt = callPackage ../development/libraries/libdbusmenu-qt { }; - libdbusmenu_qt5 = callPackage ../development/libraries/libdbusmenu-qt/qt-5.4.nix { }; - libdc1394 = callPackage ../development/libraries/libdc1394 { inherit (darwin.apple_sdk.frameworks) CoreServices; }; @@ -15818,6 +15816,7 @@ aliases = with self; rec { inherit (haskell.compiler) jhc uhc; # 2015-05-15 inotifyTools = inotify-tools; jquery_ui = jquery-ui; # added 2014-09-07 + libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 libtidy = html-tidy; # added 2014-12-21 lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 From fef302e3e4d918e54bea423c6b42ab91c137ca01 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:47:49 -0600 Subject: [PATCH 414/707] accounts-qt: Qt infrastructure update --- .../development/libraries/accounts-qt/old.nix | 27 ------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 pkgs/development/libraries/accounts-qt/old.nix diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix deleted file mode 100644 index 26a04362090..00000000000 --- a/pkgs/development/libraries/accounts-qt/old.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qt5 }: - -let version = "1.13"; in -stdenv.mkDerivation { - name = "accounts-qt-${version}"; - - src = fetchFromGitLab { - sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl"; - rev = version; - repo = "libaccounts-qt"; - owner = "accounts-sso"; - }; - - meta = with stdenv.lib; { - description = "Qt library for accessing the online accounts database"; - homepage = "http://code.google.com/p/accounts-sso/"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nckx ]; - }; - - buildInputs = [ glib libaccounts-glib qt5.base ]; - nativeBuildInputs = [ doxygen pkgconfig ]; - - configurePhase = '' - qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake - ''; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e55121ea39e..07cf2a1194d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6047,8 +6047,6 @@ let accountsservice = callPackage ../development/libraries/accountsservice { }; - accounts-qt = callPackage ../development/libraries/accounts-qt/old.nix {}; - acl = callPackage ../development/libraries/acl { }; activemq = callPackage ../development/libraries/apache-activemq { }; @@ -15798,6 +15796,7 @@ let ### Deprecated aliases - for backward compatibility aliases = with self; rec { + accounts-qt = qt5.accounts-qt; # added 2015-12-19 adobeReader = adobe-reader; arduino_core = arduino-core; # added 2015-02-04 asciidocFull = asciidoc-full; # added 2014-06-22 From c1841675f378b3d5a4100d3af5032547ca8713c0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:31:25 -0600 Subject: [PATCH 415/707] antimicro: Qt 5 infrastructure update --- pkgs/tools/misc/antimicro/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/antimicro/default.nix b/pkgs/tools/misc/antimicro/default.nix index a2eed913930..1d7984ac11d 100644 --- a/pkgs/tools/misc/antimicro/default.nix +++ b/pkgs/tools/misc/antimicro/default.nix @@ -1,4 +1,4 @@ -{ stdenv, cmake, pkgconfig, SDL2, qt5, xorg, fetchzip }: +{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchzip }: stdenv.mkDerivation rec { name = "antimicro-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake pkgconfig SDL2 qt5.base qt5.tools xorg.libXtst + cmake pkgconfig SDL2 qtbase qttools xorg.libXtst ]; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 07cf2a1194d..824c710fb2c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15252,7 +15252,7 @@ let ### MISC - antimicro = callPackage ../tools/misc/antimicro { }; + antimicro = qt5.callPackage ../tools/misc/antimicro { }; atari800 = callPackage ../misc/emulators/atari800 { }; From 7450865827821efbd33a35f16bcdfb8aafd34d27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:36:38 -0600 Subject: [PATCH 416/707] antimony: Qt 5 infrastructure update --- pkgs/applications/graphics/antimony/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 589d20cb126..5e8dfd93f30 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, libpng, python3, boost, mesa, qt5, ncurses }: +{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, ncurses }: let gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c"; @@ -19,7 +19,7 @@ in buildInputs = [ libpng python3 (boost.override { python = python3; }) - mesa qt5.base ncurses + mesa qtbase ncurses ]; configurePhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 824c710fb2c..f937ef729c9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11015,7 +11015,7 @@ let amsn = callPackage ../applications/networking/instant-messengers/amsn { }; - antimony = callPackage ../applications/graphics/antimony {}; + antimony = qt5.callPackage ../applications/graphics/antimony {}; antiword = callPackage ../applications/office/antiword {}; From f250a6e64ef1aa7fd4bb5e48cccc7df65293bbae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:44:40 -0600 Subject: [PATCH 417/707] qt5: build env and full per version --- pkgs/development/libraries/qt-5/5.4/default.nix | 8 ++++++++ pkgs/development/libraries/qt-5/5.5/default.nix | 8 ++++++++ pkgs/development/libraries/qt-5/qt-env.nix | 6 ++---- pkgs/top-level/all-packages.nix | 8 ++------ 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index 4bb24427b9f..9b1324d1137 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -101,6 +101,14 @@ let qtx11extras = callPackage ./qtx11extras.nix {}; qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; + env = callPackage ../qt-env.nix {}; + full = env "qt-${qtbase.version}" [ + qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats + qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport + qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras + qtxmlpatterns + ]; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 4bb24427b9f..9b1324d1137 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -101,6 +101,14 @@ let qtx11extras = callPackage ./qtx11extras.nix {}; qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; + env = callPackage ../qt-env.nix {}; + full = env "qt-${qtbase.version}" [ + qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats + qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport + qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras + qtxmlpatterns + ]; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; diff --git a/pkgs/development/libraries/qt-5/qt-env.nix b/pkgs/development/libraries/qt-5/qt-env.nix index e6973015aca..11c6ac74d5f 100644 --- a/pkgs/development/libraries/qt-5/qt-env.nix +++ b/pkgs/development/libraries/qt-5/qt-env.nix @@ -1,8 +1,6 @@ -{ runCommand, lndir }: +{ runCommand, lndir, qtbase }: name: paths: -{ paths, qtbase }: - -runCommand "qt-env" { inherit paths qtbase; } '' +runCommand name { inherit paths qtbase; } '' mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f937ef729c9..bd92967d79d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8205,12 +8205,8 @@ let qt55Libs = lib.makeScope qt55.newScope qt5LibsFun; qt5Libs = qt55Libs; - qtEnv = callPackage ../development/libraries/qt-5/qt-env.nix {}; - - qt5Full = appendToName "full" (qtEnv { - qtbase = qt5.base; - paths = lib.filter lib.isDerivation (lib.attrValues qt5); - }); + qtEnv = qt5.env; + qt5Full = qt5.full; qtcreator = callPackage ../development/qtcreator { qtLib = qt54; From 2dc00624437d186fd5c9e5ebea81382b2aeb0e2c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:45:56 -0600 Subject: [PATCH 418/707] telepathy: Qt 5 infrastructure update --- pkgs/top-level/all-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd92967d79d..ec1de864c9a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8504,8 +8504,6 @@ let telepathy_qt = callPackage ../development/libraries/telepathy/qt { qtbase = qt4; }; - telepathy_qt5 = telepathy_qt.override { qtbase = qt5.base; }; - tevent = callPackage ../development/libraries/tevent { python = python2; }; @@ -15826,6 +15824,7 @@ aliases = with self; rec { rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 speedtest_cli = speedtest-cli; # added 2015-02-17 sqliteInteractive = sqlite-interactive; # added 2014-12-06 + telepathy_qt5 = qt5.telepathy; # added 2015-12-19 x11 = xlibsWrapper; # added 2015-09 xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 xlibs = xorg; # added 2015-09 From 68ff859bf0affcc76de59adc27b804649e28c2ab Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:46:40 -0600 Subject: [PATCH 419/707] dropbox: Qt 5 infrastructure update --- pkgs/top-level/all-packages.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec1de864c9a..c233bc2e1f9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13097,11 +13097,7 @@ let copy-com = callPackage ../applications/networking/copy-com { }; - dropbox = callPackage ../applications/networking/dropbox { - qtbase = qt5.base; - qtdeclarative = qt5.declarative; - qtwebkit = qt5.webkit; - }; + dropbox = qt5.callPackage ../applications/networking/dropbox { }; dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; From 05dbd07cd14c50b5ad60ae0f060dd95767f87b1e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:48:09 -0600 Subject: [PATCH 420/707] pyqt5: Qt 5 infrastructure update --- pkgs/development/python-modules/pyqt/5.x.nix | 5 +++-- pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index bb1d91b3ca8..c2e5cb1a763 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, python, pkgconfig, qt5, sip, pythonDBus, lndir, makeWrapper }: +{ stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus +, lndir, makeWrapper }: let version = "5.4.2"; @@ -20,7 +21,7 @@ in stdenv.mkDerivation { buildInputs = [ python pkgconfig makeWrapper lndir - qt5.base qt5.svg qt5.webkit + qtbase qtsvg qtwebkit ]; propagatedBuildInputs = [ sip ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a952fb7c76b..112a7f0da86 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -166,7 +166,7 @@ in modules // { pyqt5 = callPackage ../development/python-modules/pyqt/5.x.nix { sip = self.sip_4_16; pythonDBus = self.dbus; - qt5 = pkgs.qt5; + inherit (pkgs.qt5) qtbase qtsvg qtwebkit; }; pyside = callPackage ../development/python-modules/pyside { }; From 26cf5db23ff64832a1e7fddebf9d525c71e16604 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 19:58:38 -0600 Subject: [PATCH 421/707] mlt: Qt 5 infrastructure update --- pkgs/development/libraries/mlt/qt-5.4.nix | 39 ------------------- .../libraries/mlt/{qt-5.5.nix => qt-5.nix} | 0 pkgs/top-level/all-packages.nix | 5 +-- 3 files changed, 2 insertions(+), 42 deletions(-) delete mode 100644 pkgs/development/libraries/mlt/qt-5.4.nix rename pkgs/development/libraries/mlt/{qt-5.5.nix => qt-5.nix} (100%) diff --git a/pkgs/development/libraries/mlt/qt-5.4.nix b/pkgs/development/libraries/mlt/qt-5.4.nix deleted file mode 100644 index 6f308a20fdc..00000000000 --- a/pkgs/development/libraries/mlt/qt-5.4.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv, fetchurl, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate -, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt5, sox -}: - -stdenv.mkDerivation rec { - name = "mlt-${version}"; - version = "0.9.8"; - - src = fetchurl { - url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz"; - sha256 = "0x0hsb05i7g70dh3jll41qlvcylailfgsr0y1dpx7hyigynxc50j"; - }; - - buildInputs = [ - SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2 - makeWrapper movit pkgconfig qt5.base qt5.svg sox - ]; - - # Mostly taken from: - # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine - configureFlags = [ - "--avformat-swscale" "--enable-gpl" "--enable-gpl" "--enable-gpl3" - "--enable-opengl" - ]; - - enableParallelBuilding = true; - - postInstall = '' - wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 - ''; - - meta = with stdenv.lib; { - description = "Open source multimedia framework, designed for television broadcasting"; - homepage = http://www.mltframework.org/; - license = licenses.gpl3; - maintainers = [ maintainers.goibhniu ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/development/libraries/mlt/qt-5.5.nix b/pkgs/development/libraries/mlt/qt-5.nix similarity index 100% rename from pkgs/development/libraries/mlt/qt-5.5.nix rename to pkgs/development/libraries/mlt/qt-5.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c233bc2e1f9..7ceba860e84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7812,8 +7812,6 @@ let qt = qt4; }; - mlt-qt5 = callPackage ../development/libraries/mlt/qt-5.4.nix { }; - movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; @@ -8167,7 +8165,7 @@ let libkeyfinder = callPackage ../development/libraries/libkeyfinder { }; - mlt = callPackage ../development/libraries/mlt/qt-5.5.nix {}; + mlt = callPackage ../development/libraries/mlt/qt-5.nix {}; openbr = callPackage ../development/libraries/openbr { }; @@ -15809,6 +15807,7 @@ aliases = with self; rec { libtidy = html-tidy; # added 2014-12-21 lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 + mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From b8b14eda6963aaca56e9e40cd9f58629d0adf520 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:02:57 -0600 Subject: [PATCH 422/707] phonon-backend-gstreamer: Qt 5 infrastructure update --- .../phonon-backend-gstreamer/qt5/old.nix | 41 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix deleted file mode 100644 index d91808ec880..00000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ stdenv, fetchurl, cmake, gst_all_1, phonon_qt5, pkgconfig, qt5, debug ? false }: - -with stdenv.lib; - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ - gstreamer gst-plugins-base phonon_qt5 qt5.base - ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - cmakeFlags = [ - "-DCMAKE_INSTALL_LIBDIR=lib" - "-DPHONON_BUILD_PHONON4QT5=ON" - ] - ++ optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = with stdenv.lib; { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - maintainer = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7ceba860e84..5692f10f021 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8034,8 +8034,6 @@ let phonon_qt5 = callPackage ../development/libraries/phonon/qt5/old.nix {}; - phonon_qt5_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5/old.nix {}; - physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15809,6 +15807,7 @@ aliases = with self; rec { lttngUst = lttng-ust; # added 2014-07-31 mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From 36ea03660e2ec6ef8a4b321e97d278bda211cc93 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:05:19 -0600 Subject: [PATCH 423/707] qca-qt5: Qt 5 infrastructure update --- pkgs/development/libraries/qca-qt5/old.nix | 20 -------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 pkgs/development/libraries/qca-qt5/old.nix diff --git a/pkgs/development/libraries/qca-qt5/old.nix b/pkgs/development/libraries/qca-qt5/old.nix deleted file mode 100644 index a3e9e9be642..00000000000 --- a/pkgs/development/libraries/qca-qt5/old.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ stdenv, fetchurl, cmake, openssl, pkgconfig, qt5 }: - -stdenv.mkDerivation rec { - name = "qca-qt5-2.1.1"; - - src = fetchurl { - url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz"; - sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm"; - }; - - buildInputs = [ openssl qt5.base ]; - nativeBuildInputs = [ cmake pkgconfig ]; - - meta = with stdenv.lib; { - description = "Qt 5 Cryptographic Architecture"; - homepage = http://delta.affinix.com/qca; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5692f10f021..77cc641a67a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8110,8 +8110,6 @@ let qca2 = callPackage ../development/libraries/qca2 { qt = qt4; }; - qca-qt5 = callPackage ../development/libraries/qca-qt5/old.nix { }; - qimageblitz = callPackage ../development/libraries/qimageblitz {}; qjson = callPackage ../development/libraries/qjson { }; @@ -15808,6 +15806,7 @@ aliases = with self; rec { mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From d7dff0057c0a8f86b1ba7f76a246a6ef825e3a27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:06:31 -0600 Subject: [PATCH 424/707] signon: Qt 5 infrastructure update --- pkgs/development/libraries/signon/old.nix | 18 ------------------ pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 pkgs/development/libraries/signon/old.nix diff --git a/pkgs/development/libraries/signon/old.nix b/pkgs/development/libraries/signon/old.nix deleted file mode 100644 index bf211c3b8a3..00000000000 --- a/pkgs/development/libraries/signon/old.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ stdenv, fetchurl, doxygen, qt5 }: - -stdenv.mkDerivation rec { - name = "signon-${version}"; - version = "8.57"; - src = fetchurl { - url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}"; - sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5"; - }; - - buildInputs = [ qt5.base ]; - nativeBuildInputs = [ doxygen ]; - - configurePhase = '' - qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake/SignOnQt5 - ''; - -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 77cc641a67a..37da25438c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8355,8 +8355,6 @@ let sfml = callPackage ../development/libraries/sfml { }; - signon = callPackage ../development/libraries/signon/old.nix {}; - skalibs = callPackage ../development/libraries/skalibs { }; slang = callPackage ../development/libraries/slang { }; @@ -15815,6 +15813,7 @@ aliases = with self; rec { rdiff_backup = rdiff-backup; # added 2014-11-23 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 + signon = qt5.signon; # added 2015-12-19 speedtest_cli = speedtest-cli; # added 2015-02-17 sqliteInteractive = sqlite-interactive; # added 2014-12-06 telepathy_qt5 = qt5.telepathy; # added 2015-12-19 From 9a91200e9e6bc6592a6b086f635593cc409e0853 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:08:22 -0600 Subject: [PATCH 425/707] phonon: Qt 5 infrastructure update --- pkgs/development/libraries/phonon/qt5/old.nix | 36 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 pkgs/development/libraries/phonon/qt5/old.nix diff --git a/pkgs/development/libraries/phonon/qt5/old.nix b/pkgs/development/libraries/phonon/qt5/old.nix deleted file mode 100644 index 3dddd60b59f..00000000000 --- a/pkgs/development/libraries/phonon/qt5/old.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio, qt5, debug ? false }: - -with stdenv.lib; - -let - v = "4.8.3"; -in - -stdenv.mkDerivation rec { - name = "phonon-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; - sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551"; - }; - - buildInputs = [ mesa qt5.base qt5.quick1 qt5.tools libpulseaudio ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - NIX_CFLAGS_COMPILE = "-fPIC"; - - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" - "-DPHONON_BUILD_PHONON4QT5=ON" - "-DCMAKE_INSTALL_LIBDIR=lib" - ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "Multimedia API for Qt"; - license = stdenv.lib.licenses.lgpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 37da25438c8..358c0d14699 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8032,8 +8032,6 @@ let phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt4 {}; - phonon_qt5 = callPackage ../development/libraries/phonon/qt5/old.nix {}; - physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15803,6 +15801,7 @@ aliases = with self; rec { lttngUst = lttng-ust; # added 2014-07-31 mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 From ad9ece4f921af0e0bb3183887d64c121d9133207 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:09:59 -0600 Subject: [PATCH 426/707] qwt: Qt 5 infrastructure update --- pkgs/development/libraries/qwt/6.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qwt/6.nix b/pkgs/development/libraries/qwt/6.nix index 822b888843e..d4819d70bfc 100644 --- a/pkgs/development/libraries/qwt/6.nix +++ b/pkgs/development/libraries/qwt/6.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtbase, qtsvg, qttools }: stdenv.mkDerivation rec { name = "qwt-6.1.2"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b"; }; - propagatedBuildInputs = [ qt5.base qt5.svg qt5.tools ]; + propagatedBuildInputs = [ qtbase qtsvg qttools ]; postPatch = '' sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 358c0d14699..2d70a630308 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8183,6 +8183,8 @@ let qmltermwidget = callPackage ../development/libraries/qmltermwidget { }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; + signon = callPackage ../development/libraries/signon { }; telepathy = callPackage ../development/libraries/telepathy/qt { }; @@ -8213,8 +8215,6 @@ let qwt = callPackage ../development/libraries/qwt {}; - qwt6 = callPackage ../development/libraries/qwt/6.nix { }; - qxt = callPackage ../development/libraries/qxt {}; rabbitmq-c = callPackage ../development/libraries/rabbitmq-c {}; @@ -15809,6 +15809,7 @@ aliases = with self; rec { quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 quassel_kf5 = kde5.quassel; # added 2015-09-30 quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 + qwt6 = qt5.qwt; # added 2015-12-19 rdiff_backup = rdiff-backup; # added 2014-11-23 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 From 700546fd12c767e61f8adcc458a3abbc7f6c97d8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:12:01 -0600 Subject: [PATCH 427/707] zeal: Qt 5 infrastructure update --- pkgs/data/documentation/zeal/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index a6c77deb12e..0f02bb7dc94 100644 --- a/pkgs/data/documentation/zeal/default.nix +++ b/pkgs/data/documentation/zeal/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qt5, libarchive, xorg }: +{ stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase +, qtimageformats, qtwebkit, xorg }: stdenv.mkDerivation rec { version = "0.1.1"; @@ -12,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - xorg.xcbutilkeysyms pkgconfig qt5.base qt5.webkit qt5.imageformats libarchive + xorg.xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit libarchive ]; configurePhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2d70a630308..5dfe42b989a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10929,7 +10929,7 @@ let xlsx2csv = pythonPackages.xlsx2csv; - zeal = callPackage ../data/documentation/zeal { }; + zeal = qt5.callPackage ../data/documentation/zeal { }; ### APPLICATIONS From 0b303f6edd1e1c24fb7659d56796d871f8c727db Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:12:57 -0600 Subject: [PATCH 428/707] mgba: Qt 5 infrastructure update --- pkgs/misc/emulators/mgba/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix index edf4c6a060d..ea11e3a33e2 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2, qt5 }: +{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2 +, qtbase, qtmultimedia }: stdenv.mkDerivation rec { name = "mgba-${meta.version}"; @@ -9,7 +10,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig cmake ffmpeg imagemagick libzip SDL2 - qt5.base qt5.multimedia + qtbase qtmultimedia ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5dfe42b989a..44df868661b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2261,7 +2261,7 @@ let mfoc = callPackage ../tools/security/mfoc { }; - mgba = callPackage ../misc/emulators/mgba { }; + mgba = qt5.callPackage ../misc/emulators/mgba { }; minissdpd = callPackage ../tools/networking/minissdpd { }; From d40531639899805efd9ecbcd04ce11062bb59a39 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:13:45 -0600 Subject: [PATCH 429/707] bomi: Qt 5 infrastructure update --- pkgs/applications/video/bomi/default.nix | 9 +++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix index da07458f4f6..36da9d32072 100644 --- a/pkgs/applications/video/bomi/default.nix +++ b/pkgs/applications/video/bomi/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeWrapper -, libX11, libxcb, qt5, mesa +, libX11, libxcb, mesa +, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras , ffmpeg , libchardet , mpg123 @@ -26,7 +27,7 @@ assert pulseSupport -> libpulseaudio != null; assert cddaSupport -> libcdda != null; assert youtubeSupport -> youtube-dl != null; -let qtPath = makeSearchPath "lib/qt5/qml" [ qt5.declarative qt5.quickcontrols ]; +let qtPath = makeSearchPath "lib/qt5/qml" [ qtdeclarative qtquickcontrols ]; in stdenv.mkDerivation rec { @@ -42,7 +43,7 @@ stdenv.mkDerivation rec { buildInputs = with stdenv.lib; [ libX11 libxcb mesa - qt5.base qt5.x11extras + qtbase qtx11extras ffmpeg libchardet mpg123 @@ -85,7 +86,7 @@ stdenv.mkDerivation rec { ++ optional cddaSupport "--enable-cdda" ; - nativeBuildInputs = [ pkgconfig perl python which qt5.tools makeWrapper ]; + nativeBuildInputs = [ pkgconfig perl python which qttools makeWrapper ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44df868661b..b1d92f78f65 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11234,7 +11234,7 @@ let cmatrix = callPackage ../applications/misc/cmatrix { }; - bomi = callPackage ../applications/video/bomi { + bomi = qt5.callPackage ../applications/video/bomi { youtube-dl = pythonPackages.youtube-dl; pulseSupport = config.pulseaudio or true; }; From ccdbc228369480fe5f96b162ac46fcef3be55127 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:14:45 -0600 Subject: [PATCH 430/707] shotcut: Qt 5 infrastructure update --- pkgs/applications/video/shotcut/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index c0458748c96..74f9c1604b2 100644 --- a/pkgs/applications/video/shotcut/default.nix +++ b/pkgs/applications/video/shotcut/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qt5 }: +{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase }: stdenv.mkDerivation rec { name = "shotcut-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f"; }; - buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qt5.base ]; + buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ]; configurePhase = "qmake PREFIX=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1d92f78f65..ed317f1e176 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12581,7 +12581,7 @@ let stdenv = stdenv_32bit; }; - shotcut = callPackage ../applications/video/shotcut { mlt = mlt-qt5; }; + shotcut = qt5.callPackage ../applications/video/shotcut { }; smplayer = callPackage ../applications/video/smplayer { }; From a0bae9b57118546ba4c3a53bdea8ab42a99b8a13 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:15:34 -0600 Subject: [PATCH 431/707] obs-studio: Qt 5 infrastructure update --- pkgs/applications/video/obs-studio/default.nix | 7 ++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index 0bd0263005f..2c2a26cc972 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -4,7 +4,8 @@ , ffmpeg , jansson , libxkbcommon -, qt5 +, qtbase +, qtx11extras , libv4l , x264 , curl @@ -34,8 +35,8 @@ in stdenv.mkDerivation rec { jansson libv4l libxkbcommon - qt5.base - qt5.x11extras + qtbase + qtx11extras x264 ] ++ optional pulseaudioSupport libpulseaudio; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed317f1e176..6af0468bc65 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12680,7 +12680,7 @@ let inherit (gnome) libglade; }; - obs-studio = callPackage ../applications/video/obs-studio { + obs-studio = qt5.callPackage ../applications/video/obs-studio { pulseaudioSupport = config.pulseaudio or true; }; From b829137151239298a1fa5c72145a584ec7dc9d5d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:16:27 -0600 Subject: [PATCH 432/707] apitrace: Qt 5 infrastructure update --- pkgs/applications/graphics/apitrace/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix index 10d4f703a82..072cc698e92 100644 --- a/pkgs/applications/graphics/apitrace/default.nix +++ b/pkgs/applications/graphics/apitrace/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qt5 }: +{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qtbase }: let version = "7.1"; in stdenv.mkDerivation { @@ -11,7 +11,7 @@ stdenv.mkDerivation { owner = "apitrace"; }; - buildInputs = [ libX11 procps python qt5.base ]; + buildInputs = [ libX11 procps python qtbase ]; nativeBuildInputs = [ cmake ]; buildPhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6af0468bc65..ce5c2fd310f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -556,7 +556,7 @@ let withGui = false; }; - apitrace = callPackage ../applications/graphics/apitrace {}; + apitrace = qt5.callPackage ../applications/graphics/apitrace {}; argyllcms = callPackage ../tools/graphics/argyllcms {}; From d086276c1eca07f8cd9dc15604977f51f10e2d6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:18:02 -0600 Subject: [PATCH 433/707] photoqt: Qt 5 infrastructure update --- pkgs/applications/graphics/photoqt/default.nix | 12 +++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/photoqt/default.nix b/pkgs/applications/graphics/photoqt/default.nix index 7ae6d6e050f..c96b0c182a6 100644 --- a/pkgs/applications/graphics/photoqt/default.nix +++ b/pkgs/applications/graphics/photoqt/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchurl, cmake, makeWrapper, qt5, exiv2, graphicsmagick }: +{ stdenv, fetchurl, cmake, makeWrapper, exiv2, graphicsmagick +, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols, qttools +}: let version = "1.3"; qmlPath = stdenv.lib.makeSearchPath "lib/qt5/qml/" [ - qt5.quickcontrols - qt5.declarative - qt5.multimedia + qtquickcontrols + qtdeclarative + qtmultimedia ]; in stdenv.mkDerivation rec { @@ -15,7 +17,7 @@ stdenv.mkDerivation rec { sha256 = "0j2kvxfb5pd9abciv161nkcsyam6n8kfqs8ymwj2mxiqflwbmfl1"; }; - buildInputs = [ cmake makeWrapper qt5.base qt5.tools exiv2 graphicsmagick ]; + buildInputs = [ cmake makeWrapper qtbase qttools exiv2 graphicsmagick ]; preConfigure = '' export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ce5c2fd310f..5a6f41d4039 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12749,7 +12749,7 @@ let inherit (gst_all_1) gstreamer gst-plugins-base; }; - photoqt = callPackage ../applications/graphics/photoqt { }; + photoqt = qt5.callPackage ../applications/graphics/photoqt { }; phototonic = callPackage ../applications/graphics/phototonic { }; From 1f28d76190a801ebe6639d57f648dc35425cb99d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:19:42 -0600 Subject: [PATCH 434/707] luminance-hdr: Qt 5 infrastructure update --- pkgs/applications/graphics/luminance-hdr/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index 5e7835b3549..98152694c6d 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -1,5 +1,6 @@ -{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, qt5, boost, exiv2, fftwFloat, gsl +{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, boost, exiv2, fftwFloat, gsl , ilmbase, lcms2, libraw, libtiff, openexr +, qtbase, qtdeclarative, qttools, qtwebkit }: stdenv.mkDerivation rec { @@ -21,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ - qt5.base qt5.declarative qt5.tools qt5.webkit + qtbase qtdeclarative qttools qtwebkit boost exiv2 fftwFloat gsl ilmbase lcms2 libraw libtiff openexr ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a6f41d4039..e66246a9e32 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12342,7 +12342,7 @@ let webkit = webkitgtk2; }; - luminanceHDR = callPackage ../applications/graphics/luminance-hdr { }; + luminanceHDR = qt5.callPackage ../applications/graphics/luminance-hdr { }; lxdvdrip = callPackage ../applications/video/lxdvdrip { }; From 8bbbb31f3fe1c76a2243ea13024dcd5034834d6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:20:28 -0600 Subject: [PATCH 435/707] awesomebump: Qt 5 infrastructure update --- pkgs/applications/graphics/awesomebump/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix index 77bddec7eb8..c71b1f9335b 100644 --- a/pkgs/applications/graphics/awesomebump/default.nix +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, qt5, makeWrapper }: +{ lib, stdenv, fetchurl, qtbase, makeWrapper }: stdenv.mkDerivation { name = "awesomebump-4.0"; @@ -10,7 +10,7 @@ stdenv.mkDerivation { setSourceRoot = "sourceRoot=$(echo */Sources)"; - buildInputs = [ qt5.base makeWrapper ]; + buildInputs = [ qtbase makeWrapper ]; preBuild = "qmake"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e66246a9e32..598d8640a13 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11075,7 +11075,7 @@ let }; awesome = awesome-3-5; - awesomebump = callPackage ../applications/graphics/awesomebump { }; + awesomebump = qt5.callPackage ../applications/graphics/awesomebump { }; inherit (gnome3) baobab; From 3e6a70d9744db535208d522e003eed03cde2de31 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:21:18 -0600 Subject: [PATCH 436/707] phototonic: Qt 5 infrastructure update --- pkgs/applications/graphics/phototonic/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index f1a46b63d58..6803b969b4b 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt5, exiv2 }: +{ stdenv, fetchFromGitHub, qtbase, exiv2 }: stdenv.mkDerivation rec { name = "phototonic-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj"; }; - buildInputs = [ qt5.base exiv2 ]; + buildInputs = [ qtbase exiv2 ]; configurePhase = '' sed -i 's;/usr;;' phototonic.pro diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 598d8640a13..b8472d7dfaa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12751,7 +12751,7 @@ let photoqt = qt5.callPackage ../applications/graphics/photoqt { }; - phototonic = callPackage ../applications/graphics/phototonic { }; + phototonic = qt5.callPackage ../applications/graphics/phototonic { }; pianobar = callPackage ../applications/audio/pianobar { }; From 5af2e7b76e45cd924743e73012f14d7a703d0984 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:22:17 -0600 Subject: [PATCH 437/707] rapcad: Qt 5 infrastructure update --- pkgs/applications/graphics/rapcad/default.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix index 701ad47985b..cb92947b766 100644 --- a/pkgs/applications/graphics/rapcad/default.nix +++ b/pkgs/applications/graphics/rapcad/default.nix @@ -1,4 +1,6 @@ -{stdenv, fetchgit, qt5, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline }: +{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline +, qtbase +}: stdenv.mkDerivation rec { version = "0.9.5"; @@ -9,8 +11,8 @@ stdenv.mkDerivation rec { rev = "refs/tags/v${version}"; sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l"; }; - - buildInputs = [qt5.base cgal boost gmp mpfr flex bison dxflib readline ]; + + buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ]; configurePhase = '' qmake; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b8472d7dfaa..948b5b896ad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12913,7 +12913,7 @@ let demo = false; }; - rapcad = callPackage ../applications/graphics/rapcad {}; + rapcad = qt5.callPackage ../applications/graphics/rapcad {}; rapidsvn = callPackage ../applications/version-management/rapidsvn { }; From 07a79f2a9b3fa565d8fd58f71213da620352e0cf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:24:29 -0600 Subject: [PATCH 438/707] sigil: Qt 5 infrastructure update --- pkgs/applications/editors/sigil/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix index 2af662ded7f..ad6f599a361 100644 --- a/pkgs/applications/editors/sigil/default.nix +++ b/pkgs/applications/editors/sigil/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, unzip, cmake, pkgconfig, makeWrapper -, hunspell, minizip, boost, xercesc, qt5 +, hunspell, minizip, boost, xercesc +, qtbase, qttools, qtwebkit, qtxmlpatterns }: let @@ -17,7 +18,7 @@ stdenv.mkDerivation rec { buildInputs = [ unzip cmake pkgconfig - hunspell minizip boost xercesc qt5.base qt5.tools qt5.webkit qt5.xmlpatterns + hunspell minizip boost xercesc qtbase qttools qtwebkit qtxmlpatterns ]; # XXX: the compiler seems to treat the .h file inappropriately: diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 948b5b896ad..64e1dbdac97 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3027,7 +3027,7 @@ let siege = callPackage ../tools/networking/siege {}; - sigil = callPackage ../applications/editors/sigil { }; + sigil = qt5.callPackage ../applications/editors/sigil { }; # aka., gpg-tools signing-party = callPackage ../tools/security/signing-party { }; From e292103d463e2818416e3b238d7a74f7bb369ae6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:25:57 -0600 Subject: [PATCH 439/707] tiled: Qt 5 infrastructure update --- pkgs/applications/editors/tiled/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index b885e26fbef..4590baf6b8e 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, pkgconfig, python }: +{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }: let version = "0.12.3"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - buildInputs = [ qt5.base qt5.tools pkgconfig python ]; + buildInputs = [ qtbase qttools pkgconfig python ]; preConfigure = "qmake -r PREFIX=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 64e1dbdac97..803b85c287a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3226,7 +3226,7 @@ let thc-hydra = callPackage ../tools/security/thc-hydra { }; - tiled = callPackage ../applications/editors/tiled { }; + tiled = qt5.callPackage ../applications/editors/tiled { }; tinc = callPackage ../tools/networking/tinc { }; From 36dea909b774b037c68d5ebc369c4378f23fe87f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:28:02 -0600 Subject: [PATCH 440/707] calibre: Qt 5 infrastructure update --- pkgs/applications/misc/calibre/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index a3ecef308eb..6ab83e29cc1 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, pyqt5, sip_4_16, poppler_utils, pkgconfig, libpng -, imagemagick, libjpeg, fontconfig, podofo, qt5, icu, sqlite +, imagemagick, libjpeg, fontconfig, podofo, qtbase, icu, sqlite , makeWrapper, unrar, chmlib, pythonPackages, xz, libusb1, libmtp , xdg_utils }: @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ python pyqt5 sip_4_16 poppler_utils libpng imagemagick libjpeg - fontconfig podofo qt5.base chmlib icu sqlite libusb1 libmtp xdg_utils + fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils pythonPackages.mechanize pythonPackages.lxml pythonPackages.dateutil pythonPackages.cssutils pythonPackages.beautifulsoup pythonPackages.pillow pythonPackages.sqlite3 pythonPackages.netifaces pythonPackages.apsw diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 803b85c287a..ac7f0009228 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11156,7 +11156,7 @@ let calcurse = callPackage ../applications/misc/calcurse { }; - calibre = callPackage ../applications/misc/calibre { + calibre = qt5.callPackage ../applications/misc/calibre { inherit (pythonPackages) pyqt5 sip_4_16; }; From 732de877869a1f59d4226452e379eaa1cc998561 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:37:14 -0600 Subject: [PATCH 441/707] twmn: Qt 5 infrastructure update --- pkgs/applications/misc/twmn/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index e2a21822acd..bb3f359ab8f 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, fetchgit, qt5, pkgconfig, boost }: +{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, pkgconfig, boost }: stdenv.mkDerivation rec { name = "twmn-git-2014-09-23"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b"; }; - buildInputs = [ qt5.base qt5.x11extras pkgconfig boost ]; + buildInputs = [ qtbase qtx11extras pkgconfig boost ]; configurePhase = '' sed -i s/-Werror// twmnd/twmnd.pro diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac7f0009228..ed1c760a0a9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13349,7 +13349,7 @@ let twister = callPackage ../applications/networking/p2p/twister { }; - twmn = callPackage ../applications/misc/twmn { }; + twmn = qt5.callPackage ../applications/misc/twmn { }; twinkle = callPackage ../applications/networking/instant-messengers/twinkle { }; From 121f944d0df29eebabd5fa91a5ecc69c0a549a0e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:38:09 -0600 Subject: [PATCH 442/707] qtpass: Qt 5 infrastructure update --- pkgs/applications/misc/qtpass/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 3c6d3ed36ce..3d45ef6884c 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qt5 }: +{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qtbase, qttools }: stdenv.mkDerivation rec { name = "qtpass-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "0c07bd1eb9e5336c0225f891e5b9a9df103f218619cf7ec6311edf654e8db281"; }; - buildInputs = [ git gnupg makeWrapper pass qt5.base qt5.tools ]; + buildInputs = [ git gnupg makeWrapper pass qtbase qttools ]; configurePhase = "qmake CONFIG+=release PREFIX=$out DESTDIR=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed1c760a0a9..0763ef94dd7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12881,7 +12881,7 @@ let qtox = callPackage ../applications/networking/instant-messengers/qtox { }; - qtpass = callPackage ../applications/misc/qtpass { }; + qtpass = qt5.callPackage ../applications/misc/qtpass { }; qtpfsgui = callPackage ../applications/graphics/qtpfsgui { }; From 06f9ac71dc73d1f296c31a1156162f7a6a9d3cae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:39:16 -0600 Subject: [PATCH 443/707] gpsbabel: Qt 5 infrastructure update --- pkgs/applications/misc/gpsbabel/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/gpsbabel/default.nix b/pkgs/applications/misc/gpsbabel/default.nix index 172f1347f6b..c21f8bbe814 100644 --- a/pkgs/applications/misc/gpsbabel/default.nix +++ b/pkgs/applications/misc/gpsbabel/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, zlib, qt5, which }: +{ stdenv, fetchurl, zlib, qtbase, which }: stdenv.mkDerivation rec { name = "gpsbabel-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0xf7wmy2m29g2lm8lqc74yf8rf7sxfl3cfwbk7dpf0yf42pb0b6w"; }; - buildInputs = [ zlib qt5.base which ]; + buildInputs = [ zlib qtbase which ]; /* FIXME: Building the documentation, with "make doc", requires this: diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0763ef94dd7..01c56dca4d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12010,7 +12010,7 @@ let gosmore = callPackage ../applications/misc/gosmore { }; - gpsbabel = callPackage ../applications/misc/gpsbabel { }; + gpsbabel = qt5.callPackage ../applications/misc/gpsbabel { }; gpscorrelate = callPackage ../applications/misc/gpscorrelate { }; From 88514fdf581374d42083b8f8fb0303814fffbe3b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:40:12 -0600 Subject: [PATCH 444/707] robomongo: Qt 5 infrastructure update --- pkgs/applications/misc/robomongo/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/robomongo/default.nix b/pkgs/applications/misc/robomongo/default.nix index 80424a308d7..ebd97f6621d 100644 --- a/pkgs/applications/misc/robomongo/default.nix +++ b/pkgs/applications/misc/robomongo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, openssl, boost, cmake, scons, python, pcre, bzip2 }: +{ stdenv, fetchurl, qtbase, openssl, boost, cmake, scons, python, pcre, bzip2 }: stdenv.mkDerivation { name = "robomongo-0.8.4"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { NIX_CFLAGS_COMPILE = "-fno-stack-protector"; - buildInputs = [ cmake boost scons qt5.base openssl python pcre bzip2 ]; + buildInputs = [ cmake boost scons qtbase openssl python pcre bzip2 ]; meta = { homepage = "http://robomongo.org/"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 01c56dca4d9..5101e94afdd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15441,7 +15441,7 @@ let inherit (pythonPackages) pexpect paramiko; }; - robomongo = callPackage ../applications/misc/robomongo { }; + robomongo = qt5.callPackage ../applications/misc/robomongo { }; rucksack = callPackage ../development/tools/rucksack { }; From 4e71ebd7c98fae2552e820e18ab464a234828c6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:43:24 -0600 Subject: [PATCH 445/707] dfilemanager: Qt 5 infrastructure update --- pkgs/applications/misc/dfilemanager/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/dfilemanager/default.nix b/pkgs/applications/misc/dfilemanager/default.nix index ba3bd5f0f0d..1891c4f2174 100644 --- a/pkgs/applications/misc/dfilemanager/default.nix +++ b/pkgs/applications/misc/dfilemanager/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, qt5, file, kde5}: +{ stdenv, fetchgit, cmake, file, qtbase, qttools, qtx11extras, solid }: let version = "git-2015-07-25"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1dd21xl24xvxs100j8nzhpaqfqk8srqs92al9c03jmyjlk31s6lf"; }; - buildInputs = [ cmake qt5.base qt5.tools qt5.x11extras file kde5.solid]; + buildInputs = [ cmake qtbase qttools qtx11extras file solid ]; cmakeFlags = "-DQT5BUILD=true"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5101e94afdd..9c118b23585 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -809,7 +809,7 @@ let deis = goPackages.deis.bin // { outputs = [ "bin" ]; }; - dfilemanager = callPackage ../applications/misc/dfilemanager { }; + dfilemanager = kde5.dfilemanager; diagrams-builder = callPackage ../tools/graphics/diagrams-builder { inherit (haskellPackages) ghcWithPackages diagrams-builder; @@ -14715,6 +14715,8 @@ let libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; }; + dfilemanager = callPackage ../applications/misc/dfilemanager { }; + fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; k9copy = callPackage ../applications/video/k9copy {}; From 249e5f732afd9afa5fbdc6e3ec99cfc5e4eb5014 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:44:44 -0600 Subject: [PATCH 446/707] linssid: Qt 5 infrastructure update --- pkgs/applications/networking/linssid/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 369010f41b5..76de1d208cc 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, pkgconfig, boost, wirelesstools, iw, qwt6 }: +{ stdenv, fetchurl, qtbase, qtsvg, pkgconfig, boost, wirelesstools, iw, qwt6 }: stdenv.mkDerivation rec { name = "linssid-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl"; }; - buildInputs = [ qt5.base qt5.svg pkgconfig boost qwt6 ]; + buildInputs = [ qtbase qtsvg pkgconfig boost qwt6 ]; patches = [ ./0001-unbundled-qwt.patch ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9c118b23585..6e45c6df605 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11917,7 +11917,7 @@ let libquvi = callPackage ../applications/video/quvi/library.nix { }; - linssid = callPackage ../applications/networking/linssid { }; + linssid = qt5.callPackage ../applications/networking/linssid { }; mi2ly = callPackage ../applications/audio/mi2ly {}; From de5898a49585fd2a4f57c0263377400b180d2641 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:45:45 -0600 Subject: [PATCH 447/707] qtox: Qt 5 infrastructure update --- .../networking/instant-messengers/qtox/default.nix | 11 ++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 170702e44d1..0a7b44ba8cb 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -1,6 +1,7 @@ -{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, qt5, openal, opencv, +{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, openal, opencv, libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo, - pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper }: + pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper, + qtbase, qtsvg, qttools, qttranslations }: let revision = "1673b43e26c853f6446f228fec083af166cbf446"; @@ -18,8 +19,8 @@ stdenv.mkDerivation rec { buildInputs = [ libtoxcore-dev openal opencv libsodium filter-audio - qt5.base qt5.tools libXScrnSaver glib gtk2 cairo - pango atk qrencode ffmpeg qt5.translations makeWrapper + qtbase qttools libXScrnSaver glib gtk2 cairo + pango atk qrencode ffmpeg qttranslations makeWrapper ]; nativeBuildInputs = [ pkgconfig ]; @@ -46,7 +47,7 @@ stdenv.mkDerivation rec { mkdir -p $out/bin cp qtox $out/bin wrapProgram $out/bin/qtox \ - --prefix QT_PLUGIN_PATH : ${qt5.svg}/lib/qt5/plugins + --prefix QT_PLUGIN_PATH : ${qtsvg}/lib/qt5/plugins ''; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6e45c6df605..f16a6daf0f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12879,7 +12879,7 @@ let qsynth = callPackage ../applications/audio/qsynth { }; - qtox = callPackage ../applications/networking/instant-messengers/qtox { }; + qtox = qt5.callPackage ../applications/networking/instant-messengers/qtox { }; qtpass = qt5.callPackage ../applications/misc/qtpass { }; From fc13f37f2c3f665a5b71860c589611fd03d5895b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:47:06 -0600 Subject: [PATCH 448/707] firestr: Qt 5 infrastructure update --- pkgs/applications/networking/p2p/firestr/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/firestr/default.nix b/pkgs/applications/networking/p2p/firestr/default.nix index 6b1a1fc9454..e216ede9a39 100644 --- a/pkgs/applications/networking/p2p/firestr/default.nix +++ b/pkgs/applications/networking/p2p/firestr/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid, qt5 -, libXScrnSaver, openssl }: +{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid +, libXScrnSaver, openssl, qtbase, qtmultimedia }: stdenv.mkDerivation { name = "firestr-0.8"; @@ -11,7 +11,7 @@ stdenv.mkDerivation { sha256 = "0s2kdi8rw3i3f8gbiy0ykyi6xj5n8p80m0d1i86mhh8jpagvbfzb"; }; - buildInputs = [ cmake boost botan snappy libopus libuuid qt5.base qt5.multimedia + buildInputs = [ cmake boost botan snappy libopus libuuid qtbase qtmultimedia libXScrnSaver openssl ]; patches = ./return.patch; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f16a6daf0f7..a5862510c4a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11795,7 +11795,7 @@ let inherit (pkgs.gnome) libgnome libgnomeui; }; - firestr = callPackage ../applications/networking/p2p/firestr + firestr = qt5.callPackage ../applications/networking/p2p/firestr { boost = boost155; }; From 541b2f20de9912b85f3b5b4a182607cf3e646d2a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:47:51 -0600 Subject: [PATCH 449/707] fritzing: Qt 5 infrastructure update --- pkgs/applications/science/electronics/fritzing/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index 1fa0a0d97b5..302c6a318e6 100644 --- a/pkgs/applications/science/electronics/fritzing/default.nix +++ b/pkgs/applications/science/electronics/fritzing/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, boost }: +{ stdenv, fetchurl, qtbase, qtsvg, boost }: stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { tar xjf ${src} ''; - buildInputs = [ qt5.base qt5.svg boost ]; + buildInputs = [ qtbase qtsvg boost ]; configurePhase = '' cd fritzing-${version}.source diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a5862510c4a..ca78f8bd637 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11708,7 +11708,7 @@ let fribid = callPackage ../applications/networking/browsers/mozilla-plugins/fribid { }; - fritzing = callPackage ../applications/science/electronics/fritzing { }; + fritzing = qt5.callPackage ../applications/science/electronics/fritzing { }; fvwm = callPackage ../applications/window-managers/fvwm { }; From 97f7eb1e640bbb3c8d861badc462f8b48c79dd5d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:48:36 -0600 Subject: [PATCH 450/707] kst: Qt 5 infrastructure update --- pkgs/tools/graphics/kst/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/kst/default.nix b/pkgs/tools/graphics/kst/default.nix index 01fb5d82994..9b983450f48 100644 --- a/pkgs/tools/graphics/kst/default.nix +++ b/pkgs/tools/graphics/kst/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cmake, pkgconfig -, qt5, gsl, getdata, netcdf, muparser, matio +, qtbase, gsl, getdata, netcdf, muparser, matio }: stdenv.mkDerivation rec { name = "Kst-2.0.8"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ qt5.base gsl getdata netcdf muparser matio ]; + buildInputs = [ qtbase gsl getdata netcdf muparser matio ]; cmakeFlags = "-Dkst_qt5=1 -Dkst_release=1"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ca78f8bd637..3130e821bf3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2015,7 +2015,7 @@ let kpcli = callPackage ../tools/security/kpcli { }; - kst = callPackage ../tools/graphics/kst { gsl = gsl_1; }; + kst = qt5.callPackage ../tools/graphics/kst { gsl = gsl_1; }; leocad = callPackage ../applications/graphics/leocad { }; From 17e17ea64965b96f76f09b564c546eff8c66c8d0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:49:14 -0600 Subject: [PATCH 451/707] cmst: Qt 5 infrastructure update --- pkgs/tools/networking/cmst/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/cmst/default.nix b/pkgs/tools/networking/cmst/default.nix index 3bfa65cb472..1b5767653fe 100644 --- a/pkgs/tools/networking/cmst/default.nix +++ b/pkgs/tools/networking/cmst/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qt5, makeWrapper, libX11 }: +{ stdenv, fetchgit, qtbase, makeWrapper, libX11 }: stdenv.mkDerivation rec { name = "cmst-2014.12.05"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "070rxv3kyn41ra7nnk1wbqvy6fjg38h7hrdv4dn71b201kmzd194"; }; - buildInputs = [ qt5.base makeWrapper ]; + buildInputs = [ qtbase makeWrapper ]; configurePhase = '' substituteInPlace ./cmst.pro \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3130e821bf3..39c110d1e4b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1072,7 +1072,7 @@ let citrix_receiver = callPackage ../applications/networking/remote/citrix-receiver { }; - cmst = callPackage ../tools/networking/cmst { }; + cmst = qt5.callPackage ../tools/networking/cmst { }; colord = callPackage ../tools/misc/colord { }; From e78202671990320515ffca82c89d2aa079baea9b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:50:40 -0600 Subject: [PATCH 452/707] poppler: normalize package name to upstream --- .../libraries/kde-frameworks-5.17/kfilemetadata.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix index 92ca1f26b93..be99c58d550 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix @@ -1,11 +1,11 @@ { kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib +, ffmpeg, karchive, ki18n, poppler, qtbase, taglib }: kdeFramework { name = "kfilemetadata"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; propagatedBuildInputs = [ qtbase ki18n ]; meta = { maintainers = [ lib.maintainers.ttuegel ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 39c110d1e4b..cbe6fc553c2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8071,8 +8071,6 @@ let suffix = "qt4"; }; - poppler_qt5 = qt5Libs.popplerQt; - poppler_utils = poppler.override { suffix = "utils"; utils = true; }; popt = callPackage ../development/libraries/popt { }; @@ -8173,7 +8171,7 @@ let withQt5 = true; }; - popplerQt = callPackage ../development/libraries/poppler { + poppler = callPackage ../development/libraries/poppler { lcms = lcms2; qt5Support = true; suffix = "qt5"; @@ -15805,6 +15803,7 @@ aliases = with self; rec { nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + poppler_qt5 = qt5Libs.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From 660736def8734a2d2e66a03ad4f777148bc0820b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:52:30 -0600 Subject: [PATCH 453/707] polkit-qt: normalize package name to upstream --- pkgs/desktops/plasma-5.5/polkit-kde-agent.nix | 4 ++-- .../libraries/kde-frameworks-5.17/kauth/default.nix | 4 ++-- pkgs/tools/misc/calamares/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix index 0173ec65516..3fc3a441ac3 100644 --- a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix +++ b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix @@ -9,7 +9,7 @@ , kconfig , kiconthemes , knotifications -, polkitQt +, polkit-qt }: plasmaPackage { @@ -25,7 +25,7 @@ plasmaPackage { kconfig kiconthemes knotifications - polkitQt + polkit-qt ]; propagatedBuildInputs = [ ki18n kwindowsystem ]; } diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix index 42a10019334..2b000ff3c04 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix @@ -1,13 +1,13 @@ { kdeFramework, lib , extra-cmake-modules , kcoreaddons -, polkitQt +, polkit-qt }: kdeFramework { name = "kauth"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkitQt ]; + buildInputs = [ polkit-qt ]; propagatedBuildInputs = [ kcoreaddons ]; patches = [ ./kauth-policy-install.patch ]; meta = { diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index 6ca007229bc..ab00d52c777 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, polkitQt, libyamlcpp, python, boost, parted +{ stdenv, fetchgit, cmake, polkit-qt, libyamlcpp, python, boost, parted , extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart , ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkitQt parted + cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkit-qt parted extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart ]; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; preInstall = '' - substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out" + substituteInPlace cmake_install.cmake --replace "${polkit-qt}" "$out" ''; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cbe6fc553c2..a8b80d7f4ce 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8167,7 +8167,7 @@ let phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; - polkitQt = callPackage ../development/libraries/polkit-qt-1 { + polkit-qt = callPackage ../development/libraries/polkit-qt-1 { withQt5 = true; }; From 9d79319eaebc856cf3a7ae11423b987a7e0b2d00 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:54:02 -0600 Subject: [PATCH 454/707] remove qt5Libs --- pkgs/top-level/all-packages.nix | 43 +++++++++++++++------------------ 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a8b80d7f4ce..e65bc6f0d8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1022,7 +1022,7 @@ let davix = callPackage ../tools/networking/davix { }; - cantata = qt5Libs.callPackage ../applications/audio/cantata { }; + cantata = qt5.callPackage ../applications/audio/cantata { }; can-utils = callPackage ../os-specific/linux/can-utils { }; @@ -1154,7 +1154,7 @@ let convmv = callPackage ../tools/misc/convmv { }; - cool-retro-term = qt5Libs.callPackage ../applications/misc/cool-retro-term { }; + cool-retro-term = qt5.callPackage ../applications/misc/cool-retro-term { }; coreutils = callPackage ../tools/misc/coreutils { aclSupport = stdenv.isLinux; @@ -2721,7 +2721,7 @@ let inherit qt4; }; - pinentry_qt5 = qt55Libs.callPackage ../tools/security/pinentry/qt5.nix { + pinentry_qt5 = qt5.callPackage ../tools/security/pinentry/qt5.nix { libcap = if stdenv.isDarwin then null else libcap; }; @@ -8194,9 +8194,6 @@ let }; - qt55Libs = lib.makeScope qt55.newScope qt5LibsFun; - qt5Libs = qt55Libs; - qtEnv = qt5.env; qt5Full = qt5.full; @@ -11288,7 +11285,7 @@ let cutecom = callPackage ../tools/misc/cutecom { }; cutegram = - let cp = qt5Libs.callPackage; + let cp = qt5.callPackage; in cp ../applications/networking/instant-messengers/telegram/cutegram rec { libqtelegram-aseman-edition = cp ../applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition { }; telegram-qml = cp ../applications/networking/instant-messengers/telegram/telegram-qml { @@ -11337,7 +11334,7 @@ let plugins = []; }; - dfasma = qt5Libs.callPackage ../applications/audio/dfasma { }; + dfasma = qt5.callPackage ../applications/audio/dfasma { }; dia = callPackage ../applications/graphics/dia { inherit (pkgs.gnome) libart_lgpl libgnomeui; @@ -11694,7 +11691,7 @@ let fluidsynth = callPackage ../applications/audio/fluidsynth { }; - fmit = qt5Libs.callPackage ../applications/audio/fmit { }; + fmit = qt5.callPackage ../applications/audio/fmit { }; focuswriter = callPackage ../applications/editors/focuswriter { }; @@ -12145,7 +12142,7 @@ let lua = lua5; }; - ipe = qt5Libs.callPackage ../applications/graphics/ipe { + ipe = qt5.callPackage ../applications/graphics/ipe { ghostscript = ghostscriptX; texlive = texlive.combine { inherit (texlive) scheme-small; }; }; @@ -12207,9 +12204,9 @@ let kermit = callPackage ../tools/misc/kermit { }; - keyfinder = qt5Libs.callPackage ../applications/audio/keyfinder { }; + keyfinder = qt5.callPackage ../applications/audio/keyfinder { }; - keyfinder-cli = qt5Libs.callPackage ../applications/audio/keyfinder-cli { }; + keyfinder-cli = qt5.callPackage ../applications/audio/keyfinder-cli { }; keymon = callPackage ../applications/video/key-mon { }; @@ -12545,7 +12542,7 @@ let iceSupport = config.murmur.iceSupport or true; }) mumble mumble_git murmur murmur_git; - musescore = qt5Libs.callPackage ../applications/audio/musescore { }; + musescore = qt5.callPackage ../applications/audio/musescore { }; mutt = callPackage ../applications/networking/mailreaders/mutt { }; mutt-with-sidebar = callPackage ../applications/networking/mailreaders/mutt { @@ -13089,7 +13086,7 @@ let dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; - lightdm = qt5Libs.callPackage ../applications/display-managers/lightdm { + lightdm = qt5.callPackage ../applications/display-managers/lightdm { qt4 = null; withQt5 = false; }; @@ -13110,7 +13107,7 @@ let printrun = callPackage ../applications/misc/printrun { }; - sddm = qt5Libs.callPackage ../applications/display-managers/sddm { + sddm = qt5.callPackage ../applications/display-managers/sddm { themes = []; # extra themes, etc. }; @@ -13132,7 +13129,7 @@ let sipp = callPackage ../development/tools/misc/sipp { }; - sonic-visualiser = qt5Libs.callPackage ../applications/audio/sonic-visualiser { + sonic-visualiser = qt5.callPackage ../applications/audio/sonic-visualiser { inherit (pkgs.vamp) vampSDK; }; @@ -13488,7 +13485,7 @@ let ffmpeg = ffmpeg_2; }; - vlc_qt5 = qt5Libs.vlc; + vlc_qt5 = qt5.vlc; vmpk = callPackage ../applications/audio/vmpk { }; @@ -13964,7 +13961,7 @@ let chocolateDoom = callPackage ../games/chocolate-doom { }; - cockatrice = qt5Libs.callPackage ../games/cockatrice { }; + cockatrice = qt5.callPackage ../games/cockatrice { }; confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; @@ -14032,7 +14029,7 @@ let fish-fillets-ng = callPackage ../games/fish-fillets-ng {}; - flightgear = qt5Libs.callPackage ../games/flightgear { }; + flightgear = qt5.callPackage ../games/flightgear { }; freecell-solver = callPackage ../games/freecell-solver { }; @@ -14135,7 +14132,7 @@ let mnemosyne = callPackage ../games/mnemosyne { }; - mudlet = qt5Libs.callPackage ../games/mudlet { + mudlet = qt5.callPackage ../games/mudlet { inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3; }; @@ -14760,7 +14757,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); + recurseIntoAttrs (lib.makeScope qt5.newScope merged); kde5_latest = let @@ -14769,7 +14766,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); + recurseIntoAttrs (lib.makeScope qt5.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; @@ -15803,7 +15800,7 @@ aliases = with self; rec { nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 - poppler_qt5 = qt5Libs.poppler; # added 2015-12-19 + poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From 126188be5c5b8a0252adbd204b5f85cfd8c43fd4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:03:33 -0600 Subject: [PATCH 455/707] cutegram: Qt 5 infrastructure updates --- .../networking/instant-messengers/telegram/cutegram/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index cf559a04fc5..26a7eb49279 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qt5Libs, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper +, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper , telegram-qml, libqtelegram-aseman-edition }: stdenv.mkDerivation rec { From 1cd5505a9fadac3a1d4b92b1fd78e58f0fa7935a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:38:05 -0600 Subject: [PATCH 456/707] telegram-qml: Qt 5 infrastructure update --- .../instant-messengers/telegram/telegram-qml/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index 4fc1ee37927..b51f8435ce1 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qt5Libs, qtbase, qtmultimedia, qtquick1 +, qtbase, qtmultimedia, qtquick1 , libqtelegram-aseman-edition }: stdenv.mkDerivation rec { From 538ce57feb63f93b692ea43f0f52643f6fe99ed6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:45:37 -0600 Subject: [PATCH 457/707] qtcreator: Qt 5 infrastructure update --- pkgs/development/qtcreator/default.nix | 11 +++++++---- pkgs/top-level/all-packages.nix | 10 +++++----- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix index 4051ac21836..c0647a6df4a 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -1,4 +1,7 @@ -{ stdenv, fetchurl, makeWrapper, qtLib, withDocumentation ? false }: +{ stdenv, fetchurl, makeWrapper +, qtbase, qtquickcontrols, qtscript, qtdeclarative +, withDocumentation ? false +}: with stdenv.lib; @@ -16,7 +19,7 @@ stdenv.mkDerivation rec { sha256 = "0r9ysq9hzig4ag9m8pcpw1jng2fqqns8zwp0jj893gh8ia0sq9ar"; }; - buildInputs = [ makeWrapper qtLib.base qtLib.script qtLib.quickcontrols qtLib.declarative ]; + buildInputs = [ makeWrapper qtbase qtscript qtquickcontrols qtdeclarative ]; doCheck = false; @@ -45,8 +48,8 @@ stdenv.mkDerivation rec { Categories=Qt;Development;IDE; __EOF__ # Wrap the qtcreator binary - addToSearchPath QML2_IMPORT_PATH "${qtLib.quickcontrols}/lib/qt5/qml" - addToSearchPath QML2_IMPORT_PATH "${qtLib.declarative}/lib/qt5/qml" + addToSearchPath QML2_IMPORT_PATH "${qtquickcontrols}/lib/qt5/qml" + addToSearchPath QML2_IMPORT_PATH "${qtdeclarative}/lib/qt5/qml" wrapProgram $out/bin/qtcreator \ --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e65bc6f0d8c..044faa07968 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8181,6 +8181,10 @@ let qmltermwidget = callPackage ../development/libraries/qmltermwidget { }; + qtcreator = callPackage ../development/qtcreator { + withDocumentation = true; + }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; signon = callPackage ../development/libraries/signon { }; @@ -8197,11 +8201,6 @@ let qtEnv = qt5.env; qt5Full = qt5.full; - qtcreator = callPackage ../development/qtcreator { - qtLib = qt54; - withDocumentation = true; - }; - qtkeychain = callPackage ../development/libraries/qtkeychain { }; qtscriptgenerator = callPackage ../development/libraries/qtscriptgenerator { }; @@ -15802,6 +15801,7 @@ aliases = with self; rec { phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 + qtcreator = qt5.qtcreator; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From 1d331481fc1872c4ea6713eb3f59e6441e863c8b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:04:55 -0600 Subject: [PATCH 458/707] quazip: Qt 5 infrastructure update --- pkgs/development/libraries/quazip/default.nix | 2 +- pkgs/top-level/all-packages.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/quazip/default.nix b/pkgs/development/libraries/quazip/default.nix index 119fda9eb80..4db9d8b4665 100644 --- a/pkgs/development/libraries/quazip/default.nix +++ b/pkgs/development/libraries/quazip/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { installFlags = "INSTALL_ROOT=$(out)"; - buildInputs = [ zlib (qt.base or qt) ]; + buildInputs = [ zlib qt ]; meta = { description = "Provides access to ZIP archives from Qt programs"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 044faa07968..5a2637f76f2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2992,7 +2992,7 @@ let screen-message = callPackage ../tools/X11/screen-message { }; screencloud = callPackage ../applications/graphics/screencloud { - quazip = quazip.override { qt = qt4; }; + quazip = qt5.quazip.override { qt = qt4; }; }; scrot = callPackage ../tools/graphics/scrot { }; @@ -8112,10 +8112,6 @@ let qoauth = callPackage ../development/libraries/qoauth { }; - quazip = callPackage ../development/libraries/quazip { - qt = qt5; - }; - qt3 = callPackage ../development/libraries/qt-3 { openglSupport = mesaSupported; libpng = libpng12; @@ -8185,6 +8181,10 @@ let withDocumentation = true; }; + quazip = callPackage ../development/libraries/quazip { + qt = qtbase; + }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; signon = callPackage ../development/libraries/signon { }; From 143d6123dc2b7eba0d1e1b8c1e440d7acea2f357 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:11:52 -0600 Subject: [PATCH 459/707] qutebrowser: Qt 5 infrastructure update --- .../networking/browsers/qutebrowser/default.nix | 7 ++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 267b0871f08..c1c7a1297ce 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchgit, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2, - gst_plugins_base, gst_plugins_good, gst_ffmpeg }: +{ stdenv, fetchgit, python, buildPythonPackage, qtmultimedia, pyqt5 +, jinja2, pygments, pyyaml, pypeg2, gst_plugins_base, gst_plugins_good +, gst_ffmpeg }: let version = "0.4.1"; in @@ -23,7 +24,7 @@ buildPythonPackage { makeWrapperArgs = '' --prefix GST_PLUGIN_PATH : "${stdenv.lib.makeSearchPath "lib/gstreamer-0.10" [ gst_plugins_base gst_plugins_good gst_ffmpeg ]}" - --prefix QT_PLUGIN_PATH : "${qt5.multimedia}/lib/qt5/plugins" + --prefix QT_PLUGIN_PATH : "${qtmultimedia}/lib/qt5/plugins" ''; meta = { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a2637f76f2..3896f0145da 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12893,7 +12893,7 @@ let gst_plugins_bad = null; }; - qutebrowser = callPackage ../applications/networking/browsers/qutebrowser { + qutebrowser = qt5.callPackage ../applications/networking/browsers/qutebrowser { inherit (python34Packages) buildPythonPackage python pyqt5 jinja2 pygments pyyaml pypeg2; }; From 54bcdcc0a7052c68e2123a11f19222fa24c4f482 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:22:52 -0600 Subject: [PATCH 460/707] teamspeak_client: Qt 5 infrastructure update --- .../networking/instant-messengers/teamspeak/client.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index a18ffac5d63..7eedd997c1b 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, makeDesktopItem, zlib, glib, libpng, freetype -, xorg, fontconfig, qt55, xkeyboard_config, alsaLib, libpulseaudio ? null +, xorg, fontconfig, qtbase, xkeyboard_config, alsaLib, libpulseaudio ? null , libredirect, quazip, less, which, unzip }: @@ -12,7 +12,7 @@ let deps = [ zlib glib libpng freetype xorg.libSM xorg.libICE xorg.libXrender xorg.libXrandr xorg.libXfixes xorg.libXcursor xorg.libXinerama - xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt55.qtbase libpulseaudio + xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qtbase libpulseaudio ]; desktopItem = makeDesktopItem { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3896f0145da..7bf279527ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13225,7 +13225,7 @@ let gconf = gnome.GConf; }; - teamspeak_client = callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; + teamspeak_client = qt55.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { }; taskjuggler = callPackage ../applications/misc/taskjuggler { }; From 5810f0e7edc304a19332eacf2aaec232a00569ed Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 23:29:41 -0600 Subject: [PATCH 461/707] tomahawk: Qt 5 infrastructure upgrade --- pkgs/applications/audio/tomahawk/default.nix | 6 ++---- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix index 32d5f1aa13e..61cb6b9896e 100644 --- a/pkgs/applications/audio/tomahawk/default.nix +++ b/pkgs/applications/audio/tomahawk/default.nix @@ -11,9 +11,7 @@ assert enableXMPP -> libjreen != null; assert enableKDE -> kdelibs != null; assert enableTelepathy -> telepathy_qt != null; -let - quazipQt4 = quazip.override { qt = qt4; }; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "tomahawk-${version}"; version = "0.8.4"; @@ -29,7 +27,7 @@ in stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig attica boost gnutls libechonest liblastfm lucenepp phonon - qca2 qjson qt4 qtkeychain quazipQt4 sparsehash taglib websocketpp + qca2 qjson qt4 qtkeychain quazip sparsehash taglib websocketpp makeWrapper ] ++ stdenv.lib.optional enableXMPP libjreen ++ stdenv.lib.optional enableKDE kdelibs diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7bf279527ef..d6131f28c58 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13310,6 +13310,7 @@ let enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; + quazip = qt5.quazip.override { qt = qt4; }; }; torchat = callPackage ../applications/networking/instant-messengers/torchat { From d534d5f0977fcaedaf8e80c53c6f3a4a3931346d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 23:38:39 -0600 Subject: [PATCH 462/707] smplayer: Qt 5 infrastructure upgrade --- pkgs/applications/video/smplayer/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix index aed5363100b..13c65422227 100644 --- a/pkgs/applications/video/smplayer/default.nix +++ b/pkgs/applications/video/smplayer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtscript }: stdenv.mkDerivation rec { name = "smplayer-15.11.0"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { patches = [ ./basegui.cpp.patch ]; - buildInputs = [ qt5.script ]; + buildInputs = [ qtscript ]; preConfigure = '' makeFlags="PREFIX=$out" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d6131f28c58..ae9e4e964a5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12577,7 +12577,7 @@ let shotcut = qt5.callPackage ../applications/video/shotcut { }; - smplayer = callPackage ../applications/video/smplayer { }; + smplayer = qt5.callPackage ../applications/video/smplayer { }; smtube = callPackage ../applications/video/smtube {}; From 85c19f8fb4bffec3c3ecfa464dd068d801a60ebb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 07:40:29 -0600 Subject: [PATCH 463/707] smtube: Qt 5 infrastructure update --- pkgs/applications/video/smtube/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index 79dbf576472..bc55f943a88 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtscript }: stdenv.mkDerivation rec { version = "15.11.0"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - buildInputs = [ qt5.script ]; + buildInputs = [ qtscript ]; meta = with stdenv.lib; { description = "Play and download Youtube videos"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae9e4e964a5..da833ab5892 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12579,7 +12579,7 @@ let smplayer = qt5.callPackage ../applications/video/smplayer { }; - smtube = callPackage ../applications/video/smtube {}; + smtube = qt5.callPackage ../applications/video/smtube {}; sup = callPackage ../applications/networking/mailreaders/sup { ruby = ruby_1_9_3.override { cursesSupport = true; }; From 27c522cc3b0010ee0a1e44a52fbeaf345c76dce8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 08:02:42 -0600 Subject: [PATCH 464/707] phonon-backend-gstreamer: normalize attribute name to upstream --- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- pkgs/top-level/all-packages.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 933efa08fa3..124a0fa7047 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -135,7 +135,7 @@ in pkgs.gst_all.gstPluginsUgly pkgs.gst_all.gstPluginsBad pkgs.gst_all.gstFfmpeg # for mp3 playback - pkgs.phonon_qt5_backend_gstreamer + pkgs.qt55.phonon-backend-gstreamer pkgs.gst_all_1.gstreamer pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index da833ab5892..6322fb3b3db 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8159,7 +8159,7 @@ let phonon = callPackage ../development/libraries/phonon/qt5 { }; - phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; + phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; @@ -15799,7 +15799,7 @@ aliases = with self; rec { mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 - phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 qtcreator = qt5.qtcreator; # added 2015-12-19 From 298c4befda449f0b158a85efe16219fbe716c02d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 08:03:26 -0600 Subject: [PATCH 465/707] phonon-backend-vlc: normalize attribute name to upstream --- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 124a0fa7047..2aeb4f67d77 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -147,7 +147,7 @@ in ++ lib.optionals cfg.phonon.vlc.enable [ pkgs.phonon_qt5_backend_vlc - pkgs.phonon_backend_vlc + pkgs.qt55.phonon-backend-vlc ]; environment.pathsToLink = [ "/share" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6322fb3b3db..562e3eaf8c4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8161,7 +8161,7 @@ let phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; - phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; + phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; polkit-qt = callPackage ../development/libraries/polkit-qt-1 { withQt5 = true; From e3e2273382dfd1a8411aa8b0b3ef0c4b31c0c016 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sun, 20 Dec 2015 18:36:31 +0100 Subject: [PATCH 466/707] pkgs.gnupg1: 1.4.19 -> 1.4.20 --- pkgs/tools/security/gnupg/1.nix | 6 ++--- .../security/gnupg/remove-debug-message.patch | 22 ------------------- 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 pkgs/tools/security/gnupg/remove-debug-message.patch diff --git a/pkgs/tools/security/gnupg/1.nix b/pkgs/tools/security/gnupg/1.nix index d5045806e0c..8593fe69733 100644 --- a/pkgs/tools/security/gnupg/1.nix +++ b/pkgs/tools/security/gnupg/1.nix @@ -1,15 +1,13 @@ { stdenv, fetchurl, readline, bzip2 }: stdenv.mkDerivation rec { - name = "gnupg-1.4.19"; + name = "gnupg-1.4.20"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86"; + sha256 = "1k7d6zi0zznqsmcjic0yrgfhqklqz3qgd3yac7wxsa7s6088p604"; }; - patches = [ ./remove-debug-message.patch ]; - buildInputs = [ readline bzip2 ]; doCheck = true; diff --git a/pkgs/tools/security/gnupg/remove-debug-message.patch b/pkgs/tools/security/gnupg/remove-debug-message.patch deleted file mode 100644 index 92fc6f2cfca..00000000000 --- a/pkgs/tools/security/gnupg/remove-debug-message.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit 936416690e6c889505d84fe96983a66983beae5e -Author: Werner Koch -Date: Thu Feb 26 09:38:58 2015 +0100 - - gpg: Remove left-over debug message. - - * g10/armor.c (check_input): Remove log_debug. - -diff --git a/g10/armor.c b/g10/armor.c -index 6c0013d..de1726d 100644 ---- a/g10/armor.c -+++ b/g10/armor.c -@@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a ) - /* This is probably input from a keyserver helper and we - have not yet seen an error line. */ - afx->key_failed_code = parse_key_failed_line (line+4, len-4); -- log_debug ("armor-keys-failed (%.*s) ->%d\n", -- (int)len, line, -- afx->key_failed_code); - } - if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) { - hdr_line = i; From 56f6be2583909cff986ec12c9f3a3c9af6e83936 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 18:58:02 +0100 Subject: [PATCH 467/707] saneBackendsGit 1.0.25-180-g6d8b8d5 -> 2015-12-20 --- pkgs/applications/graphics/sane/backends-git.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix index 66e496557a8..0c74a470c25 100644 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ b/pkgs/applications/graphics/sane/backends-git.nix @@ -6,13 +6,14 @@ let in assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); +let version = "2015-12-20"; in stdenv.mkDerivation { - name = "sane-backends-1.0.25-180-g6d8b8d5"; + name = "sane-backends-${version}"; src = fetchgit { url = "git://alioth.debian.org/git/sane/sane-backends.git"; - rev = "6d8b8d5aa6e8da2b24e1caa42b9ea75e9624b45d"; - sha256 = "b5b2786eef835550e4a4522db05c8c81075b1a7aff5a66f1d4a498f6efe0ef03"; + rev = "5136e664b8608604f54a2cc1d466019922b311e6"; + sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed"; }; udevSupport = hotplugSupport; @@ -39,6 +40,7 @@ stdenv.mkDerivation { else ""; meta = with stdenv.lib; { + inherit version; homepage = "http://www.sane-project.org/"; description = "SANE (Scanner Access Now Easy) backends"; longDescription = '' From e582c41482615dc4d383a8d3f578e9ead9209743 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 20 Dec 2015 11:12:23 -0800 Subject: [PATCH 468/707] coqPackages.mathcomp,ssreflect: 1.5 -> 1.6 See the INSTALL file in the mathcomp package for instructions on upgrading projects from 1.5 to 1.6. The 1.6 version works with both Coq 8.4 and 8.5. --- .../coq-modules/mathcomp/default.nix | 8 ++--- .../coq-modules/mathcomp/generic.nix | 24 +++++++++----- .../coq-modules/ssreflect/default.nix | 10 +++--- .../coq-modules/ssreflect/generic.nix | 31 +++++++++---------- 4 files changed, 39 insertions(+), 34 deletions(-) diff --git a/pkgs/development/coq-modules/mathcomp/default.nix b/pkgs/development/coq-modules/mathcomp/default.nix index 7c34e186717..189b1220640 100644 --- a/pkgs/development/coq-modules/mathcomp/default.nix +++ b/pkgs/development/coq-modules/mathcomp/default.nix @@ -4,15 +4,15 @@ let src = if coq.coq-version == "8.4" then fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.tar.gz; - sha256 = "1297svwi18blrlyd8vsqilar2h5nfixlvlifdkbx47aljq4m5bam"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; } else if coq.coq-version == "8.5" then fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.coq85beta2.tar.gz; - sha256 = "03bnq44ym43x8shi7whc02l0g5vy6rx8f1imjw478chlgwcxazqy"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; } else throw "No mathcomp package for Coq version ${coq.coq-version}"; diff --git a/pkgs/development/coq-modules/mathcomp/generic.nix b/pkgs/development/coq-modules/mathcomp/generic.nix index 56838734b6d..b4048aa8003 100644 --- a/pkgs/development/coq-modules/mathcomp/generic.nix +++ b/pkgs/development/coq-modules/mathcomp/generic.nix @@ -1,25 +1,33 @@ -{ stdenv, fetchurl, coq, ssreflect -, graphviz, ocamlPackages, withDoc ? true +{ stdenv, fetchurl, coq, ssreflect, ncurses, which +, graphviz, ocamlPackages, withDoc ? false , src }: stdenv.mkDerivation { - name = "coq-mathcomp-1.5-${coq.coq-version}"; + name = "coq-mathcomp-1.6-${coq.coq-version}"; inherit src; - nativeBuildInputs = stdenv.lib.optionals withDoc - ([ graphviz ] ++ (with ocamlPackages; [ ocaml camlp5_transitional ])); - propagatedBuildInputs = [ ssreflect ]; + nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ]; + buildInputs = [ coq.ocaml coq.camlp5 ncurses which ]; + propagatedBuildInputs = [ coq ssreflect ]; enableParallelBuilding = true; buildFlags = stdenv.lib.optionalString withDoc "doc"; - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; + preBuild = '' + cd mathcomp + export COQBIN=${coq}/bin/ + ''; - postInstall = stdenv.lib.optionalString withDoc '' + installPhase = '' + make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install + rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect* + rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/ssrmatching.cmi + rm -fr $out/share/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect* + '' + stdenv.lib.optionalString withDoc '' make -f Makefile.coq install-doc DOCDIR=$out/share/coq/${coq.coq-version}/ ''; diff --git a/pkgs/development/coq-modules/ssreflect/default.nix b/pkgs/development/coq-modules/ssreflect/default.nix index a0b0d951c0d..8ba49d06bae 100644 --- a/pkgs/development/coq-modules/ssreflect/default.nix +++ b/pkgs/development/coq-modules/ssreflect/default.nix @@ -5,8 +5,8 @@ if coq.coq-version == "8.4" then callPackage ./generic.nix { src = fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.tar.gz; - sha256 = "0hm1ha7sxqfqhc7iwhx6zdz3nki4rj5nfd3ab24hmz8v7mlpinds"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; }; } @@ -16,12 +16,10 @@ else if coq.coq-version == "8.5" then callPackage ./generic.nix { src = fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.coq85beta2.tar.gz; - sha256 = "084l9xd5vgb8jml0dkm66g8cil5rsf04w821pjhn2qk9mdbwaagf"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; }; - patches = [ ./threads.patch ]; - } else throw "No ssreflect package for Coq version ${coq.coq-version}" diff --git a/pkgs/development/coq-modules/ssreflect/generic.nix b/pkgs/development/coq-modules/ssreflect/generic.nix index 3bfccab0be7..d7303ad8852 100644 --- a/pkgs/development/coq-modules/ssreflect/generic.nix +++ b/pkgs/development/coq-modules/ssreflect/generic.nix @@ -1,39 +1,38 @@ -{ stdenv, fetchurl, coq, ncurses -, graphviz, withDoc ? true +{ stdenv, fetchurl, coq, ncurses, which +, graphviz, withDoc ? false , src, patches ? [] }: stdenv.mkDerivation { - name = "coq-ssreflect-1.5-${coq.coq-version}"; + name = "coq-ssreflect-1.6-${coq.coq-version}"; inherit src; nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ]; - buildInputs = [ coq.ocaml coq.camlp5 ncurses ]; + buildInputs = [ coq.ocaml coq.camlp5 ncurses which ]; propagatedBuildInputs = [ coq ]; enableParallelBuilding = true; inherit patches; - postPatch = '' - # Permit building of the ssrcoq statically-bound executable - sed -i 's/^#-custom/-custom/' Make - sed -i 's/^#SSRCOQ/SSRCOQ/' Make + preBuild = '' + cd mathcomp/ssreflect + export COQBIN=${coq}/bin/ ''; - buildFlags = stdenv.lib.optionalString withDoc "doc"; - - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; + installPhase = '' + make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install + ''; postInstall = '' - mkdir -p $out/bin - cp -p bin/ssrcoq $out/bin - cp -p bin/ssrcoq.byte $out/bin + # mkdir -p $out/bin + # cp -p bin/ssrcoq $out/bin + # cp -p bin/ssrcoq.byte $out/bin '' + stdenv.lib.optionalString withDoc '' - mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/ - cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/ + mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/ + cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/ ''; meta = with stdenv.lib; { From bcde1ffe77ac9188b22419d06b53e884d7937b8c Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Sun, 20 Dec 2015 22:26:16 +0200 Subject: [PATCH 469/707] Revert change from cp -v to cp -r in fira-code. Mistakenly used `-r` in #11842. --- pkgs/data/fonts/fira-code/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 02db24203b7..625794d9d3b 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/share/fonts/opentype - cp -r *.otf $out/share/fonts/opentype + cp -v *.otf $out/share/fonts/opentype ''; meta = with stdenv.lib; { From 760ec896ae5b90a22c21523605e37228f1665c2f Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Sun, 20 Dec 2015 21:55:08 +0100 Subject: [PATCH 470/707] lsyncd: 2.1.5 -> 2.1.6 --- .../networking/sync/lsyncd/default.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix index 775da905ea9..b190b05e289 100644 --- a/pkgs/applications/networking/sync/lsyncd/default.nix +++ b/pkgs/applications/networking/sync/lsyncd/default.nix @@ -1,32 +1,27 @@ -{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync, +{ stdenv, fetchFromGitHub, cmake, lua, pkgconfig, rsync, asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }: stdenv.mkDerivation rec { name = "lsyncd-${version}"; - version = "2.1.5"; + version = "2.1.6"; src = fetchFromGitHub { owner = "axkibe"; repo = "lsyncd"; rev = "release-${version}"; - sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn"; + sha256 = "1cab96h4qfyapk7lb682j1d8k0hpv7h9pl41vdgc0vr4bq4c3ij2"; }; - patches = [ ./configure-a2x-fix.patch ]; - - preConfigurePhase = '' + patchPhase = '' substituteInPlace default-rsync.lua \ - --replace "binary = '/usr/bin/rsync'," "binary = '${rsync}/bin/rsync'," + --replace "/usr/bin/rsync" "${rsync}/bin/rsync" ''; - configurePhase = '' - ./autogen.sh --prefix=$out - ./configure --prefix=$out - ''; + dontUseCmakeBuildDir = true; buildInputs = [ rsync - automake autoconf lua pkgconfig + cmake lua pkgconfig asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt ]; From 1253cd926c6ee9caa6012c503b1caa72ddba6171 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Dec 2015 22:11:06 +0100 Subject: [PATCH 471/707] keepassx: 0.4.3 -> 0.4.4 Fixes CVE-2015-8359 and CVE-2015-8378. Also switch URL to new download location. --- pkgs/applications/misc/keepassx/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/keepassx/default.nix b/pkgs/applications/misc/keepassx/default.nix index 02a299922f1..3d078d59be6 100644 --- a/pkgs/applications/misc/keepassx/default.nix +++ b/pkgs/applications/misc/keepassx/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst }: stdenv.mkDerivation rec { - name = "keepassx-0.4.3"; + name = "keepassx-${version}"; + version = "0.4.4"; src = fetchurl { - url = "mirror://sourceforge/keepassx/${name}.tar.gz"; - sha256 = "cd901a0611ce57e62cf6df7eeeb1b690b5232302bdad8626994eb54adcfa1e85"; + url = "https://www.keepassx.org/releases/${version}/${name}.tar.gz"; + sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry"; }; configurePhase = '' From 6742104cbe4e4e5848ebf6f7614c46f9510fbcfc Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Dec 2015 22:50:04 +0100 Subject: [PATCH 472/707] keepassx2: 2.0beta2 -> 2.0 Also switch to official download URL. --- pkgs/applications/misc/keepassx/2.0.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/keepassx/2.0.nix b/pkgs/applications/misc/keepassx/2.0.nix index acdd91aaf68..aeccb874cb6 100644 --- a/pkgs/applications/misc/keepassx/2.0.nix +++ b/pkgs/applications/misc/keepassx/2.0.nix @@ -1,10 +1,12 @@ { stdenv, fetchurl, cmake, libgcrypt, qt4, xorg, ... }: -stdenv.mkDerivation { - name = "keepassx2-2.0beta2"; +stdenv.mkDerivation rec { + name = "keepassx2-${version}"; + version = "2.0"; + src = fetchurl { - url = "https://github.com/keepassx/keepassx/archive/2.0-beta2.tar.gz"; - sha256 = "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q"; + url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz"; + sha256 = "1ri2r1sldc62hbg74m4pmci0nrjwvv38rqhyzhyjin247an0zd0f"; }; buildInputs = [ cmake libgcrypt qt4 xorg.libXtst ]; From 804cafe6c26db591663f990e9b5ff6f2615e14fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 20 Dec 2015 22:54:11 +0100 Subject: [PATCH 473/707] add Django 1.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 1451f004c735d07d2243965a73b2c466ac9e7ccb) Signed-off-by: Domen Kožar --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 112a7f0da86..5f58c3d794b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6890,6 +6890,27 @@ in modules // { ]; }; + django_1_9 = buildPythonPackage rec { + name = "Django-${version}"; + version = "1.9"; + disabled = pythonOlder "2.7"; + + src = pkgs.fetchurl { + url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz"; + sha256 = "0rkwdxh63y7pwx9larl2g7m1z206675dzx7ipd44p3bpm0clpzh5"; + }; + + # patch only $out/bin to avoid problems with starter templates (see #3134) + postFixup = '' + wrapPythonProgramsIn $out/bin "$out $pythonPath" + ''; + + meta = { + description = "A high-level Python Web framework"; + homepage = https://www.djangoproject.com/; + }; + }; + django_1_8 = buildPythonPackage rec { name = "Django-${version}"; version = "1.8.4"; From d24b2a2aa28bace773ceea601c83d4f7740dce68 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sun, 20 Dec 2015 23:22:41 +0100 Subject: [PATCH 474/707] mahotas: 1.4.0 -> 1.4.1 This new release should fix all errors on 32 bit systems (reported here: https://github.com/NixOS/nixpkgs/pull/11699#issuecomment-165410506) --- 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 112a7f0da86..06e9cf6772f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3271,11 +3271,11 @@ in modules // { mahotas = buildPythonPackage rec { name = "python-mahotas-${version}"; - version = "1.4.0"; + version = "1.4.1"; src = pkgs.fetchurl { url = "https://github.com/luispedro/mahotas/archive/release-${version}.tar.gz"; - sha256 = "30c4b979e0d5f4c013860321766a79ffcabe56c1ad9088e5d0c6b36aec5f0415"; + sha256 = "a684d339a3a4135f6f7161851161174755e9ea643b856b0bb48abd5515041ab6"; }; buildInputs = with self; [ From 1b9b1d0d5c2838668da7e5f9db0548355409fc01 Mon Sep 17 00:00:00 2001 From: jeaye Date: Mon, 21 Dec 2015 15:33:15 +0800 Subject: [PATCH 475/707] fail2ban 0.9.1 -> 0.9.3 --- pkgs/tools/security/fail2ban/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 184f8a59d28..aeb665710fa 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, python, pythonPackages, unzip, systemd, gamin }: -let version = "0.9.1"; in +let version = "0.9.3"; in pythonPackages.buildPythonPackage { name = "fail2ban-${version}"; @@ -9,7 +9,7 @@ pythonPackages.buildPythonPackage { src = fetchzip { name = "fail2ban-${version}-src"; url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5"; + sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; }; buildInputs = [ unzip ]; From 8d2bcfe2e781e980c0c74698694c8a9f3032a4d8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:00 +0100 Subject: [PATCH 476/707] python blaze: 0.8.3 -> 0.9.0 --- 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 72178086c50..efe3a64c58e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1811,11 +1811,11 @@ in modules // { blaze = buildPythonPackage rec { name = "blaze-${version}"; - version = "0.8.3"; + version = "0.9.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/blaze/${name}.tar.gz"; - sha256 = "4f8ceb1248ba44f833f5a46a18b6ea44130a5999d5234324d0456b5f9ffe716b"; + sha256 = "07h284n6fr0lvy58a6lvwwfb45sy7lggllx2y2vzzs4xrvf5k1i7"; }; buildInputs = with self; [ pytest ]; From b40264de12b045a3535cd67ab2ad0a52f45cfb1c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:12 +0100 Subject: [PATCH 477/707] python dask: 0.7.0 -> 0.7.5 --- 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 efe3a64c58e..d0839720f92 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3754,11 +3754,11 @@ in modules // { dask = buildPythonPackage rec { name = "dask-${version}"; - version = "0.7.0"; + version = "0.7.5"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; - sha256 = "3b48646e9e66ec21a6885700d39ea90e2c2a7ad5d26773a8413b570eb1a67b3e"; + sha256 = "1csrgfjvq4mlvr7hmgy3a5jczkwpy4jz4jb3c4y45s5fg3y38f3k"; }; propagatedBuildInputs = with self; [numpy toolz dill]; From 8017e1af939b967fa70235b6a6e8941b7c3a4441 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:34 +0100 Subject: [PATCH 478/707] python datashape: 0.4.7 -> 0.5.0 --- pkgs/top-level/python-packages.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d0839720f92..5abcd8f869b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3773,16 +3773,20 @@ in modules // { datashape = buildPythonPackage rec { name = "datashape-${version}"; - version = "0.4.7"; + version = "0.5.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; - sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; + sha256 = "13w0rfaqpqkh30bxmx7i7kjfrfkm5maa35gj3c464wah7i2zm9wp"; }; - buildInputs = with self; [ pytest ]; + buildInputs = with self; [ pytest mock ]; propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ]; + checkPhase = '' + py.test datashape/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/datashape; description = "A data description language"; From 825f2e64e6de5945de3c3f0bbe8b50f0afee7f24 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:43 +0100 Subject: [PATCH 479/707] python odo: 0.3.4 -> 0.4.0 --- 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 5abcd8f869b..b5586d6941f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11758,11 +11758,11 @@ in modules // { odo = buildPythonPackage rec { name = "odo-${version}"; - version= "0.3.4"; + version= "0.4.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz"; - sha256 = "77bdb372999ac0d9ef272927d7867a668108a4193e11eb8646bf770370a30725"; + sha256 = "0xqm4zb7a7a2cbik9kn6yk0kr26n90iqj102h5wb42x6z5v4mn79"; }; buildInputs = with self; [ pytest ]; From 81b0f551c70d6e73bae608ec0873542d748ddc2f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:22 +0100 Subject: [PATCH 480/707] python mahotas: does not work on i686 --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b5586d6941f..a8842516f3a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3288,6 +3288,8 @@ in modules // { imread ]; + disabled = stdenv.isi686; # Failing tests + meta = with stdenv.lib; { description = "Computer vision package based on numpy"; homepage = https://readthedocs.org/projects/mahotas/; From 3b939522976fd4e7bfb5d7f23fd5af14e68c34a8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:40 +0100 Subject: [PATCH 481/707] python mathics: patch to allow current sympy --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a8842516f3a..9d1815f22a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10019,6 +10019,10 @@ in modules // { buildInputs = with self; [ pexpect ]; + prePatch = '' + substituteInPlace setup.py --replace "sympy==0.7.6" "sympy" + ''; + propagatedBuildInputs = with self; [ argparse cython From 4d2d2c6a6e1e3a4d2247839b3690094cb94a292a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:58 +0100 Subject: [PATCH 482/707] python tunigo: add missing test dependencies --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9d1815f22a3..c61bf05d103 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20924,6 +20924,8 @@ in modules // { sha256 = "02ili37dbs5mk5f6v3fmi1sji39ymc4zyq44x0abxzr88nc8nh97"; }; + buildInputs = with self; [ mock nose ]; + meta = { description = "Python API for the browse feature of Spotify"; homepage = https://github.com/trygveaa/python-tunigo; From 3ddd19959c4d0dbf6a233fa8a47492fdc7ca8411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Dec 2015 12:09:16 +0100 Subject: [PATCH 483/707] beret: mark as broken /cc maintainer @lovek323. --- pkgs/games/beret/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/beret/default.nix b/pkgs/games/beret/default.nix index b36ec6a43f6..e2e4f5af977 100644 --- a/pkgs/games/beret/default.nix +++ b/pkgs/games/beret/default.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation { license = licenses.lgpl2; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.all; + broken = true; # source won't download, and no replacement is visible }; } From d5e5a7dbc3df00dbe2f91be13a82785139b95dce Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 24 Nov 2015 16:13:57 +0100 Subject: [PATCH 484/707] docker: 1.9.0 -> 1.9.1 --- pkgs/applications/virtualization/docker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 3380306e165..5a51749652d 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -10,13 +10,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "docker-${version}"; - version = "1.9.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "docker"; repo = "docker"; rev = "v${version}"; - sha256 = "1a1ss210i712fs9mp5hcljb8bdx93lss91sxj9zay0vrmdb84zn2"; + sha256 = "1mhi4y820h2wxz6hqmr95c7yvklyw578dd9c83jr463w7rq0rgr6"; }; buildInputs = [ @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { buildPhase = '' patchShebangs . export AUTO_GOPATH=1 - export DOCKER_GITCOMMIT="76d6bc9a" + export DOCKER_GITCOMMIT="a34a1d59" ./hack/make.sh dynbinary ''; From 810695216ade42a83eef51a421115292d17be03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 21 Dec 2015 12:17:20 +0100 Subject: [PATCH 485/707] uwsgi: add a type comment --- pkgs/servers/uwsgi/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index 89260109e26..abcbaa04b8c 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -1,4 +1,5 @@ { stdenv, lib, fetchurl, pkgconfig, jansson +# plugins: list of strings, eg. [python2, python3] , plugins , pam, withPAM ? stdenv.isLinux , systemd, withSystemd ? stdenv.isLinux From 3e4035695c9c969675de66ca1b63e13ef57e5bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Dec 2015 10:50:37 +0100 Subject: [PATCH 486/707] nixpkgs manual: add idris docs generated from *.md I also modified the nesting approach in haskell docs to allow more uniform handling of markdown -> docbook conversions. /cc #11308. --- doc/default.nix | 46 +++++++++++++++++++----------- doc/haskell-users-guide.md | 36 ++++++++++++----------- doc/languages-frameworks/index.xml | 1 + 3 files changed, 49 insertions(+), 34 deletions(-) diff --git a/doc/default.nix b/doc/default.nix index cca68014b0d..7e41380d635 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -20,27 +20,39 @@ stdenv.mkDerivation { --param callout.graphics.extension '.gif' ''; - buildCommand = '' - { - echo "" - echo "" - echo "User's Guide to the Haskell Infrastructure" - echo "" - pandoc ${./haskell-users-guide.md} -w docbook | \ - sed -e 's|||' \ - -e 's|||' - echo "" - echo "" - } >haskell-users-guide.xml + buildCommand = let toDocbook = { useChapters ? false, inputFile, outputFile }: + let + extraHeader = ''xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" ''; + in '' + { + pandoc '${inputFile}' -w docbook ${optionalString useChapters "--chapters"} \ + | sed -e 's|||' \ + -e 's|||' \ + -e '1s| id=| xml:id=|' \ + -e '1s|\(<[^ ]* \)|\1${extraHeader}|' + } > '${outputFile}' + ''; + in + + '' ln -s '${sources}/'*.xml . mkdir ./languages-frameworks cp -s '${sources-langs}'/* ./languages-frameworks - + '' + + toDocbook { + inputFile = ./haskell-users-guide.md; + outputFile = "haskell-users-guide.xml"; + useChapters = true; + } + + toDocbook { + inputFile = ./../pkgs/development/idris-modules/README.md; + outputFile = "languages-frameworks/idris.xml"; + } + + '' + cat languages-frameworks/idris.xml echo ${nixpkgsVersion} > .version xmllint --noout --nonet --xinclude --noxincludenode \ diff --git a/doc/haskell-users-guide.md b/doc/haskell-users-guide.md index 446f08eb697..b11e4cf09f8 100644 --- a/doc/haskell-users-guide.md +++ b/doc/haskell-users-guide.md @@ -3,8 +3,10 @@ title: User's Guide for Haskell in Nixpkgs author: Peter Simons date: 2015-06-01 --- +# User's Guide to the Haskell Infrastructure -# How to install Haskell packages + +## How to install Haskell packages Nixpkgs distributes build instructions for all Haskell packages registered on [Hackage](http://hackage.haskell.org/), but strangely enough normal Nix package @@ -111,9 +113,9 @@ version of GHC listed above, there exists a package set based on that compiler. Also, the attributes `haskell.compiler.ghcXYC` and `haskell.packages.ghcXYC.ghc` are synonymous for the sake of convenience. -# How to create a development environment +## How to create a development environment -## How to install a compiler +### How to install a compiler A simple development environment consists of a Haskell compiler and the tool `cabal-install`, and we saw in section [How to install Haskell packages] how @@ -162,7 +164,7 @@ anymore once `nix-shell` has terminated. If you find that your Haskell builds no longer work after garbage collection, then you'll have to re-run `cabal configure` inside of a new `nix-shell` environment. -## How to install a compiler with libraries +### How to install a compiler with libraries GHC expects to find all installed libraries inside of its own `lib` directory. This approach works fine on traditional Unix systems, but it doesn't work for @@ -257,7 +259,7 @@ environment in your profile: export NIX_GHC_LIBDIR="$HOME/.nix-profile/lib/ghc-$($NIX_GHC --numeric-version)" fi -## How to install a compiler with libraries, hoogle and documentation indexes +### How to install a compiler with libraries, hoogle and documentation indexes If you plan to use your environment for interactive programming, not just compiling random Haskell code, you might want to replace `ghcWithPackages` in @@ -319,7 +321,7 @@ page](http://kb.mozillazine.org/Links_to_local_pages_do_not_work) for workarounds. -## How to create ad hoc environments for `nix-shell` +### How to create ad hoc environments for `nix-shell` The easiest way to create an ad hoc development environment is to run `nix-shell` with the appropriate GHC environment given on the command-line: @@ -369,14 +371,14 @@ development commands. Note that you need `cabal-install` installed in your `$PATH` already to use it here --- the `nix-shell` environment does not provide it. -# How to create Nix builds for your own private Haskell packages +## How to create Nix builds for your own private Haskell packages If your own Haskell packages have build instructions for Cabal, then you can convert those automatically into build instructions for Nix using the `cabal2nix` utility, which you can install into your profile by running `nix-env -i cabal2nix`. -## How to build a stand-alone project +### How to build a stand-alone project For example, let's assume that you're working on a private project called `foo`. To generate a Nix build expression for it, change into the project's @@ -433,7 +435,7 @@ You can even use that generated file to run `nix-build`, too: $ nix-build shell.nix -## How to build projects that depend on each other +### How to build projects that depend on each other If you have multiple private Haskell packages that depend on each other, then you'll have to register those packages in the Nixpkgs set to make them visible @@ -468,9 +470,9 @@ or enter an interactive shell environment suitable for building them: $ nix-shell "" -A haskellPackages.bar.env -# Miscellaneous Topics +## Miscellaneous Topics -## How to build with profiling enabled +### How to build with profiling enabled Every Haskell package set takes a function called `overrides` that you can use to manipulate the package as much as you please. One useful application of this @@ -494,7 +496,7 @@ following snippet in your `~/.nixpkgs/config.nix` file: Then, replace instances of `haskellPackages` in the `cabal2nix`-generated `default.nix` or `shell.nix` files with `profiledHaskellPackages`. -## How to override package versions in a compiler-specific package set +### How to override package versions in a compiler-specific package set Nixpkgs provides the latest version of [`ghc-events`](http://hackage.haskell.org/package/ghc-events), which is 0.4.4.0 @@ -560,7 +562,7 @@ prefer one built with GHC 7.8.x in the first place. However, for users who cannot use GHC 7.10.x at all for some reason, the approach of downgrading to an older version might be useful. -## How to recover from GHC's infamous non-deterministic library ID bug +### How to recover from GHC's infamous non-deterministic library ID bug GHC and distributed build farms don't get along well: @@ -586,7 +588,7 @@ command, i.e. by running: rm /nix/var/nix/manifests/* rm /nix/var/nix/channel-cache/* -## Builds on Darwin fail with `math.h` not found +### Builds on Darwin fail with `math.h` not found Users of GHC on Darwin have occasionally reported that builds fail, because the compiler complains about a missing include file: @@ -603,7 +605,7 @@ can configure the environment variables in their `~/.bashrc` file to avoid the compiler error. -## Using Stack together with Nix +### Using Stack together with Nix -- While building package zlib-0.5.4.2 using: runhaskell -package=Cabal-1.22.4.0 -clear-package-db [... lots of flags ...] @@ -666,7 +668,7 @@ to find out the store path of the system's zlib library. Now, you can The same thing applies to `cabal configure`, of course, if you're building with `cabal-install` instead of Stack. -## Creating statically linked binaries +### Creating statically linked binaries There are two levels of static linking. The first option is to configure the build with the Cabal flag `--disable-executable-dynamic`. In Nix expressions, @@ -688,7 +690,7 @@ as shared libraries only, i.e. there is just no static library available that Cabal could link! -# Other resources +## Other resources - The Youtube video [Nix Loves Haskell](https://www.youtube.com/watch?v=BsBhi_r-OeE) provides an introduction into Haskell NG aimed at beginners. The slides are diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index 9fd79877e83..743a1b70be7 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -20,6 +20,7 @@ such as Perl or Haskell. These are described in this chapter. + From 8a4252639bb7ebc21b51e5b38b7f472ed6f9dc4f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 20:55:47 +0100 Subject: [PATCH 487/707] gdouros fonts: fix changed sha256 hashes (close #11847) Hashes changed upstream without notice... --- pkgs/data/fonts/gdouros/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix index 8ad6068a185..114b88c3040 100644 --- a/pkgs/data/fonts/gdouros/default.nix +++ b/pkgs/data/fonts/gdouros/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, unzip, lib }: let fonts = { - aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "09pmazcpxhkx3l8h4gxiixihi1c49pli5gvlcm1b6sbf4xvf9kwm"; + aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "0jhj4i0262f4zbm979fm01rnvc91a00kwkbcgvzs281256g2ciny"; description = "Scripts and symbols of the Aegean world"; }; - textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "10m6kpyj8cc0b4qxxi78akiyjxcbhxj2wmbicdcfh008jibbaxsz"; + textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "06igp3hdql0yfaj9h2ahh5n7yvj2ni7rj2jdmz534f9618l8qi6r"; description = "Fonts based on early Greek editions"; }; symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd"; description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; }; - aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q"; + aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "10mr54ja9b169fhqfkrw510jybghrpjx7a8a7m38k5v39ck8wz6v"; description = "Egyptian Hieroglyphs, Coptic, Meroitic"; }; akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1jd2fb6jnwpdwgkidsi2pnw0nk2cpya8k85299w591sqslfkxyij"; description = "Sumero-Akkadian Cuneiform"; }; From a6b34b3bfdd0e5cadbcb007c8ff49a7e157af9bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Dec 2015 14:28:49 +0100 Subject: [PATCH 488/707] mesa: maintenance updates 11.0.5 -> 11.0.8 --- pkgs/development/libraries/mesa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 11fafc8f038..ca566fd1b11 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -22,7 +22,7 @@ else */ let - version = "11.0.5"; + version = "11.0.8"; # this is the default search path for DRI drivers driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32"; in @@ -36,7 +36,7 @@ stdenv.mkDerivation { "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" ]; - sha256 = "9c255a2a6695fcc6ef4a279e1df0aeaf417dc142f39ee59dfb533d80494bb67a"; + sha256 = "5696e4730518b6805d2ed5def393c4293f425a2c2c01bd5ed4bdd7ad62f7ad75"; }; prePatch = "patchShebangs ."; From 29c676e73d1efa2f6bfcafecebc1931962d6103c Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 2 Dec 2015 23:18:01 +0000 Subject: [PATCH 489/707] pdfmod: init at 0.9.1 (close #11417) vcunat did some cosmetic changes, such as joining lines because we seem to rarely use one-identifier-per-line style, or fixing hyena description to conform to our rules. --- pkgs/applications/misc/pdfmod/default.nix | 53 ++++++++++++++++++++ pkgs/development/libraries/hyena/default.nix | 42 ++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 3 files changed, 99 insertions(+) create mode 100644 pkgs/applications/misc/pdfmod/default.nix create mode 100644 pkgs/development/libraries/hyena/default.nix diff --git a/pkgs/applications/misc/pdfmod/default.nix b/pkgs/applications/misc/pdfmod/default.nix new file mode 100644 index 00000000000..f23238b2dc6 --- /dev/null +++ b/pkgs/applications/misc/pdfmod/default.nix @@ -0,0 +1,53 @@ +{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome_doc_utils, intltool +, mono, gtk-sharp, gnome-sharp, hyena +, which, makeWrapper, glib, gnome3, poppler, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + name = "pdfmod-${version}"; + version = "0.9.1"; + + src = fetchurl { + url = "mirror://gnome/sources/pdfmod/0.9/pdfmod-${version}.tar.bz2"; + sha256 = "eb7c987514a053106ddf03f26544766c751c801d87762909b36415d46bc425c9"; + }; + + patches = [ (fetchpatch { + url = "https://raw.githubusercontent.com/City-busz/Arch-Linux-Repository" + + "/master/gnome/pdfmod/pdfmod/pdfmod-mono-2.10.patch"; + sha256 = "0fpz9ifr6476lqhd5rkb94dm68vlrwdq5w1aaxzgyjgdax9hxx81"; + }) ]; + + buildInputs = [ + pkgconfig gnome_doc_utils intltool mono gtk-sharp gnome-sharp + hyena which makeWrapper wrapGAppsHook + ]; + + preConfigure = '' + substituteInPlace configure --replace gmcs mcs + substituteInPlace lib/poppler-sharp/poppler-sharp/poppler-sharp.dll.config \ + --replace libpoppler-glib.so.4 libpoppler-glib.so + ''; + + postInstall = '' + makeWrapper "${mono}/bin/mono" "$out/bin/pdfmod" \ + --add-flags "$out/lib/pdfmod/PdfMod.exe" \ + --prefix MONO_GAC_PREFIX : ${gtk-sharp} \ + --prefix MONO_GAC_PREFIX : ${gnome-sharp} \ + --prefix LD_LIBRARY_PATH : ${glib}/lib \ + --prefix LD_LIBRARY_PATH : ${gtk-sharp}/lib \ + --prefix LD_LIBRARY_PATH : ${gnome-sharp}/lib \ + --prefix LD_LIBRARY_PATH : ${gtk-sharp.gtk}/lib \ + --prefix LD_LIBRARY_PATH : ${gnome3.gconf}/lib \ + --prefix LD_LIBRARY_PATH : ${poppler}/lib + ''; + + dontStrip = true; + + meta = with stdenv.lib; { + homepage = "https://wiki.gnome.org/Apps/PdfMod"; + description = "A simple application for modifying PDF documents"; + platforms = platforms.all; + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/development/libraries/hyena/default.nix b/pkgs/development/libraries/hyena/default.nix new file mode 100644 index 00000000000..daa4f7fb9f2 --- /dev/null +++ b/pkgs/development/libraries/hyena/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, pkgconfig, mono, gtk-sharp, monoDLLFixer }: + +stdenv.mkDerivation rec { + name = "hyena-${version}"; + version = "0.5"; + + src = fetchurl { + url = "mirror://gnome/sources/hyena/${version}/hyena-${version}.tar.bz2" ; + sha256 = "eb7154a42b6529bb9746c39272719f3168d6363ed4bad305a916ed7d90bc8de9"; + }; + + buildInputs = [ + pkgconfig mono gtk-sharp + ]; + + postPatch = '' + patchShebangs build/dll-map-makefile-verifier + patchShebangs build/private-icon-theme-installer + find -name Makefile.in | xargs -n 1 -d '\n' sed -e 's/^dnl/#/' -i + ''; + + preConfigure = '' + substituteInPlace configure --replace gmcs mcs + ''; + + dontStrip = true; + + inherit monoDLLFixer; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Hyena; + description = "A C# library which contains a hodge-podge of random stuff"; + longDescription = '' + Hyena is a C# library used to make awesome applications. It contains a lot of random things, + including useful data structures, a Sqlite-based db layer, cool widgets, a JSON library, + a smart job/task scheduler, a user-query/search parser, and much more. It's particularly + useful for Gtk# applications, though only the Hyena.Gui assembly requires Gtk#. + ''; + platforms = platforms.all; + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c961c51cfb3..8dfc2db0b3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2681,6 +2681,8 @@ let pdfjam = callPackage ../tools/typesetting/pdfjam { }; + pdfmod = callPackage ../applications/misc/pdfmod { }; + jbig2enc = callPackage ../tools/graphics/jbig2enc { }; pdfread = callPackage ../tools/graphics/pdfread { @@ -6777,6 +6779,8 @@ let hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { }; + hyena = callPackage ../development/libraries/hyena { }; + icu = callPackage ../development/libraries/icu { }; id3lib = callPackage ../development/libraries/id3lib { }; From a326ab17550168a5b8bbeca2e1f024b94ac6d426 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 21 Dec 2015 17:16:49 +0100 Subject: [PATCH 490/707] linux-testing: 4.4.0-rc5 -> 4.4.0-rc6 Upstream changes can be found at: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=v4.4-rc6 Signed-off-by: aszlig --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 5cc5b2e8bca..43070f3306d 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4-rc5"; - modDirVersion = "4.4.0-rc5"; + version = "4.4-rc6"; + modDirVersion = "4.4.0-rc6"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "0qr1a8nmq6csbsw4cbqnn3m37a0fapj7a7cm9vj7fy7kq1rgxkpb"; + sha256 = "1brb1v6185pf8gnff753hvpdsbdmjr5nsbvj0s4ljlpcgljrn6cb"; }; features.iwlwifi = true; From 91212771446ef0fd87f6460855ce4825937d091b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 21 Dec 2015 03:14:24 +0000 Subject: [PATCH 491/707] gradle: 2.8 -> 2.9 --- pkgs/development/tools/build-managers/gradle/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index bee95d67ec3..e451370c9eb 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -34,12 +34,12 @@ rec { }; }; - gradle28 = gradleGen rec { - name = "gradle-2.8"; + gradleLatest = gradleGen rec { + name = "gradle-2.9"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1jq3m6ihvcxyp37mwsg3i8li9hd6rpv8ri8ih2mgvph4y71bk3d8"; + sha256 = "c9159ec4362284c0a38d73237e224deae6139cbde0db4f0f44e1c7691dd3de2f"; }; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 57026762d1b..737888cc979 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1809,7 +1809,7 @@ let pgf_graphics = callPackage ../tools/graphics/pgf { }; pigz = callPackage ../tools/compression/pigz { }; - + pixz = callPackage ../tools/compression/pixz { }; pxz = callPackage ../tools/compression/pxz { }; @@ -2985,7 +2985,7 @@ let samplicator = callPackage ../tools/networking/samplicator { }; - screen = callPackage ../tools/misc/screen { + screen = callPackage ../tools/misc/screen { inherit (darwin.apple_sdk.libs) utmp; }; @@ -5717,7 +5717,7 @@ let gotty = goPackages.gotty.bin // { outputs = [ "bin" ]; }; gradleGen = callPackage ../development/tools/build-managers/gradle { }; - gradle = self.gradleGen.gradle28; + gradle = self.gradleGen.gradleLatest; gradle25 = self.gradleGen.gradle25; gperf = callPackage ../development/tools/misc/gperf { }; @@ -10300,7 +10300,7 @@ let gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; }; - kgocode = callPackage ../applications/misc/kgocode { + kgocode = callPackage ../applications/misc/kgocode { inherit (pkgs.kde4) kdelibs; }; From 7e23ffd2c8d1e089d1cee7cdaa31c00903019d38 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Mon, 21 Dec 2015 17:49:06 +0100 Subject: [PATCH 492/707] ipaexfont: init at 003.01 --- pkgs/data/fonts/ipaexfont/default.nix | 31 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 32 insertions(+) create mode 100644 pkgs/data/fonts/ipaexfont/default.nix diff --git a/pkgs/data/fonts/ipaexfont/default.nix b/pkgs/data/fonts/ipaexfont/default.nix new file mode 100644 index 00000000000..ab163dcca9f --- /dev/null +++ b/pkgs/data/fonts/ipaexfont/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "ipaexfont-003.01"; + + src = fetchurl { + url = "http://dl.ipafont.ipa.go.jp/IPAexfont/IPAexfont00301.zip"; + sha256 = "0nmfyh10rzkvp0qmrla0dahkmmxq47678y4v8fdm8fpdzmf0kpn7"; + }; + + buildInputs = [ unzip ]; + + installPhase = '' + mkdir -p $out/share/fonts/opentype/ + cp *.ttf $out/share/fonts/opentype/ + ''; + + meta = with stdenv.lib; { + description = "Japanese font package with Mincho and Gothic fonts"; + longDescription = '' + IPAex font is a Japanese font developed by the Information-technology + Promotion Agency of Japan. It provides both Mincho and Gothic fonts, + suitable for both display and printing. + + This is the successor to the IPA fonts. + ''; + homepage = http://ipafont.ipa.go.jp/; + license = licenses.ipa; + maintainers = with maintainers; [ gebner ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8dfc2db0b3b..33334572772 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10768,6 +10768,7 @@ let iosevka = callPackage ../data/fonts/iosevka { }; ipafont = callPackage ../data/fonts/ipafont {}; + ipaexfont = callPackage ../data/fonts/ipaexfont {}; junicode = callPackage ../data/fonts/junicode { }; From cdd7310a503481e3c40266be45b6b8256d95ecbd Mon Sep 17 00:00:00 2001 From: Thomas Strobel Date: Mon, 21 Dec 2015 17:28:44 +0100 Subject: [PATCH 493/707] nixos avahi-daemon: add new option declarations Add new option declarations to control what information is published by the avahi daemon. The default values are chosen to respect the privacy of the user over the connectivity of the system. --- .../services/networking/avahi-daemon.nix | 88 +++++++++++++++---- 1 file changed, 72 insertions(+), 16 deletions(-) diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix index 284b2b84e6c..8b178ee9398 100644 --- a/nixos/modules/services/networking/avahi-daemon.nix +++ b/nixos/modules/services/networking/avahi-daemon.nix @@ -1,5 +1,5 @@ # Avahi daemon. -{ config, lib, pkgs, ... }: +{ config, lib, utils, pkgs, ... }: with lib; @@ -7,7 +7,9 @@ let cfg = config.services.avahi; - inherit (pkgs) avahi; + # We must escape interfaces due to the systemd interpretation + subsystemDevice = interface: + "sys-subsystem-net-devices-${utils.escapeSystemdPath interface}.device"; avahiDaemonConf = with cfg; pkgs.writeText "avahi-daemon.conf" '' [server] @@ -21,12 +23,18 @@ let browse-domains=${concatStringsSep ", " browseDomains} use-ipv4=${if ipv4 then "yes" else "no"} use-ipv6=${if ipv6 then "yes" else "no"} + ${optionalString (interfaces!=null) "allow-interfaces=${concatStringsSep "," interfaces}"} [wide-area] enable-wide-area=${if wideArea then "yes" else "no"} [publish] - disable-publishing=${if publishing then "no" else "yes"} + disable-publishing=${if publish.enable then "no" else "yes"} + disable-user-service-publishing=${if publish.userServices then "no" else "yes"} + publish-addresses=${if publish.userServices || publish.addresses then "yes" else "no"} + publish-hinfo=${if publish.hinfo then "yes" else "no"} + publish-workstation=${if publish.workstation then "yes" else "no"} + publish-domain=${if publish.domain then "yes" else "no"} ''; in @@ -74,14 +82,55 @@ in description = ''Whether to use IPv6''; }; + interfaces = mkOption { + type = types.nullOr (types.listOf types.str); + default = null; + description = '' + List of network interfaces that should be used by the avahi-daemon. + Other interfaces will be ignored. If null all local interfaces + except loopback and point-to-point will be used. + ''; + }; + wideArea = mkOption { default = true; description = ''Whether to enable wide-area service discovery.''; }; - publishing = mkOption { - default = true; - description = ''Whether to allow publishing.''; + publish = { + enable = mkOption { + default = false; + description = ''Whether to allow publishing in general.''; + }; + + userServices = mkOption { + default = false; + description = ''Whether to publish user services. Will set addresses=true.''; + }; + + addresses = mkOption { + default = false; + description = ''Whether to register mDNS address records for all local IP addresses.''; + }; + + hinfo = mkOption { + default = false; + description = '' + Whether to register an mDNS HINFO record which contains information about the + local operating system and CPU. + ''; + }; + + workstation = mkOption { + default = false; + description = ''Whether to register a service of type "_workstation._tcp" on the local LAN.''; + }; + + domain = mkOption { + default = false; + description = ''Whether to announce the locally used domain name for browsing by other hosts.''; + }; + }; nssmdns = mkOption { @@ -118,29 +167,36 @@ in system.nssModules = optional cfg.nssmdns pkgs.nssmdns; - environment.systemPackages = [ avahi ]; + environment.systemPackages = [ pkgs.avahi ]; - jobs.avahi_daemon = - { name = "avahi-daemon"; + systemd.services.avahi-daemon = + let + deps = optionals (cfg.interfaces!=null) (map subsystemDevice cfg.interfaces); + in + { description = "Avahi daemon"; + wantedBy = [ "ip-up.target" ]; + bindsTo = deps; + after = deps; + before = [ "ip-up.target" ]; + # Receive restart event after resume + partOf = [ "post-resume.target" ]; - startOn = "ip-up"; + path = [ pkgs.coreutils pkgs.avahi ]; + + preStart = "mkdir -p /var/run/avahi-daemon"; script = '' - export PATH="${avahi}/bin:${avahi}/sbin:$PATH" - # Make NSS modules visible so that `avahi_nss_support ()' can # return a sensible value. export LD_LIBRARY_PATH="${config.system.nssModules.path}" - mkdir -p /var/run/avahi-daemon - - exec ${avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}" + exec ${pkgs.avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}" ''; }; services.dbus.enable = true; - services.dbus.packages = [avahi]; + services.dbus.packages = [ pkgs.avahi ]; # Enabling Avahi without exposing it in the firewall doesn't make # sense. From 2b9b9dc611e10fa6d800970223ed87cf66ee3819 Mon Sep 17 00:00:00 2001 From: Thomas Strobel Date: Mon, 21 Dec 2015 17:31:09 +0100 Subject: [PATCH 494/707] nixos cups-browsed: better link to avahi-daemon Link cups browsed daemon to reload or exit with the avahi-daemon. --- nixos/modules/services/printing/cupsd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 69c76cf97cf..0fe25b66da0 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -247,6 +247,8 @@ in wantedBy = [ "multi-user.target" ]; wants = [ "cups.service" "avahi-daemon.service" ]; + bindsTo = [ "cups.service" "avahi-daemon.service" ]; + partOf = [ "cups.service" "avahi-daemon.service" ]; after = [ "cups.service" "avahi-daemon.service" ]; path = [ cups ]; From d80aa87b131d4bcdad1942d526a46992e82d4cd3 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 21 Dec 2015 16:11:55 -0800 Subject: [PATCH 495/707] coqPackages_8_5.coq: 8.5b2 -> 8.5rc1 --- pkgs/applications/science/logic/coq/8.5.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix index 2afa18d40a4..df888cf5c79 100644 --- a/pkgs/applications/science/logic/coq/8.5.nix +++ b/pkgs/applications/science/logic/coq/8.5.nix @@ -6,7 +6,7 @@ {stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}: let - version = "8.5b2"; + version = "8.5rc1"; coq-version = "8.5"; buildIde = lablgtk != null; ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else ""; @@ -23,8 +23,8 @@ stdenv.mkDerivation { inherit ocaml camlp5; src = fetchurl { - url = https://coq.inria.fr/distrib/V8.5beta2/files/coq-8.5beta2.tar.gz; - sha256 = "1z34ch56lld86srgsjdwdq3girz0k0wqmvyxsa7jwvvxn3qmmq2v"; + url = https://coq.inria.fr/distrib/V8.5rc1/files/coq-8.5rc1.tar.gz; + sha256 = "0n8mb7di9iwg8dgy1xmivf2ajx8kqkrj9mafc32vicn2lbg16q2r"; }; buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ]; @@ -34,7 +34,7 @@ stdenv.mkDerivation { RM=$(type -tp rm) substituteInPlace configure --replace "/bin/uname" "$UNAME" substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM" - substituteInPlace Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)" + substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5" ${csdpPatch} ''; From 3c85ff442dc328fdf55dfa8ef6a3b60041a2c29d Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 11:33:21 +0000 Subject: [PATCH 496/707] nano: 2.4.2 -> 2.5.0, fixes #11829 --- pkgs/applications/editors/nano/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 9fc223d81da..9c8238244ff 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -11,10 +11,10 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nano-${version}"; - version = "2.4.2"; + version = "2.5.0"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.gz"; - sha256 = "1fb5gzdm3jdx1f2vyanjvdmppaz082lf4kinyffnssgmzhc7zkf8"; + sha256 = "1vl9bim56k1b4zwc3icxp46w6pn6gb042j1h4jlz1jklxxpkwcpz"; }; buildInputs = [ ncurses ] ++ optional enableNls gettext; configureFlags = '' From d038464e6e6ed526ead07944395053b71531628f Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Thu, 17 Dec 2015 13:24:52 -0500 Subject: [PATCH 497/707] Use the right prefix for fleet extra config. --- nixos/modules/services/cluster/fleet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/cluster/fleet.nix b/nixos/modules/services/cluster/fleet.nix index 04d95fbf186..041f4426911 100644 --- a/nixos/modules/services/cluster/fleet.nix +++ b/nixos/modules/services/cluster/fleet.nix @@ -90,7 +90,7 @@ in { extraConfig = mkOption { type = types.attrsOf types.str; - apply = mapAttrs' (n: v: nameValuePair ("ETCD_" + n) v); + apply = mapAttrs' (n: v: nameValuePair ("FLEET_" + n) v); default = {}; example = literalExample '' { From a2fb70b6dfad623f0bdacd1768659db4eac58c98 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Thu, 17 Dec 2015 13:51:22 -0500 Subject: [PATCH 498/707] Fix fleet certfile argument, fixes #11794 --- nixos/modules/services/cluster/fleet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/cluster/fleet.nix b/nixos/modules/services/cluster/fleet.nix index 041f4426911..78d4ea93c49 100644 --- a/nixos/modules/services/cluster/fleet.nix +++ b/nixos/modules/services/cluster/fleet.nix @@ -120,7 +120,7 @@ in { FLEET_PUBLIC_IP = cfg.publicIp; FLEET_ETCD_CAFILE = cfg.etcdCafile; FLEET_ETCD_KEYFILE = cfg.etcdKeyfile; - FEELT_ETCD_CERTFILE = cfg.etcdCertfile; + FLEET_ETCD_CERTFILE = cfg.etcdCertfile; FLEET_METADATA = cfg.metadata; } // cfg.extraConfig; serviceConfig = { From 3acf8132c3ddd01b3e0e3909d11b08d58e30ccb1 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Wed, 2 Dec 2015 20:36:19 -0500 Subject: [PATCH 499/707] murmur: sslCa and extraConfig options, fixes #11419 --- nixos/modules/services/networking/murmur.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix index 4f91a494747..1cc19a2c9e0 100644 --- a/nixos/modules/services/networking/murmur.nix +++ b/nixos/modules/services/networking/murmur.nix @@ -39,6 +39,9 @@ let certrequired=${if cfg.clientCertRequired then "true" else "false"} ${if cfg.sslCert == "" then "" else "sslCert="+cfg.sslCert} ${if cfg.sslKey == "" then "" else "sslKey="+cfg.sslKey} + ${if cfg.sslCa == "" then "" else "sslCA="+cfg.sslCa} + + ${cfg.extraConfig} ''; in { @@ -219,6 +222,18 @@ in default = ""; description = "Path to your SSL key."; }; + + sslCa = mkOption { + type = types.str; + default = ""; + description = "Path to your SSL CA certificate."; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Extra configuration to put into mumur.ini."; + }; }; }; From 842613fb1045a5c31dd32fa80d061d70c0bf52f5 Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Fri, 18 Dec 2015 16:54:19 +0000 Subject: [PATCH 500/707] aspell: improve the doc string, fixes #11814 It is better to specify data-dir in the environmental variable since then both the language description files and the dictionaries will be found. Since dict-dir defaults to data-dir only the latter needs to be set. See for example https://github.com/NixOS/nixpkgs/issues/1000 --- pkgs/development/libraries/aspell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/aspell/default.nix b/pkgs/development/libraries/aspell/default.nix index 38d734e902c..5af340bef07 100644 --- a/pkgs/development/libraries/aspell/default.nix +++ b/pkgs/development/libraries/aspell/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ''; # Note: Users should define the `ASPELL_CONF' environment variable to - # `dict-dir $HOME/.nix-profile/lib/aspell/' so that they can access + # `data-dir $HOME/.nix-profile/lib/aspell/' so that they can access # dictionaries installed in their profile. # # We can't use `$out/etc/aspell.conf' for that purpose since Aspell From a0138e1ed559281c80e728183ebb7c56a0afc54e Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Tue, 22 Dec 2015 01:18:35 +0300 Subject: [PATCH 501/707] dynamic-colors: init at 2013-12-28, fixes #11874 --- pkgs/tools/misc/dynamic-colors/default.nix | 37 ++++++++++++ ...eparate-config-and-dynamic-root-path.patch | 58 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 97 insertions(+) create mode 100644 pkgs/tools/misc/dynamic-colors/default.nix create mode 100644 pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix new file mode 100644 index 00000000000..b587afb645c --- /dev/null +++ b/pkgs/tools/misc/dynamic-colors/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchFromGitHub, makeWrapper, tmux, vim }: + +stdenv.mkDerivation rec { + name = "dynamic-colors-git-${version}"; + version = "2013-12-28"; + + src = fetchFromGitHub { + owner = "sos4nt"; + repo = "dynamic-colors"; + rev = "35325f43620c5ee11a56db776b8f828bc5ae1ddd"; + sha256 = "1xsjanqyvjlcj1fb8x4qafskxp7aa9b43ba9gyjgzr7yz8hkl4iz"; + }; + + buildInputs = [ makeWrapper ]; + + patches = [ ./separate-config-and-dynamic-root-path.patch ]; + + installPhase = '' + mkdir -p $out/bin $out/etc/bash_completion.d $out/share/dynamic-colors + cp bin/dynamic-colors $out/bin/ + cp completions/dynamic-colors.bash $out/etc/bash_completion.d/ + cp -r colorschemes $out/share/dynamic-colors/ + + sed -e 's|\|${tmux}/bin/tmux|g' \ + -e 's|/usr/bin/vim|${vim}/bin/vim|g' \ + -i "$out/bin/dynamic-colors" + + wrapProgram $out/bin/dynamic-colors --set DYNAMIC_COLORS_ROOT "$out/share/dynamic-colors" + ''; + + meta = { + homepage = https://github.com/sos4nt/dynamic-colors; + license = stdenv.lib.licenses.mit; + description = "Change terminal colors on the fly"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch new file mode 100644 index 00000000000..7462ed0e3af --- /dev/null +++ b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch @@ -0,0 +1,58 @@ +From ee44b859003972275d8e469ab41b9900420295e0 Mon Sep 17 00:00:00 2001 +From: Malte Rohde +Date: Fri, 9 Jan 2015 13:10:41 +0100 +Subject: [PATCH] Store user configuration in appropriate config location. + +So that the dynamic-colors source can live somewhere else +(e.g., /usr/local/dynamic-colors) and multiple users +can use the same script. +--- + bin/dynamic-colors | 21 ++++++++++++++++----- + 1 file changed, 16 insertions(+), 5 deletions(-) + +diff --git a/bin/dynamic-colors b/bin/dynamic-colors +index a669221..5d6bce7 100755 +--- a/bin/dynamic-colors ++++ b/bin/dynamic-colors +@@ -84,16 +84,27 @@ else + fi + COLORSCHEMES="${DYNAMIC_COLORS_ROOT}/colorschemes" + ++if [ -z "${DYNAMIC_COLORS_HOME}" ]; then ++ if [ -d "${HOME}/.dynamic-colors" ] || [ -z "${XDG_CONFIG_HOME}" ]; then ++ DYNAMIC_COLORS_HOME="${HOME}/.dynamic-colors" ++ else ++ DYNAMIC_COLORS_HOME="${XDG_CONFIG_HOME}/dynamic-colors" ++ fi ++else ++ DYNAMIC_COLORS_HOME="${DYNAMIC_COLORS_HOME%/}" ++fi ++ + write_colorscheme_name () { +- echo "$1" > "${DYNAMIC_COLORS_ROOT}/colorscheme" ++ [ ! -d "${DYNAMIC_COLORS_HOME}" ] && mkdir -p "${DYNAMIC_COLORS_HOME}" ++ echo "$1" > "${DYNAMIC_COLORS_HOME}/colorscheme" + } + + load_colorscheme_name () { +- head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme" ++ head -1 "${DYNAMIC_COLORS_HOME}/colorscheme" + } + + init () { +- [ ! -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ] && return ++ [ ! -f "${DYNAMIC_COLORS_HOME}/colorscheme" ] && return + colorscheme_name=$(load_colorscheme_name) + load_colorscheme "$colorscheme_name" + set_colors +@@ -142,8 +153,8 @@ audit () { + } + + cycle() { +- if [ -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ]; then +- current=`head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"` ++ if [ -f "${DYNAMIC_COLORS_HOME}/colorscheme" ]; then ++ current=$(load_colorscheme_name) + found=false + cd "$COLORSCHEMES" + for file in *.sh; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 51b1b378b9c..e06048de1ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -839,6 +839,8 @@ let linuxHeaders = linuxHeaders_3_18; }; + dynamic-colors = callPackage ../tools/misc/dynamic-colors { }; + edac-utils = callPackage ../os-specific/linux/edac-utils { }; eggdrop = callPackage ../tools/networking/eggdrop { }; From 895875bdacb91d1c8e91a753902047d4c69174e0 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 21 Dec 2015 10:41:34 -0500 Subject: [PATCH 502/707] maven: 3.3.3 -> 3.3.9, fixes #11867 --- .../development/tools/build-managers/apache-maven/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/apache-maven/default.nix b/pkgs/development/tools/build-managers/apache-maven/default.nix index ba8f2474f44..96bbc2be0b2 100644 --- a/pkgs/development/tools/build-managers/apache-maven/default.nix +++ b/pkgs/development/tools/build-managers/apache-maven/default.nix @@ -2,7 +2,7 @@ assert jdk != null; -let version = "3.3.3"; in +let version = "3.3.9"; in stdenv.mkDerivation rec { name = "apache-maven-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz"; - sha256 = "0ya71kxx0isvdnxz3n0rcynlgjah06mvp5r039x61wxr5ahw939s"; + sha256 = "6e3e9c949ab4695a204f74038717aa7b2689b1be94875899ac1b3fe42800ff82"; }; buildInputs = [ makeWrapper ]; From defe78e553421a613310cad4d32a9ee19bf53034 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 17 Nov 2015 16:23:39 -0500 Subject: [PATCH 503/707] licenses: add non-commercial Creative Commons --- lib/licenses.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lib/licenses.nix b/lib/licenses.nix index ebd7d56d761..4703587ed56 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -85,6 +85,26 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { fullName = "Creative Commons Zero v1.0 Universal"; }; + cc-by-nc-sa-20 = spdx { + spdxId = "CC-BY-NC-SA-2.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0"; + }; + + cc-by-nc-sa-25 = spdx { + spdxId = "CC-BY-NC-SA-2.5"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5"; + }; + + cc-by-nc-sa-30 = spdx { + spdxId = "CC-BY-NC-SA-3.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0"; + }; + + cc-by-nc-sa-40 = spdx { + spdxId = "CC-BY-NC-SA-4.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0"; + }; + cc-by-sa-25 = spdx { spdxId = "CC-BY-SA-2.5"; fullName = "Creative Commons Attribution Share Alike 2.5"; From 60df6fdd345cad243a4ef7e5c9cdf42f0a54f0d3 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 17 Nov 2015 16:24:48 -0500 Subject: [PATCH 504/707] vanilla-dmz: init at 0.4.4, fixes #11102 Vanilla DMZ cursor theme --- pkgs/data/icons/vanilla-dmz/default.nix | 31 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/data/icons/vanilla-dmz/default.nix diff --git a/pkgs/data/icons/vanilla-dmz/default.nix b/pkgs/data/icons/vanilla-dmz/default.nix new file mode 100644 index 00000000000..3b80781f414 --- /dev/null +++ b/pkgs/data/icons/vanilla-dmz/default.nix @@ -0,0 +1,31 @@ +{ stdenv, lib, fetchzip, xorg }: + +stdenv.mkDerivation rec { + name = "vanilla-dmz-${version}"; + version = "0.4.4"; + src = fetchzip { + url = "http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.gz"; + sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj"; + }; + buildInputs = [ xorg.xcursorgen ]; + buildPhase = '' + cd DMZ-White/pngs; ./make.sh; cd - + cd DMZ-Black/pngs; ./make.sh; cd - + ''; + installPhase = '' + install -d $out/share/icons/Vanilla-DMZ/cursors + cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors + install -Dm644 DMZ-White/index.theme $out/share/icons/Vanilla-DMZ/index.theme + + install -d $out/share/icons/Vanilla-DMZ-AA/cursors + cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors + install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme + ''; + meta = with lib; { + homepage = "http://jimmac.musichall.cz"; + description = "A style neutral scalable cursor theme."; + platforms = platforms.all; + license = licenses.cc-by-nc-sa-30; + maintainers = with maintainers; [ cstrahan ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e06048de1ef..fa914e16c04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10920,6 +10920,8 @@ let unifont_upper = callPackage ../data/fonts/unifont_upper { }; + vanilla-dmz = callPackage ../data/icons/vanilla-dmz { }; + vistafonts = callPackage ../data/fonts/vista-fonts { }; wqy_microhei = callPackage ../data/fonts/wqy-microhei { }; From d76c26e876bfea826a1e43bbe8f0243095566216 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Mon, 21 Dec 2015 23:37:00 +0300 Subject: [PATCH 505/707] gibo: init at 1.0.4, fixes #11871 --- pkgs/tools/misc/gibo/default.nix | 34 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/tools/misc/gibo/default.nix diff --git a/pkgs/tools/misc/gibo/default.nix b/pkgs/tools/misc/gibo/default.nix new file mode 100644 index 00000000000..67c84494692 --- /dev/null +++ b/pkgs/tools/misc/gibo/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, coreutils, findutils, git }: + +stdenv.mkDerivation rec { + name = "gibo-${version}"; + version = "1.0.4"; + + src = fetchFromGitHub { + owner = "simonwhitaker"; + repo = "gibo"; + rev = version; + sha256 = "1vzchggxv660c1cj5v0hlmln7yda48wjy2cv0qwi619cmr5hwbgh"; + }; + + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + installPhase = '' + mkdir -p $out/bin $out/etc/bash_completion.d + cp gibo $out/bin + cp gibo-completion.bash $out/etc/bash_completion.d + + sed -e 's|\ Date: Mon, 21 Dec 2015 20:20:29 +0100 Subject: [PATCH 506/707] nixos trustedGRUB: add support for HP laptops --- .../modules/system/boot/loader/grub/grub.nix | 62 ++++++++++++------- pkgs/tools/misc/grub/trusted.nix | 23 ++++--- pkgs/top-level/all-packages.nix | 2 + 3 files changed, 56 insertions(+), 31 deletions(-) diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 87dbbd7cd51..47605e3685c 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -10,8 +10,11 @@ let realGrub = if cfg.version == 1 then pkgs.grub else if cfg.zfsSupport then pkgs.grub2.override { zfsSupport = true; } - else if cfg.enableTrustedBoot then pkgs.trustedGrub - else pkgs.grub2; + else if cfg.trustedBoot.enable + then if cfg.trustedBoot.isHPLaptop + then pkgs.trustedGrub-for-HP + else pkgs.trustedGrub + else pkgs.grub2; grub = # Don't include GRUB if we're only generating a GRUB menu (e.g., @@ -369,24 +372,37 @@ in ''; }; - enableTrustedBoot = mkOption { - default = false; - type = types.bool; - description = '' - Enable trusted boot. GRUB will measure all critical components during - the boot process to offer TCG (TPM) support. - ''; - }; + trustedBoot = { + + enable = mkOption { + default = false; + type = types.bool; + description = '' + Enable trusted boot. GRUB will measure all critical components during + the boot process to offer TCG (TPM) support. + ''; + }; + + systemHasTPM = mkOption { + default = ""; + example = "YES_TPM_is_activated"; + type = types.string; + description = '' + Assertion that the target system has an activated TPM. It is a safety + check before allowing the activation of 'trustedBoot.enable'. TrustedBoot + WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available. + ''; + }; + + isHPLaptop = mkOption { + default = false; + type = types.bool; + description = '' + Use a special version of TrustedGRUB that is needed by some HP laptops + and works only for the HP laptops. + ''; + }; - systemHasTPM = mkOption { - default = ""; - example = "YES_TPM_is_activated"; - type = types.string; - description = '' - Assertion that the target system has an activated TPM. It is a safety - check before allowing the activation of 'enableTrustedBoot'. TrustedBoot - WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available. - ''; }; }; @@ -452,19 +468,19 @@ in message = "You cannot have duplicated devices in mirroredBoots"; } { - assertion = !cfg.enableTrustedBoot || cfg.version == 2; + assertion = !cfg.trustedBoot.enable || cfg.version == 2; message = "Trusted GRUB is only available for GRUB 2"; } { - assertion = !cfg.efiSupport || !cfg.enableTrustedBoot; + assertion = !cfg.efiSupport || !cfg.trustedBoot.enable; message = "Trusted GRUB does not have EFI support"; } { - assertion = !cfg.zfsSupport || !cfg.enableTrustedBoot; + assertion = !cfg.zfsSupport || !cfg.trustedBoot.enable; message = "Trusted GRUB does not have ZFS support"; } { - assertion = !cfg.enableTrustedBoot || cfg.systemHasTPM == "YES_TPM_is_activated"; + assertion = !cfg.trustedBoot.enable || cfg.trustedBoot.systemHasTPM == "YES_TPM_is_activated"; message = "Trusted GRUB can break the system! Confirm that the system has an activated TPM by setting 'systemHasTPM'."; } ] ++ flip concatMap cfg.mirroredBoots (args: [ diff --git a/pkgs/tools/misc/grub/trusted.nix b/pkgs/tools/misc/grub/trusted.nix index 87c551db4e3..694f45599f3 100644 --- a/pkgs/tools/misc/grub/trusted.nix +++ b/pkgs/tools/misc/grub/trusted.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchgit, autogen, flex, bison, python, autoconf, automake , gettext, ncurses, libusb, freetype, qemu, devicemapper +, for_HP_laptop ? false }: with stdenv.lib; @@ -11,7 +12,7 @@ let inPCSystems = any (system: stdenv.system == system) (mapAttrsToList (name: _: name) pcSystems); - version = "1.2.1"; + version = if for_HP_laptop then "1.2.1" else "1.2.0"; unifont_bdf = fetchurl { url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz"; @@ -25,16 +26,22 @@ let }; -in ( +in stdenv.mkDerivation rec { name = "trustedGRUB2-${version}"; - src = fetchgit { - url = "https://github.com/Sirrix-AG/TrustedGRUB2"; - rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; - sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; - }; + src = if for_HP_laptop + then fetchgit { + url = "https://github.com/Sirrix-AG/TrustedGRUB2"; + rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; + sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; + } + else fetchgit { + url = "https://github.com/Sirrix-AG/TrustedGRUB2"; + rev = "1ff54a5fbe02ea01df5a7de59b1e0201e08d4f76"; + sha256 = "8c17bd7e14dd96ae9c4e98723f4e18ec6b21d45ac486ecf771447649829d0b34"; + }; nativeBuildInputs = [ autogen flex bison python autoconf automake ]; buildInputs = [ ncurses libusb freetype gettext devicemapper ] @@ -89,4 +96,4 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.gnu; }; -}) +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 86a722b278a..917afffdfcf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1741,6 +1741,8 @@ let trustedGrub = callPackage_i686 ../tools/misc/grub/trusted.nix { }; + trustedGrub-for-HP = callPackage_i686 ../tools/misc/grub/trusted.nix { for_HP_laptop = true; }; + grub2 = grub2_full; grub2_full = callPackage ../tools/misc/grub/2.0x.nix { }; From 0d7c0efa7d27c8399cdc3079f7a23144919bc286 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Dec 2015 02:38:07 +0300 Subject: [PATCH 507/707] udisks2: fix udev rules file (close #11743) This properly hides system partitions (like EFI or Windows recovery) from UDisks. --- nixos/modules/services/hardware/udisks2.nix | 2 +- pkgs/os-specific/linux/udisks/2-default.nix | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/hardware/udisks2.nix b/nixos/modules/services/hardware/udisks2.nix index fd6d8886348..ad5dc8e8a49 100644 --- a/nixos/modules/services/hardware/udisks2.nix +++ b/nixos/modules/services/hardware/udisks2.nix @@ -39,7 +39,7 @@ with lib; mkdir -m 0755 -p /var/lib/udisks2 ''; - #services.udev.packages = [ pkgs.udisks2 ]; + services.udev.packages = [ pkgs.udisks2 ]; systemd.services.udisks2 = { description = "Udisks2 service"; diff --git a/pkgs/os-specific/linux/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix index 060d9ad1dd3..35873b3a062 100644 --- a/pkgs/os-specific/linux/udisks/2-default.nix +++ b/pkgs/os-specific/linux/udisks/2-default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool +{ stdenv, fetchurl, pkgconfig, intltool, gnused , expat, acl, systemd, glib, libatasmart, polkit , libxslt, docbook_xsl, utillinux, mdadm, libgudev }: @@ -21,7 +21,11 @@ stdenv.mkDerivation rec { '' substituteInPlace src/main.c --replace \ "@path@" \ - "${utillinux}/bin:${mdadm}/sbin:/var/run/current-system/sw/bin:/var/run/current-system/sw/bin" + "${utillinux}/bin:${mdadm}/bin:/run/current-system/sw/bin" + substituteInPlace data/80-udisks2.rules \ + --replace "/bin/sh" "${stdenv.shell}" \ + --replace "/sbin/mdadm" "${mdadm}/bin/mdadm" \ + --replace " sed " " ${gnused}/bin/sed " ''; nativeBuildInputs = [ pkgconfig intltool ]; From 53a5a44190f34fe579da3b173607871e23dbf520 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Tue, 22 Dec 2015 05:28:46 -0500 Subject: [PATCH 508/707] vagrant: 1.7.4 -> 1.8.0 --- pkgs/development/tools/vagrant/default.nix | 28 +++++++++++----------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 085807e1bfa..2a6700a4ca9 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -4,11 +4,11 @@ assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; let - version = "1.7.4"; + version = "1.8.0"; rake = buildRubyGem { inherit ruby; - name = "rake-10.3.2"; - sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m"; + name = "rake-10.4.2"; + sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; }; in @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_x86_64.deb"; - sha256 = "0dl3cskpz7d8mmv0ah86426vlx0lj1wkjdlb5gc868dfsysw5lnw"; + url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb"; + sha256 = "0hvi6db5lphgzsykm1wn76jj4wwmm6lshvvd0qz7ipyyyhnd7sjp"; } else fetchurl { - url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_i686.deb"; - sha256 = "0sns9q48c6b2sabp6bwkppx8ffp774jhv69jrv225qrnifx12105"; + url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb"; + sha256 = "1jvscbxqbhavw4q81y5718qbyj74b9lwfw3gb4c1f4jmgm08wxxk"; }; meta = with stdenv.lib; { @@ -46,9 +46,10 @@ stdenv.mkDerivation rec { # overwrite embedded binaries - # curl: curl - rm opt/vagrant/embedded/bin/curl + # curl: curl, curl-config + rm opt/vagrant/embedded/bin/{curl,curl-config} ln -s ${curl}/bin/curl opt/vagrant/embedded/bin + ln -s ${curl}/bin/curl-config opt/vagrant/embedded/bin # libarchive: bsdtar, bsdcpio rm opt/vagrant/embedded/bin/{bsdtar,bsdcpio} @@ -60,8 +61,8 @@ stdenv.mkDerivation rec { ln -s ${openssl}/bin/c_rehash opt/vagrant/embedded/bin ln -s ${openssl}/bin/openssl opt/vagrant/embedded/bin - # ruby: erb, gem, irb, rake, rdoc, ri, ruby, testrb - rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby,testrb} + # ruby: erb, gem, irb, rake, rdoc, ri, ruby + rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby} ln -s ${ruby}/bin/erb opt/vagrant/embedded/bin ln -s ${ruby}/bin/gem opt/vagrant/embedded/bin ln -s ${ruby}/bin/irb opt/vagrant/embedded/bin @@ -69,7 +70,6 @@ stdenv.mkDerivation rec { ln -s ${ruby}/bin/rdoc opt/vagrant/embedded/bin ln -s ${ruby}/bin/ri opt/vagrant/embedded/bin ln -s ${ruby}/bin/ruby opt/vagrant/embedded/bin - ln -s ${ruby}/bin/testrb opt/vagrant/embedded/bin # libiconv: iconv rm opt/vagrant/embedded/bin/iconv @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { preFixup = '' # 'hide' the template file from shebang-patching - chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable + chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; postFixup = '' - chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable + chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 213d0f8338c..8173191c84d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5899,7 +5899,7 @@ let uncrustify = callPackage ../development/tools/misc/uncrustify { }; vagrant = callPackage ../development/tools/vagrant { - ruby = ruby_2_0_0; + ruby = ruby_2_2_2; }; gdb = callPackage ../development/tools/misc/gdb { From a591390d8d6d2c3706df1cc5394d5b96c4051008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Dec 2015 12:06:53 +0100 Subject: [PATCH 509/707] pythonPackages.dash: fix hash --- 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 6b5e793d08c..705d6fb6f70 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3760,7 +3760,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; - sha256 = "1csrgfjvq4mlvr7hmgy3a5jczkwpy4jz4jb3c4y45s5fg3y38f3k"; + sha256 = "05s1jz3y7llzh3373ab6yx0fb47f0mfy9xyqbknkwsnhabj6g2ib"; }; propagatedBuildInputs = with self; [numpy toolz dill]; From 2823814c5bd72fe02c20562ab5fab9d580ee4957 Mon Sep 17 00:00:00 2001 From: Christian Theune Date: Tue, 22 Dec 2015 09:12:35 +0100 Subject: [PATCH 510/707] syncthing: 0.12.4 -> 0.12.9 --- pkgs/top-level/go-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b02d3e56829..776558b126f 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2938,12 +2938,13 @@ let }; syncthing = buildFromGitHub rec { - version = "0.12.4"; + version = "0.12.9"; rev = "v${version}"; owner = "syncthing"; repo = "syncthing"; - sha256 = "0sri86hsjpf4xlhi45zkafi1jncamzplxnvriza0xsah1bc31g65"; - # buildFlags = [ "-tags noupgrade,release" ]; + sha256 = "0d420bmx1ifhjgbc65bflnawqddi4h86p7fvxzzqwfsaj94fsfbi"; + buildFlags = [ "-tags noupgrade,release" ]; + disabled = isGo14; buildInputs = [ go-lz4 du luhn xdr snappy ratelimit osext goleveldb suture qart crypto net text rcrowley.go-metrics From 5290ba96112850e2940ef38a2661fe43a9dfe8dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Dec 2015 13:15:40 +0100 Subject: [PATCH 511/707] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-2-g519e0a9 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/2ed14d2303783870523dae5300b89a4082fe5f6b - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/53c15ee9e31d2532bc6e8fc9fd85fb21f5de2303 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/b668f53a86774535a58fdc7ae45ed757fcc597cc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/ec9500b675b55f53ad1153282cdd772098a5cdbe --- .../configuration-hackage2nix.yaml | 1 + .../haskell-modules/configuration-lts-0.0.nix | 18 +- .../haskell-modules/configuration-lts-0.1.nix | 18 +- .../haskell-modules/configuration-lts-0.2.nix | 18 +- .../haskell-modules/configuration-lts-0.3.nix | 18 +- .../haskell-modules/configuration-lts-0.4.nix | 18 +- .../haskell-modules/configuration-lts-0.5.nix | 18 +- .../haskell-modules/configuration-lts-0.6.nix | 18 +- .../haskell-modules/configuration-lts-0.7.nix | 18 +- .../haskell-modules/configuration-lts-1.0.nix | 18 +- .../haskell-modules/configuration-lts-1.1.nix | 18 +- .../configuration-lts-1.10.nix | 21 +- .../configuration-lts-1.11.nix | 21 +- .../configuration-lts-1.12.nix | 21 +- .../configuration-lts-1.13.nix | 21 +- .../configuration-lts-1.14.nix | 21 +- .../configuration-lts-1.15.nix | 21 +- .../haskell-modules/configuration-lts-1.2.nix | 18 +- .../haskell-modules/configuration-lts-1.4.nix | 19 +- .../haskell-modules/configuration-lts-1.5.nix | 19 +- .../haskell-modules/configuration-lts-1.7.nix | 19 +- .../haskell-modules/configuration-lts-1.8.nix | 19 +- .../haskell-modules/configuration-lts-1.9.nix | 21 +- .../haskell-modules/configuration-lts-2.0.nix | 21 + .../haskell-modules/configuration-lts-2.1.nix | 21 + .../configuration-lts-2.10.nix | 22 + .../configuration-lts-2.11.nix | 22 + .../configuration-lts-2.12.nix | 22 + .../configuration-lts-2.13.nix | 22 + .../configuration-lts-2.14.nix | 22 + .../configuration-lts-2.15.nix | 22 + .../configuration-lts-2.16.nix | 22 + .../configuration-lts-2.17.nix | 23 + .../configuration-lts-2.18.nix | 24 + .../configuration-lts-2.19.nix | 24 + .../haskell-modules/configuration-lts-2.2.nix | 21 + .../configuration-lts-2.20.nix | 24 + .../configuration-lts-2.21.nix | 24 + .../configuration-lts-2.22.nix | 25 + .../haskell-modules/configuration-lts-2.3.nix | 21 + .../haskell-modules/configuration-lts-2.4.nix | 21 + .../haskell-modules/configuration-lts-2.5.nix | 21 + .../haskell-modules/configuration-lts-2.6.nix | 21 + .../haskell-modules/configuration-lts-2.7.nix | 21 + .../haskell-modules/configuration-lts-2.8.nix | 21 + .../haskell-modules/configuration-lts-2.9.nix | 22 + .../haskell-modules/configuration-lts-3.0.nix | 34 + .../haskell-modules/configuration-lts-3.1.nix | 34 + .../configuration-lts-3.10.nix | 39 + .../configuration-lts-3.11.nix | 40 + .../configuration-lts-3.12.nix | 40 + .../configuration-lts-3.13.nix | 40 + .../configuration-lts-3.14.nix | 42 + .../configuration-lts-3.15.nix | 43 + .../configuration-lts-3.16.nix | 43 + .../configuration-lts-3.17.nix | 44 + .../configuration-lts-3.18.nix | 44 + .../configuration-lts-3.19.nix | 8067 +++++++++++++++++ .../haskell-modules/configuration-lts-3.2.nix | 34 + .../haskell-modules/configuration-lts-3.3.nix | 34 + .../haskell-modules/configuration-lts-3.4.nix | 34 + .../haskell-modules/configuration-lts-3.5.nix | 36 + .../haskell-modules/configuration-lts-3.6.nix | 36 + .../haskell-modules/configuration-lts-3.7.nix | 38 + .../haskell-modules/configuration-lts-3.8.nix | 39 + .../haskell-modules/configuration-lts-3.9.nix | 39 + .../haskell-modules/hackage-packages.nix | 2585 ++++-- 67 files changed, 11369 insertions(+), 947 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-3.19.nix diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 94ebc3049fd..713f5531eb1 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -53,6 +53,7 @@ extra-packages: - seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x - split < 0.2 # newer versions don't work with GHC 6.12.3 - tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x + - transformers == 0.4.3.* # the latest version isn't supported by mtl yet - vector < 0.10.10 # newer versions don't work with GHC 6.12.3 - zlib < 0.6 # newer versions break cabal-install diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index bbdac77f255..3bc140253cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index e4843781374..42253251403 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 05eb3606504..96915c87e0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 0f715809110..9309f74d421 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 9a854e7c578..ce701dfe722 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2634,6 +2637,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2826,6 +2830,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3025,6 +3030,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3255,6 +3261,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3476,6 +3483,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3789,6 +3797,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4536,6 +4545,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4935,6 +4945,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5123,6 +5134,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5333,6 +5345,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6059,6 +6072,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6156,7 +6170,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6319,6 +6332,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8201,6 +8215,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8447,6 +8462,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index cb4a40e3b65..5ddb85c629c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2634,6 +2637,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2826,6 +2830,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3025,6 +3030,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3255,6 +3261,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3476,6 +3483,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3789,6 +3797,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4536,6 +4545,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4935,6 +4945,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5123,6 +5134,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5333,6 +5345,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6059,6 +6072,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6156,7 +6170,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6319,6 +6332,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8201,6 +8215,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8447,6 +8462,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 53c49850676..17b887b8689 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2631,6 +2634,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2823,6 +2827,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3022,6 +3027,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3252,6 +3258,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3473,6 +3480,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3786,6 +3794,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4532,6 +4541,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4931,6 +4941,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5119,6 +5130,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5329,6 +5341,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6054,6 +6067,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6151,7 +6165,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6314,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8195,6 +8209,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8441,6 +8456,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 788506e212d..e9d3b12d37f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2631,6 +2634,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2823,6 +2827,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3022,6 +3027,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3252,6 +3258,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3473,6 +3480,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3786,6 +3794,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4532,6 +4541,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4931,6 +4941,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5119,6 +5130,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5329,6 +5341,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6054,6 +6067,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6151,7 +6165,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6314,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8195,6 +8209,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8441,6 +8456,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 800dcfdb69e..ceddbc9f890 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2622,6 +2625,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2814,6 +2818,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3012,6 +3017,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3242,6 +3248,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3462,6 +3469,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3775,6 +3783,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4520,6 +4529,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4919,6 +4929,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5107,6 +5118,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5317,6 +5329,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6042,6 +6055,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6139,7 +6153,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6301,6 +6314,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8180,6 +8194,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8425,6 +8440,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 3f94ca7c1e0..32288e9a7f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2619,6 +2622,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2810,6 +2814,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3008,6 +3013,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3238,6 +3244,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3458,6 +3465,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3771,6 +3779,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4513,6 +4522,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4912,6 +4922,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5100,6 +5111,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5310,6 +5322,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6034,6 +6047,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6131,7 +6145,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6293,6 +6306,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8167,6 +8181,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8411,6 +8426,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index d6a801b156c..044678daee3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3229,6 +3235,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3448,6 +3455,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3760,6 +3768,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4501,6 +4510,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4602,6 +4612,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4892,6 +4903,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5080,6 +5092,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5289,6 +5302,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6011,6 +6025,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6068,6 +6083,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6106,7 +6122,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6268,6 +6283,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6302,6 +6318,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8133,6 +8150,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8376,6 +8394,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 70ba9664ab7..dd03c8ce211 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3759,6 +3767,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4500,6 +4509,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4601,6 +4611,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4889,6 +4900,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5077,6 +5089,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5285,6 +5298,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6007,6 +6021,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6064,6 +6079,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6102,7 +6118,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6264,6 +6279,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6298,6 +6314,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8129,6 +8146,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8372,6 +8390,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 5a167b8678b..04da2509ad2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3759,6 +3767,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4499,6 +4508,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4600,6 +4610,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4888,6 +4899,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5076,6 +5088,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5284,6 +5297,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6006,6 +6020,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6063,6 +6078,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6101,7 +6117,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6263,6 +6278,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6297,6 +6313,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8126,6 +8143,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8369,6 +8387,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index aad007e67de..fe75d3a8e93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3758,6 +3766,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4498,6 +4507,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4599,6 +4609,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4887,6 +4898,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5075,6 +5087,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5283,6 +5296,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6005,6 +6019,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6062,6 +6077,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6100,7 +6116,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6262,6 +6277,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6296,6 +6312,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8124,6 +8141,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8367,6 +8385,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 80925f0cd60..88880efcca4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -334,6 +334,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -487,6 +488,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -520,6 +522,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2611,6 +2614,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2802,6 +2806,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3000,6 +3005,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3225,6 +3231,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3444,6 +3451,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3755,6 +3763,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4494,6 +4503,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4595,6 +4605,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4883,6 +4894,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5070,6 +5082,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5278,6 +5291,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5998,6 +6012,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6055,6 +6070,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6093,7 +6109,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6255,6 +6270,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6289,6 +6305,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8116,6 +8133,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8359,6 +8377,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 3190e508d4f..34f6cc66200 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -334,6 +334,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -487,6 +488,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -520,6 +522,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2607,6 +2610,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2798,6 +2802,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2995,6 +3000,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3220,6 +3226,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3439,6 +3446,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3750,6 +3758,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4489,6 +4498,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4590,6 +4600,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4878,6 +4889,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5065,6 +5077,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5273,6 +5286,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5991,6 +6005,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6048,6 +6063,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6086,7 +6102,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6248,6 +6263,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6282,6 +6298,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8105,6 +8122,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8348,6 +8366,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index b9522cce53b..3f6a8c35c12 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2617,6 +2620,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2808,6 +2812,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3006,6 +3011,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3236,6 +3242,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3455,6 +3462,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3768,6 +3776,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4510,6 +4519,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4909,6 +4919,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5097,6 +5108,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5307,6 +5319,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6031,6 +6044,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6127,7 +6141,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6289,6 +6302,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8161,6 +8175,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8405,6 +8420,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 296b837f1aa..60ac68fa6af 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2616,6 +2619,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2807,6 +2811,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3005,6 +3010,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3234,6 +3240,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3453,6 +3460,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3766,6 +3774,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4507,6 +4516,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4906,6 +4916,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5094,6 +5105,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5304,6 +5316,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6027,6 +6040,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6123,7 +6137,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6285,6 +6298,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6319,6 +6333,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8155,6 +8170,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8399,6 +8415,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index d20f6f60d6b..d78bac500e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3233,6 +3239,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3452,6 +3459,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3765,6 +3773,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4506,6 +4515,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4904,6 +4914,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5092,6 +5103,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5302,6 +5314,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6025,6 +6038,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6121,7 +6135,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6283,6 +6296,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6317,6 +6331,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8152,6 +8167,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8395,6 +8411,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index db971f7d85c..11e6d050e97 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3233,6 +3239,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3452,6 +3459,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3765,6 +3773,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4506,6 +4515,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4898,6 +4908,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5086,6 +5097,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5296,6 +5308,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6019,6 +6032,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6115,7 +6129,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6277,6 +6290,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6311,6 +6325,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8146,6 +8161,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8389,6 +8405,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index dd8b559020b..140cb1f9f71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3231,6 +3237,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3450,6 +3457,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3762,6 +3770,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4503,6 +4512,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4895,6 +4905,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5083,6 +5094,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5292,6 +5304,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6015,6 +6028,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6111,7 +6125,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6273,6 +6286,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6307,6 +6321,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8141,6 +8156,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8384,6 +8400,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index bdc271e4378..cd3ac17033e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3230,6 +3236,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3449,6 +3456,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3761,6 +3769,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4502,6 +4511,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4603,6 +4613,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4893,6 +4904,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5081,6 +5093,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5290,6 +5303,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6013,6 +6027,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6070,6 +6085,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6108,7 +6124,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6270,6 +6285,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6304,6 +6320,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8138,6 +8155,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8381,6 +8399,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index f47ce735b9e..29e118c18a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1516,6 +1519,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2589,6 +2593,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2780,6 +2785,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2976,6 +2982,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3198,6 +3205,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3416,6 +3424,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3724,6 +3733,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4459,6 +4469,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4560,6 +4571,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4842,6 +4854,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5025,6 +5038,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5230,6 +5244,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5935,6 +5950,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5992,6 +6008,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6191,6 +6208,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6224,6 +6242,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8037,6 +8056,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8279,6 +8299,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 553a4ef2834..c470c638e01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1516,6 +1519,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2588,6 +2592,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2779,6 +2784,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2975,6 +2981,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3197,6 +3204,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3415,6 +3423,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3723,6 +3732,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4457,6 +4467,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4558,6 +4569,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4840,6 +4852,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5023,6 +5036,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5228,6 +5242,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5933,6 +5948,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5990,6 +6006,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6189,6 +6206,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6222,6 +6240,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8035,6 +8054,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8276,6 +8296,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 632f1da31ae..78b5b034374 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1508,6 +1511,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2573,6 +2577,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2763,6 +2768,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2958,6 +2964,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3178,6 +3185,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3396,6 +3404,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3701,6 +3710,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4433,6 +4443,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4532,6 +4543,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4813,6 +4825,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4992,6 +5005,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5196,6 +5210,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5894,6 +5909,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5951,6 +5967,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6148,6 +6165,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6180,6 +6198,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6297,6 +6316,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7976,6 +7996,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8217,6 +8238,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 211d1193965..3f14883bb14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3699,6 +3708,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4429,6 +4439,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4528,6 +4539,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4809,6 +4821,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4987,6 +5000,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5191,6 +5205,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5888,6 +5903,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5945,6 +5961,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6141,6 +6158,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6173,6 +6191,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6290,6 +6309,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7966,6 +7986,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8207,6 +8228,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 9fddb60412e..9f79732a018 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3699,6 +3708,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4429,6 +4439,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4528,6 +4539,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4809,6 +4821,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4987,6 +5000,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5191,6 +5205,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5888,6 +5903,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5945,6 +5961,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6141,6 +6158,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6173,6 +6191,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6290,6 +6309,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7965,6 +7985,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8206,6 +8227,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 516f6370f0c..813898be750 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3698,6 +3707,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4428,6 +4438,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4527,6 +4538,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4807,6 +4819,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4985,6 +4998,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5189,6 +5203,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5885,6 +5900,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5942,6 +5958,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6138,6 +6155,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6170,6 +6188,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6287,6 +6306,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7962,6 +7982,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8203,6 +8224,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 339b5d73d6d..6ffc4a6b531 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1506,6 +1509,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2571,6 +2575,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2761,6 +2766,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2956,6 +2962,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3175,6 +3182,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3392,6 +3400,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3696,6 +3705,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4426,6 +4436,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4524,6 +4535,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4804,6 +4816,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4982,6 +4995,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5186,6 +5200,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5882,6 +5897,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5939,6 +5955,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6135,6 +6152,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6167,6 +6185,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6284,6 +6303,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7957,6 +7977,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8198,6 +8219,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index ed79543f331..c129a3ed578 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1506,6 +1509,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2571,6 +2575,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2761,6 +2766,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2955,6 +2961,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3174,6 +3181,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3391,6 +3399,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3695,6 +3704,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4425,6 +4435,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4523,6 +4534,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4803,6 +4815,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4981,6 +4994,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5185,6 +5199,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5878,6 +5893,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5935,6 +5951,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6131,6 +6148,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6163,6 +6181,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6280,6 +6299,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7952,6 +7972,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8193,6 +8214,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 5b3b21e8168..dcd5a1cc4c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1505,6 +1508,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2567,6 +2571,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2757,6 +2762,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2951,6 +2957,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3168,6 +3175,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3385,6 +3393,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3689,6 +3698,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4418,6 +4428,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4516,6 +4527,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4796,6 +4808,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4974,6 +4987,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5177,6 +5191,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5870,6 +5885,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5927,6 +5943,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6123,6 +6140,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6155,6 +6173,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6272,6 +6291,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7944,6 +7964,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8185,6 +8206,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index d86fd0c1a13..cd7bd1d5b4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2565,6 +2569,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2755,6 +2760,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2948,6 +2954,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3164,6 +3171,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3380,6 +3388,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3684,6 +3693,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3842,6 +3852,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4412,6 +4423,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4510,6 +4522,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4790,6 +4803,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4968,6 +4982,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5171,6 +5186,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5863,6 +5879,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5920,6 +5937,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6116,6 +6134,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6148,6 +6167,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6265,6 +6285,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7936,6 +7957,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8177,6 +8199,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 1494a52c28d..ce2067384fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2563,6 +2568,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2753,6 +2759,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2945,6 +2952,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3161,6 +3169,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3377,6 +3386,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3681,6 +3691,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3839,6 +3850,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4408,6 +4420,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4506,6 +4519,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4786,6 +4800,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4964,6 +4979,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5167,6 +5183,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5858,6 +5875,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5915,6 +5933,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6111,6 +6130,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6143,6 +6163,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6259,6 +6280,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7929,6 +7951,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8170,6 +8193,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 7af271824c5..7496f0ff744 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2563,6 +2568,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2753,6 +2759,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2945,6 +2952,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3160,6 +3168,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3376,6 +3385,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3680,6 +3690,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3838,6 +3849,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4407,6 +4419,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4505,6 +4518,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4785,6 +4799,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4963,6 +4978,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5166,6 +5182,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5855,6 +5872,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5912,6 +5930,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6108,6 +6127,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6140,6 +6160,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6256,6 +6277,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7924,6 +7946,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8165,6 +8188,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index edc9796f2ba..c8c572b01e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2585,6 +2589,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2776,6 +2781,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2972,6 +2978,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3194,6 +3201,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3412,6 +3420,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3720,6 +3729,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4454,6 +4464,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4555,6 +4566,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4837,6 +4849,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5020,6 +5033,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5225,6 +5239,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5930,6 +5945,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5987,6 +6003,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6186,6 +6203,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6219,6 +6237,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8032,6 +8051,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8273,6 +8293,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index e9e2de96aa3..1e5174692ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2562,6 +2567,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2752,6 +2758,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2944,6 +2951,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3159,6 +3167,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3375,6 +3384,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3679,6 +3689,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3836,6 +3847,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4405,6 +4417,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4503,6 +4516,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4783,6 +4797,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4961,6 +4976,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5164,6 +5180,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5853,6 +5870,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5910,6 +5928,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6106,6 +6125,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6138,6 +6158,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6253,6 +6274,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7920,6 +7942,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8161,6 +8184,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 1e261f7e7cc..3304e26b9e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2562,6 +2567,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2752,6 +2758,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2944,6 +2951,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3159,6 +3167,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3375,6 +3384,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3679,6 +3689,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3836,6 +3847,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4405,6 +4417,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4503,6 +4516,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4783,6 +4797,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4961,6 +4976,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5163,6 +5179,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5852,6 +5869,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5909,6 +5927,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6105,6 +6124,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6137,6 +6157,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6252,6 +6273,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7918,6 +7940,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8157,6 +8180,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index e0f88573e21..4a2314c6157 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1503,6 +1506,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1724,6 +1728,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2561,6 +2566,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2751,6 +2757,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2943,6 +2950,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3158,6 +3166,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3374,6 +3383,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3678,6 +3688,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3835,6 +3846,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4403,6 +4415,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4501,6 +4514,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4781,6 +4795,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4831,6 +4846,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4958,6 +4974,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5160,6 +5177,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5848,6 +5866,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5905,6 +5924,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6101,6 +6121,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6133,6 +6154,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6248,6 +6270,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7914,6 +7937,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8153,6 +8177,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index c38b94ccae7..484e836b508 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2585,6 +2589,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2776,6 +2781,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2972,6 +2978,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3193,6 +3200,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3411,6 +3419,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3719,6 +3728,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4453,6 +4463,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4554,6 +4565,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4835,6 +4847,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5018,6 +5031,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5223,6 +5237,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5928,6 +5943,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5985,6 +6001,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6184,6 +6201,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6217,6 +6235,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8029,6 +8048,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8270,6 +8290,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 9ee8703de10..b5cef3ba643 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2584,6 +2588,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2775,6 +2780,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2971,6 +2977,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3192,6 +3199,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3410,6 +3418,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3718,6 +3727,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4452,6 +4462,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4553,6 +4564,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4834,6 +4846,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5017,6 +5030,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5222,6 +5236,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_4"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5926,6 +5941,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5983,6 +5999,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6180,6 +6197,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6213,6 +6231,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8024,6 +8043,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8265,6 +8285,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e0c37b51beb..d3360cbfc4f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2583,6 +2587,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2774,6 +2779,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2970,6 +2976,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3191,6 +3198,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3409,6 +3417,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3717,6 +3726,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4451,6 +4461,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4552,6 +4563,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4833,6 +4845,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5016,6 +5029,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5221,6 +5235,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5924,6 +5939,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5981,6 +5997,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6178,6 +6195,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6211,6 +6229,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8021,6 +8040,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8262,6 +8282,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 346d3550fa7..335af123c93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1512,6 +1515,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2580,6 +2584,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2771,6 +2776,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2967,6 +2973,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3188,6 +3195,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3406,6 +3414,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3712,6 +3721,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4446,6 +4456,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4547,6 +4558,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4828,6 +4840,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5011,6 +5024,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5216,6 +5230,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5918,6 +5933,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5975,6 +5991,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6172,6 +6189,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6205,6 +6223,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8013,6 +8032,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8254,6 +8274,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 14cce5df287..c8cb9b91e07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1511,6 +1514,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2579,6 +2583,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2770,6 +2775,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2966,6 +2972,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3187,6 +3194,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3405,6 +3413,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3711,6 +3720,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4445,6 +4455,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4546,6 +4557,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4827,6 +4839,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5010,6 +5023,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5215,6 +5229,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5917,6 +5932,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5974,6 +5990,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6171,6 +6188,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6204,6 +6222,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8012,6 +8031,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8253,6 +8273,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 24b8b51ed82..0683bd2553a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1510,6 +1513,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2578,6 +2582,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2769,6 +2774,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2965,6 +2971,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3185,6 +3192,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3403,6 +3411,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3709,6 +3718,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4443,6 +4453,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4543,6 +4554,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4824,6 +4836,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5006,6 +5019,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5211,6 +5225,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5913,6 +5928,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5970,6 +5986,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6167,6 +6184,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6200,6 +6218,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8004,6 +8023,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8245,6 +8265,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 657c571b286..11080ff4358 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1508,6 +1511,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2575,6 +2579,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2765,6 +2770,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2960,6 +2966,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3180,6 +3187,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3398,6 +3406,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3703,6 +3712,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4436,6 +4446,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4535,6 +4546,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4816,6 +4828,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4998,6 +5011,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5202,6 +5216,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5903,6 +5918,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5960,6 +5976,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6157,6 +6174,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6189,6 +6207,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6307,6 +6326,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7988,6 +8008,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8229,6 +8250,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2bcc9271083..b60af8284b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -320,6 +320,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -470,6 +471,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -502,6 +504,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1459,6 +1462,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_3"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1668,6 +1672,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1691,6 +1696,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2479,6 +2485,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2662,6 +2669,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2845,6 +2853,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3052,6 +3061,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3263,6 +3273,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3563,6 +3574,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3718,6 +3730,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3792,6 +3805,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -4008,6 +4022,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4174,6 +4189,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4214,6 +4230,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4271,6 +4288,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4366,6 +4384,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4680,6 +4699,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4795,6 +4815,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4836,6 +4857,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4987,6 +5009,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5075,6 +5098,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5477,6 +5501,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5650,6 +5675,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5704,6 +5730,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5894,6 +5921,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5915,6 +5943,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5923,6 +5952,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6034,6 +6064,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7207,6 +7238,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7657,6 +7689,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7885,6 +7918,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index f4d36188938..d238767cf9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -320,6 +320,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -470,6 +471,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -502,6 +504,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1458,6 +1461,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1667,6 +1671,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1690,6 +1695,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2478,6 +2484,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2661,6 +2668,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2844,6 +2852,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3048,6 +3057,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3259,6 +3269,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3559,6 +3570,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3714,6 +3726,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3788,6 +3801,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -4003,6 +4017,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4169,6 +4184,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4209,6 +4225,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4266,6 +4283,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4361,6 +4379,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4675,6 +4694,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4790,6 +4810,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4831,6 +4852,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4982,6 +5004,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5070,6 +5093,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5470,6 +5494,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5643,6 +5668,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5697,6 +5723,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5887,6 +5914,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5907,6 +5935,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5915,6 +5944,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6026,6 +6056,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7198,6 +7229,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7648,6 +7680,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7875,6 +7908,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index db2b73b9d56..75e701cd9a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -315,6 +316,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -464,6 +466,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -495,6 +498,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1322,6 +1326,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1441,6 +1446,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1646,6 +1652,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1669,6 +1676,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2441,6 +2449,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2618,6 +2627,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2796,6 +2806,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2992,6 +3003,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3200,6 +3212,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3500,6 +3513,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3654,6 +3668,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3727,6 +3742,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3938,6 +3954,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4103,6 +4120,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4143,6 +4161,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4199,6 +4218,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4294,6 +4314,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4602,6 +4623,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4714,6 +4736,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4754,6 +4777,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4900,8 +4924,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4990,6 +5016,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5383,6 +5410,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5554,6 +5582,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5607,6 +5636,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5795,6 +5825,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5815,6 +5846,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5822,6 +5854,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5930,6 +5963,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7073,6 +7107,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7516,6 +7551,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7739,6 +7775,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7922,6 +7959,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7949,6 +7987,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index ce72e7fbb86..4440a97361f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -315,6 +316,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -464,6 +466,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -495,6 +498,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1322,6 +1326,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1441,6 +1446,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1645,6 +1651,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1668,6 +1675,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2439,6 +2447,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2616,6 +2625,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2793,6 +2803,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2989,6 +3000,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3196,6 +3208,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3496,6 +3509,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3523,6 +3537,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3649,6 +3664,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3722,6 +3738,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3933,6 +3950,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4098,6 +4116,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4138,6 +4157,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4194,6 +4214,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4289,6 +4310,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4597,6 +4619,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4709,6 +4732,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4749,6 +4773,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4895,8 +4920,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4985,6 +5012,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5378,6 +5406,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5549,6 +5578,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5602,6 +5632,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5788,6 +5819,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5808,6 +5840,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5815,6 +5848,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5923,6 +5957,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7064,6 +7099,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7506,6 +7542,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7729,6 +7766,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7912,6 +7950,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7939,6 +7978,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 7109ae66a10..563ad632c51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1321,6 +1325,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1440,6 +1445,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1644,6 +1650,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1667,6 +1674,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2434,6 +2442,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2611,6 +2620,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2788,6 +2798,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2984,6 +2995,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3191,6 +3203,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3490,6 +3503,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3517,6 +3531,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3643,6 +3658,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3716,6 +3732,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3927,6 +3944,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4092,6 +4110,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4132,6 +4151,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4188,6 +4208,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4283,6 +4304,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4591,6 +4613,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4703,6 +4726,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4743,6 +4767,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4889,8 +4914,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4979,6 +5006,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5372,6 +5400,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5543,6 +5572,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5596,6 +5626,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5781,6 +5812,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5801,6 +5833,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5808,6 +5841,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5916,6 +5950,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7057,6 +7092,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7496,6 +7532,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7719,6 +7756,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7902,6 +7940,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7929,6 +7968,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 5c5ea1c12ea..bfd7fcfa430 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1321,6 +1325,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1440,6 +1445,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1644,6 +1650,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1667,6 +1674,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2434,6 +2442,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2611,6 +2620,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2788,6 +2798,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2984,6 +2995,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3191,6 +3203,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3490,6 +3503,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3517,6 +3531,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3643,6 +3658,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3716,6 +3732,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3926,6 +3943,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4091,6 +4109,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4131,6 +4150,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4187,6 +4207,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4282,6 +4303,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4590,6 +4612,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4702,6 +4725,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4742,6 +4766,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4887,8 +4912,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4977,6 +5004,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_3"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5369,6 +5397,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5540,6 +5569,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5593,6 +5623,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5777,6 +5808,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5797,6 +5829,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5804,6 +5837,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5912,6 +5946,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7053,6 +7088,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7491,6 +7527,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7714,6 +7751,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7896,6 +7934,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7923,6 +7962,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 99b04cd6a8f..3c09a095fa5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1319,6 +1323,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1438,6 +1443,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1642,6 +1648,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1664,6 +1671,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2425,7 +2433,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2602,6 +2612,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2779,6 +2790,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2975,6 +2987,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3182,6 +3195,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3481,6 +3495,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3508,6 +3523,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3634,6 +3650,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3707,6 +3724,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3917,6 +3935,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4082,6 +4101,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4122,6 +4142,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4178,6 +4199,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4272,6 +4294,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4580,6 +4603,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4692,6 +4716,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4732,6 +4757,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4877,8 +4903,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4966,6 +4994,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5357,6 +5386,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5528,6 +5558,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5581,6 +5612,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5765,6 +5797,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5784,6 +5817,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5791,6 +5825,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5899,6 +5934,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7040,6 +7076,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7409,6 +7446,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7476,6 +7514,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7699,6 +7738,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7879,6 +7919,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7906,6 +7947,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 64ed99c9448..95baf86efab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1318,6 +1322,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1437,6 +1442,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1641,6 +1647,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1663,6 +1670,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2424,7 +2432,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2601,6 +2611,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2778,6 +2789,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2974,6 +2986,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3180,6 +3193,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3479,6 +3493,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3506,6 +3521,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3631,6 +3647,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3704,6 +3721,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3914,6 +3932,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4078,6 +4097,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4118,6 +4138,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4174,6 +4195,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4267,6 +4289,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4575,6 +4598,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4687,6 +4711,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4727,6 +4752,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4872,8 +4898,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4961,6 +4989,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5352,6 +5381,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5523,6 +5553,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5576,6 +5607,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5759,6 +5791,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5778,6 +5811,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5785,6 +5819,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5893,6 +5928,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7032,6 +7068,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7400,6 +7437,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7467,6 +7505,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7690,6 +7729,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7700,6 +7740,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7868,6 +7909,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7895,6 +7937,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 84d32e7fe44..ec3c7dae2a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1317,6 +1321,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1435,6 +1440,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1639,6 +1645,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1661,6 +1668,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2422,7 +2430,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2599,6 +2609,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2775,6 +2786,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2971,6 +2983,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3177,6 +3190,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3475,6 +3489,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3502,6 +3517,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3627,6 +3643,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3700,6 +3717,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3910,6 +3928,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4074,6 +4093,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4114,6 +4134,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4170,6 +4191,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4263,6 +4285,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4571,6 +4594,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4683,6 +4707,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4722,6 +4747,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4866,8 +4892,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4955,6 +4983,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5345,6 +5374,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5516,6 +5546,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5569,6 +5600,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5751,6 +5783,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5770,6 +5803,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5777,6 +5811,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5884,6 +5919,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7019,6 +7055,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7384,6 +7421,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7451,6 +7489,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7674,6 +7713,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7684,6 +7724,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7852,6 +7893,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7879,6 +7921,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 5dcf83ccb8c..9c402b10e5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -462,6 +464,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -493,6 +496,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1313,6 +1317,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1431,6 +1436,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1635,6 +1641,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1657,6 +1664,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2413,7 +2421,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2590,6 +2600,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2766,6 +2777,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2962,6 +2974,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3168,6 +3181,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3465,6 +3479,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3492,6 +3507,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3617,6 +3633,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3690,6 +3707,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3900,6 +3918,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4064,6 +4083,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4104,6 +4124,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4160,6 +4181,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4253,6 +4275,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4559,6 +4582,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4671,6 +4695,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4710,6 +4735,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4854,8 +4880,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4942,6 +4970,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5331,6 +5360,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5502,6 +5532,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5555,6 +5586,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5736,6 +5768,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5755,6 +5788,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5762,6 +5796,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5869,6 +5904,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7002,6 +7038,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7367,6 +7404,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7434,6 +7472,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7656,6 +7695,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7666,6 +7706,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7833,6 +7874,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7860,6 +7902,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7957,6 +8000,7 @@ self: super: { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_17"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 09fd9006a86..dca96a944ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -462,6 +464,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -493,6 +496,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1313,6 +1317,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1431,6 +1436,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1635,6 +1641,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1657,6 +1664,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2412,7 +2420,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2589,6 +2599,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2765,6 +2776,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2961,6 +2973,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3166,6 +3179,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3461,6 +3475,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3488,6 +3503,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3612,6 +3628,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3684,6 +3701,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3893,6 +3911,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4056,6 +4075,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4096,6 +4116,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4152,6 +4173,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4243,6 +4265,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4549,6 +4572,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4661,6 +4685,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4700,6 +4725,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4844,8 +4870,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4932,6 +4960,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5320,6 +5349,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5491,6 +5521,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5544,6 +5575,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5724,6 +5756,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5743,6 +5776,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5750,6 +5784,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5857,6 +5892,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6987,6 +7023,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7351,6 +7388,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7418,6 +7456,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7639,6 +7678,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7648,6 +7688,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7814,6 +7855,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7841,6 +7883,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7938,6 +7981,7 @@ self: super: { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_17"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix new file mode 100644 index 00000000000..f49e3fc7214 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -0,0 +1,8067 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.19 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_4_5"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "ad" = doDistribute super."ad_4_2_4"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex" = doDistribute super."alex_3_1_4"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apply-refact" = dontDistribute super."apply-refact"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = dontDistribute super."async-dejafu"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_12_1"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = dontDistribute super."binary-parser"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blake2" = dontDistribute super."blake2"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraints" = doDistribute super."constraints_0_4_1_3"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consul-haskell" = doDistribute super."consul-haskell_0_2_1"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = dontDistribute super."contravariant-extras"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional" = doDistribute super."dimensional_0_13_0_2"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exact-real" = dontDistribute super."exact-real"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extract-dependencies" = dontDistribute super."extract-dependencies"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = dontDistribute super."file-modules"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_8_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_5_20150727"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-fmt" = dontDistribute super."git-fmt"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_5_5"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger" = doDistribute super."hledger_0_26"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_26"; + "hledger-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hledger-web" = doDistribute super."hledger-web_0_26"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = dontDistribute super."htaglib"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = dontDistribute super."hunit-dejafu"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ical" = dontDistribute super."ical"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; + "latex-formulae-image" = dontDistribute super."latex-formulae-image"; + "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_12_3"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_19_1_3"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memoization-utils" = dontDistribute super."memoization-utils"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "omnifmt" = dontDistribute super."omnifmt"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-description-remote" = dontDistribute super."package-description-remote"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parseargs" = doDistribute super."parseargs_0_1_5_2"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = dontDistribute super."pinch"; + "pinchot" = dontDistribute super."pinchot"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_6"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rose-trie" = dontDistribute super."rose-trie"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_16_2_2"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-yaml" = dontDistribute super."servant-yaml"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run-auto" = dontDistribute super."stack-run-auto"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "success" = dontDistribute super."success"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-dejafu" = dontDistribute super."tasty-dejafu"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_12_2"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "tracy" = dontDistribute super."tracy"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 2c89aae7f38..29e012e9069 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1455,6 +1458,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1664,6 +1668,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1687,6 +1692,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2475,6 +2481,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2657,6 +2664,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2840,6 +2848,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3044,6 +3053,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3254,6 +3264,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3554,6 +3565,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3709,6 +3721,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3783,6 +3796,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3998,6 +4012,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4164,6 +4179,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4204,6 +4220,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4261,6 +4278,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4356,6 +4374,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4670,6 +4689,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4784,6 +4804,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4825,6 +4846,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4975,6 +4997,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5063,6 +5086,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5463,6 +5487,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5636,6 +5661,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5690,6 +5716,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5880,6 +5907,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5900,6 +5928,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5908,6 +5937,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6018,6 +6048,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7184,6 +7215,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7634,6 +7666,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7861,6 +7894,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index d391c532538..5b7a20c9342 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1454,6 +1457,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1663,6 +1667,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1686,6 +1691,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2471,6 +2477,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2653,6 +2660,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2836,6 +2844,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3039,6 +3048,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3249,6 +3259,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3549,6 +3560,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3704,6 +3716,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3778,6 +3791,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3992,6 +4006,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4157,6 +4172,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4197,6 +4213,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4254,6 +4271,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4349,6 +4367,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4663,6 +4682,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4777,6 +4797,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4818,6 +4839,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4968,6 +4990,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5056,6 +5079,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5456,6 +5480,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5629,6 +5654,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5683,6 +5709,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5873,6 +5900,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5893,6 +5921,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5901,6 +5930,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6011,6 +6041,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7175,6 +7206,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7624,6 +7656,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7850,6 +7883,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index f2c645af7ac..9f50937f4f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1454,6 +1457,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1663,6 +1667,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1686,6 +1691,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2470,6 +2476,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2652,6 +2659,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2835,6 +2843,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3038,6 +3047,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3248,6 +3258,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3548,6 +3559,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3703,6 +3715,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3777,6 +3790,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3991,6 +4005,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4156,6 +4171,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4196,6 +4212,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4253,6 +4270,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4348,6 +4366,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4662,6 +4681,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4776,6 +4796,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4817,6 +4838,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4967,6 +4989,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5055,6 +5078,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5455,6 +5479,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5628,6 +5653,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5682,6 +5708,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5872,6 +5899,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5892,6 +5920,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5900,6 +5929,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6010,6 +6040,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7172,6 +7203,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7621,6 +7653,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7847,6 +7880,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 48f7963be65..386c865253d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1453,6 +1456,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1662,6 +1666,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1685,6 +1690,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2467,6 +2473,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2649,6 +2656,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2832,6 +2840,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3033,6 +3042,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3243,6 +3253,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3543,6 +3554,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3698,6 +3710,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3771,6 +3784,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3984,6 +3998,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4149,6 +4164,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4189,6 +4205,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4245,6 +4262,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4340,6 +4358,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4651,6 +4670,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4765,6 +4785,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4806,6 +4827,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4953,8 +4975,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5043,6 +5067,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5442,6 +5467,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5615,6 +5641,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5669,6 +5696,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5858,6 +5886,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5878,6 +5907,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5886,6 +5916,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5995,6 +6026,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7154,6 +7186,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7600,6 +7633,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7826,6 +7860,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -8014,6 +8049,7 @@ self: super: { "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; "x509" = doDistribute super."x509_1_6_1"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "x509-validation" = doDistribute super."x509-validation_1_6_2"; "xattr" = dontDistribute super."xattr"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 6f7f9e75e00..8b9e2b4b2d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1452,6 +1455,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1661,6 +1665,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1684,6 +1689,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2465,6 +2471,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2647,6 +2654,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2828,6 +2836,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3028,6 +3037,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3236,6 +3246,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3536,6 +3547,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3691,6 +3703,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3764,6 +3777,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3977,6 +3991,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4142,6 +4157,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4182,6 +4198,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4238,6 +4255,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4333,6 +4351,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4643,6 +4662,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4755,6 +4775,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4796,6 +4817,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4942,8 +4964,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5032,6 +5056,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5430,6 +5455,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5603,6 +5629,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5657,6 +5684,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5846,6 +5874,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5866,6 +5895,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5873,6 +5903,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5982,6 +6013,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7141,6 +7173,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7586,6 +7619,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7811,6 +7845,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7998,6 +8033,7 @@ self: super: { "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; "x509" = doDistribute super."x509_1_6_1"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "x509-validation" = doDistribute super."x509-validation_1_6_2"; "xattr" = dontDistribute super."xattr"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 94979700e62..9078c3be23c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -499,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1327,6 +1331,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1447,6 +1452,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1656,6 +1662,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1679,6 +1686,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2459,6 +2467,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2640,6 +2649,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2821,6 +2831,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3019,6 +3030,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3227,6 +3239,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3527,6 +3540,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3682,6 +3696,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3755,6 +3770,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3966,6 +3982,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4131,6 +4148,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4171,6 +4189,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4227,6 +4246,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4322,6 +4342,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4631,6 +4652,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4743,6 +4765,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4784,6 +4807,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4930,8 +4954,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5020,6 +5046,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5416,6 +5443,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5589,6 +5617,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5643,6 +5672,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5831,6 +5861,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5851,6 +5882,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5858,6 +5890,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5966,6 +5999,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7120,6 +7154,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7564,6 +7599,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7789,6 +7825,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7975,6 +8012,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index b109fbd9392..3a476ae5983 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -499,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1327,6 +1331,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1447,6 +1452,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1653,6 +1659,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1676,6 +1683,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2450,6 +2458,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2629,6 +2638,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2810,6 +2820,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3008,6 +3019,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3216,6 +3228,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3516,6 +3529,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3671,6 +3685,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3744,6 +3759,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3955,6 +3971,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4120,6 +4137,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4160,6 +4178,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4216,6 +4235,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4311,6 +4331,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4620,6 +4641,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4732,6 +4754,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4773,6 +4796,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4919,8 +4943,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5009,6 +5035,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5403,6 +5430,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5576,6 +5604,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5630,6 +5659,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5818,6 +5848,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5838,6 +5869,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5845,6 +5877,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5953,6 +5986,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7104,6 +7138,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7547,6 +7582,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7772,6 +7808,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7958,6 +7995,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7985,6 +8023,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index d7b955a5c84..f3f2fec1982 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -498,6 +501,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1325,6 +1329,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1445,6 +1450,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1650,6 +1656,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1673,6 +1680,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2445,6 +2453,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2623,6 +2632,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2803,6 +2813,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3000,6 +3011,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3208,6 +3220,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3508,6 +3521,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3663,6 +3677,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3736,6 +3751,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3947,6 +3963,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4112,6 +4129,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4152,6 +4170,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4208,6 +4227,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4303,6 +4323,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4612,6 +4633,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4724,6 +4746,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4765,6 +4788,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4911,8 +4935,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5001,6 +5027,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5395,6 +5422,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5568,6 +5596,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5621,6 +5650,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5809,6 +5839,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5829,6 +5860,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5836,6 +5868,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5944,6 +5977,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7095,6 +7129,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7538,6 +7573,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7763,6 +7799,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7949,6 +7986,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7976,6 +8014,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 4334c17b655..ddbc2109dd5 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -457,8 +457,8 @@ self: { ({ mkDerivation, base, freealut, OpenAL, StateVar, transformers }: mkDerivation { pname = "ALUT"; - version = "2.4.0.0"; - sha256 = "0f5cf9362ace34a9739cd3a45015782a0102015e62c8dd8e290d7952e6ff193d"; + version = "2.4.0.1"; + sha256 = "fcf517a673b0ad2bd6b83033a33f77603b36f293ad651d5ede92c4d30225b56b"; libraryHaskellDepends = [ base OpenAL StateVar transformers ]; librarySystemDepends = [ freealut ]; homepage = "https://github.com/haskell-openal/ALUT"; @@ -722,7 +722,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) emacs;}; - "Agda" = callPackage + "Agda_2_4_2_4" = callPackage ({ mkDerivation, alex, array, base, binary, boxes, bytestring , containers, cpphs, data-hash, deepseq, directory, edit-distance , emacs, equivalence, filepath, geniplate-mirror, happy, hashable @@ -755,6 +755,41 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) emacs;}; + + "Agda" = callPackage + ({ mkDerivation, alex, array, base, binary, boxes, bytestring + , containers, cpphs, data-hash, deepseq, directory, edit-distance + , emacs, equivalence, filepath, geniplate-mirror, happy, hashable + , hashtables, haskeline, haskell-src-exts, mtl, parallel, pretty + , process, QuickCheck, strict, template-haskell, text, time + , transformers, transformers-compat, unordered-containers, xhtml + , zlib + }: + mkDerivation { + pname = "Agda"; + version = "2.4.2.5"; + sha256 = "959658a372d93b735d92191b372d221461026c98de4f92e56d198b576dfb67ee"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary boxes bytestring containers data-hash deepseq + directory edit-distance equivalence filepath geniplate-mirror + hashable hashtables haskeline haskell-src-exts mtl parallel pretty + process QuickCheck strict template-haskell text time transformers + transformers-compat unordered-containers xhtml zlib + ]; + libraryToolDepends = [ alex cpphs happy ]; + executableHaskellDepends = [ base directory filepath process ]; + executableToolDepends = [ emacs ]; + postInstall = '' + $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) + $out/bin/agda-mode compile + ''; + homepage = "http://wiki.portal.chalmers.se/agda/"; + description = "A dependently typed functional programming language and proof assistant"; + license = "unknown"; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -2811,6 +2846,7 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -3945,7 +3981,6 @@ self: { HUnit integer-gmp QuickCheck SHA tagged test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; description = "Implementation of DSA, based on the description of FIPS 186-4"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5905,6 +5940,29 @@ self: { license = "LGPL"; }) {}; + "FractalArt" = callPackage + ({ mkDerivation, base, directory, filepath, JuicyPixels, libX11 + , mwc-random, primitive, random, vector + }: + mkDerivation { + pname = "FractalArt"; + version = "0.2.0.0"; + sha256 = "011d310a8ba7d5e891bf8a6c0f567ccda609324df792d8533475e4f28a4c2097"; + revision = "2"; + editedCabalFile = "5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base directory filepath JuicyPixels mwc-random primitive random + vector + ]; + executableSystemDepends = [ libX11 ]; + jailbreak = true; + homepage = "https://github.com/TomSmeets/FractalArt"; + description = "Generates colorful wallpapers"; + license = stdenv.lib.licenses.mit; + }) {inherit (pkgs.xorg) libX11;}; + "Fractaler" = callPackage ({ mkDerivation, base, FTGL, GLFW-b, OpenGLRaw, parallel, random , time @@ -6089,6 +6147,7 @@ self: { testHaskellDepends = [ base bindings-GLFW HUnit test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; @@ -6257,6 +6316,20 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLURaw_1_5_0_3" = callPackage + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: + mkDerivation { + pname = "GLURaw"; + version = "1.5.0.3"; + sha256 = "066134b3c68442e074e67299f500d67cd769de7853e98ea01b89b19cd8c00b47"; + libraryHaskellDepends = [ base OpenGLRaw transformers ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUT_2_5_1_1" = callPackage ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL , OpenGLRaw @@ -6331,6 +6404,24 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUT_2_7_0_4" = callPackage + ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL + , OpenGLRaw, StateVar, transformers + }: + mkDerivation { + pname = "GLUT"; + version = "2.7.0.4"; + sha256 = "44e80e79895659e00e25033dfc29819f55226046ca6ca46b3373e031262b934c"; + libraryHaskellDepends = [ + array base containers OpenGL OpenGLRaw StateVar transformers + ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A binding for the OpenGL Utility Toolkit"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUtil" = callPackage ({ mkDerivation, array, base, bytestring, containers, directory , filepath, hpp, JuicyPixels, linear, OpenGL, OpenGLRaw @@ -7543,6 +7634,7 @@ self: { messagepack text vect ]; librarySystemDepends = [ hgamer3d062 Urho3D ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; @@ -8912,7 +9004,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HUnit" = callPackage + "HUnit_1_2_5_2" = callPackage ({ mkDerivation, base, deepseq }: mkDerivation { pname = "HUnit"; @@ -8922,9 +9014,10 @@ self: { homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HUnit_1_3_0_0" = callPackage + "HUnit" = callPackage ({ mkDerivation, base, deepseq, filepath }: mkDerivation { pname = "HUnit"; @@ -8935,7 +9028,6 @@ self: { homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Diff" = callPackage @@ -9797,6 +9889,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Hate" = callPackage + ({ mkDerivation, base, bytestring, GLFW-b, GLUtil, hpp, JuicyPixels + , JuicyPixels-util, lens, mtl, multimap, OpenGL, random, stm + , transformers, vect, vect-opengl, vector + }: + mkDerivation { + pname = "Hate"; + version = "0.1.4.3"; + sha256 = "527920c3f401113cf4123486fb578447916eae928923e7bb857ac14442f34e6e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring GLFW-b GLUtil hpp JuicyPixels JuicyPixels-util mtl + multimap OpenGL stm transformers vect vect-opengl vector + ]; + executableHaskellDepends = [ + base GLFW-b GLUtil JuicyPixels JuicyPixels-util lens mtl OpenGL + random transformers vect vect-opengl vector + ]; + jailbreak = true; + homepage = "http://github.com/bananu7/Hate"; + description = "A small 2D game framework"; + license = stdenv.lib.licenses.mit; + }) {}; + "Hawk" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, cgi, containers , convertible, data-default, dataenc, directory, filepath, hack @@ -10000,8 +10117,8 @@ self: { }: mkDerivation { pname = "Hish"; - version = "0.1.2.1"; - sha256 = "fd3d404e8ea165e3011f5580d4f6556a596d7a24e6510e2ce5902779e29b6ca4"; + version = "0.1.2.2"; + sha256 = "5094eee275eb1d9dba7929c1bd812cb1b299dce18be5eefcfde3b2cd48d5365a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -10312,20 +10429,22 @@ self: { }) {Judy = null;}; "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, HUnit, network, old-locale - , openssl, test-framework, test-framework-hunit, time + ({ mkDerivation, base, bytestring, HUnit, integer-gmp, network + , old-locale, openssl, test-framework, test-framework-hunit, time }: mkDerivation { pname = "HsOpenSSL"; version = "0.11.1.1"; sha256 = "4a61e074e968a9863e0f3440b3be8ac131457b3d34eb983ca8102122d8ebc4c1"; libraryHaskellDepends = [ - base bytestring network old-locale time + base bytestring integer-gmp network old-locale time ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/phonohawk/HsOpenSSL"; description = "Partial OpenSSL binding for Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -10461,6 +10580,7 @@ self: { libraryHaskellDepends = [ aeson base containers lens lens-aeson mtl transformers wreq ]; + jailbreak = true; homepage = "https://github.com/sjoerdvisscher/HueAPI"; description = "API for controlling Philips Hue lights"; license = stdenv.lib.licenses.bsd3; @@ -13879,6 +13999,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ObjectName_1_1_0_1" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "ObjectName"; + version = "1.1.0.1"; + sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; + libraryHaskellDepends = [ base transformers ]; + homepage = "https://github.com/svenpanne/ObjectName"; + description = "Explicitly handled object names"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Obsidian" = callPackage ({ mkDerivation, base, containers, cuda, language-c-quote , mainland-pretty, mtl, mwc-random, process, rdtsc, text @@ -14032,8 +14165,8 @@ self: { }: mkDerivation { pname = "OpenAL"; - version = "1.7.0.1"; - sha256 = "671987cb52152317e6bed01b20e09c031a20066ff3f76aa450965ec162971750"; + version = "1.7.0.2"; + sha256 = "72fe6db9ae0449df5bdb674fde9b3bfb5a1544261ba6a32dadc5396dd95064af"; libraryHaskellDepends = [ base ObjectName OpenGL StateVar transformers ]; @@ -14148,8 +14281,8 @@ self: { }: mkDerivation { pname = "OpenGL"; - version = "2.13.1.1"; - sha256 = "6db5b3530e234bc643e3279ccbc78992b5e8f462f618593e2cebc80aa9abe0a6"; + version = "2.13.2.0"; + sha256 = "512573572b89242ecf834ca7669c18a689d6a694594ca94bb725ef1db37f46f2"; libraryHaskellDepends = [ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar text transformers @@ -14160,6 +14293,24 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "OpenGL_2_13_2_1" = callPackage + ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName + , OpenGLRaw, StateVar, text, transformers + }: + mkDerivation { + pname = "OpenGL"; + version = "2.13.2.1"; + sha256 = "bc28e7e83bcf40c8654b74a35146a8d1a48fea76ea148c507b681c6d255f5734"; + libraryHaskellDepends = [ + base bytestring containers GLURaw ObjectName OpenGLRaw StateVar + text transformers + ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "OpenGLCheck" = callPackage ({ mkDerivation, base, checkers, haskell98, OpenGL, QuickCheck }: mkDerivation { @@ -14233,6 +14384,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) mesa;}; + "OpenGLRaw_2_6_1_1" = callPackage + ({ mkDerivation, base, bytestring, containers, half, mesa, text + , transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "2.6.1.1"; + sha256 = "bac2633ab2ae04ecaa26319aded375ad1c678fa33d9897ecd8c7d58998de183b"; + libraryHaskellDepends = [ + base bytestring containers half text transformers + ]; + librarySystemDepends = [ mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) mesa;}; + "OpenGLRaw21" = callPackage ({ mkDerivation, OpenGLRaw }: mkDerivation { @@ -15241,6 +15410,8 @@ self: { pname = "QuickCheck"; version = "2.7.6"; sha256 = "80d8970a0c1dfcb714215cf11f2bf0f79339f70c01999dae2c31516100a0c527"; + revision = "1"; + editedCabalFile = "45ff46338dca0616041adade28d6b49d6a3ea810ba5dff619b2abdcbe7c93035"; libraryHaskellDepends = [ base random template-haskell tf-random transformers ]; @@ -15260,6 +15431,8 @@ self: { pname = "QuickCheck"; version = "2.8.1"; sha256 = "7073aa3635660476aa31df7cf0476926a1ac0231235020122eb276070675763b"; + revision = "1"; + editedCabalFile = "f8c84fee9ea7efc5d033cde7e4cd2ade67a30bb832f08e62394353481e16b4b7"; libraryHaskellDepends = [ base containers random template-haskell tf-random transformers ]; @@ -17623,6 +17796,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "StateVar_1_1_0_2" = callPackage + ({ mkDerivation, base, stm, transformers }: + mkDerivation { + pname = "StateVar"; + version = "1.1.0.2"; + sha256 = "051c4b98bc4456afe4eb26f775ab0aa370e9e12b1588d5865abd5b0aea83c3f9"; + libraryHaskellDepends = [ base stm transformers ]; + homepage = "https://github.com/haskell-opengl/StateVar"; + description = "State variables"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "StateVar-transformer" = callPackage ({ mkDerivation, base, mtl, transformers }: mkDerivation { @@ -21218,6 +21404,7 @@ self: { testHaskellDepends = [ base lens linear QuickCheck semigroupoids semigroups vector ]; + jailbreak = true; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -21710,32 +21897,6 @@ self: { }) {}; "aeson" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq - , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific - , syb, template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson"; - version = "0.9.0.1"; - sha256 = "92b97dbc4968a2af6bc13b499629118f85b22efe113a4d60e578fbfb0f6ef8bc"; - libraryHaskellDepends = [ - attoparsec base bytestring containers deepseq dlist ghc-prim - hashable mtl scientific syb template-haskell text time transformers - unordered-containers vector - ]; - testHaskellDepends = [ - attoparsec base bytestring containers ghc-prim HUnit QuickCheck - template-haskell test-framework test-framework-hunit - test-framework-quickcheck2 text time unordered-containers vector - ]; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "aeson_0_10_0_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific , syb, template-haskell, test-framework, test-framework-hunit @@ -21756,10 +21917,10 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; + doCheck = false; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-applicative" = callPackage @@ -21823,7 +21984,6 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit tasty-quickcheck tasty-th ]; - doHaddock = false; description = "Tools to change the formatting of field names in Aeson instances"; license = stdenv.lib.licenses.mit; }) {}; @@ -21851,6 +22011,7 @@ self: { aeson base QuickCheck quickcheck-instances text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/thsutton/aeson-diff"; description = "Extract and apply patches to JSON documents"; license = stdenv.lib.licenses.bsd3; @@ -22011,7 +22172,6 @@ self: { libraryHaskellDepends = [ aeson base parsec scientific text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/FPBrno/aeson-parsec-picky"; description = "Alternative JSON parser based on Parsec and Aeson"; license = stdenv.lib.licenses.bsd3; @@ -22127,6 +22287,7 @@ self: { template-haskell temporary test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/timjb/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; @@ -22156,6 +22317,7 @@ self: { template-haskell temporary test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/Fuuzetsu/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; @@ -22432,6 +22594,7 @@ self: { Agda base containers mtl network-uri xhtml ]; executableHaskellDepends = [ Agda base network-uri ]; + jailbreak = true; homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; @@ -23564,17 +23727,17 @@ self: { "amazonka" = callPackage ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-conduit, ini, lens - , mmorph, monad-control, mtl, resourcet, retry, tasty, tasty-hunit - , text, time, transformers, transformers-base, transformers-compat + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat }: mkDerivation { pname = "amazonka"; - version = "1.3.6"; - sha256 = "2b6a1bd4594db524f387a23d916059d973b4640eb4f6e4fa64571bd96df09d96"; + version = "1.3.7"; + sha256 = "4eb5be39c07f4638cc050e97905c31409aa0555650c2d3c055d0c9e117685797"; libraryHaskellDepends = [ amazonka-core base bytestring conduit conduit-extra directory - exceptions http-conduit ini lens mmorph monad-control mtl resourcet + exceptions http-conduit ini mmorph monad-control mtl resourcet retry text time transformers transformers-base transformers-compat ]; testHaskellDepends = [ base tasty tasty-hunit ]; @@ -23585,16 +23748,16 @@ self: { "amazonka-apigateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-apigateway"; - version = "1.3.6"; - sha256 = "21d30940c168597d8c1dde700bc420ad87eadb2f512f78d5b05c39363755ae58"; + version = "1.3.7"; + sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon API Gateway SDK"; @@ -23645,16 +23808,16 @@ self: { "amazonka-autoscaling" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-autoscaling"; - version = "1.3.6"; - sha256 = "e37b8aff470f3b2e04b9066aecf7f1d160bf120bcddbdd849428c32aa84b7c85"; + version = "1.3.7"; + sha256 = "cb9c27d105c147cf6d2bc2bf7207f4a6f9b4a13b4231a05487a6bf0cfe36d824"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; @@ -23705,16 +23868,16 @@ self: { "amazonka-cloudformation" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudformation"; - version = "1.3.6"; - sha256 = "5ad92a91c4a9def47c5700ce5c573f40cd6b87e8f250f1502d7dc1cad6b6577b"; + version = "1.3.7"; + sha256 = "320c72348c550a03ed080922f70865ea1fc9e48307932157d6872cb5c882be0d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; @@ -23765,16 +23928,16 @@ self: { "amazonka-cloudfront" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudfront"; - version = "1.3.6"; - sha256 = "e01ddbe47cad14d8dd47a42bf41d7598f119d0c01aab466aa3f25dcad3764994"; + version = "1.3.7"; + sha256 = "4bdfe01425a6508a224975a9137d816bf76455b1e8d2908cff75c896c86b3c5a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; @@ -23825,16 +23988,16 @@ self: { "amazonka-cloudhsm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudhsm"; - version = "1.3.6"; - sha256 = "e5946f07605a58dfabdef84212cd663ace14d7b2a274276a06394576c6e8db4a"; + version = "1.3.7"; + sha256 = "1ddff0ccf07e8961ddf0c8e186f2ff420ab0a03e20c0450bf71ca5c16e8791fa"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; @@ -23885,16 +24048,16 @@ self: { "amazonka-cloudsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch"; - version = "1.3.6"; - sha256 = "b40816be3743f3be9c5a0c0b2d686f8cdc4e86adc62296af3f372dd9f5c7493e"; + version = "1.3.7"; + sha256 = "8d25ff01dc964a28250004ac1d94c3352f08d187893f53d9718399dcac0eb4f6"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; @@ -23945,16 +24108,16 @@ self: { "amazonka-cloudsearch-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch-domains"; - version = "1.3.6"; - sha256 = "2e291315720e6cd3fe8e6f25252b70408aa94f3bc580812a611e1be1efd4dae8"; + version = "1.3.7"; + sha256 = "36a6b4c1320b8b796e013f2ed9007dd411649f4f5f328ae74fd2b32b34bd385d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; @@ -24005,16 +24168,16 @@ self: { "amazonka-cloudtrail" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudtrail"; - version = "1.3.6"; - sha256 = "e49e9178707fbe296dc0e8e5fb03e0876fc41306cb0b07a64cca4ccdd1be3b95"; + version = "1.3.7"; + sha256 = "f1a2c200001d876154cb526066d7dd41928000391b46bf2071e685f2e2f47ab1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; @@ -24065,16 +24228,16 @@ self: { "amazonka-cloudwatch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch"; - version = "1.3.6"; - sha256 = "a568286907b7f72fcc7089015727141b231a082fc22f9192f02c86df4baddd76"; + version = "1.3.7"; + sha256 = "7ca782f158f95e2cd68f60de45aeeac9404ff55743a02b490f6be2ac5a3c35e0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; @@ -24125,16 +24288,16 @@ self: { "amazonka-cloudwatch-logs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch-logs"; - version = "1.3.6"; - sha256 = "cd616e54162460bd887c2e141baacf6c28628d5397f1da4ee21c33abebbc6c31"; + version = "1.3.7"; + sha256 = "479dab55226364dc4f109e5189906ee782d7d8d114ab2754278b22b15bf28025"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; @@ -24143,16 +24306,16 @@ self: { "amazonka-codecommit" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.6"; - sha256 = "0140e1c7353c1db7e468194465989f61498eb58a46bc270478fc842d9128acd2"; + version = "1.3.7"; + sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeCommit SDK"; @@ -24203,16 +24366,16 @@ self: { "amazonka-codedeploy" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codedeploy"; - version = "1.3.6"; - sha256 = "385b0d54be768c63d218173be424cca08e895ec695b18ab3468339a819c25926"; + version = "1.3.7"; + sha256 = "114b48813df24301ac27bcd3f6f2933c925616d5f155b55459dec3c8f836c842"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; @@ -24221,16 +24384,16 @@ self: { "amazonka-codepipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.6"; - sha256 = "eb4ff01933e3b4e2abff5c249548ece6906d13442a45fd3aafa07050a4af55ad"; + version = "1.3.7"; + sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodePipeline SDK"; @@ -24281,16 +24444,16 @@ self: { "amazonka-cognito-identity" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cognito-identity"; - version = "1.3.6"; - sha256 = "227caccb006bc242ca57d629a1ba2453ecb032fdfe0971a5d70c9957ec53abd7"; + version = "1.3.7"; + sha256 = "78b0cf4e3d7aed0c82fd11016baf1e7bf2a33207a012a3229cbec2fdd7853641"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; @@ -24341,16 +24504,16 @@ self: { "amazonka-cognito-sync" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cognito-sync"; - version = "1.3.6"; - sha256 = "29821f6e4f4a9b59ff3612a2097f715df66d513833989c88c01c6cf9d29d1639"; + version = "1.3.7"; + sha256 = "5f0a9a438bad4739e364804e5326ad18ca2a4792f799098b098a9192836f5577"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; @@ -24401,16 +24564,16 @@ self: { "amazonka-config" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-config"; - version = "1.3.6"; - sha256 = "dd257f9c707bc5218cd5b64d0adda1ecdd47a7e67282b12ad0d590101b362b7d"; + version = "1.3.7"; + sha256 = "58da74215ae3291341197e4bbb235f07818accf50364fb9ce5c392c8af5312fa"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; @@ -24463,8 +24626,8 @@ self: { pname = "amazonka-core"; version = "0.3.4"; sha256 = "5f268010d0dff030398b272f7c505f25acc33a9c8c0ccb3ad9e667663707306a"; - revision = "1"; - editedCabalFile = "906720ed3918b2ceab4fb4d87a5f8e1dff1fbcf978e85b7a20195c2b35872aca"; + revision = "2"; + editedCabalFile = "ce25f51af29b48e824a325c3c6cdb72826ff9e76b7912b13f1d12660830e880e"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24476,6 +24639,7 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit template-haskell text ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core functionality and data types for Amazonka libraries"; license = "unknown"; @@ -24495,8 +24659,8 @@ self: { pname = "amazonka-core"; version = "0.3.6"; sha256 = "821e635dc21ea7a06c6ba6711dec228c6fb18c12de51924f84d92fc71cf8c0d0"; - revision = "1"; - editedCabalFile = "a0471c700a9a90808fac28a7f77802220d61b5bf84c3d50b8e0b8fb146413aef"; + revision = "2"; + editedCabalFile = "3f6c94016391ab596deae1721db67629a85d8a0a9d7651bea5c962e5c0b5d39d"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24508,6 +24672,7 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit template-haskell text ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core functionality and data types for Amazonka libraries"; license = "unknown"; @@ -24525,8 +24690,8 @@ self: { }: mkDerivation { pname = "amazonka-core"; - version = "1.3.6"; - sha256 = "886f1b9160261b7b29c4aef0b987f8b3723b2a821a7e90dc37e5382ca8587b74"; + version = "1.3.7"; + sha256 = "29c8aebe23cd6f48fa5f49c2ba02e2f12b8aa8fc0f820489b49dc95b28f8e05c"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite exceptions hashable http-conduit @@ -24535,7 +24700,7 @@ self: { xml-conduit xml-types ]; testHaskellDepends = [ - aeson base bytestring case-insensitive http-types lens QuickCheck + aeson base bytestring case-insensitive http-types QuickCheck quickcheck-unicode tasty tasty-hunit tasty-quickcheck template-haskell text time ]; @@ -24588,16 +24753,16 @@ self: { "amazonka-datapipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-datapipeline"; - version = "1.3.6"; - sha256 = "0f4657336cd6eead4a5cca09b6b68cfcc5f75c2382a9e3a5d36deddbe555b973"; + version = "1.3.7"; + sha256 = "7df5cd02fd2d14ca7dd37408ec59374a338d862162ef6c6094703f24f39ab5bd"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; @@ -24606,16 +24771,16 @@ self: { "amazonka-devicefarm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.6"; - sha256 = "e7782528d5f9afaf65477ea62e96e77d897aecccd2d3cf21ffa40f604dd33013"; + version = "1.3.7"; + sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Device Farm SDK"; @@ -24666,16 +24831,16 @@ self: { "amazonka-directconnect" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-directconnect"; - version = "1.3.6"; - sha256 = "2c6adffec93961fea4361f245280b5eea2df2c314ce1958e0d31926b3890f2be"; + version = "1.3.7"; + sha256 = "b1119213b84a509ebe5cd7ea1032ee94d7b0aa45fd159f71aa0e2f4d19e59dcb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; @@ -24684,16 +24849,16 @@ self: { "amazonka-ds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.6"; - sha256 = "891f5189125cf8d94abf3ee97aa8959c0015e0383b7485238e87282b018f629d"; + version = "1.3.7"; + sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Directory Service SDK"; @@ -24744,16 +24909,16 @@ self: { "amazonka-dynamodb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-dynamodb"; - version = "1.3.6"; - sha256 = "28ae5711721ba898db8c51ae123000ec02d1a4e66db6078b3ca426f4dab9c3be"; + version = "1.3.7"; + sha256 = "8000caed96de1a7ffc9dd97668606f3c64a54619b549b4b7c29b73780091176e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; @@ -24762,16 +24927,16 @@ self: { "amazonka-dynamodb-streams" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.6"; - sha256 = "3201fee450d622ad22825a8068e95e913666fc25544044e6b0a840d3c444be0c"; + version = "1.3.7"; + sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB Streams SDK"; @@ -24836,16 +25001,16 @@ self: { "amazonka-ec2" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ec2"; - version = "1.3.6"; - sha256 = "d5756ef1f17d84b9e50647477e244e56560d676d5dea35b8c1ea53b5684d4c97"; + version = "1.3.7"; + sha256 = "d76e66ca880a7dc8299186ea0334c12a4a38bf4efa79df59dc26016371e59e65"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -24898,16 +25063,16 @@ self: { "amazonka-ecs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ecs"; - version = "1.3.6"; - sha256 = "a0c6d28f289c5120765ce1efc13d18b50b4a1c6b93222fa7381979b94cb80406"; + version = "1.3.7"; + sha256 = "4124f46fa02ef085e989261b2617975dbbd7d2549fd1901279b311952c01d51e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; @@ -24916,16 +25081,16 @@ self: { "amazonka-efs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.6"; - sha256 = "4e087917eb34bb12fa0add63c41eee7bb2baf52af8c7d6c6f247c0a8c726a5db"; + version = "1.3.7"; + sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic File System SDK"; @@ -24976,16 +25141,16 @@ self: { "amazonka-elasticache" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticache"; - version = "1.3.6"; - sha256 = "7c60c850560b448434513cd7943d2d42d662816f98f7f9bf06c36c7f0a057888"; + version = "1.3.7"; + sha256 = "22d53cb522c73f1fd95dfd8678295055aebd34b3f999506042f00d49266ed0d9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; @@ -25036,16 +25201,16 @@ self: { "amazonka-elasticbeanstalk" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticbeanstalk"; - version = "1.3.6"; - sha256 = "d67282b599affed8f46c1960a1e70319f99404742e46d445d95d68c6e507ef11"; + version = "1.3.7"; + sha256 = "c4e6bfa1d599602c9f25a1b8a0c2a6d7518d959dde78b1fb64ad787d3e356dd4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; @@ -25054,16 +25219,16 @@ self: { "amazonka-elasticsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.3.6"; - sha256 = "ed6fddddf130d039295b76e349b2c00141706c5a8fef471ce741296af9f833f8"; + version = "1.3.7"; + sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elasticsearch Service SDK"; @@ -25114,16 +25279,16 @@ self: { "amazonka-elastictranscoder" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elastictranscoder"; - version = "1.3.6"; - sha256 = "489f2bb02483378602d7f533369019761016385aa1ec2983b4e6a427a67b5792"; + version = "1.3.7"; + sha256 = "55d813660c91eee260111a252afddc295edf7a26a7f3b5c5e9c7ab4814ce338c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; @@ -25174,16 +25339,16 @@ self: { "amazonka-elb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elb"; - version = "1.3.6"; - sha256 = "80f9df4c3345cf3913f5ee95e44547d9de0b22bc2c0d58b7c530c165b4064087"; + version = "1.3.7"; + sha256 = "5d72d70f7ffa2ea1e0a244c60e87ccb19874bff27f547bf1b1c740e75c8872ec"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; @@ -25234,16 +25399,16 @@ self: { "amazonka-emr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-emr"; - version = "1.3.6"; - sha256 = "6189666eea89fb6f0ae436fdc6992c33b4bc59f21503062e1c5c7d58d02b2235"; + version = "1.3.7"; + sha256 = "cfd8c9416c1ba32001aeae5f60d5050276e9f6ac1870d13f5a995803711d35fc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; @@ -25294,16 +25459,16 @@ self: { "amazonka-glacier" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-glacier"; - version = "1.3.6"; - sha256 = "940108fdb03e41afb62c517105e9e5dfaaab78a8d9a48dfb7db6ca63c94319e0"; + version = "1.3.7"; + sha256 = "18ee97fef9915b433a716e40f6a83c332080fd9fa428ce60c56444161f67db04"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; @@ -25354,16 +25519,16 @@ self: { "amazonka-iam" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iam"; - version = "1.3.6"; - sha256 = "9d0306e25a7b7b9330f7f9d1648ca35553548180accc0f403689d1428860b8d2"; + version = "1.3.7"; + sha256 = "301463c7e704f82055307f0cbb9d092abdd3bc6672a78439ed748fbd061b3945"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; @@ -25414,16 +25579,16 @@ self: { "amazonka-importexport" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-importexport"; - version = "1.3.6"; - sha256 = "bfa120fb51bb6f784a970a1a633ecb1ec054bdf8bdb1594ca7fe160c75e6ebe0"; + version = "1.3.7"; + sha256 = "ec40b77cc0f365d01c6614cf0daa1dbbdbcf97cd4cb1ac1b258cd8382ff3ae6d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; @@ -25432,16 +25597,16 @@ self: { "amazonka-inspector" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-inspector"; - version = "1.3.6"; - sha256 = "895d149dd6ea1255ef34788ccf4caa2f3568541ea652717562601c4340e273a4"; + version = "1.3.7"; + sha256 = "eaf9eec94b9de0bfc2b1c204be38bbb9b808d69a0286686960ea4f551793a7d2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; @@ -25450,16 +25615,16 @@ self: { "amazonka-iot" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iot"; - version = "1.3.6"; - sha256 = "8a33bee0071be696eeca1614b6418677a63aa425682975d61843a3cf2a75b36e"; + version = "1.3.7"; + sha256 = "7e515bf2ec1ac7f9ef84c31fd5b436d13df2e5ab9c21cc2b5fc54d92d0b2cee3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; @@ -25468,16 +25633,16 @@ self: { "amazonka-iot-dataplane" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iot-dataplane"; - version = "1.3.6"; - sha256 = "53c527174618a3808d14b2a5a2c2a6603595575f2175bd053ab66bcfbd7d4f65"; + version = "1.3.7"; + sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT Data Plane SDK"; @@ -25528,16 +25693,16 @@ self: { "amazonka-kinesis" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kinesis"; - version = "1.3.6"; - sha256 = "34bbfc2d6265951f9f26c2eafad06315eb3807717c279bd43fd89a830423bda4"; + version = "1.3.7"; + sha256 = "321884fc3baa02e07f613dd23ec77ec79ce40c875a88772e9586a99745114b43"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; @@ -25546,16 +25711,16 @@ self: { "amazonka-kinesis-firehose" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.3.6"; - sha256 = "6285473f9f328423c080575e8d5f1fd4a599562cc4a41cfb724aa02ca323c7bd"; + version = "1.3.7"; + sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis Firehose SDK"; @@ -25606,16 +25771,16 @@ self: { "amazonka-kms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kms"; - version = "1.3.6"; - sha256 = "0a1ed2b7839b17187dbcdbb0ed91b71d8d4090a7296f89592997ba9fd28ed931"; + version = "1.3.7"; + sha256 = "2daffffd16da332b52523802ee35173aaafed8d24a4e860045bc9933725c9de4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; @@ -25666,16 +25831,16 @@ self: { "amazonka-lambda" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-lambda"; - version = "1.3.6"; - sha256 = "71a9e80add261bc519330ac1127ea47e1b2298472a76cdbe899858ef8e1413d0"; + version = "1.3.7"; + sha256 = "cba44973510233399b0d5fa4c9d291691e30caef63035158f40b5b10e2dd5f90"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; @@ -25684,16 +25849,16 @@ self: { "amazonka-marketplace-analytics" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-marketplace-analytics"; - version = "1.3.6"; - sha256 = "9ff0d3b4409c870d1eb44c2e4e88cc01e22cfe47dd52cd9373dffc6dea0e03bc"; + version = "1.3.7"; + sha256 = "eaf080d9f19638c4d7d98fb19e4f0ce752622c04db675e91c9bcc23476ca4d8e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; @@ -25716,16 +25881,16 @@ self: { "amazonka-ml" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ml"; - version = "1.3.6"; - sha256 = "8edcd8ede34b7459c17999d6ba5b8925026806f0cd0c0d74438047b93346f5a2"; + version = "1.3.7"; + sha256 = "05ced76e5eaad97bd2b5ead71df84f3f304d0c6fa16fb5af6a3df8e24e9af31e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; @@ -25776,16 +25941,16 @@ self: { "amazonka-opsworks" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-opsworks"; - version = "1.3.6"; - sha256 = "1f3bef78afcaad9c301be45902eca6b44d31adb840be7f7364e0e81a4bb8a108"; + version = "1.3.7"; + sha256 = "d0367cedd608068cf27e84b1690086c7915639578181a2790f584b787dcadbb9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; @@ -25836,16 +26001,16 @@ self: { "amazonka-rds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-rds"; - version = "1.3.6"; - sha256 = "7a70db7b6482b4836a7606c7026e9cb93c55763f414330ebfaf20967665f1a97"; + version = "1.3.7"; + sha256 = "a874b42d38fd50279d7dfbb4a08b3633dc35a8e2f140598c0aabbec3bf152a75"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; @@ -25897,16 +26062,16 @@ self: { "amazonka-redshift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-redshift"; - version = "1.3.6"; - sha256 = "d057787a826e2cc91af5cb223d82421e17f9e5f698f8da85650a51106da272f9"; + version = "1.3.7"; + sha256 = "cd6797859fd724b5d470b3bcf01c1bec167ad1c247de115a767c6ba5ed268d01"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; @@ -25971,16 +26136,16 @@ self: { "amazonka-route53" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-route53"; - version = "1.3.6"; - sha256 = "5f5c22d49a4b43a63dc21e1d83c9e571cd4028a509540fea45559ea78afdc4df"; + version = "1.3.7"; + sha256 = "cc6811f83c7282d1cd20d145fe317d6116a9731bd4ee58923d84924634fbc208"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; @@ -26031,16 +26196,16 @@ self: { "amazonka-route53-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-route53-domains"; - version = "1.3.6"; - sha256 = "3360e343280cb0681e9c6702c668ccb4c3f9f67d2c5f8da98860e56dc2a59b09"; + version = "1.3.7"; + sha256 = "b2a5143e58f517ef9d3b5768acd220b3404cbc13b20248a983a977e73f3920dc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; @@ -26095,12 +26260,12 @@ self: { }: mkDerivation { pname = "amazonka-s3"; - version = "1.3.6"; - sha256 = "4867f20e331f1c5197b212d1ba6051887631419bc92cbc74dd26f0eed1987087"; + version = "1.3.7"; + sha256 = "da865c6a32f1d07c8ff28bcb1f2905b2e0cedf19e0f5c00ca975ac84ff9b1620"; libraryHaskellDepends = [ amazonka-core base lens text ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -26153,16 +26318,16 @@ self: { "amazonka-sdb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sdb"; - version = "1.3.6"; - sha256 = "1d55cadafd4d4e5797fa87bd6ef089bf61dad6386ed943adb923055a36d2f32c"; + version = "1.3.7"; + sha256 = "6cf65455e4b56ef50f6ebed0b93463439c8ab51c3e33c74634b7046a6b341d71"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; @@ -26213,16 +26378,16 @@ self: { "amazonka-ses" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ses"; - version = "1.3.6"; - sha256 = "d8694bbfd28c6fbaa9a0e581debbdcb886010cd79e2830402ff54037d83e9b6d"; + version = "1.3.7"; + sha256 = "42d593776aea6d9bc5a9a8ec8ef9eefea413d413d3586fb0231733aceb4a29b3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; @@ -26273,16 +26438,16 @@ self: { "amazonka-sns" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sns"; - version = "1.3.6"; - sha256 = "718d2f468302bf95ea7c8f51a340514e1756e84bedda2d0ae0d1ebae6b783094"; + version = "1.3.7"; + sha256 = "ea691aec73e2859e074bb86c7bdf3f04e8eb58b512686e887fc714403c612ee4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; @@ -26333,16 +26498,16 @@ self: { "amazonka-sqs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sqs"; - version = "1.3.6"; - sha256 = "5cfa83a58c52d1272c09c08743bf68c6c5d1789573c4ac50f8fa871361224c3a"; + version = "1.3.7"; + sha256 = "c18e3c60413c9a949b885622a10e7ea221ebb0b9f65c4d1c57c07941de969172"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; @@ -26394,16 +26559,16 @@ self: { "amazonka-ssm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ssm"; - version = "1.3.6"; - sha256 = "936981dcc9ad3aab9eaca5b72337eb340e4101c98217c025570dab12b063942c"; + version = "1.3.7"; + sha256 = "5b990dafc0066327e197c5838a3ec562471933f7e0eed2bd15f94249859f20da"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; @@ -26454,16 +26619,16 @@ self: { "amazonka-storagegateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-storagegateway"; - version = "1.3.6"; - sha256 = "af0784739819a62926d1282dfa7b05b3aaa90f8c4063dfa5877097ee17d2c29f"; + version = "1.3.7"; + sha256 = "d43de277a9262445fcbce966863622132c4a0d72273fa7bfd9efb32bdbc20348"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; @@ -26514,16 +26679,16 @@ self: { "amazonka-sts" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sts"; - version = "1.3.6"; - sha256 = "65fe8fc6f3cb8512dff76f0897b6f50bd97e13d799e6ea631c558f8df152246f"; + version = "1.3.7"; + sha256 = "cb113a4d42ec49d05b3199802d3233ac8bdf3e85115bfcdd155a98c1a9003486"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; @@ -26574,16 +26739,16 @@ self: { "amazonka-support" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-support"; - version = "1.3.6"; - sha256 = "14777c5a77eecc699832c71660032ae4cc871efe69d03aa4becde40c63d3c39d"; + version = "1.3.7"; + sha256 = "6c8b40c5dd291a5b53ce16348b219c40b33e2c94e65b8478f242ff93c0d6c0d2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; @@ -26634,16 +26799,16 @@ self: { "amazonka-swf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-swf"; - version = "1.3.6"; - sha256 = "0dfda94067f7d2c17a6ffac0252a9340b7b95138721ac40198d03c896329fd16"; + version = "1.3.7"; + sha256 = "b95a998ca50d79913d8deb8c7572554726e4a3778c891301659ef8829d7119b0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -26655,17 +26820,17 @@ self: { "amazonka-test" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, lens, process, resourcet, tasty, tasty-hunit + , http-types, process, resourcet, tasty, tasty-hunit , template-haskell, temporary, text, time, unordered-containers , yaml }: mkDerivation { pname = "amazonka-test"; - version = "1.3.6"; - sha256 = "f7f1467d724cdbbb85812c30cee27ad86bfa18a000c28cf4c9dda433d4317eda"; + version = "1.3.7"; + sha256 = "0d7410f8b76d9e1b8be76529868cf2267445219b3ca21499ae231d736a42f8d9"; libraryHaskellDepends = [ aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types lens process + conduit conduit-extra groom http-client http-types process resourcet tasty tasty-hunit template-haskell temporary text time unordered-containers yaml ]; @@ -26676,16 +26841,16 @@ self: { "amazonka-waf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-waf"; - version = "1.3.6"; - sha256 = "4f85cd6ee461dc45353e8525197f94c4d08ce0db3e0d1760a2a90bceb29f3725"; + version = "1.3.7"; + sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WAF SDK"; @@ -26708,16 +26873,16 @@ self: { "amazonka-workspaces" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-workspaces"; - version = "1.3.6"; - sha256 = "108f85466e085f1b1576111f66a881967918f7f431710f819e20124216b78ff5"; + version = "1.3.7"; + sha256 = "52a3bc3c4a2f0f461042dfc54f8fc5f51e51ac62c8477acf4aa1e4ecc368b9c9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; @@ -27671,8 +27836,8 @@ self: { pname = "apiary-authenticate"; version = "1.4.0"; sha256 = "40dbdb0d6799ba7091ae9b72929c7d62a74dd251b5a6e01f8979314d75dbd107"; - revision = "2"; - editedCabalFile = "bc95b4d109ba8dabede930aadcce9540b3376f4679ac96a91b6af0cd0c5ced9e"; + revision = "3"; + editedCabalFile = "923708ce64b096b916e3e1e830c6ffc13dcdd289524d1580f2206f0e4ce4554b"; libraryHaskellDepends = [ apiary apiary-session authenticate base blaze-builder bytestring cereal data-default-class http-client http-client-tls http-types @@ -27692,8 +27857,8 @@ self: { pname = "apiary-clientsession"; version = "1.4.0"; sha256 = "a6bba1337d2ee7ded7303f2801b09b9d93cdafb93f5115328c797bef3e6126fd"; - revision = "1"; - editedCabalFile = "ac724d51a8bd867838bccb788a0db76f97cfe19b052d1247e38ba001561e4bfd"; + revision = "2"; + editedCabalFile = "b3780175a0912ef55de02d916822dbe38b98acec5705a63f808517cda16ab90c"; libraryHaskellDepends = [ apiary apiary-cookie apiary-session base bytestring cereal clientsession data-default-class time unix-compat vault @@ -28508,6 +28673,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -29446,7 +29612,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "asn1-types" = callPackage + "asn1-types_0_3_1" = callPackage ({ mkDerivation, base, bytestring, hourglass, memory }: mkDerivation { pname = "asn1-types"; @@ -29456,6 +29622,19 @@ self: { homepage = "http://github.com/vincenthz/hs-asn1-types"; description = "ASN.1 types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "asn1-types" = callPackage + ({ mkDerivation, base, bytestring, hourglass, memory }: + mkDerivation { + pname = "asn1-types"; + version = "0.3.2"; + sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; + libraryHaskellDepends = [ base bytestring hourglass memory ]; + homepage = "http://github.com/vincenthz/hs-asn1-types"; + description = "ASN.1 types"; + license = stdenv.lib.licenses.bsd3; }) {}; "asn1dump" = callPackage @@ -30086,8 +30265,8 @@ self: { }: mkDerivation { pname = "atto-lisp"; - version = "0.2.2.1"; - sha256 = "d7027a3dc085155a52bd215ed1dc00b36218f8439f9ebd2caf5eca77aa3c0189"; + version = "0.2.2.2"; + sha256 = "24bacde886e3ee8adf50cb33f34b935a254cdd415bebd7c81ac75b8dfb0a0066"; libraryHaskellDepends = [ attoparsec base blaze-builder blaze-textual bytestring containers deepseq text @@ -30096,7 +30275,6 @@ self: { attoparsec base bytestring HUnit test-framework test-framework-hunit text ]; - jailbreak = true; homepage = "http://github.com/nominolo/atto-lisp"; description = "Efficient parsing and serialisation of S-Expressions"; license = stdenv.lib.licenses.bsd3; @@ -32611,7 +32789,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude" = callPackage + "base-prelude_0_1_19" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; @@ -32622,19 +32800,20 @@ self: { homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude_0_1_20" = callPackage + "base-prelude" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; version = "0.1.20"; sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8"; libraryHaskellDepends = [ base ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-unicode-symbols" = callPackage @@ -33843,15 +34022,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "binary_0_7_6_1" = callPackage + "binary_0_8_0_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.7.6.1"; - sha256 = "8f85cafc15be660757878a665d024ce595d4422fead174e20a501c9ec8f81067"; + version = "0.8.0.0"; + sha256 = "a446ed06e0b3011716b09d129f25c8bab9bda60a5783bab1e778e7ffa30c7d8f"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -33944,8 +34123,8 @@ self: { }: mkDerivation { pname = "binary-file"; - version = "0.15.24"; - sha256 = "f1dc3f43c41fe4f16e032b49130a4db93ba3a2a1bda4db6e4172522ef18b918c"; + version = "0.15.25"; + sha256 = "3f22fd8d60909e1f3f26e741ca5fa6126fa4de6427f5d3f7ce4c6fe3437ef6d0"; libraryHaskellDepends = [ base bytestring monads-tf peggy template-haskell ]; @@ -34319,8 +34498,8 @@ self: { }: mkDerivation { pname = "binary-typed"; - version = "0.3"; - sha256 = "fe9be6ab6e6c01434eb71233d5c0a958ec9f59eda39c2989d6178922337bdf8b"; + version = "1.0"; + sha256 = "85f3708802c52bca66bc5fdc560704cedd1cc63e313fcaab7638196ff7d05609"; libraryHaskellDepends = [ base binary bytestring murmur-hash ]; testHaskellDepends = [ base binary bytestring tasty tasty-hunit tasty-quickcheck @@ -34488,6 +34667,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; @@ -35488,16 +35668,13 @@ self: { }) {}; "bit-array" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, loch-th - , numeric-qq, placeholders - }: + ({ mkDerivation, base, directory, doctest, filepath, numeric-qq }: mkDerivation { pname = "bit-array"; - version = "0.1.0.1"; - sha256 = "b5a9b1bbc449b4b189e8485a1220364e7f7ff113d9c265ca4b5a7c287f1a25e3"; - libraryHaskellDepends = [ base loch-th numeric-qq placeholders ]; + version = "0.1.1"; + sha256 = "0c3ce1c19f6830a083b39590a8e9015b1fb430f4fb97dc5349c21c03eec72c14"; + libraryHaskellDepends = [ base numeric-qq ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/bit-array"; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = stdenv.lib.licenses.mit; @@ -36396,6 +36573,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast HTML combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36419,6 +36597,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast HTML combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36596,6 +36775,7 @@ self: { base blaze-builder bytestring containers HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast markup combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36906,35 +37086,6 @@ self: { }) {}; "bloodhound" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers - , data-default-class, directory, doctest, doctest-prop, exceptions - , filepath, hspec, http-client, http-types, mtl, mtl-compat - , QuickCheck, quickcheck-properties, semigroups, text, time - , transformers, unordered-containers, uri-bytestring, vector - }: - mkDerivation { - pname = "bloodhound"; - version = "0.8.0.0"; - sha256 = "19d47c1699fe0ad2ebe9a5b70ea3460c00209162d9650fe0056623c71c1c9436"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring containers data-default-class - exceptions http-client http-types mtl mtl-compat semigroups text - time transformers unordered-containers uri-bytestring vector - ]; - testHaskellDepends = [ - aeson base bytestring containers directory doctest doctest-prop - filepath hspec http-client http-types mtl QuickCheck - quickcheck-properties semigroups text time unordered-containers - vector - ]; - jailbreak = true; - doCheck = false; - homepage = "https://github.com/bitemyapp/bloodhound"; - description = "ElasticSearch client library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "bloodhound_0_10_0_0" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers , data-default-class, derive, directory, doctest, doctest-prop , errors, exceptions, filepath, hashable, hspec, http-client @@ -36959,10 +37110,10 @@ self: { unordered-containers vector ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -37181,6 +37332,7 @@ self: { monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; @@ -37205,6 +37357,7 @@ self: { version = "0.1.0.0"; sha256 = "774f3f3313a8909505834e647b744fa53178b6a4eee5cf55b5207da5e6d7217b"; libraryHaskellDepends = [ base bytestring HUnit ]; + jailbreak = true; homepage = "http://xy30.com"; description = "convert numbers to binary coded lists"; license = stdenv.lib.licenses.gpl3; @@ -37283,8 +37436,8 @@ self: { ({ mkDerivation, base, mtl, template-haskell, text }: mkDerivation { pname = "boomerang"; - version = "1.4.5"; - sha256 = "d8cc905e2bba12cf82677ebafad83a147b9ab21753fecf8bc0bb45f1bc562a0e"; + version = "1.4.5.1"; + sha256 = "24381764277d0454185ea4f6862d3a7d84efd7a46f9f524f821b4052b08a46bc"; libraryHaskellDepends = [ base mtl template-haskell text ]; description = "Library for invertible parsing and printing"; license = stdenv.lib.licenses.bsd3; @@ -37430,7 +37583,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bound" = callPackage + "bound_1_0_6" = callPackage ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad , directory, doctest, filepath, hashable, hashable-extras , prelude-extras, profunctors, transformers, vector @@ -37451,6 +37604,32 @@ self: { homepage = "http://github.com/ekmett/bound/"; description = "Making de Bruijn Succ Less"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bound" = callPackage + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad + , directory, doctest, filepath, hashable, hashable-extras + , prelude-extras, profunctors, template-haskell, transformers + , vector + }: + mkDerivation { + pname = "bound"; + version = "1.0.7"; + sha256 = "ad0388ade83ca0b3cf02b182e663f553a83b3a8116ada8f39543318bf516340e"; + libraryHaskellDepends = [ + base bifunctors binary bytes cereal comonad hashable + hashable-extras prelude-extras profunctors template-haskell + transformers + ]; + testHaskellDepends = [ + base directory doctest filepath prelude-extras transformers vector + ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/ekmett/bound/"; + description = "Making de Bruijn Succ Less"; + license = stdenv.lib.licenses.bsd3; }) {}; "bound-gen" = callPackage @@ -37643,8 +37822,8 @@ self: { }: mkDerivation { pname = "brick"; - version = "0.3"; - sha256 = "86d37000d642b0a7bca0c820f7860fefc6a9383044149253e17a88ee4c69d491"; + version = "0.3.1"; + sha256 = "0e97e82a8dc3b9eba8f11cdf69818b6a919dbe6e8c7710b55483c3908ecfc7a9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37929,7 +38108,7 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "buffer-builder" = callPackage + "buffer-builder_0_2_4_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HUnit, mtl, quickcheck-instances, tasty, tasty-hunit , tasty-quickcheck, tasty-th, text, unordered-containers, vector @@ -37949,10 +38128,10 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "buffer-builder_0_2_4_1" = callPackage + "buffer-builder" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HTF, mtl, quickcheck-instances, text , unordered-containers, vector @@ -37971,7 +38150,7 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "buffer-builder-aeson" = callPackage @@ -38523,8 +38702,8 @@ self: { ({ mkDerivation, base, bytestring, cryptohash, QuickCheck }: mkDerivation { pname = "bytestring-arbitrary"; - version = "0.0.4"; - sha256 = "005fca02b5917a5f844db8cc5fdd603073e5e6c1fefaad5568a87df414e15abb"; + version = "0.1.0"; + sha256 = "248378d6a7b75e8b9cbadcb3793ddcb17bd1ef7b36ffce02dc99ff11ef49c92b"; libraryHaskellDepends = [ base bytestring cryptohash QuickCheck ]; testHaskellDepends = [ base bytestring cryptohash QuickCheck ]; homepage = "https://github.com/tsuraan/bytestring-arbitrary"; @@ -38713,6 +38892,7 @@ self: { base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://hub.darcs.net/ganesh/bytestring-handle"; description = "ByteString-backed Handles"; license = stdenv.lib.licenses.bsd3; @@ -39360,6 +39540,7 @@ self: { base Cabal containers debian Diff filepath hsemail HUnit lens pretty process text ]; + jailbreak = true; homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; @@ -39367,34 +39548,32 @@ self: { }) {}; "cabal-debian" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bifunctors, bytestring - , bzlib, Cabal, containers, data-default, deepseq, Diff, directory - , exceptions, filepath, HaXml, hsemail, HUnit, lens, ListLike - , memoize, mtl, network, network-uri, newtype-generics, old-locale - , optparse-applicative, parsec, pretty, process, process-extras - , pureMD5, regex-compat, regex-tdfa, set-extra, syb - , template-haskell, text, time, unix, Unixutils, utf8-string, zlib + ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal + , containers, data-default, debian, deepseq, Diff, directory + , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl + , network-uri, newtype-generics, optparse-applicative, parsec + , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix + , Unixutils, utf8-string }: mkDerivation { pname = "cabal-debian"; - version = "4.31.7"; - sha256 = "5e8aceb412a84b874af9c525bc328f33c08309930ac65cdbb143b5c15ad4f673"; + version = "4.31.9"; + sha256 = "e046eb64364023dc0e8c786c06b76e47f845c7be212403937d790ab1716f88e9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ansi-wl-pprint base bifunctors bytestring bzlib Cabal containers - data-default deepseq Diff directory exceptions filepath HaXml - hsemail HUnit lens ListLike memoize mtl network network-uri - newtype-generics old-locale optparse-applicative parsec pretty - process process-extras pureMD5 regex-compat regex-tdfa set-extra - syb template-haskell text time unix Unixutils utf8-string zlib + ansi-wl-pprint base bifunctors Cabal containers data-default debian + deepseq Diff directory exceptions filepath hsemail HUnit lens + memoize mtl network-uri newtype-generics optparse-applicative + parsec pretty process pureMD5 regex-tdfa set-extra syb text unix + Unixutils utf8-string ]; executableHaskellDepends = [ - base Cabal lens mtl pretty Unixutils + base Cabal debian lens mtl pretty Unixutils ]; testHaskellDepends = [ - base Cabal containers Diff directory filepath hsemail HUnit lens - pretty process text + base Cabal containers debian Diff directory filepath hsemail HUnit + lens pretty process text ]; doCheck = false; homepage = "https://github.com/ddssff/cabal-debian"; @@ -41509,6 +41688,7 @@ self: { testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; @@ -41527,6 +41707,7 @@ self: { testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; @@ -41969,6 +42150,7 @@ self: { base containers optparse-applicative shelly system-fileio system-filepath text ]; + jailbreak = true; homepage = "https://github.com/erochest/castle"; description = "A tool to manage shared cabal-install sandboxes"; license = stdenv.lib.licenses.asl20; @@ -42307,7 +42489,6 @@ self: { base cmdargs ekg ekg-core hslogger pretty-show ]; testHaskellDepends = [ base ]; - jailbreak = true; homepage = "http://github.com/yogsototh/cerberus#readme"; description = "Protect and control API access with cerberus"; license = stdenv.lib.licenses.bsd3; @@ -43157,6 +43338,7 @@ self: { version = "0.2.1"; sha256 = "00f423ea3ef78f24ba2d9077db267fa9d30e47fa1b80ebafcaf2d5879214d400"; libraryHaskellDepends = [ base chell HUnit ]; + jailbreak = true; homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; @@ -43883,6 +44065,7 @@ self: { lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit tasty-th transformers-compat ]; + jailbreak = true; homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; @@ -44122,8 +44305,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.6"; - sha256 = "a01193e7552866b839ddc6d368f4cb0b04c2ba5eed2a92217cad23024bdf5718"; + version = "0.6.7"; + sha256 = "08eb23a3986af41ede3dca432e3f4ac0d80d0ae5cfc6af6115e8943447264a52"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44239,8 +44422,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.6"; - sha256 = "a40e5cc300a84e61b7ed47a104914715e77795b18bd97f9489ddbca8efc92cd5"; + version = "0.6.7"; + sha256 = "26dd3e636ac6ea644d30d7bd583c57e80ed5c99f2a7d145852b3234df25a2ccf"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -45324,6 +45507,8 @@ self: { testHaskellDepends = [ base HUnit mtl test-framework test-framework-hunit text ]; + jailbreak = true; + doCheck = false; homepage = "http://fvisser.nl/clay"; description = "CSS preprocessor as embedded Haskell"; license = stdenv.lib.licenses.bsd3; @@ -45343,8 +45528,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.23.12"; - sha256 = "89515b6706f548b4af30b07111864e0e917de86d39e6d53ceb2ff1c431d8341d"; + version = "0.23.13"; + sha256 = "b663a9495d434e62b02965009fefdd8cef6ec64fbccb3894efb662a58779e3a2"; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring cereal containers directory filepath happstack-authenticate @@ -45487,8 +45672,8 @@ self: { }: mkDerivation { pname = "clckwrks-plugin-page"; - version = "0.4.2"; - sha256 = "b082b6bb6ae8ca730a5f72d246c1af7ac3c3fcf3b51787731c3519854d1d49a0"; + version = "0.4.3"; + sha256 = "6c3ccbdbcdd5034223577e29a8e0791d8e3c262ed1a117f8f865ca2cbdbf9fea"; libraryHaskellDepends = [ acid-state aeson attoparsec base clckwrks containers directory filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl @@ -45843,8 +46028,8 @@ self: { ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; - version = "0.5.2"; - sha256 = "6c9a2276b5e76f2ea4c0bc2410d68549782dcc38f56964a49245c1070896d0d7"; + version = "0.6.0.1"; + sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; doCheck = false; @@ -45853,20 +46038,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "clock_0_6_0_1" = callPackage - ({ mkDerivation, base, tasty, tasty-quickcheck }: - mkDerivation { - pname = "clock"; - version = "0.6.0.1"; - sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base tasty tasty-quickcheck ]; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "clocked" = callPackage ({ mkDerivation, base, clock, containers, MonadCatchIO-transformers , QtCore, transformers @@ -46130,6 +46301,7 @@ self: { sha256 = "638328b59c2bb8bdcd0f3042c4554f2b2b7c6deac7770dbc8bc2813c865a35ce"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; + jailbreak = true; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; @@ -46669,7 +46841,6 @@ self: { random scientific tasty tasty-hunit tasty-quickcheck tasty-th time transformers unordered-containers uuid websockets ]; - jailbreak = true; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -48050,6 +48221,7 @@ self: { unbounded-delays ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; @@ -48092,6 +48264,7 @@ self: { testHaskellDepends = [ base machines tasty tasty-hunit time transformers ]; + jailbreak = true; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -48102,8 +48275,8 @@ self: { }: mkDerivation { pname = "concurrent-output"; - version = "1.7.1"; - sha256 = "3aead087a1db0b762b13bf62e11f01673d0a8b4f9d3e489fa18dd7fb5fa2098d"; + version = "1.7.2"; + sha256 = "a69a41502e640eb6afc87e8420001dadbbe22cd18580792995f73d2029c30169"; libraryHaskellDepends = [ ansi-terminal async base directory exceptions process stm terminal-size text transformers unix @@ -49152,20 +49325,20 @@ self: { "configifier" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring , case-insensitive, containers, directory, either, functor-infix - , hspec, hspec-discover, mtl, pretty-show, QuickCheck, regex-easy - , safe, scientific, string-conversions, template-haskell, text + , hspec, hspec-discover, mtl, pretty-show, QuickCheck, safe + , scientific, string-conversions, template-haskell, text , unordered-containers, vector, yaml }: mkDerivation { pname = "configifier"; - version = "0.0.7"; - sha256 = "207b6a5c670b44c0a7814ff7ab2054507df84d8b8ad8418c3fe312d7d1db1e30"; + version = "0.0.8"; + sha256 = "7f56ae97d2d614c26b634ccbd1951b0c958eca20b20401d210027e2f1627cd9b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring case-insensitive containers directory either - functor-infix mtl regex-easy safe string-conversions - template-haskell unordered-containers vector yaml + functor-infix mtl safe string-conversions template-haskell + unordered-containers vector yaml ]; executableHaskellDepends = [ base bytestring mtl pretty-show string-conversions text yaml @@ -49718,15 +49891,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "containers_0_5_7_0" = callPackage + "containers_0_5_7_1" = callPackage ({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "containers"; - version = "0.5.7.0"; - sha256 = "f293f840d99c285630d7524d5c92da58f59921c26e1592a7f0600cda062a30f9"; + version = "0.5.7.1"; + sha256 = "73856c3307e2ea26c33474309af4dcdfb80e7644e9a82ef4146c742a6e400f79"; libraryHaskellDepends = [ array base deepseq ghc-prim ]; testHaskellDepends = [ array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck @@ -50228,8 +50401,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "control-monad-queue"; - version = "0.2"; - sha256 = "7a237615aa78cbe050803e53983027e8d60b688aadc948641150a8b089f05e97"; + version = "0.2.0.1"; + sha256 = "d428f7e761024716118605107b8f2f4b9d721f1163bd36865b969f3892f6d1b5"; libraryHaskellDepends = [ base ]; description = "Reusable corecursive queues, via continuations"; license = stdenv.lib.licenses.bsd3; @@ -50970,6 +51143,7 @@ self: { libraryHaskellDepends = [ aeson base shakespeare text ]; executableHaskellDepends = [ base tagsoup text ]; testHaskellDepends = [ aeson base HTF HUnit ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/country-codes"; description = "ISO 3166 country codes and i18n names"; license = stdenv.lib.licenses.bsd3; @@ -51607,7 +51781,6 @@ self: { base bytestring containers cqrs-core deepseq hspec HUnit io-streams lifted-base random transformers uuid-types ]; - jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; }) {}; @@ -52254,7 +52427,6 @@ self: { editedCabalFile = "4cc74c0744e15e1149d7419e47232db6f0bf53a56360f35d71665b180c2f2a53"; libraryHaskellDepends = [ base containers MissingH mtl split ]; testHaskellDepends = [ base HUnit QuickCheck ]; - jailbreak = true; homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; @@ -54536,9 +54708,11 @@ self: { pname = "data-extend-generic"; version = "0.1.0.0"; sha256 = "b5cf36c5ccf72a400bc8dca3a983c3a4b65a7788fbd07eca93e5b23dca27f1bd"; + revision = "2"; + editedCabalFile = "6d1bf0f2f19daf06b81fe4108a37bf889c9b96905920d3aa04846f0b5d05b6b3"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec ]; - homepage = "http://github.com/githubuser/data-extend-generic#readme"; + homepage = "http://github.com/ylilarry/data-extend-generic"; description = "Extend Haskell data or newtype like in OOP languages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -55371,6 +55545,7 @@ self: { aeson auto-update base buffer-builder bytestring lens lifted-base monad-control network old-locale text time transformers-base ]; + jailbreak = true; homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; @@ -56344,15 +56519,14 @@ self: { }: mkDerivation { pname = "deepcontrol"; - version = "0.5.4.2"; - sha256 = "4855fec3f9ecd9d5ac44ad2750b502bc6fdf578ebdfc2ac526b1f87168ae5502"; + version = "0.5.4.3"; + sha256 = "2e943a13531120a5c3df908c849d0697c22ef82e6dc4bf102f6fe39e9faa0e35"; libraryHaskellDepends = [ base mmorph mtl transformers ]; testHaskellDepends = [ base containers doctest HUnit mtl QuickCheck safe transformers ]; - jailbreak = true; homepage = "https://github.com/ocean0yohsuke/deepcontrol"; - description = "A library that provides deep-level programming style or notation on Applicative and Monad"; + description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56409,6 +56583,7 @@ self: { testHaskellDepends = [ array base HUnit test-framework test-framework-hunit ]; + jailbreak = true; description = "Deep evaluation of data structures"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -56686,7 +56861,6 @@ self: { atomic-primops base containers deepseq exceptions monad-loops mtl random stm transformers ]; - doHaddock = false; homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; @@ -56884,18 +57058,6 @@ self: { }) {}; "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.0.1"; - sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; - libraryHaskellDepends = [ base containers dependent-sum ]; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - }) {}; - - "dependent-map_0_2_1_0" = callPackage ({ mkDerivation, base, containers, dependent-sum }: mkDerivation { pname = "dependent-map"; @@ -56905,7 +57067,6 @@ self: { homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -57852,6 +58013,7 @@ self: { optparse-applicative pango split statestack transformers unix vector ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58111,6 +58273,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58139,6 +58302,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58265,6 +58429,7 @@ self: { adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58547,6 +58712,7 @@ self: { diagrams-lib lens mtl NumInstances optparse-applicative split statestack static-canvas text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58856,6 +59022,7 @@ self: { filepath hashable lens monoid-extras mtl semigroups split statestack ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58979,6 +59146,7 @@ self: { diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl optparse-applicative Rasterific split unix ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; @@ -59143,6 +59311,7 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -59166,13 +59335,14 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg" = callPackage + "diagrams-svg_1_3_1_7" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -59189,12 +59359,14 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg_1_3_1_9" = callPackage + "diagrams-svg" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -59214,7 +59386,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-tikz" = callPackage @@ -59233,6 +59404,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "dialog" = callPackage + ({ mkDerivation, base, bytestring, filepath, glib, gtk3 + , open-browser, text, transformers, webkitgtk3 + }: + mkDerivation { + pname = "dialog"; + version = "0.3.0.0"; + sha256 = "e47fd86b383a2a7c710219873c916a63cd873ab4b7b67fb204a099f511691ad2"; + libraryHaskellDepends = [ + base bytestring filepath glib gtk3 open-browser text transformers + webkitgtk3 + ]; + homepage = "https://gitlab.com/lamefun/dialog"; + description = "Simple dialog-based user interfaces"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dice" = callPackage ({ mkDerivation, base, parsec, random-fu, transformers }: mkDerivation { @@ -59592,6 +59780,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "A practical formlet library"; license = stdenv.lib.licenses.bsd3; @@ -59855,13 +60044,13 @@ self: { }: mkDerivation { pname = "dimensional"; - version = "1.0.1.0"; - sha256 = "42d32f6691c2c52a3e12ec3dbed7bd90e18137e67c46f97c2336101bd99a8a6d"; + version = "1.0.1.1"; + sha256 = "d876eea43341b597959e3244673817dcb23c350c06549158e04a6c632243692e"; libraryHaskellDepends = [ base deepseq exact-pi numtype-dk vector ]; testHaskellDepends = [ base HUnit ]; - homepage = "https://github.com/bjornbm/dimensional-dk/"; + homepage = "https://github.com/bjornbm/dimensional/"; description = "Statically checked physical dimensions, using Type Families and Data Kinds"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60642,7 +60831,6 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -60713,7 +60901,6 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -60777,7 +60964,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; @@ -61014,7 +61200,6 @@ self: { rematch stm test-framework test-framework-hunit time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -61087,7 +61272,6 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -61111,6 +61295,7 @@ self: { testHaskellDepends = [ base network network-transport network-transport-tcp test-framework ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; @@ -61988,6 +62173,7 @@ self: { testHaskellDepends = [ base base-compat hspec parsec parseerror-eq ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; @@ -62402,14 +62588,15 @@ self: { }) {}; "drawille" = callPackage - ({ mkDerivation, base, containers }: + ({ mkDerivation, base, containers, hspec, QuickCheck }: mkDerivation { pname = "drawille"; - version = "0.1.0.5"; - sha256 = "b9b57fa2e8c526610075583215bf7a896d0ce0c9157c72356cea481c72f0f523"; + version = "0.1.0.6"; + sha256 = "3282ca7d783580f95349ffd85b6f668f57a354aad74a84c37406fc8ef2636c09"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; homepage = "https://github.com/yamadapc/haskell-drawille"; description = "A port of asciimoo's drawille to haskell"; license = stdenv.lib.licenses.gpl3; @@ -62768,6 +62955,7 @@ self: { version = "0.2.0.7"; sha256 = "2b7e99ead18f1b42968c29717ed83b8a342aec1ab96030909de7e2071fb8df36"; libraryHaskellDepends = [ base monoid-extras newtype semigroups ]; + jailbreak = true; description = "Rose trees with cached and accumulating monoidal annotations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -63674,6 +63862,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "edis" = callPackage + ({ mkDerivation, base, bytestring, cereal, hedis }: + mkDerivation { + pname = "edis"; + version = "0.0.1.0"; + sha256 = "b21590a3ce7cc3314e9cf4b5bfba0f4997f050fe2087ab4b1852554914b6f6af"; + libraryHaskellDepends = [ base bytestring cereal hedis ]; + description = "Statically typechecked client for Redis"; + license = stdenv.lib.licenses.mit; + }) {}; + "edit-distance_0_2_1_2" = callPackage ({ mkDerivation, array, base, containers, random }: mkDerivation { @@ -65208,6 +65407,7 @@ self: { free monad-loops mwc-random stm stm-delay text transformers unordered-containers vector websockets ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; @@ -65248,6 +65448,7 @@ self: { pipes-attoparsec pipes-wai socket-io text transformers unordered-containers wai wai-websockets websockets ]; + jailbreak = true; homepage = "http://github.com/iand675/growler"; license = stdenv.lib.licenses.mit; }) {}; @@ -66698,6 +66899,7 @@ self: { libraryHaskellDepends = [ base containers semigroups transformers ]; + jailbreak = true; description = "Monoidal, monadic and first-class events"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -66817,8 +67019,8 @@ self: { }: mkDerivation { pname = "eventstore"; - version = "0.9.1.2"; - sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; + version = "0.9.1.3"; + sha256 = "b69dd264dfc8ed432b9ce22d99e19a99eaface579150fadc8593ffa3dc1b856c"; libraryHaskellDepends = [ aeson async attoparsec base bytestring cereal containers network protobuf random stm text time unordered-containers uuid @@ -67023,6 +67225,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; @@ -67044,6 +67247,7 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; + jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -67230,7 +67434,6 @@ self: { http-types optparse-applicative pcre-light ]; testHaskellDepends = [ base doctest ]; - jailbreak = true; description = "Exheres generator for cabal packages"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -67703,6 +67906,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th void ]; + jailbreak = true; homepage = "https://github.com/suhailshergill/extensible-effects"; description = "An Alternative to Monad Transformers"; license = stdenv.lib.licenses.mit; @@ -68005,6 +68209,19 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "fake-type" = callPackage + ({ mkDerivation, base, base-prelude, libXtst, split, X11 }: + mkDerivation { + pname = "fake-type"; + version = "0.2.0.0"; + sha256 = "3ce6a7298e92c836272d71fb9f604cb37d2c90a2394720c6b67c1b6f21063c54"; + libraryHaskellDepends = [ base base-prelude split X11 ]; + librarySystemDepends = [ libXtst ]; + homepage = "http://github.com/aelve/fake-type"; + description = "A crossplatform library to simulate keyboard input"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs.xorg) libXtst;}; + "faker" = callPackage ({ mkDerivation, base, gimlh, random, split }: mkDerivation { @@ -69154,6 +69371,7 @@ self: { testHaskellDepends = [ base HUnit mtl template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/sebastiaanvisser/fclabels"; description = "First class accessor labels implemented as lenses"; license = stdenv.lib.licenses.bsd3; @@ -69285,6 +69503,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -69306,6 +69525,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -70331,6 +70551,7 @@ self: { testHaskellDepends = [ base Diff directory filepath HUnit mtl time ]; + jailbreak = true; description = "Interface for versioning file stores"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -71061,6 +71282,7 @@ self: { executableHaskellDepends = [ base binary deepseq HTTP optparse-applicative process ]; + jailbreak = true; homepage = "http://noaxiom.org/flAccurateRip"; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = stdenv.lib.licenses.gpl3; @@ -71399,6 +71621,7 @@ self: { lens lens-action mtl network pipes pipes-aeson pipes-http pipes-parse template-haskell text unordered-containers uuid ]; + jailbreak = true; homepage = "https://github.com/brewtown/hs-flowdock"; description = "Flowdock client library for Haskell"; license = stdenv.lib.licenses.mit; @@ -71910,7 +72133,6 @@ self: { base doctest foldl free monoid-subclasses split tasty tasty-hunit tasty-quickcheck text ]; - jailbreak = true; description = "Transducers for foldl folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -73420,6 +73642,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "frontmatter" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hspec, QuickCheck + , text, yaml + }: + mkDerivation { + pname = "frontmatter"; + version = "0.1.0.2"; + sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; + libraryHaskellDepends = [ attoparsec base bytestring yaml ]; + testHaskellDepends = [ + attoparsec base bytestring hspec QuickCheck text yaml + ]; + homepage = "https://github.com/yamadapc/haskell-frontmatter"; + description = "Parses frontmatter as used in Jekyll markdown files"; + license = stdenv.lib.licenses.mit; + }) {}; + "frp-arduino" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { @@ -73777,6 +74016,7 @@ self: { testHaskellDepends = [ base HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; @@ -74723,8 +74963,8 @@ self: { }: mkDerivation { pname = "generic-accessors"; - version = "0.5.0.0"; - sha256 = "7a9098afd6db14a5f75ef250cac5cb770eb4b10c9ed13bbdf029892d244ddf3b"; + version = "0.5.1.0"; + sha256 = "547a5b0ba3fac1e2d5f7de7f7248aef2b128b24714f4c0908b5191ebe5d39442"; libraryHaskellDepends = [ base lens linear spatial-math ]; testHaskellDepends = [ base HUnit QuickCheck test-framework test-framework-hunit @@ -76402,13 +76642,12 @@ self: { }: mkDerivation { pname = "ghc-vis"; - version = "0.7.2.8"; - sha256 = "0aea23534eb95bc39ad2f2e017aa978df0a6aea105c314bca2030ac5daf9187d"; + version = "0.7.2.9"; + sha256 = "e0ea3da85c0e32b446f682114de92df548fc230c24a33683c339f110632043ae"; libraryHaskellDepends = [ base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; - jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -77198,6 +77437,7 @@ self: { gitlib gitlib-libgit2 scientific shake split tagged text unordered-containers vector yaml ]; + jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -77355,8 +77595,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20151208"; - sha256 = "1513ecf944a174c7b0e7a68ec6722544c8b85c74d8ff89fc8d9ea8c177c4fce9"; + version = "5.20151218"; + sha256 = "d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -77866,6 +78106,7 @@ self: { base bytestring directory filepath hslogger HTTP mtl network network-uri syb url utf8-string ]; + jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -78250,6 +78491,22 @@ self: { license = "unknown"; }) {}; + "gitter" = callPackage + ({ mkDerivation, aeson, base, bytestring, exceptions, lens + , lens-aeson, mtl, text, wreq + }: + mkDerivation { + pname = "gitter"; + version = "0.0.0.1"; + sha256 = "cc755243b8be4a235aaf8ed3dc4aa6d1b5dcecf602c3457131ac96e6bd665a97"; + libraryHaskellDepends = [ + aeson base bytestring exceptions lens lens-aeson mtl text wreq + ]; + jailbreak = true; + description = "Gitter.im API client"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "gl_0_6_1" = callPackage ({ mkDerivation, base, containers, directory, filepath, fixed, half , hxt, mesa, split, transformers @@ -79311,6 +79568,7 @@ self: { base containers mtl parsec template-haskell ]; testHaskellDepends = [ base containers HUnit mtl parsec ]; + jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - library"; license = stdenv.lib.licenses.agpl3; @@ -81644,7 +81902,6 @@ self: { version = "0.1.2"; sha256 = "0e820122cad388f31c3ef0815d7ff93b9e95a8fdec0d6c560c379fe0ecfdb010"; libraryHaskellDepends = [ base haskell-src-exts ]; - doHaddock = false; description = "Pretty printing for well-behaved Show instances"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -83082,6 +83339,7 @@ self: { base bindings-gpgme bytestring either HUnit QuickCheck tasty tasty-hunit tasty-quickcheck time transformers unix ]; + jailbreak = true; homepage = "https://github.com/rethab/h-gpgme"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -84334,6 +84592,7 @@ self: { base bytestring Cabal directory filepath hackage-security network network-uri optparse-applicative tar time unix zlib ]; + jailbreak = true; homepage = "http://github.com/well-typed/hackage-security/"; description = "Utility to manage secure file-based package repositories"; license = stdenv.lib.licenses.bsd3; @@ -84436,6 +84695,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hackage-whatsnew" = callPackage + ({ mkDerivation, base, Cabal, containers, directory, filepath + , hackage-db, process, temporary + }: + mkDerivation { + pname = "hackage-whatsnew"; + version = "0.1.0.0"; + sha256 = "88346334b73b22ffe551ea4c109645c9dad31929502afb8f81a33a58a9298f20"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal containers directory filepath hackage-db process + temporary + ]; + description = "Check for differences between working directory and hackage"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hackage2hwn" = callPackage ({ mkDerivation, base, download, feed, tagsoup }: mkDerivation { @@ -84766,6 +85043,7 @@ self: { haddock-api http-types mtl optparse-applicative process resourcet sqlite-simple tagsoup text transformers ]; + jailbreak = true; homepage = "https://github.com/philopon/haddocset"; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = stdenv.lib.licenses.bsd3; @@ -85357,12 +85635,11 @@ self: { "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory - , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache - , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec - , process, QuickCheck, random, regex-base, regex-tdfa, snap-core - , snap-server, system-filepath, tagsoup, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri + , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random + , regex-base, regex-tdfa, snap-core, snap-server, system-filepath + , tagsoup, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, time-locale-compat }: mkDerivation { pname = "hakyll"; @@ -85373,20 +85650,58 @@ self: { libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - http-conduit http-types lrucache mtl network network-uri pandoc - pandoc-citeproc parsec process random regex-base regex-tdfa - snap-core snap-server system-filepath tagsoup text time - time-locale-compat + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process random regex-base regex-tdfa snap-core snap-server + system-filepath tagsoup text time time-locale-compat ]; executableHaskellDepends = [ base directory filepath ]; testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify HUnit + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process QuickCheck random regex-base regex-tdfa snap-core + snap-server system-filepath tagsoup test-framework + test-framework-hunit test-framework-quickcheck2 text time + time-locale-compat + ]; + doCheck = false; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hakyll_4_7_4_0" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri + , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random + , regex-base, regex-tdfa, snap-core, snap-server, system-filepath + , tagsoup, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.4.0"; + sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - http-conduit http-types HUnit lrucache mtl network network-uri - pandoc pandoc-citeproc parsec process QuickCheck random regex-base - regex-tdfa snap-core snap-server system-filepath tagsoup - test-framework test-framework-hunit test-framework-quickcheck2 text - time time-locale-compat + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process random regex-base regex-tdfa snap-core snap-server + system-filepath tagsoup text time time-locale-compat + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify HUnit + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process QuickCheck random regex-base regex-tdfa snap-core + snap-server system-filepath tagsoup test-framework + test-framework-hunit test-framework-quickcheck2 text time + time-locale-compat ]; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; @@ -85407,8 +85722,8 @@ self: { }: mkDerivation { pname = "hakyll"; - version = "4.7.4.0"; - sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + version = "4.7.5.0"; + sha256 = "e3079667f07f6355f9dbc0a10623670b323a6bec1fd632d114f5350023b65eb8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -85902,7 +86217,6 @@ self: { aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo vector-space ]; - jailbreak = true; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; @@ -86028,12 +86342,17 @@ self: { }) {pfq = null;}; "haphviz" = callPackage - ({ mkDerivation, base, mtl, text }: + ({ mkDerivation, base, checkers, hspec, mtl, QuickCheck + , quickcheck-text, text + }: mkDerivation { pname = "haphviz"; - version = "0.1.0.2"; - sha256 = "84ff9cb5d293a237192b472f64c7bb78ef07fa48e3b2ec8a1763ee5d8c66a555"; + version = "0.1.1.5"; + sha256 = "f838c308bd3f82ba0766078e1aac0d6593e0eac63403beb6453c77fee36c7929"; libraryHaskellDepends = [ base mtl text ]; + testHaskellDepends = [ + base checkers hspec QuickCheck quickcheck-text text + ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -86220,8 +86539,8 @@ self: { }: mkDerivation { pname = "happstack-authenticate"; - version = "2.3.1"; - sha256 = "c194c82adb432854b5de13021c6e2a4557944aefd92f2c97d3691a7807109b30"; + version = "2.3.2"; + sha256 = "41ea80ab11653b9face4978a07a25b4609df42bffcc4d48c5e36ac9923884fb1"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang bytestring containers data-default email-validate filepath @@ -86726,8 +87045,8 @@ self: { }: mkDerivation { pname = "happstack-server-tls"; - version = "7.1.6"; - sha256 = "9c9c58d193543a5b3886a90654be7a97d6d53a3a44d25e350d1b3088347fd501"; + version = "7.1.6.1"; + sha256 = "801fa353e8001bd105615713eae6068534d3e6789fac9dc762ed43e17f73a668"; libraryHaskellDepends = [ base bytestring extensible-exceptions happstack-server hslogger HsOpenSSL network sendfile time unix @@ -87061,6 +87380,7 @@ self: { base directory haroonga http-types old-locale optparse-applicative scotty text time transformers wai-extra ]; + jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; @@ -87134,6 +87454,7 @@ self: { libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base numbers ]; testHaskellDepends = [ HUnit ]; + jailbreak = true; homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; @@ -87816,6 +88137,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "haskeline_0_7_2_2" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , terminfo, transformers, unix + }: + mkDerivation { + pname = "haskeline"; + version = "0.7.2.2"; + sha256 = "7655f5850ad013b2e4eee637685029bcce79210180df3a61a88f8626ddde9281"; + configureFlags = [ "-fterminfo" ]; + libraryHaskellDepends = [ + base bytestring containers directory filepath terminfo transformers + unix + ]; + homepage = "http://trac.haskell.org/haskeline"; + description = "A command-line interface for user input, written in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "haskeline-class" = callPackage ({ mkDerivation, base, haskeline, mtl }: mkDerivation { @@ -88272,7 +88612,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-names" = callPackage + "haskell-names_0_5_3" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-lens-light, filemanip, filepath, haskell-packages , haskell-src-exts, hse-cpp, mtl, pretty-show, tagged, tasty @@ -88296,6 +88636,30 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-names" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , data-lens-light, filemanip, filepath, haskell-src-exts, mtl + , pretty-show, tasty, tasty-golden, transformers + , traverse-with-class, uniplate + }: + mkDerivation { + pname = "haskell-names"; + version = "0.6.0"; + sha256 = "8d45dabf15d4073a94f5d634538288dbac6ace1971b673cafc76ea92671bb26a"; + libraryHaskellDepends = [ + aeson base bytestring containers data-lens-light filepath + haskell-src-exts mtl transformers traverse-with-class uniplate + ]; + testHaskellDepends = [ + base containers filemanip filepath haskell-src-exts mtl pretty-show + tasty tasty-golden traverse-with-class + ]; + homepage = "http://documentup.com/haskell-suite/haskell-names"; + description = "Name resolution library for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -90270,7 +90634,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hasql" = callPackage + "hasql_0_7_4" = callPackage ({ mkDerivation, attoparsec, base, base-prelude, either , hasql-backend, hasql-postgres, hspec, list-t, mmorph , monad-control, mtl, mtl-prelude, resource-pool, slave-thread @@ -90294,9 +90658,10 @@ self: { homepage = "https://github.com/nikita-volkov/hasql"; description = "A minimalistic general high level API for relational databases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hasql_0_15_0_2" = callPackage + "hasql" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring , contravariant, contravariant-extras, data-default-class, dlist , either, hashable, hashtables, loch-th, placeholders @@ -90321,11 +90686,10 @@ self: { quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/hasql"; description = "A very efficient PostgreSQL driver and a flexible mapping API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-backend_0_2_1" = callPackage @@ -90450,7 +90814,6 @@ self: { version = "0.1"; sha256 = "be1db9c80ebdaf6f1ef0e75970e28286d435141a515ea6f83742373ffb51e330"; libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-pool"; description = "A pool of connections for Hasql"; license = stdenv.lib.licenses.mit; @@ -90805,7 +91168,6 @@ self: { attoparsec base-prelude bytestring hasql hasql-transaction template-haskell text ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-th"; description = "Template Haskell utilities for Hasql"; license = stdenv.lib.licenses.mit; @@ -90826,7 +91188,6 @@ self: { contravariant-extras either hasql postgresql-error-codes transformers ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-transaction"; description = "A composable abstraction over the retryable transactions for Hasql"; license = stdenv.lib.licenses.mit; @@ -92295,6 +92656,7 @@ self: { aeson aeson-pretty base bytestring directory filepath haskeline time ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/headergen"; description = "Creates a header for a haskell source file"; license = stdenv.lib.licenses.mit; @@ -92421,6 +92783,7 @@ self: { testHaskellDepends = [ base bytestring HUnit mtl test-framework test-framework-hunit time ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; @@ -94654,8 +95017,8 @@ self: { }: mkDerivation { pname = "hindent"; - version = "4.6.0"; - sha256 = "07039aa7729c3138e62c366efe11b148288ae6443539d0e7df61d157d2895d99"; + version = "4.6.1"; + sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94675,34 +95038,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hindent_4_6_1" = callPackage - ({ mkDerivation, base, data-default, descriptive, directory - , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text - , transformers - }: - mkDerivation { - pname = "hindent"; - version = "4.6.1"; - sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base data-default haskell-src-exts monad-loops mtl text - transformers - ]; - executableHaskellDepends = [ - base descriptive directory ghc-prim haskell-src-exts text - ]; - testHaskellDepends = [ - base data-default directory haskell-src-exts hspec monad-loops mtl - text - ]; - homepage = "http://www.github.com/chrisdone/hindent"; - description = "Extensible Haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hinduce-associations-apriori" = callPackage ({ mkDerivation, base, containers, deepseq, hinduce-missingh , parallel, vector @@ -94882,6 +95217,7 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit mtl ]; + jailbreak = true; homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; @@ -94903,6 +95239,8 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit mtl ]; + jailbreak = true; + doCheck = false; homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; @@ -94970,6 +95308,7 @@ self: { unordered-containers utf8-string wai wai-lens webcrank webcrank-wai wreq ]; + jailbreak = true; homepage = "https://github.com/purefn/hipbot"; description = "A library for building HipChat Bots"; license = stdenv.lib.licenses.bsd3; @@ -95514,6 +95853,7 @@ self: { aeson base http-types HUnit test-framework test-framework-hunit text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/seagreen/hjsonpointer"; description = "JSON Pointer library"; license = stdenv.lib.licenses.mit; @@ -96271,7 +96611,7 @@ self: { license = stdenv.lib.licenses.mit; }) {inherit (pkgs) git; inherit (pkgs) openssl;}; - "hlibsass" = callPackage + "hlibsass_0_1_4_0" = callPackage ({ mkDerivation, base, hspec, libsass }: mkDerivation { pname = "hlibsass"; @@ -96283,6 +96623,22 @@ self: { homepage = "https://github.com/jakubfijalkowski/hlibsass"; description = "Low-level bindings to Libsass"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libsass;}; + + "hlibsass" = callPackage + ({ mkDerivation, base, hspec, libsass }: + mkDerivation { + pname = "hlibsass"; + version = "0.1.5.0"; + sha256 = "ce3e9a15d01c1b61d41b03e9b05ecd9b4b9aaf6da7d591086181b74e18d25bb8"; + configureFlags = [ "-fexternallibsass" ]; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ libsass ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/jakubfijalkowski/hlibsass"; + description = "Low-level bindings to Libsass"; + license = stdenv.lib.licenses.mit; }) {inherit (pkgs) libsass;}; "hlint_1_9_13" = callPackage @@ -97457,6 +97813,7 @@ self: { executableHaskellDepends = [ aeson base bytestring http-conduit http-types text ]; + jailbreak = true; homepage = "https://github.com/freizl/hoauth2"; description = "hoauth2"; license = stdenv.lib.licenses.bsd3; @@ -97924,8 +98281,10 @@ self: { pname = "hood"; version = "0.3"; sha256 = "f1962dfb05d01a345335872fa36509999755c71a9381b4941bd04a9cb72b6122"; + revision = "1"; + editedCabalFile = "f9b9df9c7f747b1da4f96477fab00305b5a28132eabc224e76db75b1bae34a64"; libraryHaskellDepends = [ array base FPretty ghc-prim ]; - homepage = "http://www.ittc.ku.edu/csdl/fpg/Hood"; + homepage = "http://ku-fpg.github.io/software/hood"; description = "Debugging by observing in place"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98454,6 +98813,7 @@ self: { base bytestring Cabal containers directory errors filepath hoogle optparse-applicative process temporary transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/hoogle-index"; description = "Easily generate Hoogle indices for installed packages"; license = stdenv.lib.licenses.bsd3; @@ -98471,14 +98831,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hoopl_3_10_2_0" = callPackage + "hoopl_3_10_2_1" = callPackage ({ mkDerivation, base, containers, filepath, mtl, parsec , test-framework, test-framework-hunit }: mkDerivation { pname = "hoopl"; - version = "3.10.2.0"; - sha256 = "6740814c774e51815e8260ae1b4ac8af6ab69f02e112904450f689c4792f1121"; + version = "3.10.2.1"; + sha256 = "7c06a2a9e8871eff74fdbbf2aa0a2201a31a5687f5acf7a5ba8a3611325440b0"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers filepath mtl parsec test-framework @@ -100485,7 +100845,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; - "hsass" = callPackage + "hsass_0_3_0" = callPackage ({ mkDerivation, base, bytestring, data-default-class, filepath , hlibsass, hspec, hspec-discover, monad-loops, temporary , transformers @@ -100504,6 +100864,28 @@ self: { homepage = "https://github.com/jakubfijalkowski/hsass"; description = "Integrating Sass into Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsass" = callPackage + ({ mkDerivation, base, bytestring, data-default-class, filepath + , hlibsass, hspec, hspec-discover, monad-loops, temporary + , transformers + }: + mkDerivation { + pname = "hsass"; + version = "0.4.0"; + sha256 = "512faf0e01e720395699066139379fb2e5e5f456f465c72d58282b75b6ec0f9d"; + libraryHaskellDepends = [ + base bytestring data-default-class filepath hlibsass monad-loops + transformers + ]; + testHaskellDepends = [ + base bytestring data-default-class hspec hspec-discover temporary + ]; + homepage = "https://github.com/jakubfijalkowski/hsass"; + description = "Integrating Sass into Haskell applications"; + license = stdenv.lib.licenses.mit; }) {}; "hsay" = callPackage @@ -101327,7 +101709,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hsebaysdk" = callPackage + "hsebaysdk_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client, http-types , text, time, transformers, unordered-containers }: @@ -101342,6 +101724,24 @@ self: { homepage = "https://github.com/creichert/hsebaysdk"; description = "Haskell eBay SDK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsebaysdk" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client, http-types + , text, time, transformers, unordered-containers + }: + mkDerivation { + pname = "hsebaysdk"; + version = "0.3.0.1"; + sha256 = "52f97122cdaba3c3b8a71691ed87fb3eb6dd93506652a8b11282af696c3f6279"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-types text time transformers + unordered-containers + ]; + homepage = "https://github.com/creichert/hsebaysdk"; + description = "Haskell eBay SDK"; + license = stdenv.lib.licenses.bsd3; }) {}; "hsemail" = callPackage @@ -102451,6 +102851,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102478,6 +102879,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102505,6 +102907,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102532,6 +102935,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102559,6 +102963,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102586,6 +102991,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102889,8 +103295,8 @@ self: { }: mkDerivation { pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.2"; - sha256 = "00c1ac7ceb6bed18c8c2ab7ac35342b024731e3fadf2c6304e549dc42d39ff38"; + version = "0.7.2.3"; + sha256 = "3543bc7ecf28e8a714b255264849d82b6c513828a26a761e0f372bec1b37202f"; libraryHaskellDepends = [ ansi-terminal base Diff haskell-src-exts hindent hscolour HUnit text @@ -103059,6 +103465,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hspec-setup" = callPackage + ({ mkDerivation, base, directory, filepath, process, projectroot }: + mkDerivation { + pname = "hspec-setup"; + version = "0.1.1.0"; + sha256 = "8f1e57656595330917597a66768e752bf66c2ae7acf7c43425222a0e1ce7e12a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base directory filepath process projectroot + ]; + homepage = "https://github.com/yamadapc/haskell-hspec-setup"; + description = "Add an hspec test-suite in one command"; + license = stdenv.lib.licenses.mit; + }) {}; + "hspec-shouldbe" = callPackage ({ mkDerivation, hspec, test-shouldbe }: mkDerivation { @@ -104033,15 +104455,14 @@ self: { }: mkDerivation { pname = "hsx2hs"; - version = "0.13.3.2"; - sha256 = "93057aca59faeb1e33d55d804d89fd42b5175006abf1ca7aa507a6338232f8ee"; + version = "0.13.4"; + sha256 = "9508c59b373474e7954f51be61b5e6a54f0a6241cca2a4ecf1b1ce8f5aae07df"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; - jailbreak = true; homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -106218,7 +106639,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-types" = callPackage + "http-types_0_8_6" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring , case-insensitive, doctest, hspec, QuickCheck , quickcheck-instances, text @@ -106237,9 +106658,10 @@ self: { homepage = "https://github.com/aristidb/http-types"; description = "Generic HTTP types for Haskell (for both client and server code)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-types_0_9" = callPackage + "http-types" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring , case-insensitive, doctest, hspec, QuickCheck , quickcheck-instances, text @@ -106258,7 +106680,6 @@ self: { homepage = "https://github.com/aristidb/http-types"; description = "Generic HTTP types for Haskell (for both client and server code)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-wget" = callPackage @@ -108280,8 +108701,8 @@ self: { }: mkDerivation { pname = "hzulip"; - version = "1.1.1.1"; - sha256 = "a132d3f28c0a5da3d841522a24995d94232a4c044a5ce547786057f2ace4bebf"; + version = "1.1.1.2"; + sha256 = "62402ce2010bf6d9c07ee266ac30c9506383b3a5dcbbd0fba54b30d191ac02d8"; libraryHaskellDepends = [ aeson base bytestring conduit exceptions http-client http-client-tls http-types lens lens-aeson mtl stm stm-conduit text @@ -108292,7 +108713,6 @@ self: { http-client-tls http-types lens lens-aeson mtl raw-strings-qq scotty stm stm-conduit text transformers ]; - jailbreak = true; homepage = "https://github.com/yamadapc/hzulip"; description = "A haskell wrapper for the Zulip API"; license = stdenv.lib.licenses.gpl2; @@ -108749,6 +109169,7 @@ self: { stm tagged tasty template-haskell temporary test-framework test-framework-hunit text unix utf8-string ]; + jailbreak = true; doCheck = false; description = "An IDE backend library"; license = stdenv.lib.licenses.mit; @@ -108866,6 +109287,7 @@ self: { mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -108887,6 +109309,7 @@ self: { monad-logger mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -109104,6 +109527,7 @@ self: { executableHaskellDepends = [ base directory filepath haskeline transformers ]; + jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -110870,6 +111294,7 @@ self: { testHaskellDepends = [ aeson base instant-generics tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-aeson"; description = "Generic Aeson instances through instant-generics"; license = stdenv.lib.licenses.bsd3; @@ -111379,6 +111804,8 @@ self: { pname = "invariant"; version = "0.2.2"; sha256 = "269cfd73bb7064459791b03461c9a73ce182e9d0a6f929f7cd46c0566d747975"; + revision = "1"; + editedCabalFile = "ec713862cc5b8f03e58eeca3596d53cfdfc28a9957afffcff2680a855322f0ee"; libraryHaskellDepends = [ array base bifunctors containers contravariant ghc-prim profunctors semigroups stm tagged template-haskell transformers @@ -111919,6 +112346,7 @@ self: { executableHaskellDepends = [ base filepath mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -112392,6 +112820,7 @@ self: { base heap HUnit iteratee ListLike mtl statistics test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; @@ -112774,7 +113203,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ixset" = callPackage + "ixset_1_0_6" = callPackage ({ mkDerivation, base, containers, safecopy, syb, syb-with-class , template-haskell }: @@ -112788,6 +113217,23 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ixset" = callPackage + ({ mkDerivation, base, containers, safecopy, syb, syb-with-class + , template-haskell + }: + mkDerivation { + pname = "ixset"; + version = "1.0.6.1"; + sha256 = "729a9601ef889f2178a9e857c39efb89c6defcb7e074f9bf9156086bc51327e1"; + libraryHaskellDepends = [ + base containers safecopy syb syb-with-class template-haskell + ]; + homepage = "http://happstack.com"; + description = "Efficient relational queries on Haskell sets"; + license = stdenv.lib.licenses.bsd3; }) {}; "ixset-typed" = callPackage @@ -114414,7 +114860,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-schema" = callPackage + "json-schema_0_7_4_0" = callPackage ({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring , containers, generic-aeson, generic-deriving, mtl, scientific , tasty, tasty-hunit, tasty-th, text, time, unordered-containers @@ -114436,6 +114882,29 @@ self: { ]; description = "Types and type classes for defining JSON schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "json-schema" = callPackage + ({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring + , containers, generic-aeson, generic-deriving, mtl, scientific + , tasty, tasty-hunit, tasty-th, text, time, unordered-containers + , vector + }: + mkDerivation { + pname = "json-schema"; + version = "0.7.4.1"; + sha256 = "560d6a17d6eab734f43d329e51967e3ed62f8df2a6fea4a92d06359fe77d7c96"; + libraryHaskellDepends = [ + aeson base containers generic-aeson generic-deriving mtl scientific + text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-utils attoparsec base bytestring generic-aeson tasty + tasty-hunit tasty-th text vector + ]; + description = "Types and type classes for defining JSON schemas"; + license = stdenv.lib.licenses.bsd3; }) {}; "json-sop" = callPackage @@ -116041,6 +116510,7 @@ self: { mtl optparse-applicative process raw-strings-qq setenv text unordered-containers ]; + jailbreak = true; homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; @@ -117301,6 +117771,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "lambdatex" = callPackage + ({ mkDerivation, base, containers, directory, HaTeX, hspec, mtl + , QuickCheck, text, transformers + }: + mkDerivation { + pname = "lambdatex"; + version = "0.1.0.1"; + sha256 = "c071927242a209cbcd404cd5d803da91ced655565178c8e72b438cd47a66320c"; + libraryHaskellDepends = [ + base containers directory HaTeX mtl text transformers + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/NorfairKing/lambdatex"; + description = "Type-Safe LaTeX EDSL"; + license = "GPL"; + }) {}; + "lambdatwit" = callPackage ({ mkDerivation, acid-state, authenticate-oauth, base, bytestring , case-insensitive, conduit, containers, data-default, exceptions @@ -117597,6 +118084,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117624,6 +118112,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117651,6 +118140,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117825,6 +118315,8 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; license = stdenv.lib.licenses.bsd3; @@ -118540,7 +119032,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "largeword" = callPackage + "largeword_1_2_3" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -118553,12 +119045,14 @@ self: { base binary bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/idontgetoutmuch/largeword"; description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "largeword_1_2_5" = callPackage + "largeword" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -118571,11 +119065,9 @@ self: { base binary bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/idontgetoutmuch/largeword"; description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lat" = callPackage @@ -119041,6 +119533,7 @@ self: { base bytestring cmdargs containers filepath ]; testHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; @@ -119269,6 +119762,7 @@ self: { base conduit conduit-extra hslogger HUnit process resourcet transformers ]; + jailbreak = true; homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; @@ -119549,6 +120043,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/lens/lens-aeson/"; description = "Law-abiding lenses for aeson"; license = stdenv.lib.licenses.bsd3; @@ -119835,6 +120330,7 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; + jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -120925,6 +121421,7 @@ self: { base HUnit monad-control test-framework test-framework-hunit transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/basvandijk/lifted-base"; description = "lifted IO operations from the base library"; license = stdenv.lib.licenses.bsd3; @@ -120945,6 +121442,7 @@ self: { base HUnit monad-control test-framework test-framework-hunit transformers transformers-base transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/lifted-base"; description = "lifted IO operations from the base library"; @@ -121353,10 +121851,8 @@ self: { }: mkDerivation { pname = "linear"; - version = "1.20.2"; - sha256 = "c9ce0cba74beb9ab59cf9790772e5b01d2786b452099e5831d218371565ec4fe"; - revision = "1"; - editedCabalFile = "2c0ce2199aec2dd1e7536514351398d00def727e21bdac1fe54b05059fef7c49"; + version = "1.20.3"; + sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4"; libraryHaskellDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -121987,8 +122483,8 @@ self: { pname = "liquidhaskell"; version = "0.5.0.1"; sha256 = "27f31e7652cd9ef0b97d2e3936c8e9c759961ac153b324c3e84f11cb441ab89a"; - revision = "1"; - editedCabalFile = "f091f4caee092d4d286fe264fbb5f602675339c6bfac563bfb91732583264cc0"; + revision = "2"; + editedCabalFile = "54142d52274f85af299d405bd5daac25b574f9d3f16c8e42b7f5b999d9a34a1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122054,7 +122550,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-fusion-probe" = callPackage + "list-fusion-probe_0_1_0_4" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { pname = "list-fusion-probe"; @@ -122064,9 +122560,10 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-fusion-probe_0_1_0_5" = callPackage + "list-fusion-probe" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { pname = "list-fusion-probe"; @@ -122076,7 +122573,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-grouping" = callPackage @@ -122104,6 +122600,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "list-prompt" = callPackage + ({ mkDerivation, ansi-terminal, base, data-default, hspec, stm + , terminal-size, vty + }: + mkDerivation { + pname = "list-prompt"; + version = "0.1.1.0"; + sha256 = "c7323c7a802940deba1a7be46265fd8c01f548174d5f08923a607e1730ca4dee"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base data-default stm terminal-size vty + ]; + executableHaskellDepends = [ + ansi-terminal base data-default stm terminal-size vty + ]; + testHaskellDepends = [ + ansi-terminal base data-default hspec stm terminal-size vty + ]; + homepage = "https://github.com/yamadapc/list-prompt.git"; + description = "A simple list prompt UI for the terminal"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "list-remote-forwards" = callPackage ({ mkDerivation, base, bytestring, cmdargs, configurator , containers, directory, dns, doctest, filemanip, filepath, HDBC @@ -124214,7 +124734,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid-svg" = callPackage + "lucid-svg_0_5_0_0" = callPackage ({ mkDerivation, base, blaze-builder, lucid, text, transformers }: mkDerivation { pname = "lucid-svg"; @@ -124226,9 +124746,10 @@ self: { homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid-svg_0_6_0_0" = callPackage + "lucid-svg" = callPackage ({ mkDerivation, base, blaze-builder, lucid, text, transformers }: mkDerivation { pname = "lucid-svg"; @@ -124240,7 +124761,6 @@ self: { homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lucienne" = callPackage @@ -124313,8 +124833,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.8.2.1"; - sha256 = "c0952ec7314fd13faf10326648cf49561da4687d5e011d19694d84c2c26ddd51"; + version = "0.9"; + sha256 = "8bbee1483bca9a073a8ca7f4f1d3bec00f99c3d59bfa637702afda5a88eb2ada"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -124330,8 +124850,8 @@ self: { }: mkDerivation { pname = "luminance-samples"; - version = "0.8"; - sha256 = "35580954897bcb2fdbd7eecc14982b44f5026e64be08d7398f8cc7fa0925a962"; + version = "0.9"; + sha256 = "1ce2b8ff49c34bd529bcbe8e30f042f327a970b7a6d43dbdd3939b17cfa44bec"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -124649,6 +125169,7 @@ self: { base bytestring HUnit io-streams QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; @@ -125791,6 +126312,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -125815,6 +126337,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -125897,6 +126420,7 @@ self: { template-haskell text time tls transformers transformers-base unordered-containers utf8-string vector wai warp x509-system ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; @@ -127977,8 +128501,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.1.5.0"; - sha256 = "3c705ad7a4732a0ac4deb82b1837b0fa247a6796bd64dbf1125edf135e2abd04"; + version = "0.1.6.0"; + sha256 = "7ddec415baac4a9f44d6cd1c14976990b5e9e5bc34cb399c29d2a0361b311194"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -128130,6 +128654,7 @@ self: { base containers diagrams-lib diagrams-postscript event-list midi non-empty optparse-applicative utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/midi-music-box"; description = "Convert MIDI file to music box punch tape"; license = stdenv.lib.licenses.bsd3; @@ -128299,8 +128824,8 @@ self: { }: mkDerivation { pname = "milena"; - version = "0.4.0.1"; - sha256 = "5349bf26d1c0bc6147e84219d09f065b313413aba026e060a92bcc23e9ec2cb5"; + version = "0.5.0.0"; + sha256 = "fbae487cc6e61fa6cde0ba79b4d0df28c75e1af9c0d75970b7685a7beb18b63a"; libraryHaskellDepends = [ base bytestring cereal containers digest lens lifted-base mtl murmur-hash network random resource-pool semigroups transformers @@ -131197,6 +131722,7 @@ self: { version = "0.4.0.2"; sha256 = "ccf05d44831dad32d52da1d4176fc77f05f4a5f7f71719e4452fd5069b80ba32"; libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + jailbreak = true; description = "Various extra monoid-related definitions and utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -132352,6 +132878,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; @@ -132710,6 +133237,7 @@ self: { base base16-bytestring bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/murmur3"; description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; license = stdenv.lib.licenses.publicDomain; @@ -134146,6 +134674,7 @@ self: { array base bytestring cereal HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text zlib ]; + jailbreak = true; homepage = "https://github.com/acfoltzer/nbt"; description = "A parser/serializer for Minecraft's Named Binary Tag (NBT) data format"; license = stdenv.lib.licenses.bsd3; @@ -134186,7 +134715,7 @@ self: { license = stdenv.lib.licenses.gpl3; }) {inherit (pkgs) ncurses;}; - "ndjson-conduit" = callPackage + "ndjson-conduit_0_1_0_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }: mkDerivation { pname = "ndjson-conduit"; @@ -134198,6 +134727,21 @@ self: { homepage = "https://github.com/srijs/haskell-ndjson-conduit"; description = "Conduit-based parsing and serialization for newline delimited JSON"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ndjson-conduit" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }: + mkDerivation { + pname = "ndjson-conduit"; + version = "0.1.0.3"; + sha256 = "a4f9e574af6d565ea9edc313c78ea9ee95c957d2abe61f4a0991a49231e9b592"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring conduit + ]; + homepage = "https://github.com/srijs/haskell-ndjson-conduit"; + description = "Conduit-based parsing and serialization for newline delimited JSON"; + license = stdenv.lib.licenses.mit; }) {}; "neat" = callPackage @@ -136312,6 +136856,8 @@ self: { sha256 = "a5ed63130601fa2f97b105adeced7e691ee7924bcfd3f7da6605495f7a655fe2"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec HUnit ]; + jailbreak = true; + doCheck = false; description = "A typeclass and set of functions for working with newtypes, with generics support"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -136390,12 +136936,13 @@ self: { }) {}; "niagra" = callPackage - ({ mkDerivation, base, mtl, text, transformers }: + ({ mkDerivation, base, containers, mtl, text, transformers }: mkDerivation { pname = "niagra"; - version = "0.0.3"; - sha256 = "bb6dd33a0b00996263ae770fdf5ba461a956e33492310f27f83fbd248951f49b"; - libraryHaskellDepends = [ base mtl text transformers ]; + version = "0.1.0"; + sha256 = "dd95efe3c72f07dc4e82ace01b13f26406dc0d40a476416dbbb0e6d77dcdcf7d"; + libraryHaskellDepends = [ base containers mtl text transformers ]; + homepage = "https://github.com/fhsjaagshs/niagra"; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -137359,13 +137906,12 @@ self: { }: mkDerivation { pname = "numeric-qq"; - version = "0.1.2"; - sha256 = "95d578a72288375fdfddd64033f1829b6be7c431b46fcf49199f3cf67154b17f"; + version = "0.1.3"; + sha256 = "beaf86d233adad0d6dcf23769e4e0f3f43a1b551f19fb772fbcfedd885f19b85"; libraryHaskellDepends = [ base loch-th placeholders template-haskell ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/numeric-qq"; description = "Quasi-quoters for numbers of different bases"; license = stdenv.lib.licenses.mit; @@ -137572,6 +138118,7 @@ self: { aeson base bytestring lens lens-aeson pipes pipes-aeson pipes-bytestring pipes-http pipes-parse text time wreq ]; + jailbreak = true; homepage = "https://github.com/bts/nylas-hs"; description = "Client for the Nylas API"; license = stdenv.lib.licenses.bsd3; @@ -137817,6 +138364,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137931,6 +138479,8 @@ self: { pname = "old-locale"; version = "1.0.0.7"; sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; + revision = "1"; + editedCabalFile = "f87c7c0495bf863c82ca051e68b10b3133a286aed11f0291253385a5856a6ceb"; libraryHaskellDepends = [ base ]; description = "locale library"; license = stdenv.lib.licenses.bsd3; @@ -137942,6 +138492,8 @@ self: { pname = "old-time"; version = "1.1.0.3"; sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; + revision = "1"; + editedCabalFile = "c1a016dd23d38e879b7972ce95f22b1498d39fc62a7b755ff5f344bfeeaf796e"; libraryHaskellDepends = [ base old-locale ]; description = "Time library"; license = stdenv.lib.licenses.bsd3; @@ -138110,6 +138662,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "once" = callPackage + ({ mkDerivation, base, containers, hashable, template-haskell + , unordered-containers + }: + mkDerivation { + pname = "once"; + version = "0.1.0.0"; + sha256 = "9a59a79946079ea2d00469f9c4a6a319ad96425f38f4b90093789109c268a7ab"; + libraryHaskellDepends = [ + base containers hashable template-haskell unordered-containers + ]; + homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; + description = "memoization for IO actions and functions"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "one-liner" = callPackage ({ mkDerivation, base, contravariant, ghc-prim, transformers }: mkDerivation { @@ -138341,6 +138909,7 @@ self: { base containers contravariant multiset postgresql-simple product-profunctors profunctors QuickCheck semigroups time ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "An SQL-generating DSL targeting PostgreSQL"; @@ -139367,7 +139936,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "optparse-applicative" = callPackage + "optparse-applicative_0_11_0_2" = callPackage ({ mkDerivation, ansi-wl-pprint, base, process, transformers , transformers-compat }: @@ -139381,9 +139950,10 @@ self: { homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "optparse-applicative_0_12_0_0" = callPackage + "optparse-applicative" = callPackage ({ mkDerivation, ansi-wl-pprint, base, process, transformers , transformers-compat }: @@ -139397,7 +139967,6 @@ self: { homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optparse-declarative" = callPackage @@ -140211,30 +140780,6 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pagerduty" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring - , bytestring-conversion, conduit, data-default-class, exceptions - , generics-sop, http-client, http-types, lens, lens-aeson, mmorph - , monad-control, mtl, template-haskell, text, time - , time-locale-compat, transformers, transformers-base - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pagerduty"; - version = "0.0.4"; - sha256 = "41549771fe6689ffb97806e615e86a3c7384177cbcc1c77873167a3e9d05be9c"; - libraryHaskellDepends = [ - aeson base bifunctors bytestring bytestring-conversion conduit - data-default-class exceptions generics-sop http-client http-types - lens lens-aeson mmorph monad-control mtl template-haskell text time - time-locale-compat transformers transformers-base - transformers-compat unordered-containers - ]; - homepage = "http://github.com/brendanhay/pagerduty"; - description = "Client library for PagerDuty Integration and REST APIs"; - license = "unknown"; - }) {}; - "pagure-hook-receiver" = callPackage ({ mkDerivation, base, containers, scotty, shelly, text , transformers, unix @@ -140479,11 +141024,11 @@ self: { , directory, executable-path, extensible-exceptions, filemanip , filepath, haddock-library, highlighting-kate, hslua, HTTP , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl - , network, network-uri, old-time, pandoc-types, parsec, process - , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , texmath, text, time, unordered-containers, vector, xml, yaml - , zip-archive, zlib + , network, network-uri, old-locale, old-time, pandoc-types, parsec + , process, QuickCheck, random, scientific, SHA, syb, tagsoup + , temporary, test-framework, test-framework-hunit + , test-framework-quickcheck2, texmath, text, time + , unordered-containers, vector, xml, yaml, zip-archive, zlib }: mkDerivation { pname = "pandoc"; @@ -140497,9 +141042,10 @@ self: { bytestring cmark containers data-default deepseq-generics directory extensible-exceptions filemanip filepath haddock-library highlighting-kate hslua HTTP http-client http-client-tls http-types - JuicyPixels mtl network network-uri old-time pandoc-types parsec - process random scientific SHA syb tagsoup temporary texmath text - time unordered-containers vector xml yaml zip-archive zlib + JuicyPixels mtl network network-uri old-locale old-time + pandoc-types parsec process random scientific SHA syb tagsoup + temporary texmath text time unordered-containers vector xml yaml + zip-archive zlib ]; executableHaskellDepends = [ aeson base bytestring containers directory extensible-exceptions @@ -140512,6 +141058,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -140797,6 +141344,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -140829,6 +141377,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -140861,6 +141410,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -141094,6 +141644,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = "GPL"; @@ -141111,6 +141662,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; @@ -141567,6 +142119,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/~daan/parsec.html"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -141585,6 +142138,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/~daan/parsec.html"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -141603,6 +142157,8 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/aslatter/parsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -142321,8 +142877,8 @@ self: { }: mkDerivation { pname = "pathtype"; - version = "0.7"; - sha256 = "fb6512d284c41feb1d31375cb47144ab13d4f4435d62dc977c511dacdb70e616"; + version = "0.7.0.1"; + sha256 = "f63692c829eed50588feb68a4ba1a711354f680553c9788c9c4795f821ff47b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -144908,6 +145464,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -144933,6 +145490,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -145371,6 +145929,30 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "phoityne" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cmdargs, conduit + , conduit-extra, ConfigFile, containers, directory, filepath, gtk3 + , hslogger, HStringTemplate, MissingH, mtl, parsec, process + , resourcet, safe, text, transformers + }: + mkDerivation { + pname = "phoityne"; + version = "0.0.1.0"; + sha256 = "c95571f5da2e8bf383f473a3750a4d1538bb543b3ad46e26d62218a56604f5fe"; + revision = "1"; + editedCabalFile = "a65bbf3246f27cbf6bff03bbb436b87e6ab05185b458d47159836a1e5815c621"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring Cabal cmdargs conduit conduit-extra ConfigFile + containers directory filepath gtk3 hslogger HStringTemplate + MissingH mtl parsec process resourcet safe text transformers + ]; + homepage = "under construction"; + description = "ghci debug viewer with simple editor"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { @@ -145759,24 +146341,6 @@ self: { }) {}; "pinchot" = callPackage - ({ mkDerivation, base, containers, Earley, lens, template-haskell - , transformers - }: - mkDerivation { - pname = "pinchot"; - version = "0.4.0.0"; - sha256 = "362b2f8c0c1d4b4d768e8ae98a5c3d68db27d2b713055878079d2ff7ff905495"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers Earley lens template-haskell transformers - ]; - homepage = "http://www.github.com/massysett/pinchot"; - description = "Build parsers and ASTs for context-free grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "pinchot_0_6_0_0" = callPackage ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: @@ -145792,7 +146356,6 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipe-enumerator" = callPackage @@ -145936,7 +146499,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-aeson" = callPackage + "pipes-aeson_0_4_1_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers }: @@ -145948,6 +146511,25 @@ self: { aeson attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring pipes-parse transformers ]; + jailbreak = true; + homepage = "https://github.com/k0001/pipes-aeson"; + description = "Encode and decode JSON streams using Aeson and Pipes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-aeson" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes + , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers + }: + mkDerivation { + pname = "pipes-aeson"; + version = "0.4.1.5"; + sha256 = "74605983d914128d437cfac5e34ebdecb81426c29337af2b7d1e7a1970173595"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring pipes pipes-attoparsec + pipes-bytestring pipes-parse transformers + ]; homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; @@ -146119,8 +146701,8 @@ self: { }: mkDerivation { pname = "pipes-cacophony"; - version = "0.1.2"; - sha256 = "b97b632ebf6ca87e5245a2d080fedbd7eabc0337b723080d062a12ebb1ff8515"; + version = "0.1.3"; + sha256 = "166d95fe84ba7edd62b3d9861b9d3e0e16fd18ec4d99e3b0b44abaf531094e89"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring cacophony pipes ]; @@ -146128,7 +146710,6 @@ self: { async base bytestring cacophony hlint mtl pipes QuickCheck tasty tasty-quickcheck ]; - doCheck = false; homepage = "https://github.com/centromere/pipes-cacophony"; description = "Pipes for Noise-secured network connections"; license = stdenv.lib.licenses.publicDomain; @@ -146225,7 +146806,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-concurrency" = callPackage + "pipes-concurrency_2_0_3" = callPackage ({ mkDerivation, async, base, pipes, stm }: mkDerivation { pname = "pipes-concurrency"; @@ -146235,6 +146816,19 @@ self: { testHaskellDepends = [ async base pipes stm ]; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-concurrency" = callPackage + ({ mkDerivation, async, base, pipes, stm }: + mkDerivation { + pname = "pipes-concurrency"; + version = "2.0.4"; + sha256 = "195ff8fe0551bc03cca2e150e1bf235276c8f5b3c286ff3fddefa5074d6a85d3"; + libraryHaskellDepends = [ base pipes stm ]; + testHaskellDepends = [ async base pipes stm ]; + description = "Concurrency for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-conduit" = callPackage @@ -147066,6 +147660,7 @@ self: { base bytestring optparse-applicative text ]; testHaskellDepends = [ base bytestring doctest hlint hspec ]; + jailbreak = true; homepage = "https://github.com/pjones/playlists"; description = "Library and executable for working with playlist files"; license = stdenv.lib.licenses.bsd3; @@ -147376,8 +147971,8 @@ self: { }: mkDerivation { pname = "png-file"; - version = "0.0.1.1"; - sha256 = "20d43faaaf15d0c9ae79867262df1a2e2948ef312b6d25f9d546f4261cbea5a2"; + version = "0.0.1.3"; + sha256 = "467be3c535e0d7fd1a26cd287c1b335d22c3aa68263578b642b28e190146b2c1"; libraryHaskellDepends = [ array base binary-file bytestring monads-tf template-haskell zlib ]; @@ -148056,8 +148651,8 @@ self: { }: mkDerivation { pname = "pontarius-xmpp"; - version = "0.4.5"; - sha256 = "b35bb79b206250039a6a941f17e784d7760fd4197d80821319461031d6449f6d"; + version = "0.5.0"; + sha256 = "adf8e8627819dbed26dff553e75b1c9934be049495faa5caee46445ffa3059fe"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary bytestring conduit containers crypto-api crypto-random cryptohash cryptohash-cryptoapi @@ -148558,7 +149153,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-binary" = callPackage + "postgresql-binary_0_5_2_1" = callPackage ({ mkDerivation, attoparsec, base-prelude, bytestring, HTF, loch-th , placeholders, postgresql-libpq, QuickCheck, quickcheck-instances , scientific, text, time, transformers, uuid @@ -148580,9 +149175,10 @@ self: { homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-binary_0_7_4_1" = callPackage + "postgresql-binary" = callPackage ({ mkDerivation, aeson, base, base-prelude, binary-parser , bytestring, conversion, conversion-bytestring, conversion-text , either, foldl, loch-th, placeholders, postgresql-libpq @@ -148605,11 +149201,10 @@ self: { tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-config" = callPackage @@ -149051,6 +149646,7 @@ self: { unordered-containers vector wai wai-cors wai-extra wai-middleware-static warp ]; + jailbreak = true; homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; @@ -150000,6 +150596,8 @@ self: { pname = "primitive"; version = "0.6.1.0"; sha256 = "93731fa72eaf74e8e83453f080828e18cec9fbc82bee91b49ba8b61c043d38c8"; + revision = "1"; + editedCabalFile = "6ec7c2455c437aba71f856b797e7db440c83719509aa63a9a3d1b4652ca3683d"; libraryHaskellDepends = [ base ghc-prim transformers ]; testHaskellDepends = [ base ghc-prim ]; homepage = "https://github.com/haskell/primitive"; @@ -150832,13 +151430,14 @@ self: { }) {}; "projectroot" = callPackage - ({ mkDerivation, base, directory }: + ({ mkDerivation, base, directory, hspec, QuickCheck }: mkDerivation { pname = "projectroot"; - version = "0.1.0.1"; - sha256 = "bce014e23b028ca28597d0541e3a92616b4ce2409d4074bf14d21d5393549298"; + version = "0.2.0.1"; + sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; libraryHaskellDepends = [ base directory ]; - homepage = "https://gitlab.com/yamadapc/haskell-projectroot"; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/yamadapc/haskell-projectroot"; description = "Bindings to the projectroot C logic"; license = stdenv.lib.licenses.mit; }) {}; @@ -151013,8 +151612,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.15.0"; - sha256 = "93899ba66749337382158cbb9c2289341eb8d104d26b47dc05c71fe68ba8f53e"; + version = "2.15.1"; + sha256 = "44931af0094e7831910dd691687c5ef1bff7553e327cc95dcbf857cf463c8b9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -151556,6 +152155,7 @@ self: { array base deepseq ghc-prim hashable HUnit QuickCheck tagged test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -152159,6 +152759,7 @@ self: { optparse-applicative parsec process time transformers transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; @@ -152354,8 +152955,8 @@ self: { }: mkDerivation { pname = "pusher-http-haskell"; - version = "0.2.1.0"; - sha256 = "deb588bf92977fccb22a731a5e9b31f70c4b6fe8b2fb4048df10f6123580b562"; + version = "0.3.0.0"; + sha256 = "50b4a5974e7e5fbf2fb77b3c59d5a790e7151c03e4ea046432548a2eb7d8d6ec"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -153057,6 +153658,7 @@ self: { revision = "1"; editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6"; libraryHaskellDepends = [ base HUnit QuickCheck ]; + jailbreak = true; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -154217,6 +154819,8 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = stdenv.lib.licenses.bsd3; @@ -154300,6 +154904,7 @@ self: { base directory filepath FontyFruity JuicyPixels optparse-applicative Rasterific svg-tree ]; + jailbreak = true; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -155439,6 +156044,7 @@ self: { QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; @@ -155770,6 +156376,7 @@ self: { base bifunctors containers profunctors reflex reflex-transformers semigroups vector-space ]; + jailbreak = true; homepage = "https://github.com/saulzar/reflex-animation"; description = "Continuous animations support for reflex"; license = stdenv.lib.licenses.bsd3; @@ -155880,6 +156487,7 @@ self: { libraryHaskellDepends = [ base containers lens mtl reflex semigroups stateWriter transformers ]; + jailbreak = true; homepage = "http://github.com/saulzar/reflex-transformers"; description = "Collections and switchable Monad transformers for Reflex"; license = stdenv.lib.licenses.bsd3; @@ -155889,11 +156497,11 @@ self: { ({ mkDerivation, base, containers, mtl, text }: mkDerivation { pname = "reform"; - version = "0.2.7"; - sha256 = "75a921d5d100ecb607ec84c4c0098465021b1729eb2d0924b6663b8710634b4a"; + version = "0.2.7.1"; + sha256 = "59be2189906788ee4ecf82559aea2e7159a7a0c716c129cccce97e9d89819230"; libraryHaskellDepends = [ base containers mtl text ]; homepage = "http://www.happstack.com/"; - description = "reform is an HTML form generation and validation library"; + description = "reform is a type-safe HTML form generation and validation library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -155901,8 +156509,8 @@ self: { ({ mkDerivation, base, blaze-html, blaze-markup, reform, text }: mkDerivation { pname = "reform-blaze"; - version = "0.2.4"; - sha256 = "5e3a7dc72115b10664c5f7bd7a498155e58ac1e092738b9339a68b05e5db9088"; + version = "0.2.4.1"; + sha256 = "d4acf094d75cef125e9d587646b9bbb66ce927b43ed16c99738f11e80569678b"; libraryHaskellDepends = [ base blaze-html blaze-markup reform text ]; @@ -155915,8 +156523,8 @@ self: { ({ mkDerivation, base, blaze-markup, reform, shakespeare, text }: mkDerivation { pname = "reform-hamlet"; - version = "0.0.5"; - sha256 = "8a841b4a31518ddd6da9b64f93c5527aaab9bdc67eaef70298c9455004e896b6"; + version = "0.0.5.1"; + sha256 = "a0271fc7580463d3790f26e651836e0030178444987c9132b3c74dab249286f2"; libraryHaskellDepends = [ base blaze-markup reform shakespeare text ]; @@ -155931,8 +156539,8 @@ self: { }: mkDerivation { pname = "reform-happstack"; - version = "0.2.5"; - sha256 = "4c77c33e70edda15b9eff8102a12a552eb69eb5e1772b86e1e63d2b9c2ad5a89"; + version = "0.2.5.1"; + sha256 = "6fa06f0cc07251bf5ec38a553de468ede9b7495c4534ba9c3f96780c1adadaaa"; libraryHaskellDepends = [ base bytestring happstack-server mtl random reform text utf8-string ]; @@ -155945,8 +156553,8 @@ self: { ({ mkDerivation, base, hsp, hsx2hs, reform, text }: mkDerivation { pname = "reform-hsp"; - version = "0.2.6"; - sha256 = "3260df2cf6030d45900ecc5c4f5c407814322296a2b42938d0bee8d355d62f2a"; + version = "0.2.6.1"; + sha256 = "d961b22e1ef28a9cbf13ae7214335efcba3e00a4738f3f9a21fc543f61cf80a5"; libraryHaskellDepends = [ base hsp hsx2hs reform text ]; homepage = "http://www.happstack.com/"; description = "Add support for using HSP with Reform"; @@ -158270,6 +158878,7 @@ self: { base bytestring HUnit mtl test-framework test-framework-hunit transformers transformers-compat unordered-containers ]; + jailbreak = true; description = "Rest API library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -159166,8 +159775,8 @@ self: { }: mkDerivation { pname = "rethinkdb"; - version = "2.2.0.0"; - sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429"; + version = "2.2.0.2"; + sha256 = "91c1ea290efa7f9336ef824832545cce401466cc773cde38ea2a8e0a763d0eb5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -159177,7 +159786,6 @@ self: { ]; executableHaskellDepends = [ attoparsec base text ]; testHaskellDepends = [ base doctest ]; - doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.1"; license = stdenv.lib.licenses.asl20; @@ -159391,6 +159999,7 @@ self: { base data-default-class exceptions hspec HUnit QuickCheck random stm time transformers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; @@ -159607,25 +160216,26 @@ self: { "riak" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder - , bytestring, containers, HUnit, monad-control, network - , protocol-buffers, pureMD5, QuickCheck, random, resource-pool - , riak-protobuf, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, time, transformers + , bytestring, containers, enclosed-exceptions, exceptions, HUnit + , mersenne-random-pure64, monad-control, network, protocol-buffers + , pureMD5, QuickCheck, random, random-shuffle, resource-pool + , riak-protobuf, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, vector }: mkDerivation { pname = "riak"; - version = "0.9.0.0"; - sha256 = "002d0646acdd0b80bd68c4a1ea3a91b56e8cf14c5b2fb1d497dcbbdafccd149c"; + version = "0.9.1.1"; + sha256 = "900597ea476350d76bb0b9c429ac0d438865fdaf885267e94695d1cd1c81e43f"; libraryHaskellDepends = [ aeson attoparsec base binary blaze-builder bytestring containers - monad-control network protocol-buffers pureMD5 random resource-pool - riak-protobuf text time transformers + enclosed-exceptions exceptions mersenne-random-pure64 monad-control + network protocol-buffers pureMD5 random random-shuffle + resource-pool riak-protobuf text time transformers vector ]; testHaskellDepends = [ - base bytestring containers HUnit QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 text + base bytestring containers HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text ]; - doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; @@ -161932,15 +162542,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "sbv_5_6" = callPackage + "sbv_5_7" = callPackage ({ mkDerivation, array, async, base, base-compat, containers , crackNum, data-binary-ieee754, deepseq, directory, filepath , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; - version = "5.6"; - sha256 = "018c91265799931c434731cfd48e8592e42f399ab5958f4c70ffe48e83fd3fed"; + version = "5.7"; + sha256 = "dc63f66b56ed39d37996f6a983fbdf62086f66c91c4b52eefafb6e52e5ca9d2c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161967,8 +162577,8 @@ self: { }: mkDerivation { pname = "sbvPlugin"; - version = "0.1"; - sha256 = "08fc5562e6919ddb8db1fa8b5c16079f9832c3d755d58e987f25945f36903c0b"; + version = "0.3"; + sha256 = "095f50de108abc82047d13404a30990aaa71c66f5f71238fee7e909ccfe52a71"; libraryHaskellDepends = [ base containers ghc ghc-prim mtl sbv template-haskell ]; @@ -162936,6 +163546,7 @@ self: { base bytestring hspec hspec-wai mtl QuickCheck scotty string-conversions text wai ]; + jailbreak = true; homepage = "http://github.com/ehamberg/scotty-rest"; description = "Webmachine-style REST library for scotty"; license = stdenv.lib.licenses.bsd3; @@ -163048,8 +163659,8 @@ self: { }: mkDerivation { pname = "scroll"; - version = "1.20150323"; - sha256 = "0dc03b56be5bd2724a3f5e5fff2905587e68032767b23f927b52a462f1dedf1a"; + version = "1.20151219"; + sha256 = "4f91c20e645ee715c9d3549fffffcc58943bee4fb3ba2e622e0189ccb70dd050"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -163306,20 +163917,21 @@ self: { "sdr" = callPackage ({ mkDerivation, array, base, bytestring, cairo, cereal, Chart , Chart-cairo, colour, containers, Decimal, dynamic-graph, either - , fftwRaw, GLFW-b, OpenGL, optparse-applicative, pango, pipes - , pipes-bytestring, pipes-concurrency, primitive, pulse-simple - , QuickCheck, rtlsdr, storable-complex, test-framework - , test-framework-quickcheck2, time, tuple, vector + , fftwRaw, GLFW-b, mwc-random, OpenGL, optparse-applicative, pango + , pipes, pipes-bytestring, pipes-concurrency, primitive + , pulse-simple, QuickCheck, rtlsdr, storable-complex + , test-framework, test-framework-quickcheck2, time, tuple, vector }: mkDerivation { pname = "sdr"; - version = "0.1.0.5"; - sha256 = "80885f1eb0b8a5d5cce83bc7b819d04beb1f3b865b7fdf1030480aeec1605c1e"; + version = "0.1.0.6"; + sha256 = "bf6344447783ec530ef27c8e2c55aff57e4581696d156d1d8781f54577b33135"; libraryHaskellDepends = [ array base bytestring cairo cereal Chart Chart-cairo colour - containers Decimal dynamic-graph either fftwRaw GLFW-b OpenGL - optparse-applicative pango pipes pipes-bytestring pipes-concurrency - primitive pulse-simple rtlsdr storable-complex time tuple vector + containers Decimal dynamic-graph either fftwRaw GLFW-b mwc-random + OpenGL optparse-applicative pango pipes pipes-bytestring + pipes-concurrency primitive pulse-simple rtlsdr storable-complex + time tuple vector ]; testHaskellDepends = [ base primitive QuickCheck storable-complex test-framework @@ -164038,23 +164650,6 @@ self: { }) {}; "semigroups" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , nats, tagged, text, unordered-containers - }: - mkDerivation { - pname = "semigroups"; - version = "0.17.0.1"; - sha256 = "7930dbd98e023df8485a928ff11e4bee95a002fd41253f14c4447ba34f74773f"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable nats tagged text - unordered-containers - ]; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "semigroups_0_18_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, hashable , tagged, text, unordered-containers }: @@ -164069,7 +164664,6 @@ self: { homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroups-actions" = callPackage @@ -164635,6 +165229,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -164662,6 +165257,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -164689,6 +165285,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -165102,7 +165699,6 @@ self: { servant-lucid servant-server text time transformers wai wai-extra warp ]; - jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; @@ -165440,6 +166036,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165472,6 +166069,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165504,6 +166102,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165536,6 +166135,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -167322,6 +167922,7 @@ self: { pretty-show process regex-tdfa safe test-framework test-framework-hunit utf8-string ]; + jailbreak = true; homepage = "http://joyful.com/shelltestrunner"; description = "A tool for testing command-line programs"; license = "GPL"; @@ -168510,6 +169111,7 @@ self: { testHaskellDepends = [ base HUnit mtl parsec pretty test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://jakewheat.github.io/simple-sql-parser/"; description = "A parser for SQL queries"; license = stdenv.lib.licenses.bsd3; @@ -169207,6 +169809,7 @@ self: { base bytestring data-default http-client http-types lens text time wreq xml-conduit ]; + jailbreak = true; homepage = "https://github.com/nyorem/skemmtun"; description = "A MyAnimeList.net client."; license = stdenv.lib.licenses.mit; @@ -169754,6 +170357,7 @@ self: { version = "0.4.1"; sha256 = "f29484ce5a765334798b1107be91b4ef555f1e67a81bd3eb1049a91eec9e6e2e"; libraryHaskellDepends = [ aeson base linear text vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/smoothie"; description = "Smooth curves via several interpolation modes"; license = stdenv.lib.licenses.bsd3; @@ -170140,8 +170744,8 @@ self: { pname = "snap"; version = "0.14.0.6"; sha256 = "fa9ffc7bf5c6729f7e204daecd50765a220a0ffc2feaf3f6b29977370d8db617"; - revision = "2"; - editedCabalFile = "eff36a949ff3546539accd83c431cd68bb3dca38c2f24db6f99302c7d76ccd4c"; + revision = "3"; + editedCabalFile = "a1c4d4668cc563516ac38acfe5b869eeff5cf98042d960593ab08e1ded09fe1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170929,6 +171533,7 @@ self: { aeson base bytestring configurator directory fay filepath mtl snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -171949,6 +172554,7 @@ self: { aeson attoparsec base bytestring engine-io mtl stm text transformers unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172257,8 +172863,8 @@ self: { }: mkDerivation { pname = "sourcemap"; - version = "0.1.5"; - sha256 = "cf64d8ff9a38d2feb134814fd0cb5b9f171d650c7d74a8277238bb88d0f562ea"; + version = "0.1.6"; + sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; libraryHaskellDepends = [ aeson attoparsec base bytestring process text unordered-containers utf8-string @@ -175824,7 +176430,6 @@ self: { resourcet stm stm-chans test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - doHaddock = false; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -175988,6 +176593,7 @@ self: { stm-conduit transformers wai wai-conduit warp ]; testHaskellDepends = [ base hspec HUnit stm ]; + jailbreak = true; homepage = "https://github.com/bartavelle/stm-firehose"; description = "Conduits and STM operations for fire hoses"; license = stdenv.lib.licenses.bsd3; @@ -176199,6 +176805,7 @@ self: { sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; libraryHaskellDepends = [ base clock transformers ]; testHaskellDepends = [ base clock hspec ]; + jailbreak = true; homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; @@ -177241,6 +177848,7 @@ self: { aeson base bytestring mtl text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; @@ -177270,6 +177878,7 @@ self: { aeson base bytestring HsOpenSSL http-streams io-streams stripe-core text ]; + jailbreak = true; doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; @@ -178378,21 +178987,20 @@ self: { "swagger2" = callPackage ({ mkDerivation, aeson, aeson-qq, base, containers, doctest, Glob - , hashable, hspec, http-media, HUnit, lens, network, QuickCheck - , scientific, template-haskell, text, time, unordered-containers - , vector + , hashable, hspec, http-media, HUnit, lens, mtl, network + , QuickCheck, scientific, text, time, unordered-containers, vector }: mkDerivation { pname = "swagger2"; - version = "0.4.1"; - sha256 = "9db8a5896a2a758edf683be2e9a63a388079b363c6a6f18e3723632010ff39d9"; + version = "1.0"; + sha256 = "04ccac8d97cac4a4673151a751a813de7fd6f948b0f98f9b23f447016c19021d"; libraryHaskellDepends = [ - aeson base containers hashable http-media lens network scientific - template-haskell text time unordered-containers + aeson base containers hashable http-media lens mtl network + scientific text time unordered-containers ]; testHaskellDepends = [ - aeson aeson-qq base containers doctest Glob hspec HUnit QuickCheck - text unordered-containers vector + aeson aeson-qq base containers doctest Glob hspec HUnit lens + QuickCheck text unordered-containers vector ]; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; @@ -178561,7 +179169,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "syb" = callPackage + "syb_0_5_1" = callPackage ({ mkDerivation, base, containers, HUnit, mtl }: mkDerivation { pname = "syb"; @@ -178573,9 +179181,10 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; description = "Scrap Your Boilerplate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "syb_0_6" = callPackage + "syb" = callPackage ({ mkDerivation, base, containers, HUnit, mtl }: mkDerivation { pname = "syb"; @@ -178583,10 +179192,10 @@ self: { sha256 = "a38d1f7e6a40e2c990fec85215c45063a508bf73df98a4483ec78c5025b66cdc"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base containers HUnit mtl ]; + doCheck = false; homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; description = "Scrap Your Boilerplate"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-extras" = callPackage @@ -178737,8 +179346,8 @@ self: { }: mkDerivation { pname = "sync-mht"; - version = "0.3.8.3"; - sha256 = "071d833083b2dc77b94b9acae56397cddae646d3b3a88fac8e4ca13f8d55489f"; + version = "0.3.8.4"; + sha256 = "f276fac5a403f84dc4d1e75dfe257f3cc9b4c69f03803cd1c5654820a3035138"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -181120,6 +181729,7 @@ self: { base containers mtl optparse-applicative reducers split stm tagged tasty transformers ]; + doHaddock = false; homepage = "http://github.com/ocharles/tasty-rerun"; description = "Run tests by filtering the test tree depending on the result of previous test runs"; license = stdenv.lib.licenses.bsd3; @@ -181432,6 +182042,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring data-default http-conduit url utf8-string ]; + jailbreak = true; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -181552,8 +182163,8 @@ self: { }: mkDerivation { pname = "templatepg"; - version = "0.2.7"; - sha256 = "d0b35e35bff5ac9d2605c54fa20586d6286376ae1362dad0e069a65dc9e1002f"; + version = "0.2.8"; + sha256 = "bddd04dca12d48e9151b495b63a981540b2b6b6e7ba4857419abd2d3777410ac"; libraryHaskellDepends = [ base binary bytestring haskell-src-meta mtl network parsec regex-compat regex-posix template-haskell time utf8-string @@ -181827,6 +182438,8 @@ self: { testHaskellDepends = [ base base-unicode-symbols HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/roelvandijk/terminal-progress-bar"; description = "A simple progress bar in the terminal"; license = stdenv.lib.licenses.bsd3; @@ -181896,6 +182509,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; + "terminfo_0_4_0_2" = callPackage + ({ mkDerivation, base, ncurses }: + mkDerivation { + pname = "terminfo"; + version = "0.4.0.2"; + sha256 = "fea88b28443f5efd316c7699685b3925c0a7613992305f11af03746139d8f856"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ ncurses ]; + homepage = "https://github.com/judah/terminfo"; + description = "Haskell bindings to the terminfo library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) ncurses;}; + "terminfo-hs" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , directory, errors, filepath, QuickCheck @@ -182015,6 +182642,8 @@ self: { pname = "test-framework"; version = "0.8.1.1"; sha256 = "7883626a5aebb1df327bf26dbd382208946250a79f9cc3bf9a9eb0b0767bb273"; + revision = "1"; + editedCabalFile = "a6d9dbedbb574271e85c6e5ef9a9f935d87501a9b99b473bf306e3dcd36bdd9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182072,6 +182701,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions HUnit test-framework ]; + jailbreak = true; homepage = "https://batterseapower.github.io/test-framework/"; description = "HUnit support for the test-framework package"; license = stdenv.lib.licenses.bsd3; @@ -183279,6 +183909,8 @@ self: { pname = "text-show"; version = "2.1.2"; sha256 = "76c1ce631c6932816dc241b290400e7200d7c79fd50ec03f51964e244fae320d"; + revision = "1"; + editedCabalFile = "3fc10600ed0d309c095024b4d320ace8d39dd883e4e8d109d182930c2b35fc9c"; libraryHaskellDepends = [ array base base-compat bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups tagged @@ -183307,8 +183939,8 @@ self: { pname = "text-show-instances"; version = "2.1"; sha256 = "d8941910e88ad921a6337dd635356203137b85e5153a460b0b6bb3ebb0fd51b0"; - revision = "1"; - editedCabalFile = "41e3a6ee833f59df2813fcdab616023c86512175c402c45000e95622d6f9c3c5"; + revision = "2"; + editedCabalFile = "f7407e5c0227a4fae2090ae9a10d4f4b62b869c56432a9ecb8bc8daf453a6cf8"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -184398,6 +185030,7 @@ self: { testHaskellDepends = [ base concurrent-extra HUnit stm test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/threads"; description = "Fork threads and wait for their result"; @@ -184861,19 +185494,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "time_1_5_0_1" = callPackage + "time_1_6" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2, unix }: mkDerivation { pname = "time"; - version = "1.5.0.1"; - sha256 = "24a1cc077b0300d69401d08dfc8895b0199ebd003a9a0eb8845250dd2aebd14e"; + version = "1.6"; + sha256 = "2b4ff69434fd920353ab9948b8e36b71a76227661b06cad1bb0ef99a2e91a29f"; + revision = "1"; + editedCabalFile = "aa5ff661ec586e3c082485d21abe107332ba29355d1a2c8c2966ba518d1309f2"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq QuickCheck test-framework test-framework-quickcheck2 unix ]; + jailbreak = true; homepage = "https://github.com/haskell/time"; description = "A time library"; license = stdenv.lib.licenses.bsd3; @@ -185080,6 +185716,7 @@ self: { base data-ordlist HUnit mtl old-locale test-framework test-framework-hunit time ]; + jailbreak = true; homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; @@ -186614,6 +187251,20 @@ self: { pname = "transformers"; version = "0.4.3.0"; sha256 = "b3d0a797e815ca50d411e20c02f781efe7751308007d880af7f0b5c4365c3a9d"; + revision = "1"; + editedCabalFile = "60dafcffe8c4fe6f3760426fc35a325c8e6419877596518c76f46657280207a9"; + libraryHaskellDepends = [ base ]; + description = "Concrete functor and monad transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "transformers_0_5_0_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "transformers"; + version = "0.5.0.0"; + sha256 = "720541fc11ed72737c7059f47836361edb05f6eadcd535fffbee8801f3d03feb"; libraryHaskellDepends = [ base ]; description = "Concrete functor and monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -186911,6 +187562,7 @@ self: { base Cabal directory filepath MissingH optparse-applicative process split ]; + jailbreak = true; homepage = "https://github.com/bmjames/trawl"; description = "A tool for finding haddocks"; license = stdenv.lib.licenses.bsd3; @@ -187462,6 +188114,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -187485,6 +188138,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -187781,6 +188435,7 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -187802,6 +188457,29 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle_1_2_3" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.3"; + sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -187815,8 +188493,8 @@ self: { }: mkDerivation { pname = "turtle"; - version = "1.2.3"; - sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d"; + version = "1.2.4"; + sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4"; libraryHaskellDepends = [ async base clock directory foldl hostname managed optional-args optparse-applicative process stm system-fileio system-filepath @@ -188082,6 +188760,7 @@ self: { base Cabal data-default deepseq Diff HUnit lens should-not-typecheck void ]; + jailbreak = true; homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -188234,6 +188913,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -188255,6 +188935,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -189057,6 +189738,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typelits-witnesses" = callPackage + ({ mkDerivation, base, constraints, reflection }: + mkDerivation { + pname = "typelits-witnesses"; + version = "0.1.1.0"; + sha256 = "cdcf6b821063228a27b18b4f3b437db6b21e2241c0136e3aa14643ddafc03c26"; + libraryHaskellDepends = [ base constraints reflection ]; + homepage = "https://github.com/mstksg/typelits-witnesses"; + description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; + license = stdenv.lib.licenses.mit; + }) {}; + "typeof" = callPackage ({ mkDerivation, base, process }: mkDerivation { @@ -189447,6 +190140,7 @@ self: { async base bytestring bytestring-lexing deepseq network optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/hvr/uhttpc"; description = "Minimal HTTP client library optimized for benchmarking"; license = stdenv.lib.licenses.gpl3; @@ -192910,6 +193604,8 @@ self: { pname = "vector"; version = "0.11.0.0"; sha256 = "0a5320ed44c3f2b04b7f61e0f63f4fcd5b337524e601e01d5813ace3f5a432e4"; + revision = "1"; + editedCabalFile = "dfdf3252519ff35da59f977b7d37d6c5a6660673ce1234899af0111f7ece9c66"; libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; testHaskellDepends = [ base QuickCheck random template-haskell test-framework @@ -193486,7 +194182,6 @@ self: { testHaskellDepends = [ aeson base containers hspec unordered-containers vector verdict ]; - jailbreak = true; description = "JSON instances and JSON Schema for verdict"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193633,6 +194328,7 @@ self: { time-locale-compat transformers xdg-basedir yaml ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/pjones/vimeta"; description = "Frontend for video metadata tagging tools"; license = stdenv.lib.licenses.bsd2; @@ -194003,6 +194699,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "vrpn" = callPackage + ({ mkDerivation, base, vrpn }: + mkDerivation { + pname = "vrpn"; + version = "0.2.1.0"; + sha256 = "eb79f54712078283ce181e33b4fdac12b42bed7abe6d8c79b28e55771613754b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ vrpn ]; + executableHaskellDepends = [ base ]; + executableSystemDepends = [ vrpn ]; + homepage = "https://bitbucket.org/bwbush/vrpn"; + description = "Bindings to VRPN"; + license = stdenv.lib.licenses.mit; + }) {inherit (pkgs) vrpn;}; + "vte" = callPackage ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }: mkDerivation { @@ -194622,7 +195335,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-app-static" = callPackage + "wai-app-static_3_1_3" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, cryptohash , cryptohash-conduit, directory, file-embed, filepath, hspec @@ -194656,9 +195369,10 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-app-static_3_1_4" = callPackage + "wai-app-static" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, cryptohash , cryptohash-conduit, directory, file-embed, filepath, hspec @@ -194692,7 +195406,6 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-conduit_3_0_0_1" = callPackage @@ -194807,6 +195520,7 @@ self: { system-filepath text time transformers wai warp websockets ]; testHaskellDepends = [ base hspec stm ]; + jailbreak = true; homepage = "https://github.com/urbanslug/wai-devel"; description = "A web server for the development of WAI compliant web applications"; license = stdenv.lib.licenses.gpl3; @@ -195536,6 +196250,7 @@ self: { libraryHaskellDepends = [ base bytestring http-types lens network text vault wai ]; + jailbreak = true; homepage = "https://github.com/webcrank/wai-lens"; description = "Lenses for WAI"; license = stdenv.lib.licenses.bsd3; @@ -195684,19 +196399,6 @@ self: { }) {}; "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, wai }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.1"; - sha256 = "831cf0efc1fcbf5a43ef19f313427f1fcca1d3d5312f7cf4e05294984ccd3d83"; - libraryHaskellDepends = [ base blaze-builder bytestring wai ]; - testHaskellDepends = [ base ]; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "wai-middleware-caching_0_1_0_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai }: mkDerivation { @@ -195710,7 +196412,6 @@ self: { homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; description = "WAI Middleware to cache things"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching-lru" = callPackage @@ -195857,6 +196558,7 @@ self: { http-reverse-proxy optparse-applicative template-haskell text transformers wai wai-app-static warp ]; + jailbreak = true; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -195935,6 +196637,7 @@ self: { base base64-bytestring bytestring cryptohash filepath http-date http-types unix-compat unordered-containers wai ]; + jailbreak = true; homepage = "https://github.com/ameingast/wai-middleware-etag"; description = "WAI ETag middleware for static files"; license = stdenv.lib.licenses.bsd3; @@ -196130,6 +196833,7 @@ self: { base base16-bytestring bytestring containers cryptohash directory expiring-cache-map filepath http-types mtl old-locale text time wai ]; + jailbreak = true; homepage = "https://github.com/scotty-web/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; @@ -196369,6 +197073,7 @@ self: { aeson base blaze-builder bytestring containers http-types monad-loops mtl path-pieces random template-haskell text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -197573,8 +198278,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.10"; - sha256 = "c0b60aca4a6c10f7b6f00e2e17e5ba5f04ffefb287123541459436bfd22c4fd5"; + version = "3.1.11"; + sha256 = "f62ef8b6bd0402d99867cd207cad608b1904b7b88d84db9800f34eae37eb809c"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -197923,10 +198628,8 @@ self: { }: mkDerivation { pname = "warp-tls"; - version = "3.1.4"; - sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; - revision = "1"; - editedCabalFile = "39cf89625ffec9af354d3e502b6974ca122adf0241c9e1e6815bf4c11fb34535"; + version = "3.1.5"; + sha256 = "abb057ba735e455c354837f5daf07ea2c0274d8edfb7d39ac48412a6ebb9759f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -198242,25 +198945,20 @@ self: { "web-routes" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, HUnit, mtl, parsec, QuickCheck, split - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , test-framework-th, text, utf8-string + , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck + , split, text, utf8-string }: mkDerivation { pname = "web-routes"; - version = "0.27.9"; - sha256 = "868cc9f0eeb1c184aa03ccb220fe1729d481a3dc5ed9502f61e4eb69d963ecab"; - revision = "2"; - editedCabalFile = "542f5d20616359b0897018bbd347ce7f0dc948c4e031e8a5383ed85cb931406b"; + version = "0.27.10"; + sha256 = "1d0f5da073271aa45dbcc9ef51791841f45d13f16756cfe3c16d731e2dd67b4c"; libraryHaskellDepends = [ base blaze-builder bytestring exceptions ghc-prim http-types mtl parsec split text utf8-string ]; - testHaskellDepends = [ - base HUnit QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th - ]; - description = "Library for maintaining correctness and composability of URLs within an application"; + testHaskellDepends = [ base hspec HUnit QuickCheck ]; + homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; + description = "portable, type-safe URL routing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -198283,8 +198981,8 @@ self: { }: mkDerivation { pname = "web-routes-happstack"; - version = "0.23.9"; - sha256 = "fc67eae234d87a6b3a72aeac32ea5524572c4b412bfc34392a28889f4eaa526f"; + version = "0.23.10"; + sha256 = "a7bbf337cea91b3dbf41d1785a4edef238a1e7d78e64dd153b90e36df35afbed"; libraryHaskellDepends = [ base bytestring happstack-server text web-routes ]; @@ -198296,8 +198994,8 @@ self: { ({ mkDerivation, base, hsp, text, web-routes }: mkDerivation { pname = "web-routes-hsp"; - version = "0.24.6"; - sha256 = "d48d1c9711692d11d69d7cfee91b75c71b358e1e3d5d4006d8a736c94aef0d11"; + version = "0.24.6.1"; + sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; libraryHaskellDepends = [ base hsp text web-routes ]; description = "Adds XMLGenerator instance for RouteT monad"; license = stdenv.lib.licenses.bsd3; @@ -198334,29 +199032,25 @@ self: { ({ mkDerivation, base, parsec, regular, text, web-routes }: mkDerivation { pname = "web-routes-regular"; - version = "0.19.0"; - sha256 = "b904709802bd9efe81e706fb54aee217cd79ee1f723348a033acd65f89e69462"; + version = "0.19.0.1"; + sha256 = "5e2aa9d867c0baa3f288b7f84c53053994a12a4bf1484de6455423aada5fda3b"; libraryHaskellDepends = [ base parsec regular text web-routes ]; - description = "Library for maintaining correctness of URLs within an application"; + description = "portable, type-safe URL routing"; license = stdenv.lib.licenses.bsd3; }) {}; "web-routes-th" = callPackage - ({ mkDerivation, base, HUnit, parsec, QuickCheck, split - , template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, test-framework-th, text, web-routes + ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split + , template-haskell, text, web-routes }: mkDerivation { pname = "web-routes-th"; - version = "0.22.3"; - sha256 = "d7fd87388133e8f7dbb2cc933528a85fc9ada003d19c4317b40e341d7f0d9b31"; + version = "0.22.4"; + sha256 = "b09ba714032918dd6e2e729ef7ebb1fae50a97d1cd04e1efb94dd191f52ee0b6"; libraryHaskellDepends = [ base parsec split template-haskell text web-routes ]; - testHaskellDepends = [ - base HUnit QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th web-routes - ]; + testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ]; description = "Support for deriving PathInfo using Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -198380,8 +199074,8 @@ self: { }: mkDerivation { pname = "web-routes-wai"; - version = "0.24.1"; - sha256 = "2be042988e73432a9fb1f2a553607548cca7fb821b91be166249cceb9477bc8e"; + version = "0.24.2"; + sha256 = "66708017753ab953a34e944a9f90c7f26a24a7eefda2363746a3abde2e2358dd"; libraryHaskellDepends = [ base bytestring http-types text wai web-routes ]; @@ -198464,6 +199158,7 @@ self: { http-media http-types lens mtl tasty tasty-hunit tasty-quickcheck unordered-containers ]; + jailbreak = true; homepage = "https://github.com/webcrank/webcrank.hs"; description = "Webmachine inspired toolkit for building http applications and services"; license = stdenv.lib.licenses.bsd3; @@ -198638,6 +199333,7 @@ self: { transformers-base unordered-containers vector zip-archive ]; testHaskellDepends = [ base parallel text ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -198665,6 +199361,7 @@ self: { transformers-base unordered-containers vector zip-archive ]; testHaskellDepends = [ base parallel text ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -198682,8 +199379,8 @@ self: { }: mkDerivation { pname = "webdriver"; - version = "0.8.0.3"; - sha256 = "3caa382fdb75533be48b3bbf3c1d7f0c11dcbed76d49b002b9a16591b62903e4"; + version = "0.8.0.4"; + sha256 = "11a3b0fd53ad2ef2014d57b9964ff258a4394c10ff00947932637180983077db"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring data-default-class directory directory-tree exceptions filepath @@ -198691,7 +199388,6 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; - testHaskellDepends = [ base text ]; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -199109,6 +199805,7 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; @@ -199136,6 +199833,7 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; @@ -199569,8 +200267,8 @@ self: { }: mkDerivation { pname = "wiring"; - version = "0.4.1"; - sha256 = "b2a6e2ac3299d109244432dbdce4094d9967f10916c31a3df5a7bf6fbcc67b01"; + version = "0.4.2"; + sha256 = "f8b9cc8d1811d88ad1a19e67ae071f4bcdef17ae3ce1f63e9664f5255033e689"; libraryHaskellDepends = [ base mtl template-haskell transformers ]; testHaskellDepends = [ base hspec mtl QuickCheck template-haskell transformers @@ -200214,6 +200912,7 @@ self: { transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; @@ -201012,7 +201711,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "x509-system" = callPackage + "x509-system_1_6_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, pem, process, x509, x509-store }: @@ -201027,22 +201726,40 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Handle per-operating-system X.509 accessors and storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "x509-system" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, pem, process, x509, x509-store + }: + mkDerivation { + pname = "x509-system"; + version = "1.6.3"; + sha256 = "24237c3df1bf692fcf7bade432970ee2eb06db7437fa0e95986ef7535a68f6e0"; + libraryHaskellDepends = [ + base bytestring containers directory filepath mtl pem process x509 + x509-store + ]; + homepage = "http://github.com/vincenthz/hs-certificate"; + description = "Handle per-operating-system X.509 accessors and storage"; + license = stdenv.lib.licenses.bsd3; }) {}; "x509-util" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , cryptonite, directory, pem, x509, x509-store, x509-system - , x509-validation + , cryptonite, directory, hourglass, pem, x509, x509-store + , x509-system, x509-validation }: mkDerivation { pname = "x509-util"; - version = "1.6.0"; - sha256 = "823ed93ad997c5084bc9610814e7da28414e6aed80b0d37ba1218face3a10c82"; + version = "1.6.1"; + sha256 = "d534388d8c633b7dfb0f06a7b498f91f4dfd225b4cd1dd535f45b6e085c9078d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - asn1-encoding asn1-types base bytestring cryptonite directory pem - x509 x509-store x509-system x509-validation + asn1-encoding asn1-types base bytestring cryptonite directory + hourglass pem x509 x509-store x509-system x509-validation ]; homepage = "http://github.com/vincenthz/hs-certificate"; description = "Utility for X509 certificate and chain"; @@ -201294,15 +202011,14 @@ self: { }: mkDerivation { pname = "xdot"; - version = "0.2.4.8"; - sha256 = "e9bda0abdde68181fe178c7ba176687f8f6438446ee06bd4099df6ca7c155bb9"; + version = "0.2.4.9"; + sha256 = "a2ace6970b425d1721b06b054422eef097837e31555579deee3fe532c11a0cda"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cairo graphviz gtk mtl polyparse text ]; executableHaskellDepends = [ base cairo graphviz gtk text ]; - jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -202010,7 +202726,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_2" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -202032,6 +202748,31 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xml-conduit" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, conduit, conduit-extra, containers + , data-default, deepseq, hspec, HUnit, monad-control, resourcet + , text, transformers, xml-types + }: + mkDerivation { + pname = "xml-conduit"; + version = "1.3.3"; + sha256 = "300a0b5eb2ff1062012b61bc4aaa390571daecc671af2d8567a649489b08b66b"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + conduit conduit-extra containers data-default deepseq monad-control + resourcet text transformers xml-types + ]; + testHaskellDepends = [ + base blaze-markup bytestring conduit containers hspec HUnit + resourcet text transformers xml-types + ]; + homepage = "http://github.com/snoyberg/xml"; + description = "Pure-Haskell utilities for dealing with XML with the conduit package"; + license = stdenv.lib.licenses.mit; }) {}; "xml-conduit-parse" = callPackage @@ -202684,20 +203425,23 @@ self: { inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; "xmonad" = callPackage - ({ mkDerivation, base, containers, directory, extensible-exceptions - , filepath, mtl, process, unix, utf8-string, X11 + ({ mkDerivation, base, containers, data-default, directory + , extensible-exceptions, filepath, mtl, process, QuickCheck + , setlocale, unix, utf8-string, X11 }: mkDerivation { pname = "xmonad"; - version = "0.11.1"; - sha256 = "39e0bf227df782d7a5799c811ad0d8b70c9d6eaaa94e8cc395fcf25895d6d2dd"; - revision = "1"; - editedCabalFile = "12849de2637cf39a8c0311d81418632e719125f55db2faf931b1905d85d5bf3d"; + version = "0.12"; + sha256 = "e8f649dbd4a8d5f75fdac9ceb5ee38b64fd351910ade81c188f5dd7bc21dfdd7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers directory extensible-exceptions filepath mtl - process unix utf8-string X11 + base containers data-default directory extensible-exceptions + filepath mtl process setlocale unix utf8-string X11 + ]; + executableHaskellDepends = [ base mtl unix X11 ]; + testHaskellDepends = [ + base containers extensible-exceptions QuickCheck X11 ]; postInstall = '' shopt -s globstar @@ -202732,18 +203476,19 @@ self: { "xmonad-contrib" = callPackage ({ mkDerivation, base, containers, directory, extensible-exceptions - , mtl, old-locale, old-time, process, random, unix, utf8-string - , X11, X11-xft, xmonad + , filepath, mtl, old-locale, old-time, process, random, unix + , utf8-string, X11, X11-xft, xmonad }: mkDerivation { pname = "xmonad-contrib"; - version = "0.11.4"; - sha256 = "a379b3d4f2d3d8793d6c76812e90cbb055fa0598cfba944af47139bb77e2acbc"; - revision = "1"; - editedCabalFile = "0280216420efaa06de7080d5998a24e27166e8b2c3d8a012846d004799c5edf2"; + version = "0.12"; + sha256 = "131d31c471ac02ece9c7e920497b4839a45df786a2096f56adb1f2de1221f311"; + revision = "2"; + editedCabalFile = "8a17b7fe46dc9d7435538a0db3997bcb2a125e71923ecd401024d84081a41807"; libraryHaskellDepends = [ - base containers directory extensible-exceptions mtl old-locale - old-time process random unix utf8-string X11 X11-xft xmonad + base containers directory extensible-exceptions filepath mtl + old-locale old-time process random unix utf8-string X11 X11-xft + xmonad ]; homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; @@ -202875,6 +203620,7 @@ self: { version = "0.0.1.2"; sha256 = "b02e1c7a524dd9cf28d5cff6933194fe245fa4e9247f701ec87195a20a8cf265"; libraryHaskellDepends = [ base magic mtl random unix xmonad ]; + jailbreak = true; description = "xmonad wallpaper extension"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -205198,6 +205944,7 @@ self: { http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -205219,6 +205966,7 @@ self: { http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -206310,8 +207058,8 @@ self: { }: mkDerivation { pname = "yesod-content-pdf"; - version = "0.2.0.1"; - sha256 = "c6fb370baf348742237d89fb83996ff75459767dc86926e84c9daa45c6c20e46"; + version = "0.2.0.2"; + sha256 = "867cb1a9bbbeff69bb8ae35659f780bcf057cb44a2b1f6c8e424d280a55a0fbb"; libraryHaskellDepends = [ base blaze-builder blaze-html bytestring conduit data-default directory network-uri process temporary transformers yesod-core @@ -207076,7 +207824,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_17" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -207113,9 +207861,10 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core_1_4_18" = callPackage + "yesod-core" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -207130,8 +207879,8 @@ self: { }: mkDerivation { pname = "yesod-core"; - version = "1.4.18"; - sha256 = "1580cfac8d8255fe0d14af2d5edabfbad2e62238af13cea33b7144cdfba11d16"; + version = "1.4.18.1"; + sha256 = "8964a1ce27f7d15037eee05611546a8e5e183640115e92e70fc73e1116beddb0"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -207152,7 +207901,6 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-crud" = callPackage @@ -207717,6 +208465,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -207752,6 +208501,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -208305,6 +209055,7 @@ self: { base data-default hsass shakespeare template-haskell text yesod-core ]; + jailbreak = true; description = "A simple quasiquoter to include sass code in yesod"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -208571,6 +209322,7 @@ self: { base bytestring hamlet hspec HUnit shakespeare template-haskell text yesod-core yesod-static yesod-test ]; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; @@ -208627,22 +209379,6 @@ self: { }) {}; "yesod-table" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant, text - , yesod-core - }: - mkDerivation { - pname = "yesod-table"; - version = "2.0.0"; - sha256 = "1a41ff344fb908ddd04d23e5c0b896b738987b8d8f162192168b367b7450e867"; - libraryHaskellDepends = [ - base bytestring containers contravariant text yesod-core - ]; - homepage = "https://github.com/andrewthad/yesod-table"; - description = "HTML tables for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - - "yesod-table_2_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant, text , yesod-core }: @@ -208656,7 +209392,6 @@ self: { homepage = "https://github.com/andrewthad/yesod-table"; description = "HTML tables for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-tableview" = callPackage @@ -209164,8 +209899,8 @@ self: { }: mkDerivation { pname = "yi"; - version = "0.12.2"; - sha256 = "16107755bd53f04a8edd03c2db50be3d7640b8d9503dea17ea923726c4de9e06"; + version = "0.12.3"; + sha256 = "2ce8a6cd30f67839eba0581f8643fd80ff9138059d9b66d3b689cc867b9562b6"; configureFlags = [ "-fpango" "-fvty" ]; isLibrary = true; isExecutable = true; @@ -209183,7 +209918,6 @@ self: { base directory filepath HUnit lens QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text yi-language yi-rope ]; - jailbreak = true; homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; @@ -209574,6 +210308,7 @@ self: { HStringTemplate lucid old-locale old-time pandoc parsec scientific split text time unordered-containers yaml ]; + jailbreak = true; homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; @@ -209806,6 +210541,7 @@ self: { version = "0.1.3"; sha256 = "bc57b63f12a935ee20558fea1930ebcf3c4f0ddffa5e1e9be05af6222466fbfe"; libraryHaskellDepends = [ base semigroups ]; + jailbreak = true; homepage = "https://github.com/phaazon/zero"; description = "Semigroups with absorption"; license = stdenv.lib.licenses.bsd3; @@ -209841,7 +210577,6 @@ self: { executableHaskellDepends = [ base bytestring docopt raw-strings-qq ]; - jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; From 4418b8b034dd985e86690bb87d1d874e3def014d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 20 Dec 2015 21:30:05 +0100 Subject: [PATCH 512/707] Add LTS Haskell 3.19. --- pkgs/top-level/haskell-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index ad29a94b199..ab3a1e06393 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -310,6 +310,9 @@ rec { lts-3_18 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.18.nix { }; }; + lts-3_19 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.19.nix { }; + }; }; } From f1b0383c921140fb64589ee4adb38c10424ee295 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 21 Dec 2015 15:30:24 +0100 Subject: [PATCH 513/707] haskell-binary: update overrides for version 0.8.x --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index 06fedc6a1c4..6d4e7a7bb25 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -41,7 +41,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_7_6_1; + binary = self.binary_0_8_0_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index cc5d03f05f5..3173189c430 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -35,7 +35,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_7_6_1; + binary = self.binary_0_8_0_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index b79cdb6da97..51962f161fc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -42,7 +42,7 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_0_0; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 693c0b1d522..f1774c04a8f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -41,10 +41,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index a1ce7cf68d6..4716766226a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -40,10 +40,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 7c6940b8238d0a5e330eb89c13b898a7fd76966a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 20 Dec 2015 11:30:34 +0100 Subject: [PATCH 514/707] haskell-time: remove obsolete overrides --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 065fd9b34d8..c2ed3647113 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -138,9 +138,6 @@ self: super: { # Foreign dependency name clashes with another Haskell package. libarchive-conduit = super.libarchive-conduit.override { archive = pkgs.libarchive; }; - # https://github.com/haskell/time/issues/23 - time_1_5_0_1 = dontCheck super.time_1_5_0_1; - # Switch levmar build to openblas. bindings-levmar = overrideCabal super.bindings-levmar (drv: { preConfigure = '' From 57c9994a08831d45f93970c357f12b240f8b1115 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:46:15 -0600 Subject: [PATCH 515/707] ace-jump-mode: 20140616 -> 2.0 --- pkgs/top-level/emacs-packages.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 6728280c3bc..fe57a2f122a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -84,21 +84,6 @@ let }; }; - ace-jump-mode = melpaBuild rec { - pname = "ace-jump-mode"; - version = "20140616"; - src = fetchFromGitHub { - owner = "winterTTr"; - repo = pname; - rev = "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac"; - sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; - }; - meta = { - description = "Advanced cursor movements mode for Emacs"; - license = gpl3Plus; - }; - }; - tablist = melpaBuild rec { pname = "tablist"; inherit (pdf-tools) src version; From b3949f29cd6a69bb14929fd657ed9600d5f325d6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:50:21 -0600 Subject: [PATCH 516/707] emacsPackagesNg.ack-menu: broken upstream --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 7 ++++++- .../editors/emacs-modes/melpa-stable-packages.nix | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 43d48d0d298..2d66423eb2d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -62,5 +62,10 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; + + melpaPackages = super // { + # broken upstream + ack-menu = markBroken super.ack-menu; + }; in - super // { melpaPackages = super; } + melpaPackages // { inherit melpaPackages; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index aa940016b5e..a65f1b0dc28 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -64,5 +64,10 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; + + melpaStablePackages = super // { + # broken upstream + ack-menu = markBroken super.ack-menu; + }; in - super // { melpaStablePackages = super; } + melpaStablePackages // { inherit melpaStablePackages; } From 26a7470ce6c1b5cc34047678870c7c007f113777 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:10 -0600 Subject: [PATCH 517/707] elpa-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 479835dd8b0..aa30d62c60a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -35,7 +35,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From f35c3d03d658f2d948e26cbbdeb138beba2c826e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:25 -0600 Subject: [PATCH 518/707] melpa-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 2d66423eb2d..d7e894c672a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -40,7 +40,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From a9ca11e82a0e70f834db9891c95de1b3f7c57408 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:34 -0600 Subject: [PATCH 519/707] melpa-stable-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index a65f1b0dc28..7572c722e33 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -42,7 +42,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From 8519b89f7684586189696deb3c9f7784d0d0c959 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Tue, 22 Dec 2015 14:49:44 +0100 Subject: [PATCH 520/707] wine unstable, staging: 1.8-rc4 -> 1.8 --- pkgs/misc/emulators/wine/versions.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index c308dd3c87f..057f5214aa2 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -12,16 +12,15 @@ rec { monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; unstable = { - wineVersion = "1.8-rc4"; ## wait for staging 1.8 - wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; inherit (stable) + wineVersion wineSha256 geckoVersion geckoSha256 gecko64Version gecko64Sha256 monoVersion monoSha256; }; staging = { version = unstable.wineVersion; - sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; + sha256 = "1mi2nk5cjgfrkv8g082d4klniz1dprmvvida8c30qf2j4jykn3vb"; }; winetricks = { version = "20151116"; From 47f7cbb5bf7b0ef30f2b815592a22a653d100f19 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 22 Dec 2015 15:12:02 +0100 Subject: [PATCH 521/707] python audiotools: 2.22 -> 3.1.1 --- pkgs/top-level/python-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 45b8aec62fd..7f13e91bfb1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -863,13 +863,12 @@ in modules // { }; audiotools = buildPythonPackage rec { - name = "audiotools-2.22"; - - disabled = isPy3k; + name = "audiotools-${version}"; + version = "3.1.1"; src = pkgs.fetchurl { - url = "mirror://sourceforge/audiotools/${name}.tar.gz"; - sha256 = "1c52pggsbxdbj8h92njf4h0jgfndh4yv58ad723pidys47nw1y71"; + url = "https://github.com/tuffy/python-audio-tools/archive/v${version}.tar.gz"; + sha256 = "0ymlxvqkqhzk4q088qwir3dq0zgwqlrrdfnq7f0iq97g05qshm2c"; }; meta = { From e16d3d0d8ac896f0afa7636f24935fcf31d7553e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 22 Dec 2015 16:51:46 +0100 Subject: [PATCH 522/707] texlive: add xdvi binary part (fixes #11816) It seems to work fine for me now, after adding dependency on metafont. --- .../tools/typesetting/tex/texlive-new/bin.nix | 25 +++++++++++++++++++ .../typesetting/tex/texlive-new/default.nix | 4 +++ 2 files changed, 29 insertions(+) diff --git a/pkgs/tools/typesetting/tex/texlive-new/bin.nix b/pkgs/tools/typesetting/tex/texlive-new/bin.nix index 677e64c57dc..431f3926a13 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/bin.nix @@ -8,6 +8,8 @@ , makeWrapper }: +# Useful resource covering build options: +# http://tug.org/texlive/doc/tlbuild.html let withSystemLibs = map (libname: "--with-system-${libname}"); @@ -221,5 +223,28 @@ bibtex8 = stdenv.mkDerivation { }; +xdvi = stdenv.mkDerivation { + name = "texlive-xdvi.bin-${version}"; + + inherit (common) src; + + buildInputs = [ pkgconfig core/*kpathsea*/ freetype ghostscript ] + ++ (with xorg; [ libX11 libXaw libXi libXpm libXmu libXaw libXext libXfixes ]); + + preConfigure = "cd texk/xdvik"; + + configureFlags = common.configureFlags + ++ [ "--with-system-kpathsea" "--with-system-libgs" ]; + + enableParallelBuilding = true; + + postInstall = '' + substituteInPlace "$out/bin/xdvi" \ + --replace "exec xdvi-xaw" "exec '$out/bin/xdvi-xaw'" + ''; + # TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014 +}; + + } # un-indented diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index a084c973b78..5fe52ba07ba 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -84,6 +84,10 @@ let latex = orig.latex // { deps = removeAttrs orig.latex.deps [ "luatex" ]; }; + + xdvi = orig.xdvi // { # it seems to need it to transform fonts + deps = (orig.xdvi.deps or {}) // { inherit (tl) metafont; }; + }; }; # overrides # tl = From eb7a4411797c0def3d95d2402a7b9cef37ae5ec3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Dec 2015 18:02:15 +0100 Subject: [PATCH 523/707] haskellPackages.xmonad: Update xmonad-nix.patch --- .../haskell-modules/patches/xmonad-nix.patch | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/haskell-modules/patches/xmonad-nix.patch b/pkgs/development/haskell-modules/patches/xmonad-nix.patch index 810d8435a34..cfce819747f 100644 --- a/pkgs/development/haskell-modules/patches/xmonad-nix.patch +++ b/pkgs/development/haskell-modules/patches/xmonad-nix.patch @@ -1,6 +1,6 @@ ---- xmonad-0.11/XMonad/Core.hs 2013-01-01 01:31:47.000000000 +0000 -+++ new-xmonad/XMonad/Core.hs 2013-12-23 17:36:40.862146910 +0000 -@@ -47,6 +47,7 @@ +--- a/src/XMonad/Core.hs ++++ b/src/XMonad/Core.hs +@@ -48,6 +48,7 @@ import System.Posix.Types (ProcessID) import System.Process import System.Directory import System.Exit @@ -8,7 +8,7 @@ import Graphics.X11.Xlib import Graphics.X11.Xlib.Extras (Event) import Data.Typeable -@@ -452,6 +453,7 @@ +@@ -463,6 +464,7 @@ recompile force = io $ do err = base ++ ".errors" src = base ++ ".hs" lib = dir "lib" @@ -16,16 +16,16 @@ libTs <- mapM getModTime . Prelude.filter isSource =<< allFiles lib srcT <- getModTime src binT <- getModTime bin -@@ -460,7 +462,7 @@ +@@ -471,7 +473,7 @@ recompile force = io $ do -- temporarily disable SIGCHLD ignoring: uninstallSignalHandlers status <- bracket (openFile err WriteMode) hClose $ \h -> -- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir) -+ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir) +- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir) ++ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir) Nothing Nothing Nothing (Just h) -- re-enable SIGCHLD: -@@ -469,6 +471,7 @@ +@@ -480,6 +482,7 @@ recompile force = io $ do -- now, if it fails, run xmessage to let the user know: when (status /= ExitSuccess) $ do ghcErr <- readFile err @@ -33,7 +33,7 @@ let msg = unlines $ ["Error detected while loading xmonad configuration file: " ++ src] ++ lines (if null ghcErr then show status else ghcErr) -@@ -476,7 +479,7 @@ +@@ -487,7 +490,7 @@ recompile force = io $ do -- nb, the ordering of printing, then forking, is crucial due to -- lazy evaluation hPutStrLn stderr msg From b336e1b24a87277a217fce43c6d86689eac05422 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 22 Dec 2015 19:51:55 +0100 Subject: [PATCH 524/707] alsa-utils: fix alsa-info.sh --- pkgs/os-specific/linux/alsa-utils/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/alsa-utils/default.nix b/pkgs/os-specific/linux/alsa-utils/default.nix index 9f6fc98b5cf..bcac888d471 100644 --- a/pkgs/os-specific/linux/alsa-utils/default.nix +++ b/pkgs/os-specific/linux/alsa-utils/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}: +{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils}: stdenv.mkDerivation rec { name = "alsa-utils-${version}"; @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { sha256 = "16ryhgbapp4pxyvsjc258mcj14wk7x3xs6g9bpnkqj0l7s7haq2i"; }; + patchPhase = '' + substituteInPlace alsa-info/alsa-info.sh \ + --replace "which" "type -p" \ + --replace "lspci" "${pciutils}/bin/lspci" + ''; buildInputs = [ gettext alsaLib ncurses libsamplerate ]; configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d"; From de12417ec718af4b914f544f65a15591479d82a4 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 22 Dec 2015 20:31:34 +0100 Subject: [PATCH 525/707] anki: enable playing sound files --- pkgs/games/anki/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 735d260560d..f99a8ddb4a8 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -23,6 +23,10 @@ stdenv.mkDerivation rec { buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; + patchPhase = '' + substituteInPlace anki/sound.py --replace '["mplayer"]' '["${mplayer}/bin/mplayer"]' + ''; + preConfigure = '' substituteInPlace anki/anki \ --replace /usr/share/ $out/share/ From cd7cfcc9a22fe61d7ff08befece3894225f8d064 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 14:21:34 -0600 Subject: [PATCH 526/707] arpack: include OpenBLAS path in pkgconfig file --- .../libraries/science/math/arpack/default.nix | 8 +++++++- .../science/math/arpack/openblas-libdir.patch | 11 +++++++++++ pkgs/development/libraries/science/math/arpack/series | 1 + 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/science/math/arpack/openblas-libdir.patch create mode 100644 pkgs/development/libraries/science/math/arpack/series diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix index 58326a6fa50..13bf512b32d 100644 --- a/pkgs/development/libraries/science/math/arpack/default.nix +++ b/pkgs/development/libraries/science/math/arpack/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gfortran, openblas }: +{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }: with stdenv.lib; @@ -7,11 +7,17 @@ let in stdenv.mkDerivation { name = "arpack-${version}"; + src = fetchurl { url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz"; sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff"; }; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + postPatch = '' + substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib" + ''; + buildInputs = [ gfortran openblas ]; # Auto-detection fails because gfortran brings in BLAS by default diff --git a/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch new file mode 100644 index 00000000000..421f8e85f5f --- /dev/null +++ b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch @@ -0,0 +1,11 @@ +Index: arpack-ng-3.2.0/arpack.pc.in +=================================================================== +--- arpack-ng-3.2.0.orig/arpack.pc.in ++++ arpack-ng-3.2.0/arpack.pc.in +@@ -5,5 +5,5 @@ libdir=@libdir@ + Name: arpack + Description: ARPACK-NG + Version: @PACKAGE_VERSION@ +-Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ ++Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ + Cflags: diff --git a/pkgs/development/libraries/science/math/arpack/series b/pkgs/development/libraries/science/math/arpack/series new file mode 100644 index 00000000000..6ac0b3286ef --- /dev/null +++ b/pkgs/development/libraries/science/math/arpack/series @@ -0,0 +1 @@ +openblas-libdir.patch From 540c520cf682622884057bdc26f6c5c0eb0da9a9 Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 22 Dec 2015 13:26:23 -0800 Subject: [PATCH 527/707] rkt: bump version 0.13.0 -> 0.14.0, fixes #11885 --- pkgs/applications/virtualization/rkt/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index c95ccaaf0a8..eb2a5d737a3 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -2,14 +2,14 @@ , fetchurl, fetchFromGitHub }: let - coreosImageRelease = "794.1.0"; - coreosImageSystemdVersion = "222"; + coreosImageRelease = "835.9.0"; + coreosImageSystemdVersion = "225"; # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor. stage1Flavours = [ "coreos" ]; in stdenv.mkDerivation rec { - version = "0.13.0"; + version = "0.14.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,12 +17,12 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1qx8bzcm5xifr9x2wa83mqz15bk2rpjqabm00wzbqixcyxra9bka"; + sha256 = "0dmgs9s40xhan2rh9f5n0k5gv8p2dn946zffq02sq35qqvi67s71"; }; stage1BaseImage = fetchurl { - url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; - sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym"; + url = "http://stable.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; + sha256 = "51dc10b4269b9c1801c233de49da817d29ca8d858bb0881df94dc90f7e86ce70"; }; buildInputs = [ autoconf automake go file git wget gnupg1 squashfsTools cpio ]; From 96716749593c0a240422fea27268680e5522246a Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 22 Dec 2015 15:31:00 -0800 Subject: [PATCH 528/707] acbuild: 0.1.1 -> 0.2.2 and moved to own default.nix, fixes #11889 --- lib/maintainers.nix | 1 + pkgs/applications/misc/acbuild/default.nix | 37 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 20 ------------ 4 files changed, 40 insertions(+), 20 deletions(-) create mode 100644 pkgs/applications/misc/acbuild/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index e19970fe914..3e681c67351 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ devhell = "devhell <\"^\"@regexmail.net>"; dezgeg = "Tuomas Tynkkynen "; dfoxfranke = "Daniel Fox Franke "; + dgonyeo = "Derek Gonyeo "; dmalikov = "Dmitry Malikov "; dochang = "Desmond O. Chang "; doublec = "Chris Double "; diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix new file mode 100644 index 00000000000..3c8f4f335f2 --- /dev/null +++ b/pkgs/applications/misc/acbuild/default.nix @@ -0,0 +1,37 @@ +{ stdenv, lib, go, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "acbuild-${version}"; + version = "0.2.2"; + + src = fetchFromGitHub { + owner = "appc"; + repo = "acbuild"; + rev = "v${version}"; + sha256 = "0sajmjg655irwy5fywk88cmwhc1q186dg5w8589pab2jhwpavdx4"; + }; + + buildInputs = [ go ]; + + patchPhase = '' + sed -i -e 's|\$(git describe --dirty)|"${version}"|' build + ''; + + buildPhase = '' + patchShebangs build + ./build + ''; + + installPhase = '' + mkdir -p $out + mv bin $out + ''; + + meta = with stdenv.lib; { + description = "A build tool for ACIs"; + homepage = https://github.com/appc/acbuild; + license = licenses.asl20; + maintainers = with maintainers; [ dgonyeo ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1b778a95cb..1b1149654e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -482,6 +482,8 @@ let abduco = callPackage ../tools/misc/abduco { }; + acbuild = callPackage ../applications/misc/acbuild { }; + acct = callPackage ../tools/system/acct { }; acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 776558b126f..8357971d0f9 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3218,26 +3218,6 @@ let sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; }; - acbuild = stdenv.mkDerivation rec { - version = "0.1.1"; - name = "acbuild-${version}"; - src = fetchFromGitHub { - rev = "beae3971de6b2c35807a98ef1d0fa3167cc3a4a8"; - owner = "appc"; - repo = "acbuild"; - sha256 = "1mjmg2xj190dypp2yqslrx8xhwcyrrz38xxp0rig4fr60i2qy41j"; - }; - buildInputs = [ go ]; - patchPhase = '' - sed -i -e 's|\$(git describe --dirty)|"${version}"|' build - sed -i -e 's|\$GOBIN/acbuild|$out/bin/acbuild|' build - ''; - installPhase = '' - mkdir -p $out/bin - ./build - ''; - }; - color = buildFromGitHub { rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; owner = "fatih"; From 971d580a008252337ba6ddcb20a5d1443af09029 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 22 Dec 2015 10:34:24 +0100 Subject: [PATCH 529/707] spotify: fix missing ffmpeg_0_10 dependency, fixes #11877 This makes local playback work. --- pkgs/applications/audio/spotify/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 2868d760973..f53154217a8 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf , libgcrypt, chromium, udev, fontconfig -, dbus, expat }: +, dbus, expat, ffmpeg_0_10 }: assert stdenv.system == "x86_64-linux"; @@ -15,6 +15,7 @@ let cups dbus expat + ffmpeg_0_10 fontconfig freetype GConf From eb8e309d2b4523b9dc1777385ae6087a37d8562c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 22 Dec 2015 13:59:28 -0500 Subject: [PATCH 530/707] kotlin: 1.0.0-beta-3595 -> 1.0.0-beta-4583, fixes #11883 --- pkgs/development/compilers/kotlin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index e97309f9252..9b7c97c8c25 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip, which }: stdenv.mkDerivation rec { - version = "1.0.0-beta-3595"; + version = "1.0.0-beta-4583"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae"; + sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188"; }; propagatedBuildInputs = [ jre which ] ; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { longDescription = '' Kotlin is a statically typed language that targets the JVM and JavaScript. It is a general-purpose language intended for industry use. - It is developed by a team at JetBrains although it is an OSS language + It is developed by a team at JetBrains although it is an OSS language and has external contributors. ''; homepage = http://kotlinlang.org/; From e2a25433b2deb324bdf21de7643b7acff4351ab2 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Tue, 22 Dec 2015 21:47:49 +0000 Subject: [PATCH 531/707] copyq: init at 2.5.0, fixed #11887 --- lib/maintainers.nix | 1 + pkgs/applications/misc/copyq/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/copyq/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 3e681c67351..16e4c1e35ff 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -321,6 +321,7 @@ vmandela = "Venkateswara Rao Mandela "; vozz = "Oliver Hunt "; wedens = "wedens "; + willtim = "Tim Philip Williams "; winden = "Antonio Vargas Gonzalez "; wizeman = "Ricardo M. Correia "; wjlroe = "William Roe "; diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix new file mode 100644 index 00000000000..0892f889932 --- /dev/null +++ b/pkgs/applications/misc/copyq/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, cmake, qt4, libXfixes, libXtst}: + +let version = "2.5.0"; +in +stdenv.mkDerivation { + name = "CopyQ-${version}"; + src = fetchurl { + url = "https://github.com/hluk/CopyQ/archive/v${version}.tar.gz"; + sha256 = "7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1"; + }; + + buildInputs = [ cmake qt4 libXfixes libXtst ]; + + meta = with stdenv.lib; { + homepage = "https://hluk.github.io/CopyQ"; + description = "Clipboard Manager with Advanced Features"; + license = licenses.gpl3; + maintainers = with maintainers; [ willtim ]; + # NOTE: CopyQ supports windows and osx, but I cannot test these. + # OSX build requires QT5. + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1b1149654e5..c387847dd27 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11265,6 +11265,8 @@ let constant-detune-chorus = callPackage ../applications/audio/constant-detune-chorus { }; + copyq = callPackage ../applications/misc/copyq { }; + coriander = callPackage ../applications/video/coriander { inherit (gnome) libgnomeui GConf; }; From db1086f3a17dc73232a11c408ca1c43cdf785dc6 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Wed, 23 Dec 2015 01:28:29 +0100 Subject: [PATCH 532/707] gnome3: removed duplicate line, fixes #11891 --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 886a6c88401..c1e14e45d75 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -140,9 +140,6 @@ in { # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update - # Find the mouse - export XCURSOR_PATH=~/.icons:${config.system.path}/share/icons - ${gnome3.gnome_session}/bin/gnome-session& waitPID=$! ''; From e99beec0e16539c47c783b84592b79c088956527 Mon Sep 17 00:00:00 2001 From: Nicole Angel Date: Sun, 22 Nov 2015 18:20:41 +0100 Subject: [PATCH 533/707] Keefox (keepass plugin): init at 1.5.4 --- .../misc/keepass-plugins/keefox/default.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/applications/misc/keepass-plugins/keefox/default.nix diff --git a/pkgs/applications/misc/keepass-plugins/keefox/default.nix b/pkgs/applications/misc/keepass-plugins/keefox/default.nix new file mode 100644 index 00000000000..e32f0b7ca01 --- /dev/null +++ b/pkgs/applications/misc/keepass-plugins/keefox/default.nix @@ -0,0 +1,33 @@ +{ stdenv, buildEnv, fetchurl, mono, unzip }: + +let + version = "1.5.4"; + drv = stdenv.mkDerivation { + name = "keefox-${version}"; + src = fetchurl { + url = "https://github.com/luckyrat/KeeFox/releases/download/v${version}/${version}.xpi"; + sha256 = "c7c30770beb0ea32cbdee5311d03a9910fb7772695af3aa655e4ae64cd4d8335"; + }; + + meta = { + description = "Keepass plugin for keefox Firefox add-on"; + homepage = http://keefox.org; + platforms = with stdenv.lib.platforms; linux; + license = stdenv.lib.licenses.gpl2; + }; + + buildInputs = [ unzip ]; + + pluginFilename = "KeePassRPC.plgx"; + + unpackCmd = "unzip $src deps/$pluginFilename "; + sourceRoot = "deps"; + + installPhase = '' + mkdir -p $out/lib/dotnet/keepass/ + cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename + ''; + }; +in + # Mono is required to compile plugin at runtime, after loading. + buildEnv { name = drv.name; paths = [ mono drv ]; } From 90e881eece9f5125d03a0c8b390651b4486fa5e7 Mon Sep 17 00:00:00 2001 From: Nicole Angel Date: Sun, 22 Nov 2015 18:21:13 +0100 Subject: [PATCH 534/707] keepass: load plugins from store paths, fixes #11206 --- pkgs/applications/misc/keepass/default.nix | 37 +++++++++++++++++-- .../misc/keepass/keepass-plugins-load.patch | 1 + .../misc/keepass/keepass-plugins.patch | 14 +++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 pkgs/applications/misc/keepass/keepass-plugins-load.patch create mode 100644 pkgs/applications/misc/keepass/keepass-plugins.patch diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix index 950d16eeac8..6914120f296 100644 --- a/pkgs/applications/misc/keepass/default.nix +++ b/pkgs/applications/misc/keepass/default.nix @@ -1,6 +1,12 @@ -{ stdenv, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem }: +{ stdenv, lib, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem, plugins ? [] }: -buildDotnetPackage rec { +# KeePass looks for plugins in under directory in which KeePass.exe is +# located. It follows symlinks where looking for that directory, so +# buildEnv is not enough to bring KeePass and plugins together. +# +# This derivation patches KeePass to search for plugins in specified +# plugin derivations in the Nix store and nowhere else. +with builtins; buildDotnetPackage rec { baseName = "keepass"; version = "2.30"; @@ -11,10 +17,26 @@ buildDotnetPackage rec { sourceRoot = "."; - buildInputs = [ unzip ]; + buildInputs = [ unzip makeWrapper ]; patches = [ ./keepass.patch ]; + pluginLoadPathsPatch = + let outputLc = toString (add 8 (length plugins)); + patchTemplate = readFile ./keepass-plugins.patch; + loadTemplate = readFile ./keepass-plugins-load.patch; + loads = + lib.concatStrings + (map + (p: replaceStrings ["$PATH$"] [ (unsafeDiscardStringContext (toString p)) ] loadTemplate) + plugins); + in replaceStrings ["$OUTPUT_LC$" "$DO_LOADS$"] [outputLc loads] patchTemplate; + + passAsFile = [ "pluginLoadPathsPatch" ]; + postPatch = '' + patch --binary -p1 <$pluginLoadPathsPatchPath + ''; + preConfigure = "rm -rvf Build/*"; desktopItem = makeDesktopItem { @@ -22,7 +44,7 @@ buildDotnetPackage rec { exec = "keepass"; comment = "Password manager"; desktopName = "Keepass"; - genericName = "Password manager"; + genericName = "Password manager"; categories = "Application;Other;"; }; @@ -30,9 +52,16 @@ buildDotnetPackage rec { dllFiles = [ "KeePassLib.dll" ]; exeFiles = [ "KeePass.exe" ]; + # plgx plugin like keefox requires mono to compile at runtime + # after loading. It is brought into plugins bin/ directory using + # buildEnv in the plugin derivation. Wrapper below makes sure it + # is found and does not pollute output path. + binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins)); + postInstall = '' mkdir -p "$out/share/applications" cp ${desktopItem}/share/applications/* $out/share/applications + wrapProgram $out/bin/keepass --prefix PATH : "$binPaths" ''; meta = { diff --git a/pkgs/applications/misc/keepass/keepass-plugins-load.patch b/pkgs/applications/misc/keepass/keepass-plugins-load.patch new file mode 100644 index 00000000000..872b6c06d78 --- /dev/null +++ b/pkgs/applications/misc/keepass/keepass-plugins-load.patch @@ -0,0 +1 @@ ++ m_pluginManager.LoadAllPlugins("$PATH$/lib/dotnet/keepass"); diff --git a/pkgs/applications/misc/keepass/keepass-plugins.patch b/pkgs/applications/misc/keepass/keepass-plugins.patch new file mode 100644 index 00000000000..1a32d77806a --- /dev/null +++ b/pkgs/applications/misc/keepass/keepass-plugins.patch @@ -0,0 +1,14 @@ +--- old/KeePass/Forms/MainForm.cs ++++ new/KeePass/Forms/MainForm.cs +@@ -384,9 +384,$OUTPUT_LC$ @@ namespace KeePass.Forms + m_pluginManager.Initialize(m_pluginDefaultHost); + + m_pluginManager.UnloadAllPlugins(); +- if(AppPolicy.Current.Plugins) +- m_pluginManager.LoadAllPlugins(UrlUtil.GetFileDirectory( +- WinUtil.GetExecutable(), false, true)); ++ if(AppPolicy.Current.Plugins) { +$DO_LOADS$+ } + + // Delete old files *after* loading plugins (when timestamps + // of loaded plugins have been updated already) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c387847dd27..2163fd81f78 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11695,6 +11695,8 @@ let keepass = callPackage ../applications/misc/keepass { }; + keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { }; + exrdisplay = callPackage ../applications/graphics/exrdisplay { fltk = fltk20; }; From 5b10c116169666eb3c648e45d577df39cbe5d61d Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 23 Dec 2015 02:23:23 +0100 Subject: [PATCH 535/707] fira-code: 1.100 -> 1.101, fixes #11892 --- pkgs/data/fonts/fira-code/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 625794d9d3b..92caf866eec 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -2,16 +2,15 @@ stdenv.mkDerivation rec { name = "fira-code-${version}"; - version = "1.100"; + version = "1.101"; src = fetchurl { url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip"; - sha256 = "1fprryfy8b79ncya1jzbzbxs75kvr1zwinflr8sl3d2m1r5kl03x"; + sha256 = "0wbjk4cyibyjp7kjvwnm7as1ch312zwjbi469v26sl41svf53s5v"; }; buildInputs = [ unzip ]; phases = [ "unpackPhase" "installPhase" ]; - sourceRoot = "."; installPhase = '' mkdir -p $out/share/fonts/opentype From 0ed678a41429cc88ed50e40226ace17f4e9b926a Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Wed, 23 Dec 2015 00:32:06 -0200 Subject: [PATCH 536/707] Higan: 095 -> 096 --- pkgs/misc/emulators/higan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix index 080805e9df5..5d48f38abd8 100644 --- a/pkgs/misc/emulators/higan/default.nix +++ b/pkgs/misc/emulators/higan/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchurl { urls = [ "http://download.byuu.org/${sourceName}.7z" ]; - sha256 = "0xsgyijcf4psi3mlahr5iq7vbbw3jby1if5pkhg8c5xqckpi2fj4"; + sha256 = "0yc5gwg6dq9iwi2qk3g66wn8j2l55nhdb0311jzmdsh86zcrpvqh"; curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick... }; @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { ''; meta = { - version = "095"; + version = "096"; description = "An open-source, cycle-accurate Nintendo multi-system emulator"; longDescription = '' Higan (formerly bsnes) is a Nintendo multi-system emulator. From 3af583d9767fbaf02308abfce133185cd9c67341 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 23 Dec 2015 00:09:40 +0100 Subject: [PATCH 537/707] pdf2svg: add autoreconf hook (close #11888) This fixes builds that may fail due to all files in the archive having the same timestamp. --- pkgs/tools/graphics/pdf2svg/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/pdf2svg/default.nix b/pkgs/tools/graphics/pdf2svg/default.nix index 10758d09bc7..52ca99b9764 100644 --- a/pkgs/tools/graphics/pdf2svg/default.nix +++ b/pkgs/tools/graphics/pdf2svg/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cairo, gtk, poppler }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig +, cairo, gtk, poppler }: stdenv.mkDerivation rec { name = "pdf2svg-${version}"; @@ -11,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"; }; - buildInputs = [ cairo pkgconfig poppler gtk ]; + buildInputs = [ autoreconfHook cairo pkgconfig poppler gtk ]; meta = with stdenv.lib; { description = "PDF converter to SVG format"; From fdf3aa99235b5497770bf7d1ba1d7d5e56ca44b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Dec 2015 09:02:13 +0100 Subject: [PATCH 538/707] buildRubyGem: use a saner default version to fix #11805 Previously the gems defaulted to "ruby" as the name and "${ruby-version}-${gem-name}-${gem-version}" as the version, which was just insane. https://github.com/NixOS/nixpkgs/issues/9771#issuecomment-141041414 Noone is reacting so it's high time to take at least some action. /cc @cstrahan. --- pkgs/development/interpreters/ruby/gem.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/gem.nix b/pkgs/development/interpreters/ruby/gem.nix index dd6338cd813..bbc38226266 100644 --- a/pkgs/development/interpreters/ruby/gem.nix +++ b/pkgs/development/interpreters/ruby/gem.nix @@ -6,7 +6,7 @@ lib.makeOverridable ( , ruby ? defs.ruby , rubygems ? (rubygemsFun ruby) , stdenv ? ruby.stdenv -, namePrefix ? "${ruby.name}" + "-" +, namePrefix ? "${lib.replaceStrings ["-"] ["_"] ruby.name}" + "-" , buildInputs ? [] , doCheck ? false , dontBuild ? true From bf9c16d4ace2ea853586c627660953d6a6ccb3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Dec 2015 09:18:22 +0100 Subject: [PATCH 539/707] texinfo6: remove meta.branch and refactor meta It was wrong ("5.2") and seemed unused in nixpkgs. --- pkgs/development/tools/misc/texinfo/6.0.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix index 11e822291e8..670c7182150 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.0.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.isDarwin && !interactive && !stdenv.isSunOS/*flaky*/; - meta = { + meta = with stdenv.lib; { homepage = "http://www.gnu.org/software/texinfo/"; description = "The GNU documentation system"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. @@ -42,6 +42,5 @@ stdenv.mkDerivation rec { need revise only that one document. The Texinfo system is well-integrated with GNU Emacs. ''; - branch = "5.2"; }; } From 44ea18499710049e165b475a98e04d02252d7533 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Wed, 23 Dec 2015 09:19:18 +0100 Subject: [PATCH 540/707] jenkins ci enhancement: add port and prefix option As named these options enable to specify a bind host and url prefix to be used by jenkins. Adding these options in the config rather than using extra arguments allows us to re-use those information in other services using jenkins such as jenkins-job-builder or a reverse proxy. --- .../jenkins/default.nix | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 9bd511ad3ae..3b76ada72bb 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -48,11 +48,33 @@ in { ''; }; + host = mkOption { + default = "0.0.0.0"; + example = "localhost"; + type = types.str; + description = '' + Specifies the bind adress on which the jenkins HTTP interface listens. + The default is the wildcard adress. + ''; + }; + port = mkOption { default = 8080; type = types.int; description = '' - Specifies port number on which the jenkins HTTP interface listens. The default is 8080. + Specifies port number on which the jenkins HTTP interface listens. + The default is 8080. + ''; + }; + + prefix = mkOption { + default = ""; + example = "/jenkins"; + type = types.str; + description = '' + Specifies a urlPrefix to use with jenkins. + If the example /jenkins is given, the jenkins server will be + accessible using localhost:8080/jenkins. ''; }; @@ -80,7 +102,7 @@ in { extraOptions = mkOption { type = types.listOf types.str; default = [ ]; - example = [ "--debug=9" "--httpListenAddress=localhost" ]; + example = [ "--debug=9" ]; description = '' Additional command line arguments to pass to Jenkins. ''; @@ -134,15 +156,18 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpPort=${toString cfg.port} ${concatStringsSep " " cfg.extraOptions} + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.host} \ + --httpPort=${toString cfg.port} \ + --prefix=${cfg.prefix} \ + ${concatStringsSep " " cfg.extraOptions} ''; postStart = '' - until ${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port} ; do + until ${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix} ; do sleep 10 done while true ; do - index=`${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port}` + index=`${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix}` if [[ !("$index" =~ 'Please wait while Jenkins is restarting' || "$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then exit 0 From 1c120c55fbf2f034b4d3bfff87af85bf7bb11812 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Wed, 23 Dec 2015 09:26:24 +0100 Subject: [PATCH 541/707] jenkins-job-builder fix: use prefix and host from jenkins cfg, fixes #11897 --- .../services/continuous-integration/jenkins/job-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix index ec15a6a3d70..1f65db4ce95 100644 --- a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix +++ b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix @@ -144,7 +144,7 @@ in { done echo "Asking Jenkins to reload config" - curl --silent -X POST http://localhost:${toString jenkinsCfg.port}/reload + curl --silent -X POST http://${jenkinsCfg.host}:${toString jenkinsCfg.port}${jenkinsCfg.prefix}/reload ''; serviceConfig = { User = jenkinsCfg.user; From d509f8a30a2223841f81270bb727aedc2d5dac3b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 23 Dec 2015 08:44:49 -0500 Subject: [PATCH 542/707] gradle: 2.9 -> 2.10 --- pkgs/development/tools/build-managers/gradle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index e451370c9eb..8e517930cfc 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -35,11 +35,11 @@ rec { }; gradleLatest = gradleGen rec { - name = "gradle-2.9"; + name = "gradle-2.10"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "c9159ec4362284c0a38d73237e224deae6139cbde0db4f0f44e1c7691dd3de2f"; + sha256 = "66406247f745fc6f05ab382d3f8d3e120c339f34ef54b86f6dc5f6efc18fbb13"; }; }; From 077a3102cc49b1ab702c8d70de065f5be91725bf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Dec 2015 08:36:50 -0600 Subject: [PATCH 543/707] dropbox: 3.12.5 -> 3.12.6 --- pkgs/applications/networking/dropbox/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 6b3034424f5..8030ab313a8 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -20,11 +20,11 @@ let # NOTE: When updating, please also update in current stable, as older versions stop working - version = "3.12.5"; + version = "3.12.6"; sha256 = { - "x86_64-linux" = "1agy20b8vrvdfyzjf7wr2z6vradvvg49wn31vzrl38f0m1l3gb7s"; - "i686-linux" = "0a68m2i5lyyadf12g82rvzryw9b1v6sfq5szx94jsc4qhyl7mcaj"; + "x86_64-linux" = "16d0g9bygvaixv4r42p72z6a6wqhkf5qzb058lijih93zjr8zjlj"; + "i686-linux" = "1pgqz6axzzyaahql01g0l80an39hd9j4dnq0vfavwvb2qkb27dph"; }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); arch = From 170f91a249f1a2b921629bda0bfb3a46bf3dd9c3 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Wed, 23 Dec 2015 15:44:40 +0100 Subject: [PATCH 544/707] jenkins ci: 1.638 -> 1.643 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index edc551a7054..e18d2dd4b47 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.638"; + version = "1.643"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "1kbx9n2hj8znw0ykvgvrlf2v472f1nkdwix6a2v4rjxkgmghxmh8"; + sha256 = "b8c6387e56d04a0a4a7ec8d9dacd379fbd5d4001d01fdfcd443f9864809f9293"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From 6108bb8971ddd54f6b4d7be558d2e05978bfc08c Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Wed, 23 Dec 2015 08:35:53 -0800 Subject: [PATCH 545/707] hub: 2.2.1 -> 2.2.2 --- .../version-management/git-and-tools/hub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 0a119624227..af08aac066d 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "hub-${version}"; - version = "2.2.1"; + version = "2.2.2"; src = fetchgit { url = https://github.com/github/hub.git; rev = "refs/tags/v${version}"; - sha256 = "1rklqm5b0n5rcbdsr6kvk24cw7dc505ylb1608fva7qman49vlls"; + sha256 = "147rsh8zkqv6iqx3q7wzszfqlv65qj3hm3264ma042g7naf8hkwr"; }; From cbada77b0b2acaf85d3ad8dd8462b1b2daa93a0d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 23 Dec 2015 18:28:22 +0100 Subject: [PATCH 546/707] clawsMail: 3.13.0 -> 3.13.1 (CVE-2015-8614) Fixes a remotely triggerable buffer overflow. http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3557 Close #11910. --- .../networking/mailreaders/claws-mail/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index bbe3c6b4427..5b3eb2326c5 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -30,7 +30,7 @@ with stdenv.lib; -let version = "3.13.0"; in +let version = "3.13.1"; in stdenv.mkDerivation { name = "claws-mail-${version}"; @@ -45,7 +45,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; - sha256 = "0fpr9gdgrs5yggm61a6135ca06x0cflddsh8dwfqmpb3dj07cl1n"; + sha256 = "049av7r0xhjjjm1p93l2ns3xisvn125v3ncqar23cqjzgcichg5d"; }; patches = [ ./mime.patch ]; From 6ddca8f9b0da888afeb95aeac333f3310581cfdd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 23:07:16 +0100 Subject: [PATCH 547/707] darktable: 1.6.8 -> 1.6.9 --- pkgs/applications/graphics/darktable/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index 1cf24e109dd..77bddc89e2f 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -9,12 +9,12 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { - version = "1.6.8"; + version = "1.6.9"; name = "darktable-${version}"; src = fetchurl { url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz"; - sha256 = "0189d5pn6g01rynfkhxynrqgfi24v94x8fp0fs7ilrncv0dzhxmn"; + sha256 = "0wri89ygjpv7npiz58mnydhgldywp6arqp9jq3v0g54a56fiwwhg"; }; buildInputs = From 861306042510c2ad3e14af1782a95aadbf12d7e1 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 26 Nov 2015 15:07:55 +0000 Subject: [PATCH 548/707] socat: add patch to fix build with libressl This fixes the build for libressl >= 2.3 as some legacy openssl code has been removed. --- pkgs/tools/networking/socat/2.x.nix | 10 +- pkgs/tools/networking/socat/default.nix | 2 +- .../networking/socat/libressl-fixes.patch | 173 ++++++++++++++++++ 3 files changed, 180 insertions(+), 5 deletions(-) create mode 100644 pkgs/tools/networking/socat/libressl-fixes.patch diff --git a/pkgs/tools/networking/socat/2.x.nix b/pkgs/tools/networking/socat/2.x.nix index 2d4438b5759..a1cea034836 100644 --- a/pkgs/tools/networking/socat/2.x.nix +++ b/pkgs/tools/networking/socat/2.x.nix @@ -12,12 +12,14 @@ stdenv.mkDerivation rec { configureFlags = stdenv.lib.optionalString stdenv.isDarwin "--disable-ip6"; - meta = { + patches = stdenv.lib.singleton ./libressl-fixes.patch ; + + meta = with stdenv.lib; { description = "A utility for bidirectional data transfer between two independent data channels"; homepage = http://www.dest-unreach.org/socat/; repositories.git = git://repo.or.cz/socat.git; - platforms = stdenv.lib.platforms.unix; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.eelco ]; }; } diff --git a/pkgs/tools/networking/socat/default.nix b/pkgs/tools/networking/socat/default.nix index 65d3b01e89c..c672801262b 100644 --- a/pkgs/tools/networking/socat/default.nix +++ b/pkgs/tools/networking/socat/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; - patches = [ ./enable-ecdhe.patch ]; + patches = [ ./enable-ecdhe.patch ./libressl-fixes.patch ]; meta = { description = "A utility for bidirectional data transfer between two independent data channels"; diff --git a/pkgs/tools/networking/socat/libressl-fixes.patch b/pkgs/tools/networking/socat/libressl-fixes.patch new file mode 100644 index 00000000000..cf66033584e --- /dev/null +++ b/pkgs/tools/networking/socat/libressl-fixes.patch @@ -0,0 +1,173 @@ +Patch from OpenBSD +--- a/sslcls.c Sat Jan 24 03:15:22 2015 ++++ b/sslcls.c Sat Jul 18 20:01:59 2015 +@@ -55,6 +55,7 @@ const SSL_METHOD *sycSSLv2_server_method(void) { + } + #endif + ++#ifdef HAVE_SSLv3_client_method + const SSL_METHOD *sycSSLv3_client_method(void) { + const SSL_METHOD *result; + Debug("SSLv3_client_method()"); +@@ -62,7 +63,9 @@ const SSL_METHOD *sycSSLv3_client_method(void) { + Debug1("SSLv3_client_method() -> %p", result); + return result; + } ++#endif + ++#ifdef HAVE_SSLv3_server_method + const SSL_METHOD *sycSSLv3_server_method(void) { + const SSL_METHOD *result; + Debug("SSLv3_server_method()"); +@@ -70,6 +73,7 @@ const SSL_METHOD *sycSSLv3_server_method(void) { + Debug1("SSLv3_server_method() -> %p", result); + return result; + } ++#endif + + const SSL_METHOD *sycSSLv23_client_method(void) { + const SSL_METHOD *result; +@@ -331,14 +335,6 @@ void sycSSL_free(SSL *ssl) { + return; + } + +-int sycRAND_egd(const char *path) { +- int result; +- Debug1("RAND_egd(\"%s\")", path); +- result = RAND_egd(path); +- Debug1("RAND_egd() -> %d", result); +- return result; +-} +- + DH *sycPEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u) { + DH *result; + Debug4("PEM_read_bio_DHparams(%p, %p, %p, %p)", +@@ -375,7 +371,7 @@ int sycFIPS_mode_set(int onoff) { + } + #endif /* WITH_FIPS */ + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + const COMP_METHOD *sycSSL_get_current_compression(SSL *ssl) { + const COMP_METHOD *result; + Debug1("SSL_get_current_compression(%p)", ssl); +--- a/sslcls.h Sat Jan 24 11:15:22 2015 ++++ b/sslcls.h Mon Apr 13 15:06:25 2015 +@@ -47,7 +47,6 @@ X509 *sycSSL_get_peer_certificate(SSL *ssl); + int sycSSL_shutdown(SSL *ssl); + void sycSSL_CTX_free(SSL_CTX *ctx); + void sycSSL_free(SSL *ssl); +-int sycRAND_egd(const char *path); + + DH *sycPEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u); + +@@ -55,7 +54,7 @@ BIO *sycBIO_new_file(const char *filename, const char + + int sycFIPS_mode_set(int onoff); + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + const COMP_METHOD *sycSSL_get_current_compression(SSL *ssl); + const COMP_METHOD *sycSSL_get_current_expansion(SSL *ssl); + const char *sycSSL_COMP_get_name(const COMP_METHOD *comp); +@@ -98,7 +97,6 @@ const char *sycSSL_COMP_get_name(const COMP_METHOD *co + #define sycSSL_shutdown(s) SSL_shutdown(s) + #define sycSSL_CTX_free(c) SSL_CTX_free(c) + #define sycSSL_free(s) SSL_free(s) +-#define sycRAND_egd(p) RAND_egd(p) + + #define sycPEM_read_bio_DHparams(b,x,p,u) PEM_read_bio_DHparams(b,x,p,u) + +--- a/xio-openssl.c Sat Jan 24 15:33:42 2015 ++++ b/xio-openssl.c Mon Apr 13 14:59:12 2015 +@@ -108,7 +108,6 @@ const struct optdesc opt_openssl_key = { "open + const struct optdesc opt_openssl_dhparam = { "openssl-dhparam", "dh", OPT_OPENSSL_DHPARAM, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_cafile = { "openssl-cafile", "cafile", OPT_OPENSSL_CAFILE, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_capath = { "openssl-capath", "capath", OPT_OPENSSL_CAPATH, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; +-const struct optdesc opt_openssl_egd = { "openssl-egd", "egd", OPT_OPENSSL_EGD, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_pseudo = { "openssl-pseudo", "pseudo", OPT_OPENSSL_PSEUDO, GROUP_OPENSSL, PH_SPEC, TYPE_BOOL, OFUNC_SPEC }; + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + const struct optdesc opt_openssl_compress = { "openssl-compress", "compress", OPT_OPENSSL_COMPRESS, GROUP_OPENSSL, PH_SPEC, TYPE_STRING, OFUNC_SPEC }; +@@ -147,7 +146,7 @@ int xio_reset_fips_mode(void) { + static void openssl_conn_loginfo(SSL *ssl) { + Notice1("SSL connection using %s", SSL_get_cipher(ssl)); + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + { + const COMP_METHOD *comp, *expansion; + +@@ -722,7 +721,6 @@ int + char *opt_dhparam = NULL; /* file name of DH params */ + char *opt_cafile = NULL; /* certificate authority file */ + char *opt_capath = NULL; /* certificate authority directory */ +- char *opt_egd = NULL; /* entropy gathering daemon socket path */ + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + char *opt_compress = NULL; /* compression method */ + #endif +@@ -741,7 +739,6 @@ int + retropt_string(opts, OPT_OPENSSL_CAPATH, &opt_capath); + retropt_string(opts, OPT_OPENSSL_KEY, &opt_key); + retropt_string(opts, OPT_OPENSSL_DHPARAM, &opt_dhparam); +- retropt_string(opts, OPT_OPENSSL_EGD, &opt_egd); + retropt_bool(opts,OPT_OPENSSL_PSEUDO, &opt_pseudo); + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + retropt_string(opts, OPT_OPENSSL_COMPRESS, &opt_compress); +@@ -877,10 +874,6 @@ int + } + } + +- if (opt_egd) { +- sycRAND_egd(opt_egd); +- } +- + if (opt_pseudo) { + long int randdata; + /* initialize libc random from actual microseconds */ +@@ -1098,7 +1091,7 @@ static int openssl_SSL_ERROR_SSL(int level, const char + if (e == ((ERR_LIB_RAND<<24)| + (RAND_F_SSLEAY_RAND_BYTES<<12)| + (RAND_R_PRNG_NOT_SEEDED)) /*0x24064064*/) { +- Error("too few entropy; use options \"egd\" or \"pseudo\""); ++ Error("too few entropy; use option \"pseudo\""); + stat = STAT_NORETRY; + } else { + Msg2(level, "%s(): %s", funcname, ERR_error_string(e, buf)); +--- a/xio-openssl.h Sun Jun 23 07:16:48 2013 ++++ b/xio-openssl.h Sat Apr 19 15:58:21 2014 +@@ -21,7 +21,6 @@ extern const struct optdesc opt_openssl_key; + extern const struct optdesc opt_openssl_dhparam; + extern const struct optdesc opt_openssl_cafile; + extern const struct optdesc opt_openssl_capath; +-extern const struct optdesc opt_openssl_egd; + extern const struct optdesc opt_openssl_pseudo; + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + extern const struct optdesc opt_openssl_compress; +--- a/xioopts.c Sat Jan 24 11:15:22 2015 ++++ b/xioopts.c Mon Apr 13 15:06:25 2015 +@@ -412,7 +412,6 @@ const struct optname optionnames[] = { + #ifdef ECHOPRT + IF_TERMIOS("echoprt", &opt_echoprt) + #endif +- IF_OPENSSL("egd", &opt_openssl_egd) + IF_ANY ("end-close", &opt_end_close) + IF_TERMIOS("eof", &opt_veof) + IF_TERMIOS("eol", &opt_veol) +@@ -1102,7 +1101,6 @@ const struct optname optionnames[] = { + IF_OPENSSL("openssl-compress", &opt_openssl_compress) + #endif + IF_OPENSSL("openssl-dhparam", &opt_openssl_dhparam) +- IF_OPENSSL("openssl-egd", &opt_openssl_egd) + #if WITH_FIPS + IF_OPENSSL("openssl-fips", &opt_openssl_fips) + #endif +--- a/xioopts.h Sat Jan 24 11:15:22 2015 ++++ b/xioopts.h Mon Apr 13 15:06:25 2015 +@@ -478,7 +478,6 @@ enum e_optcode { + OPT_OPENSSL_COMPRESS, + #endif + OPT_OPENSSL_DHPARAM, +- OPT_OPENSSL_EGD, + OPT_OPENSSL_FIPS, + OPT_OPENSSL_KEY, + OPT_OPENSSL_METHOD, From d30904ea89ef5f920299395ea0ab60d94e6487fc Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Fri, 27 Nov 2015 16:12:27 +0000 Subject: [PATCH 549/707] ruby: fix build with libressl2.3 --- .../interpreters/ruby/patchsets.nix | 45 ++++++++++++++----- .../interpreters/ruby/ssl_v3.patch | 16 +++++++ 2 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 pkgs/development/interpreters/ruby/ssl_v3.patch diff --git a/pkgs/development/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix index 5f270dfe9c7..286301dc0a5 100644 --- a/pkgs/development/interpreters/ruby/patchsets.nix +++ b/pkgs/development/interpreters/ruby/patchsets.nix @@ -1,7 +1,8 @@ { patchSet, useRailsExpress, ops, patchLevel }: -let self = rec { +rec { "1.9.3" = [ + ./ssl_v3.patch ./ruby19-parallel-install.patch ./bitperfect-rdoc.patch ] ++ ops useRailsExpress [ @@ -25,13 +26,17 @@ let self = rec { "${patchSet}/patches/ruby/1.9.3/p${patchLevel}/railsexpress/18-fix-missing-c-return-event.patch" "${patchSet}/patches/ruby/1.9.3/p${patchLevel}/railsexpress/19-fix-process-daemon-call.patch" ]; - "2.0.0" = ops useRailsExpress [ + "2.0.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/02-railsexpress-gc.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/04-show-full-backtrace-on-stack-overflow.patch" ]; - "2.1.0" = ops useRailsExpress [ + "2.1.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.0/railsexpress/01-current-2.1.1-fixes.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/02-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/03-improve-gc-stats.patch" @@ -45,7 +50,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.0/railsexpress/11-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/12-backport-r44370.patch" ]; - "2.1.1" = ops useRailsExpress [ + "2.1.1" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.0/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -58,7 +65,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.0/railsexpress/11-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/12-backport-r44370.patch" ]; - "2.1.2" = ops useRailsExpress [ + "2.1.2" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.2/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -70,7 +79,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.2/railsexpress/09-aman-opt-aset-aref-str.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/10-funny-falcon-method-cache.patch" ]; - "2.1.3" = ops useRailsExpress [ + "2.1.3" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.3/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -80,7 +91,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.3/railsexpress/07-aman-opt-aset-aref-str.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/08-funny-falcon-method-cache.patch" ]; - "2.1.6" = ops useRailsExpress [ + "2.1.6" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.6/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -91,7 +104,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.6/railsexpress/08-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/09-heap-dump-support.patch" ]; - "2.1.7" = ops useRailsExpress [ + "2.1.7" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.7/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -102,22 +117,28 @@ let self = rec { "${patchSet}/patches/ruby/2.1.7/railsexpress/08-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/09-heap-dump-support.patch" ]; - "2.2.0" = ops useRailsExpress [ + "2.2.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.0/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/04-backport-401c8bb.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/05-fix-packed-bitfield-compat-warning-for-older-gccs.patch" ]; - "2.2.2" = ops useRailsExpress [ + "2.2.2" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.2/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/04-backported-bugfixes-222.patch" ]; - "2.2.3" = ops useRailsExpress [ + "2.2.3" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.3/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/03-display-more-detailed-stack-trace.patch" ]; -}; in self +} diff --git a/pkgs/development/interpreters/ruby/ssl_v3.patch b/pkgs/development/interpreters/ruby/ssl_v3.patch new file mode 100644 index 00000000000..faa40216575 --- /dev/null +++ b/pkgs/development/interpreters/ruby/ssl_v3.patch @@ -0,0 +1,16 @@ +--- a/ext/openssl/ossl_ssl.c 2015-11-26 16:41:03.775058140 +0000 ++++ b/ext/openssl/ossl_ssl.c 2015-11-26 16:40:56.191907346 +0000 +@@ -138,9 +138,12 @@ + OSSL_SSL_METHOD_ENTRY(SSLv2_server), + OSSL_SSL_METHOD_ENTRY(SSLv2_client), + #endif ++#if defined(HAVE_SSLV3_METHOD) && defined(HAVE_SSLV3_SERVER_METHOD) && \ ++ defined(HAVE_SSLV3_CLIENT_METHOD) + OSSL_SSL_METHOD_ENTRY(SSLv3), + OSSL_SSL_METHOD_ENTRY(SSLv3_server), + OSSL_SSL_METHOD_ENTRY(SSLv3_client), ++#endif + OSSL_SSL_METHOD_ENTRY(SSLv23), + OSSL_SSL_METHOD_ENTRY(SSLv23_server), + OSSL_SSL_METHOD_ENTRY(SSLv23_client), + From bdfc4efd670bdccba4e5f4969b72639aefdfe7d2 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sat, 28 Nov 2015 18:26:59 +0000 Subject: [PATCH 550/707] bind: add patch to build with libressl 2.3 --- pkgs/servers/dns/bind/default.nix | 4 +- pkgs/servers/dns/bind/libressl.patch | 102 +++++++++++++++++++++++++++ 2 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 pkgs/servers/dns/bind/libressl.patch diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index c44f507f2ea..64c461b70ea 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -10,10 +10,12 @@ stdenv.mkDerivation rec { sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; }; - patchPhase = '' + postPatchPhase = '' sed -i 's/^\t.*run/\t/' Makefile.in ''; + patches = [ ./libressl.patch ]; + buildInputs = [ openssl libtool perl libxml2 ]; configureFlags = [ diff --git a/pkgs/servers/dns/bind/libressl.patch b/pkgs/servers/dns/bind/libressl.patch new file mode 100644 index 00000000000..b77f24ee429 --- /dev/null +++ b/pkgs/servers/dns/bind/libressl.patch @@ -0,0 +1,102 @@ +$OpenBSD: patch-lib_dns_openssl_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ +--- a/lib/dns/openssl_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssl_link.c Wed Sep 16 14:01:46 2015 +@@ -88,7 +88,7 @@ entropy_getpseudo(unsigned char *buf, int num) { + return (result == ISC_R_SUCCESS ? 1 : -1); + } + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + static void + entropy_add(const void *buf, int num, double entropy) { + /* +@@ -121,7 +121,7 @@ lock_callback(int mode, int type, const char *file, in + UNLOCK(&locks[type]); + } + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + static unsigned long + id_callback(void) { + return ((unsigned long)isc_thread_self()); +@@ -187,7 +187,7 @@ dst__openssl_init(const char *engine) { + if (result != ISC_R_SUCCESS) + goto cleanup_mutexalloc; + CRYPTO_set_locking_callback(lock_callback); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + CRYPTO_set_id_callback(id_callback); + #endif + +@@ -287,7 +287,7 @@ dst__openssl_destroy(void) { + CRYPTO_cleanup_all_ex_data(); + #endif + ERR_clear_error(); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + ERR_remove_state(0); + #endif + ERR_free_strings(); +--- a/lib/dns/dst_openssl.h Wed Sep 16 14:00:47 2015 ++++ b/lib/dns/dst_openssl.h Wed Sep 16 14:02:42 2015 +@@ -36,7 +36,7 @@ + #define USE_ENGINE 1 + #endif + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + /* + * These are new in OpenSSL 1.1.0. BN_GENCB _cb needs to be declared in + * the function like this before the BN_GENCB_new call: +--- a/lib/dns/openssldh_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssldh_link.c Wed Sep 16 14:02:06 2015 +@@ -173,7 +173,7 @@ openssldh_generate(dst_key_t *key, int generator, void + DH *dh = NULL; + #if OPENSSL_VERSION_NUMBER > 0x00908000L + BN_GENCB *cb; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + union { +@@ -210,7 +210,7 @@ openssldh_generate(dst_key_t *key, int generator, void + if (dh == NULL) + return (dst__openssl_toresult(ISC_R_NOMEMORY)); + cb = BN_GENCB_new(); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + if (cb == NULL) { + DH_free(dh); + return (dst__openssl_toresult(ISC_R_NOMEMORY)); +--- a/lib/dns/openssldsa_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssldsa_link.c Wed Sep 16 14:02:22 2015 +@@ -359,7 +359,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( + isc_result_t result; + #if OPENSSL_VERSION_NUMBER > 0x00908000L + BN_GENCB *cb; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + union { +@@ -383,7 +383,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( + if (dsa == NULL) + return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); + cb = BN_GENCB_new(); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + if (cb == NULL) { + DSA_free(dsa); + return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); +$OpenBSD: patch-lib_dns_opensslrsa_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ +--- a/lib/dns/opensslrsa_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/opensslrsa_link.c Wed Sep 16 14:02:31 2015 +@@ -771,7 +771,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca + } u; + RSA *rsa = RSA_new(); + BIGNUM *e = BN_new(); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + BN_GENCB *cb = BN_GENCB_new(); From 4b5cb624889f614990ccd9b9eef808e476ef8095 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 29 Nov 2015 17:01:20 +0000 Subject: [PATCH 551/707] qt4: add patch to build with libressl 2.3 --- .../libraries/qt-4.x/4.8/default.nix | 1 + .../libraries/qt-4.x/4.8/libressl.patch | 64 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 pkgs/development/libraries/qt-4.x/4.8/libressl.patch diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index e4d1bae636c..25b547bf1cf 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -50,6 +50,7 @@ stdenv.mkDerivation rec { patches = [ ./glib-2.32.patch + ./libressl.patch (substituteAll { src = ./dlopen-absolute-paths.diff; inherit cups icu libXfixes; diff --git a/pkgs/development/libraries/qt-4.x/4.8/libressl.patch b/pkgs/development/libraries/qt-4.x/4.8/libressl.patch new file mode 100644 index 00000000000..5432610d9dc --- /dev/null +++ b/pkgs/development/libraries/qt-4.x/4.8/libressl.patch @@ -0,0 +1,64 @@ +$OpenBSD: patch-src_network_ssl_qsslsocket_openssl_symbols_cpp,v 1.3 2015/09/17 12:24:42 dcoppa Exp $ +--- a/src/network/ssl/qsslsocket_openssl_symbols.cpp Wed Sep 16 13:27:39 2015 ++++ b/src/network/ssl/qsslsocket_openssl_symbols.cpp Wed Sep 16 13:33:06 2015 +@@ -228,13 +228,17 @@ DEFINEFUNC(int, SSL_shutdown, SSL *a, a, return -1, re + #ifndef OPENSSL_NO_SSL2 + DEFINEFUNC(const SSL_METHOD *, SSLv2_client_method, DUMMYARG, DUMMYARG, return 0, return) + #endif ++#ifndef OPENSSL_NO_SSL3 + DEFINEFUNC(const SSL_METHOD *, SSLv3_client_method, DUMMYARG, DUMMYARG, return 0, return) ++#endif + DEFINEFUNC(const SSL_METHOD *, SSLv23_client_method, DUMMYARG, DUMMYARG, return 0, return) + DEFINEFUNC(const SSL_METHOD *, TLSv1_client_method, DUMMYARG, DUMMYARG, return 0, return) + #ifndef OPENSSL_NO_SSL2 + DEFINEFUNC(const SSL_METHOD *, SSLv2_server_method, DUMMYARG, DUMMYARG, return 0, return) + #endif ++#ifndef OPENSSL_NO_SSL3 + DEFINEFUNC(const SSL_METHOD *, SSLv3_server_method, DUMMYARG, DUMMYARG, return 0, return) ++#endif + DEFINEFUNC(const SSL_METHOD *, SSLv23_server_method, DUMMYARG, DUMMYARG, return 0, return) + DEFINEFUNC(const SSL_METHOD *, TLSv1_server_method, DUMMYARG, DUMMYARG, return 0, return) + #else +@@ -822,13 +826,17 @@ bool q_resolveOpenSslSymbols() + #ifndef OPENSSL_NO_SSL2 + RESOLVEFUNC(SSLv2_client_method) + #endif ++#ifndef OPENSSL_NO_SSL3 + RESOLVEFUNC(SSLv3_client_method) ++#endif + RESOLVEFUNC(SSLv23_client_method) + RESOLVEFUNC(TLSv1_client_method) + #ifndef OPENSSL_NO_SSL2 + RESOLVEFUNC(SSLv2_server_method) + #endif ++#ifndef OPENSSL_NO_SSL3 + RESOLVEFUNC(SSLv3_server_method) ++#endif + RESOLVEFUNC(SSLv23_server_method) + RESOLVEFUNC(TLSv1_server_method) + RESOLVEFUNC(X509_NAME_entry_count) +--- a/src/network/ssl/qsslsocket_openssl.cpp Thu May 7 16:14:44 2015 ++++ b/src/network/ssl/qsslsocket_openssl.cpp Wed Sep 16 13:30:03 2015 +@@ -267,15 +267,19 @@ init_context: + #endif + break; + case QSsl::SslV3: ++#ifndef OPENSSL_NO_SSL3 + ctx = q_SSL_CTX_new(client ? q_SSLv3_client_method() : q_SSLv3_server_method()); ++#else ++ ctx = 0; // SSL 3 not supported by the system, but chosen deliberately -> error ++#endif + break; +- case QSsl::SecureProtocols: // SslV2 will be disabled below +- case QSsl::TlsV1SslV3: // SslV2 will be disabled below + case QSsl::AnyProtocol: +- default: + ctx = q_SSL_CTX_new(client ? q_SSLv23_client_method() : q_SSLv23_server_method()); + break; + case QSsl::TlsV1: ++ case QSsl::SecureProtocols: ++ case QSsl::TlsV1SslV3: ++ default: + ctx = q_SSL_CTX_new(client ? q_TLSv1_client_method() : q_TLSv1_server_method()); + break; + } From 501d49ebc44808fbc67c37cdfb555dc1789daf64 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 1 Dec 2015 03:38:00 +0000 Subject: [PATCH 552/707] wpa_supplicant: add patch to build with libressl 2.3 --- .../linux/wpa_supplicant/default.nix | 1 + .../linux/wpa_supplicant/libressl.patch | 69 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 pkgs/os-specific/linux/wpa_supplicant/libressl.patch diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix index d75410d74d5..0edd2d6e0f4 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -79,6 +79,7 @@ stdenv.mkDerivation rec { patches = [ ./build-fix.patch + ./libressl.patch ]; postInstall = '' diff --git a/pkgs/os-specific/linux/wpa_supplicant/libressl.patch b/pkgs/os-specific/linux/wpa_supplicant/libressl.patch new file mode 100644 index 00000000000..0de3810dacc --- /dev/null +++ b/pkgs/os-specific/linux/wpa_supplicant/libressl.patch @@ -0,0 +1,69 @@ +$OpenBSD: patch-src_crypto_tls_openssl_c,v 1.3 2015/09/29 11:57:54 dcoppa Exp $ + +Compatibility fixes for LibreSSL + +--- a/src/crypto/tls_openssl.c Sun Sep 27 21:02:05 2015 ++++ b/src/crypto/tls_openssl.c Mon Sep 28 13:43:46 2015 +@@ -2229,7 +2229,7 @@ static int tls_parse_pkcs12(struct tls_data *data, SSL + } + + if (certs) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + SSL_clear_chain_certs(ssl); + while ((cert = sk_X509_pop(certs)) != NULL) { + X509_NAME_oneline(X509_get_subject_name(cert), buf, +@@ -2247,7 +2247,7 @@ static int tls_parse_pkcs12(struct tls_data *data, SSL + /* Try to continue anyway */ + } + sk_X509_free(certs); +-#ifndef OPENSSL_IS_BORINGSSL ++#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER) + res = SSL_build_cert_chain(ssl, + SSL_BUILD_CHAIN_FLAG_CHECK | + SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR); +@@ -2812,7 +2812,7 @@ int tls_connection_get_random(void *ssl_ctx, struct tl + if (conn == NULL || keys == NULL) + return -1; + ssl = conn->ssl; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (ssl == NULL || ssl->s3 == NULL || ssl->session == NULL) + return -1; + +@@ -2841,7 +2841,7 @@ int tls_connection_get_random(void *ssl_ctx, struct tl + #ifndef CONFIG_FIPS + static int openssl_get_keyblock_size(SSL *ssl) + { +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + const EVP_CIPHER *c; + const EVP_MD *h; + int md_size; +@@ -2911,7 +2911,7 @@ static int openssl_tls_prf(struct tls_connection *conn + "mode"); + return -1; + #else /* CONFIG_FIPS */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + SSL *ssl; + u8 *rnd; + int ret = -1; +@@ -3394,7 +3394,7 @@ int tls_connection_set_cipher_list(void *tls_ctx, stru + + wpa_printf(MSG_DEBUG, "OpenSSL: cipher suites: %s", buf + 1); + +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + #if defined(EAP_FAST) || defined(EAP_FAST_DYNAMIC) || defined(EAP_SERVER_FAST) + if (os_strstr(buf, ":ADH-")) { + /* +@@ -3977,7 +3977,7 @@ static int tls_sess_sec_cb(SSL *s, void *secret, int * + struct tls_connection *conn = arg; + int ret; + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (conn == NULL || conn->session_ticket_cb == NULL) + return 0; + From 562ba769750ba11052d668a531b84ff7696a7df5 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 2 Dec 2015 09:42:02 +0000 Subject: [PATCH 553/707] qca2: add patch to build with libressl 2.3 --- pkgs/development/libraries/qca2/default.nix | 2 ++ .../development/libraries/qca2/libressl.patch | 28 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/libraries/qca2/libressl.patch diff --git a/pkgs/development/libraries/qca2/default.nix b/pkgs/development/libraries/qca2/default.nix index 43ef6f78b57..4e6b50502d6 100644 --- a/pkgs/development/libraries/qca2/default.nix +++ b/pkgs/development/libraries/qca2/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + patches = [ ./libressl.patch ]; + meta = with stdenv.lib; { description = "Qt Cryptographic Architecture"; license = "LGPL"; diff --git a/pkgs/development/libraries/qca2/libressl.patch b/pkgs/development/libraries/qca2/libressl.patch new file mode 100644 index 00000000000..c9b0267f85d --- /dev/null +++ b/pkgs/development/libraries/qca2/libressl.patch @@ -0,0 +1,28 @@ +--- a/plugins/qca-ossl/qca-ossl.cpp 2015-12-02 09:34:25.810682094 +0000 ++++ b/plugins/qca-ossl/qca-ossl.cpp 2015-12-02 09:29:51.720392423 +0000 +@@ -5403,11 +5403,13 @@ + ctx = SSL_CTX_new(SSLv2_client_method()); + break; + #endif ++#ifndef OPENSSL_NO_SSL3 + case TLS::SSL_v3: + ctx = SSL_CTX_new(SSLv3_client_method()); + break; ++#endif + case TLS::TLS_v1: ++ ctx = SSL_CTX_new(SSLv23_client_method()); +- ctx = SSL_CTX_new(TLSv1_client_method()); + break; + case TLS::DTLS_v1: + default: +@@ -7133,8 +7135,10 @@ + return new opensslInfoContext(this); + else if ( type == "sha1" ) + return new opensslHashContext( EVP_sha1(), this, type); ++#ifndef OPENSSL_NO_SHA0 + else if ( type == "sha0" ) + return new opensslHashContext( EVP_sha(), this, type); ++#endif + else if ( type == "ripemd160" ) + return new opensslHashContext( EVP_ripemd160(), this, type); + #ifdef HAVE_OPENSSL_MD2 From 77affc495f514ac81343c10c92340c64ba6a3437 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Wed, 23 Dec 2015 22:41:05 +0100 Subject: [PATCH 554/707] despotify: fix missing hash (close #11913) --- pkgs/development/libraries/despotify/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/despotify/default.nix b/pkgs/development/libraries/despotify/default.nix index 2cb241b0427..e774a9e923b 100644 --- a/pkgs/development/libraries/despotify/default.nix +++ b/pkgs/development/libraries/despotify/default.nix @@ -10,6 +10,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://svn.code.sf.net/p/despotify/code"; rev = "521"; + sha256 = "1vc453bv5ngkvaqkq7z5bj6x28m4kik59153jikcfah3k4qmxw21"; }; buildInputs = [ From 99b1b464b45ce84dd1b0eb8a48b75780322d8a49 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 2 Dec 2015 11:42:04 +0000 Subject: [PATCH 555/707] qt55.qtbase: add patch to build with libressl 2.3 --- .../libraries/qt-5/5.5/qtbase/libressl.patch | 36 +++++++++++++++++++ .../libraries/qt-5/5.5/qtbase/series | 1 + 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch new file mode 100644 index 00000000000..e483ad14e05 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch @@ -0,0 +1,36 @@ +From 81494e67eccba04fc3fe554d76a9ca6fe7f2250e Mon Sep 17 00:00:00 2001 +From: hasufell +Date: Sat, 10 Oct 2015 01:15:01 +0200 +Subject: [PATCH] Fix compilation with libressl + +By additionally checking for defined(SSL_CTRL_SET_CURVES), which +is defined in openssl, but not in libressl. +--- + src/network/ssl/qsslcontext_openssl.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/qtbase/src/network/ssl/qsslcontext_openssl.cpp b/qtbase/src/network/ssl/qsslcontext_openssl.cpp +index b88ab54..cfc4f6d 100644 +--- a/qtbase/src/network/ssl/qsslcontext_openssl.cpp ++++ b/qtbase/src/network/ssl/qsslcontext_openssl.cpp +@@ -338,7 +338,7 @@ init_context: + + const QVector qcurves = sslContext->sslConfiguration.ellipticCurves(); + if (!qcurves.isEmpty()) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + // Set the curves to be used + if (q_SSLeay() >= 0x10002000L) { + // SSL_CTX_ctrl wants a non-const pointer as last argument, +@@ -352,7 +352,7 @@ init_context: + return sslContext; + } + } else +-#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + { + // specific curves requested, but not possible to set -> error + sslContext->errorStr = msgErrorSettingEllipticCurves(QSslSocket::tr("OpenSSL version too old, need at least v1.0.2")); +-- +2.6.0 + diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series index 3cfa50e85b7..2196d838375 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/series +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -6,3 +6,4 @@ dlopen-dbus.patch xdg-config-dirs.patch nix-profiles-library-paths.patch compose-search-path.patch +libressl.patch From f8ee267576e08a24080b9bf0a95935326bcf2a2b Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 26 Nov 2015 12:49:01 +0000 Subject: [PATCH 556/707] w3m: do not always link to RAND_egd for openssl This fixes the build for libressl >= 2.3 as RAND_egd has been removed as it is insecure. --- .../networking/browsers/w3m/RAND_egd.libressl.patch | 11 +++++++++++ pkgs/applications/networking/browsers/w3m/default.nix | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch diff --git a/pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch b/pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch new file mode 100644 index 00000000000..49dd417d1c3 --- /dev/null +++ b/pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch @@ -0,0 +1,11 @@ +--- a/url.c 2014-07-14 12:31:30.476563116 +0200 ++++ b/url.c 2014-07-14 12:32:16.364918248 +0200 +@@ -268,7 +268,7 @@ init_PRNG() + if (RAND_status()) + return; + if ((file = RAND_file_name(buffer, sizeof(buffer)))) { +-#ifdef USE_EGD ++#if defined(USE_EGD) && defined(HAVE_SSL_RAND_EGD) + if (RAND_egd(file) > 0) + return; + #endif diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix index bea74f62358..358f005a878 100644 --- a/pkgs/applications/networking/browsers/w3m/default.nix +++ b/pkgs/applications/networking/browsers/w3m/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lsocket -lnsl"; - patches = [ ./glibc214.patch ] + patches = [ ./glibc214.patch ./RAND_egd.libressl.patch ] # Patch for the newer unstable boehm-gc 7.2alpha. Not all platforms use that # alpha. At the time of writing this, boehm-gc-7.1 is the last stable. ++ optional (boehmgc.name != "boehm-gc-7.1") [ ./newgc.patch ] From c6b251f5d549f8d3dd877d0b086ae4f876bc5a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 23 Dec 2015 23:17:03 +0100 Subject: [PATCH 557/707] nixos/jenkins: rename option 'host' to 'listenAddress' I think the name 'listenAddress' is more descriptive. Other NixOS modules that define 'host' either use it as listen address or as address a client connects to. listenAddress is unambiguous. The addition of 'host' was added earlier today[1], so not bothering with ./nixos/modules/rename.nix. [1]: 44ea18499710049e ("jenkins ci enhancement: add port and prefix option") --- .../services/continuous-integration/jenkins/default.nix | 8 ++++---- .../continuous-integration/jenkins/job-builder.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 3b76ada72bb..9bffd97628a 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -48,7 +48,7 @@ in { ''; }; - host = mkOption { + listenAddress = mkOption { default = "0.0.0.0"; example = "localhost"; type = types.str; @@ -156,18 +156,18 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.host} \ + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.listenAddress} \ --httpPort=${toString cfg.port} \ --prefix=${cfg.prefix} \ ${concatStringsSep " " cfg.extraOptions} ''; postStart = '' - until ${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix} ; do + until ${pkgs.curl}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} ; do sleep 10 done while true ; do - index=`${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix}` + index=`${pkgs.curl}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix}` if [[ !("$index" =~ 'Please wait while Jenkins is restarting' || "$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then exit 0 diff --git a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix index 1f65db4ce95..702d452279f 100644 --- a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix +++ b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix @@ -144,7 +144,7 @@ in { done echo "Asking Jenkins to reload config" - curl --silent -X POST http://${jenkinsCfg.host}:${toString jenkinsCfg.port}${jenkinsCfg.prefix}/reload + curl --silent -X POST http://${jenkinsCfg.listenAddress}:${toString jenkinsCfg.port}${jenkinsCfg.prefix}/reload ''; serviceConfig = { User = jenkinsCfg.user; From b2d0886b37bc7a927c98a15430b3be3cbc4f81f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 23 Dec 2015 23:23:07 +0100 Subject: [PATCH 558/707] nixos/jenkins: fix typo in docstring (s/adress/address/) --- .../services/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 9bffd97628a..d571aa3e199 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -53,8 +53,8 @@ in { example = "localhost"; type = types.str; description = '' - Specifies the bind adress on which the jenkins HTTP interface listens. - The default is the wildcard adress. + Specifies the bind address on which the jenkins HTTP interface listens. + The default is the wildcard address. ''; }; From 558f14a0943e076f1c05816e91d72e34de93951a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Dec 2015 17:03:21 -0600 Subject: [PATCH 559/707] kde5: build with Qt 5.5 --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2163fd81f78..e547fade718 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14778,7 +14778,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt5.newScope merged); + recurseIntoAttrs (lib.makeScope qt55.newScope merged); kde5_latest = let @@ -14787,7 +14787,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt5.newScope merged); + recurseIntoAttrs (lib.makeScope qt55.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; From a5ac3dfffc5628a513c2c1e4e8581bcbeb894736 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Dec 2015 17:03:37 -0600 Subject: [PATCH 560/707] kde5.plasma: 5.5.1 -> 5.5.2 --- pkgs/desktops/plasma-5.5/fetchsrcs.sh | 2 +- pkgs/desktops/plasma-5.5/srcs.nix | 304 +++++++++++++------------- 2 files changed, 153 insertions(+), 153 deletions(-) diff --git a/pkgs/desktops/plasma-5.5/fetchsrcs.sh b/pkgs/desktops/plasma-5.5/fetchsrcs.sh index 2ea23dc5656..48ecc6ff469 100755 --- a/pkgs/desktops/plasma-5.5/fetchsrcs.sh +++ b/pkgs/desktops/plasma-5.5/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.5.1/" +RELEASE_URL="http://download.kde.org/stable/plasma/5.5.2/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/plasma-5.5/srcs.nix b/pkgs/desktops/plasma-5.5/srcs.nix index 63b6a7bee92..107946da8a2 100644 --- a/pkgs/desktops/plasma-5.5/srcs.nix +++ b/pkgs/desktops/plasma-5.5/srcs.nix @@ -3,307 +3,307 @@ { bluedevil = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/bluedevil-5.5.1.tar.xz"; - sha256 = "09id2vyjdmwl20km0zfwhz2rsyrb2yrfygczh39v1s3nqz88mw97"; - name = "bluedevil-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/bluedevil-5.5.2.tar.xz"; + sha256 = "0z13vj9ybdilsixnn44wixr54f50lbbq52ryjfc4bxllycv9fzjf"; + name = "bluedevil-5.5.2.tar.xz"; }; }; breeze = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/breeze-5.5.1.tar.xz"; - sha256 = "03chjfi878r9cz6vy7px0fma8lzrynpnnvbfqw2pbz00mny89hkw"; - name = "breeze-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/breeze-5.5.2.tar.xz"; + sha256 = "171n9i642i2p1a8sd5pjamm41phbih5f244f1f5f6h2r29bpccgr"; + name = "breeze-5.5.2.tar.xz"; }; }; breeze-gtk = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/breeze-gtk-5.5.1.tar.xz"; - sha256 = "10nnahdsyl7rh6r4wzrxjhw6pl5j5b29wkv7a9kkyqjmhmfxsmpq"; - name = "breeze-gtk-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/breeze-gtk-5.5.2.tar.xz"; + sha256 = "1zlxdb6rlg7r4dfd87l9p0js52c9k190l8aj2zd9hhw2wyc388x0"; + name = "breeze-gtk-5.5.2.tar.xz"; }; }; discover = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/discover-5.5.1.tar.xz"; - sha256 = "0nr48126xb48ra9gc40bhbsz74ssrf6dnx189n3sdvb00y7a26wf"; - name = "discover-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/discover-5.5.2.tar.xz"; + sha256 = "13wm838yqhl1xw4wp93b0avfacp2zgg9rvml1hm6ksfbbyh8xxj0"; + name = "discover-5.5.2.tar.xz"; }; }; kde-cli-tools = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kde-cli-tools-5.5.1.tar.xz"; - sha256 = "0izn9fqbrjxcpwwjfr4522jazz2aw8h0r5c4s99hmy5q6hyr59bj"; - name = "kde-cli-tools-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kde-cli-tools-5.5.2.tar.xz"; + sha256 = "0di7qxifrck1d1y24dypvgd3b60pkddlk2nnf6m230m0qacw6kk6"; + name = "kde-cli-tools-5.5.2.tar.xz"; }; }; kdecoration = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kdecoration-5.5.1.tar.xz"; - sha256 = "1fdflipbfbivy3p90n30wc6flqck5hx5q4zli42v2a039bzj44jn"; - name = "kdecoration-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kdecoration-5.5.2.tar.xz"; + sha256 = "1g9bvkqvzy8h5l79qcm3zf4s146fld4la3ri83bbsfd9my6lrwph"; + name = "kdecoration-5.5.2.tar.xz"; }; }; kde-gtk-config = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kde-gtk-config-5.5.1.tar.xz"; - sha256 = "1pjs59i9xwz3csd86qmvb4c7n766q1dam8llvklkx17i8f9ddri0"; - name = "kde-gtk-config-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kde-gtk-config-5.5.2.tar.xz"; + sha256 = "0pd8a36ggdrp145mxk28n33r8fd436v74jq8xzvq0f2gfh4lcih8"; + name = "kde-gtk-config-5.5.2.tar.xz"; }; }; kdeplasma-addons = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kdeplasma-addons-5.5.1.tar.xz"; - sha256 = "0i59p4dyaz7kz9rcx2hpwg3c7sbwsk4cab9ldcck6vb83szxi1il"; - name = "kdeplasma-addons-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kdeplasma-addons-5.5.2.tar.xz"; + sha256 = "0lqhgqy25bijpm62hlzn2ksia0dldvvdf4s9ax8b2g4jq114wrl4"; + name = "kdeplasma-addons-5.5.2.tar.xz"; }; }; kgamma5 = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kgamma5-5.5.1.tar.xz"; - sha256 = "0qwb2fl27pprr6m2vhr021whpashgan3lx2s91iyb09cxf56883y"; - name = "kgamma5-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kgamma5-5.5.2.tar.xz"; + sha256 = "0lcz7frb3134k7pvll7di1x08bs8q1cxr4hy0d1danns6jj19w6q"; + name = "kgamma5-5.5.2.tar.xz"; }; }; khelpcenter = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/khelpcenter-5.5.1.tar.xz"; - sha256 = "0alsn8xsac0l2zdsk9fvawz3zvg431qgg443p05v6a2pfadb2b0s"; - name = "khelpcenter-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/khelpcenter-5.5.2.tar.xz"; + sha256 = "1ypy0p9ld9gy06z8r19lcysbzbg202m3ljdmzkzixvr8173lg01x"; + name = "khelpcenter-5.5.2.tar.xz"; }; }; khotkeys = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/khotkeys-5.5.1.tar.xz"; - sha256 = "0rbmdh8yv8ms19kn3r0qcgy0wlrin5jhxic55pc4hdccxy0alchi"; - name = "khotkeys-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/khotkeys-5.5.2.tar.xz"; + sha256 = "0dcdh0hxhlqaip3vk02npw3bk2pgpsrfhjr80k8bmhiy9g95z7ab"; + name = "khotkeys-5.5.2.tar.xz"; }; }; kinfocenter = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kinfocenter-5.5.1.tar.xz"; - sha256 = "0b1z8qsa1qpl9w13ag8154biry44r19nrg1mb5r3wjy22s1nmf40"; - name = "kinfocenter-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kinfocenter-5.5.2.tar.xz"; + sha256 = "1wg8yv096glby3ds822b643x0lrhmf67karr1xcd98xr5l188ngw"; + name = "kinfocenter-5.5.2.tar.xz"; }; }; kmenuedit = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kmenuedit-5.5.1.tar.xz"; - sha256 = "0wk5lainva9pc8ccflpfgil9b9vi6wf1vfd5pkn11n9dqr1sbgcq"; - name = "kmenuedit-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kmenuedit-5.5.2.tar.xz"; + sha256 = "1gqb2wrb1ahdqljm451w9kbyl0mmqm7axrpnf4hblh4453ym19wr"; + name = "kmenuedit-5.5.2.tar.xz"; }; }; kscreen = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kscreen-5.5.1.tar.xz"; - sha256 = "1zn31yfk2x9xpqvr0liyna98sk486qqbdgzisx8dl5jm8j7lxm5c"; - name = "kscreen-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kscreen-5.5.2.tar.xz"; + sha256 = "0kqf296r6gxfq0cz2s8yg05jazb3048fxbm2v0b9mv235c5j5xap"; + name = "kscreen-5.5.2.tar.xz"; }; }; kscreenlocker = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kscreenlocker-5.5.1.tar.xz"; - sha256 = "0614w38isbqhvw425620mabvczjph52b6mpzzp0ac462ryl5061s"; - name = "kscreenlocker-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kscreenlocker-5.5.2.tar.xz"; + sha256 = "1yknbrxnk162jvi8da4m23qxcwxqm1jsa1l1yxw4nj6rdz3jl6dm"; + name = "kscreenlocker-5.5.2.tar.xz"; }; }; ksshaskpass = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/ksshaskpass-5.5.1.tar.xz"; - sha256 = "0xafh56wpa7ypj2j4pbgp8p7gk95xa7q3wbab3qw8n7gwjwvgm8v"; - name = "ksshaskpass-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/ksshaskpass-5.5.2.tar.xz"; + sha256 = "0dq1qifmq3qdb6ia19n22wrxv5pndl77hlr2pyn2i67rz19zxywf"; + name = "ksshaskpass-5.5.2.tar.xz"; }; }; ksysguard = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/ksysguard-5.5.1.tar.xz"; - sha256 = "0zp3hd22hljn1xqdbmayhrbm4niksp9s6p8fx0nv7pnnv8h02vw1"; - name = "ksysguard-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/ksysguard-5.5.2.tar.xz"; + sha256 = "0c1iaimpwnh6naryj7apqxkdcaj5wmyir1yvlpr5v9wp49gkn2nx"; + name = "ksysguard-5.5.2.tar.xz"; }; }; kwallet-pam = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kwallet-pam-5.5.1.tar.xz"; - sha256 = "1hk8a82dmvf9h5bhykpfx02b65vx30ziak698sjs0zp0hxfilq56"; - name = "kwallet-pam-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwallet-pam-5.5.2.tar.xz"; + sha256 = "0gmk2jm1svvy1jxr5nsq14gscalzknrmzyar858nijyc9k5wb1n0"; + name = "kwallet-pam-5.5.2.tar.xz"; }; }; kwayland = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kwayland-5.5.1.tar.xz"; - sha256 = "18dxhyphd5chswa39isn47xjhp6v2di5jjs03g21wfc4q0avpd45"; - name = "kwayland-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwayland-5.5.2.tar.xz"; + sha256 = "1i1gx3f1ygh9l1hwh4jcipjzl9b00issqk22i1li3054cb45g0mv"; + name = "kwayland-5.5.2.tar.xz"; }; }; kwayland-integration = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kwayland-integration-5.5.1.tar.xz"; - sha256 = "1ss19cxisz9xj4nh6zjmndpcp6r4gvmpsbqa2wycrvsqq6wrsr5f"; - name = "kwayland-integration-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwayland-integration-5.5.2.tar.xz"; + sha256 = "09czrmyz75mkpaq9ca8n4w2b9x15dhw1l4g2vyqzarc8y5id4bnv"; + name = "kwayland-integration-5.5.2.tar.xz"; }; }; kwin = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kwin-5.5.1.tar.xz"; - sha256 = "0gqh98v4h6mc087xdqma5ab478f0zl2v1p6614q9w4si7770i8vl"; - name = "kwin-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwin-5.5.2.tar.xz"; + sha256 = "0cly3mnb7d64h0pcfiqhcqs7p9plwsh0zb7kgz7ahcahqqgzbx4p"; + name = "kwin-5.5.2.tar.xz"; }; }; kwrited = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/kwrited-5.5.1.tar.xz"; - sha256 = "0din1v4jls2bmxx50dx6hs4anfzrr50cb5m8qdq6n0j35p60xq30"; - name = "kwrited-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwrited-5.5.2.tar.xz"; + sha256 = "0fm6bvihyksiizxdp3alpal19c897pjmhqp2cyf7z9aahkyhpgh8"; + name = "kwrited-5.5.2.tar.xz"; }; }; libkscreen = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/libkscreen-5.5.1.tar.xz"; - sha256 = "1v31hxdrwhrx0n582cp2is09k9slw8a7c8qr5yxc8gi96sj3hb2y"; - name = "libkscreen-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/libkscreen-5.5.2.tar.xz"; + sha256 = "02aaaqzblahn477m07xzrk4vc21gc9szhj9aj780qyvpng8jifn2"; + name = "libkscreen-5.5.2.tar.xz"; }; }; libksysguard = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/libksysguard-5.5.1.tar.xz"; - sha256 = "1zgvxvrmi0amxmn4cmd0g4bdb7b97msdkycsckp7krv5mw5h55dx"; - name = "libksysguard-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/libksysguard-5.5.2.tar.xz"; + sha256 = "1z4riwjb3i9wv3zd34y5cv1s2pb3x1v6kayl5bq89v8pyqqkp5n5"; + name = "libksysguard-5.5.2.tar.xz"; }; }; milou = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/milou-5.5.1.tar.xz"; - sha256 = "10qsfqx8rqzzy7yg1sikyxh9ycfplmvv30y8rgv4hihnh1yywhks"; - name = "milou-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/milou-5.5.2.tar.xz"; + sha256 = "180i93zlypqnsw5105xqgfjnvg024z7i7qxhv7snidzm9yrc3f0q"; + name = "milou-5.5.2.tar.xz"; }; }; oxygen = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/oxygen-5.5.1.tar.xz"; - sha256 = "0fszhf3xavmygm82kb3i8pymvz9bc5av5mi35d0qj3fzwfgdkd6h"; - name = "oxygen-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/oxygen-5.5.2.tar.xz"; + sha256 = "0q9mbazync4skgkz595ccjznndkv6v3qwhhyx2ycs73s2v4380kp"; + name = "oxygen-5.5.2.tar.xz"; }; }; plasma-desktop = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-desktop-5.5.1.tar.xz"; - sha256 = "1gazhr4501176z6r8psz8wjg3hcfigvpfm02q82aw9jpyy7sjini"; - name = "plasma-desktop-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-desktop-5.5.2.tar.xz"; + sha256 = "08c4hmnmwzy67cp01p001mil9cvf0gx37dxf0iwghxw7b7nzmxnf"; + name = "plasma-desktop-5.5.2.tar.xz"; }; }; plasma-mediacenter = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-mediacenter-5.5.1.tar.xz"; - sha256 = "12xlixrjbs6lmdabp7f9mp6dhwai7qnj5n867q86qv6i836y10dy"; - name = "plasma-mediacenter-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-mediacenter-5.5.2.tar.xz"; + sha256 = "1019nbgb6f37bn9ncbjzmybrcfi187sf0rg0mxpvrhh1imdfxwsj"; + name = "plasma-mediacenter-5.5.2.tar.xz"; }; }; plasma-nm = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-nm-5.5.1.tar.xz"; - sha256 = "0q0189vz7770xv65skj7a47lbavfgz9a4x4csqv834k40pawkyhg"; - name = "plasma-nm-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-nm-5.5.2.tar.xz"; + sha256 = "00fx5m6avbq14wkmd6jjd1wda8rznav2hs5x70jx9dnkl1c6463x"; + name = "plasma-nm-5.5.2.tar.xz"; }; }; plasma-pa = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-pa-5.5.1.tar.xz"; - sha256 = "13falp4xq028jnkqf5nsv71vv9icclvyk701s5dbcff7v2k2zphk"; - name = "plasma-pa-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-pa-5.5.2.tar.xz"; + sha256 = "0nikv5ms1dnyf4w41c97gsx2wvy7da3qz7hddx3xnkzk3hh596fi"; + name = "plasma-pa-5.5.2.tar.xz"; }; }; plasma-sdk = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-sdk-5.5.1.tar.xz"; - sha256 = "1s1k8zdkzpp51dn7w1ra4mswjnrr7nnf7nywdx8k10c0fyxny7hy"; - name = "plasma-sdk-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-sdk-5.5.2.tar.xz"; + sha256 = "0ain65582dz075xjfq8kh7rkcf8hzbr7fdw4hifmcjfp4lh0da4g"; + name = "plasma-sdk-5.5.2.tar.xz"; }; }; plasma-workspace = { - version = "5.5.1.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-workspace-5.5.1.1.tar.xz"; - sha256 = "019pmhlry3zyrq4mvs35k1lmz35cwk4xvpl8wy7awx8r631dm4by"; - name = "plasma-workspace-5.5.1.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-workspace-5.5.2.tar.xz"; + sha256 = "00nmfq864lkj03z82cgfczxhijafhd9nxiw0cprs6x9kvp1d3ylc"; + name = "plasma-workspace-5.5.2.tar.xz"; }; }; plasma-workspace-wallpapers = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/plasma-workspace-wallpapers-5.5.1.tar.xz"; - sha256 = "1w2bbgcbjvdjxlgd4r3wva87i08y2ngqy85fngpl4387rq234zri"; - name = "plasma-workspace-wallpapers-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-workspace-wallpapers-5.5.2.tar.xz"; + sha256 = "11gymzyhszb9192z0q54z6dlgxqivixj2grhynj2096r4c8jb1rk"; + name = "plasma-workspace-wallpapers-5.5.2.tar.xz"; }; }; polkit-kde-agent = { - version = "1-5.5.1"; + version = "1-5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/polkit-kde-agent-1-5.5.1.tar.xz"; - sha256 = "181d0l0dh7kxdz2ykl6g8mirxjcldm5p2737py3c7g617ysl97c1"; - name = "polkit-kde-agent-1-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/polkit-kde-agent-1-5.5.2.tar.xz"; + sha256 = "0jmsmx41ixksl1cja295c06agpcs4hn4c0jvhc30b5l9i7nf79j9"; + name = "polkit-kde-agent-1-5.5.2.tar.xz"; }; }; powerdevil = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/powerdevil-5.5.1.tar.xz"; - sha256 = "1gjhclm58dxlmb6g8dm2alfqk7iw9fy5vyryn0z6i71j7760aqpp"; - name = "powerdevil-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/powerdevil-5.5.2.tar.xz"; + sha256 = "1l5765izd4p6i5q1f2r77ra0fip8fb0c1pl5bxg45sg3hnnaxk21"; + name = "powerdevil-5.5.2.tar.xz"; }; }; sddm-kcm = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/sddm-kcm-5.5.1.tar.xz"; - sha256 = "0fbnyvyklr409n2qdbyvn1sqhkl7jdabldpv6brq010wd5f2rfrv"; - name = "sddm-kcm-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/sddm-kcm-5.5.2.tar.xz"; + sha256 = "0fcyhndi1hh17cpbadm8alfhrkal847h4a7rx2rs8rrgypxdzhf9"; + name = "sddm-kcm-5.5.2.tar.xz"; }; }; systemsettings = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/systemsettings-5.5.1.tar.xz"; - sha256 = "19q9yvlvyq61m3xjnii6zfpf5kwnja906i3709ia29132ai4x3sn"; - name = "systemsettings-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/systemsettings-5.5.2.tar.xz"; + sha256 = "03y6mhfy3ax12g2s937w88hd88ln23asvcbsl52fy8h37b9vlnba"; + name = "systemsettings-5.5.2.tar.xz"; }; }; user-manager = { - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.1/user-manager-5.5.1.tar.xz"; - sha256 = "12mrn2fila5m1nzrj196s6q15g91c52zqqbgzi9zqk22n2801l9f"; - name = "user-manager-5.5.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/user-manager-5.5.2.tar.xz"; + sha256 = "0lvl8dhy8vymngb4p5x4y7miih8g004ii237lwrxv254ddv60azn"; + name = "user-manager-5.5.2.tar.xz"; }; }; } From 965cfccfa509f3e513e0bceecfded742b3286c93 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Dec 2015 18:03:55 -0600 Subject: [PATCH 561/707] kde5: add attributes for individual KDE collections --- pkgs/top-level/all-packages.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e547fade718..8be89661b67 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14776,7 +14776,9 @@ let frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; - merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + named = self: { plasma = plasma self; frameworks = frameworks self; apps = apps self; }; + merged = self: + named self // frameworks self // plasma self // apps self // kde5PackagesFun self; in recurseIntoAttrs (lib.makeScope qt55.newScope merged); @@ -14785,7 +14787,9 @@ let frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; - merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + named = self: { plasma = plasma self; frameworks = frameworks self; apps = apps self; }; + merged = self: + named self // frameworks self // plasma self // apps self // kde5PackagesFun self; in recurseIntoAttrs (lib.makeScope qt55.newScope merged); From 94dbaa7dbf49702a661129168e9093faf60e48f0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Dec 2015 03:39:08 +0100 Subject: [PATCH 562/707] saneBackends{,Git}: add SNMP support --- pkgs/applications/graphics/sane/backends-git.nix | 6 ++++-- pkgs/applications/graphics/sane/backends.nix | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix index 0c74a470c25..149d9a70610 100644 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ b/pkgs/applications/graphics/sane/backends-git.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchurl, fetchgit, hotplugSupport ? true, libusb ? null +{ stdenv, fetchurl, fetchgit, libusb ? null, net_snmp ? null , gt68xxFirmware ? null, snapscanFirmware ? null +, hotplugSupport ? true }: let firmware = gt68xxFirmware { inherit fetchurl; }; @@ -18,7 +19,8 @@ stdenv.mkDerivation { udevSupport = hotplugSupport; - buildInputs = if libusb != null then [libusb] else []; + buildInputs = [ net_snmp ] + ++ stdenv.lib.optional (libusb != null) libusb; postInstall = '' if test "$udevSupport" = "1"; then diff --git a/pkgs/applications/graphics/sane/backends.nix b/pkgs/applications/graphics/sane/backends.nix index fb943ac23b5..b96f7a4dbc8 100644 --- a/pkgs/applications/graphics/sane/backends.nix +++ b/pkgs/applications/graphics/sane/backends.nix @@ -1,5 +1,7 @@ -{ stdenv, fetchurl, hotplugSupport ? true, libusb ? null, libv4l ? null -, pkgconfig ? null, gt68xxFirmware ? null, snapscanFirmware ? null +{ stdenv, fetchurl, libusb ? null, libv4l ? null, net_snmp ? null +, pkgconfig ? null +, gt68xxFirmware ? null, snapscanFirmware ? null +, hotplugSupport ? true }: assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); @@ -26,7 +28,7 @@ stdenv.mkDerivation rec { configureFlags = stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; - buildInputs = [] + buildInputs = [ net_snmp ] ++ stdenv.lib.optional (libusb != null) libusb ++ stdenv.lib.optional (libv4l != null) libv4l ++ stdenv.lib.optional (pkgconfig != null) pkgconfig From ffc04a67e3aa54fdcf162dfdec9fc85535b5e251 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Dec 2015 18:23:29 +0100 Subject: [PATCH 563/707] sanebackends{,Git}: add avahi support --- pkgs/applications/graphics/sane/backends-git.nix | 8 ++++++-- pkgs/applications/graphics/sane/backends.nix | 9 ++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix index 149d9a70610..bf9f4f5c01f 100644 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ b/pkgs/applications/graphics/sane/backends-git.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, fetchgit, libusb ? null, net_snmp ? null +{ stdenv, fetchurl, fetchgit +, avahi ? null, libusb ? null, net_snmp ? null , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true }: @@ -19,9 +20,12 @@ stdenv.mkDerivation { udevSupport = hotplugSupport; - buildInputs = [ net_snmp ] + buildInputs = [ avahi net_snmp ] ++ stdenv.lib.optional (libusb != null) libusb; + configureFlags = [] + ++ stdenv.lib.optional (avahi != null) "--enable-avahi"; + postInstall = '' if test "$udevSupport" = "1"; then mkdir -p $out/etc/udev/rules.d/ diff --git a/pkgs/applications/graphics/sane/backends.nix b/pkgs/applications/graphics/sane/backends.nix index b96f7a4dbc8..637ed7a2024 100644 --- a/pkgs/applications/graphics/sane/backends.nix +++ b/pkgs/applications/graphics/sane/backends.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, libusb ? null, libv4l ? null, net_snmp ? null +{ stdenv, fetchurl +, avahi ? null, libusb ? null, libv4l ? null, net_snmp ? null , pkgconfig ? null , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true @@ -26,9 +27,11 @@ stdenv.mkDerivation rec { udevSupport = hotplugSupport; - configureFlags = stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; + configureFlags = [] + ++ stdenv.lib.optional (avahi != null) "--enable-avahi" + ++ stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; - buildInputs = [ net_snmp ] + buildInputs = [ avahi net_snmp ] ++ stdenv.lib.optional (libusb != null) libusb ++ stdenv.lib.optional (libv4l != null) libv4l ++ stdenv.lib.optional (pkgconfig != null) pkgconfig From 58bf69407125d47683e28502f01d0426660417a4 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 21:44:23 +0100 Subject: [PATCH 564/707] saneBackends: factor out common code into generic.nix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The git version was duplicated from the stable one and the two had begun to diverge significantly. For example, commit 88d731925d62b162fc7b7b1bc8c75a519a9ac718 fixed a supposedly real bug — but only in the stable package. Factor out the shared code to avoid trouble — or worse, subtle differences or bugs — in future. --- .../graphics/sane/backends-git.nix | 64 ------------------- .../graphics/sane/backends/default.nix | 13 ++++ .../{backends.nix => backends/generic.nix} | 34 +++++----- .../graphics/sane/backends/git.nix | 10 +++ pkgs/top-level/all-packages.nix | 4 +- 5 files changed, 40 insertions(+), 85 deletions(-) delete mode 100644 pkgs/applications/graphics/sane/backends-git.nix create mode 100644 pkgs/applications/graphics/sane/backends/default.nix rename pkgs/applications/graphics/sane/{backends.nix => backends/generic.nix} (79%) create mode 100644 pkgs/applications/graphics/sane/backends/git.nix diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix deleted file mode 100644 index bf9f4f5c01f..00000000000 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ stdenv, fetchurl, fetchgit -, avahi ? null, libusb ? null, net_snmp ? null -, gt68xxFirmware ? null, snapscanFirmware ? null -, hotplugSupport ? true -}: -let - firmware = gt68xxFirmware { inherit fetchurl; }; -in -assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); - -let version = "2015-12-20"; in -stdenv.mkDerivation { - name = "sane-backends-${version}"; - - src = fetchgit { - url = "git://alioth.debian.org/git/sane/sane-backends.git"; - rev = "5136e664b8608604f54a2cc1d466019922b311e6"; - sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed"; - }; - - udevSupport = hotplugSupport; - - buildInputs = [ avahi net_snmp ] - ++ stdenv.lib.optional (libusb != null) libusb; - - configureFlags = [] - ++ stdenv.lib.optional (avahi != null) "--enable-avahi"; - - postInstall = '' - if test "$udevSupport" = "1"; then - mkdir -p $out/etc/udev/rules.d/ - ./tools/sane-desc -m udev > $out/etc/udev/rules.d/60-libsane.rules || \ - cp tools/udev/libsane.rules $out/etc/udev/rules.d/60-libsane.rules - fi - ''; - - preInstall = - if gt68xxFirmware != null then - "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + firmware.fw + - " \${out}/share/sane/gt68xx/" + firmware.name - else if snapscanFirmware != null then - "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + - " \${out}/share/sane/snapscan/your-firmwarefile.bin ;" + - "mkdir -p \${out}/etc/sane.d ; " + - "echo epson2 > \${out}/etc/sane.d/dll.conf" - else ""; - - meta = with stdenv.lib; { - inherit version; - homepage = "http://www.sane-project.org/"; - description = "SANE (Scanner Access Now Easy) backends"; - longDescription = '' - Collection of open-source SANE backends (device drivers). - SANE is a universal scanner interface providing standardized access to - any raster image scanner hardware: flatbed scanners, hand-held scanners, - video- and still-cameras, frame-grabbers, etc. For a list of supported - scanners, see http://www.sane-project.org/sane-backends.html. - ''; - license = licenses.gpl2Plus; - - maintainers = with maintainers; [ nckx simons ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/graphics/sane/backends/default.nix b/pkgs/applications/graphics/sane/backends/default.nix new file mode 100644 index 00000000000..a3ca7fdd55d --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/default.nix @@ -0,0 +1,13 @@ +{ callPackage, fetchurl, ... } @ args: + +callPackage ./generic.nix (args // rec { + version = "1.0.25"; + src = fetchurl { + sha256 = "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4"; + urls = [ + "http://pkgs.fedoraproject.org/repo/pkgs/sane-backends/sane-backends-${version}.tar.gz/f9ed5405b3c12f07c6ca51ee60225fe7/sane-backends-${version}.tar.gz" + "https://alioth.debian.org/frs/download.php/file/4146/sane-backends-${version}.tar.gz" + ]; + curlOpts = "--insecure"; + }; +}) diff --git a/pkgs/applications/graphics/sane/backends.nix b/pkgs/applications/graphics/sane/backends/generic.nix similarity index 79% rename from pkgs/applications/graphics/sane/backends.nix rename to pkgs/applications/graphics/sane/backends/generic.nix index 637ed7a2024..0324acec6c7 100644 --- a/pkgs/applications/graphics/sane/backends.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -1,40 +1,34 @@ { stdenv, fetchurl , avahi ? null, libusb ? null, libv4l ? null, net_snmp ? null -, pkgconfig ? null +, pkgconfig , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true +, version, src, ... }: assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); let + firmware = gt68xxFirmware { inherit fetchurl; }; -in -stdenv.mkDerivation rec { - version = "1.0.25"; - name = "sane-backends-${version}"; - - src = fetchurl { - urls = [ - "http://pkgs.fedoraproject.org/repo/pkgs/sane-backends/sane-backends-1.0.25.tar.gz/f9ed5405b3c12f07c6ca51ee60225fe7/${name}.tar.gz" - "https://alioth.debian.org/frs/download.php/file/4146/${name}.tar.gz" - ]; - curlOpts = "--insecure"; - sha256 = "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4"; - }; - - outputs = [ "out" "doc" "man" ]; udevSupport = hotplugSupport; +in +stdenv.mkDerivation { + inherit src; + + name = "sane-backends-${version}"; + + outputs = [ "out" "doc" "man" ]; + configureFlags = [] ++ stdenv.lib.optional (avahi != null) "--enable-avahi" ++ stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; - buildInputs = [ avahi net_snmp ] + buildInputs = [ avahi net_snmp pkgconfig ] ++ stdenv.lib.optional (libusb != null) libusb ++ stdenv.lib.optional (libv4l != null) libv4l - ++ stdenv.lib.optional (pkgconfig != null) pkgconfig ; postInstall = '' @@ -55,7 +49,8 @@ stdenv.mkDerivation rec { else ""; meta = with stdenv.lib; { - homepage = "http://www.sane-project.org/"; + inherit version; + description = "SANE (Scanner Access Now Easy) backends"; longDescription = '' Collection of open-source SANE backends (device drivers). @@ -64,6 +59,7 @@ stdenv.mkDerivation rec { video- and still-cameras, frame-grabbers, etc. For a list of supported scanners, see http://www.sane-project.org/sane-backends.html. ''; + homepage = "http://www.sane-project.org/"; license = licenses.gpl2Plus; maintainers = with maintainers; [ nckx simons ]; diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix new file mode 100644 index 00000000000..7a76d8804d6 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -0,0 +1,10 @@ +{ callPackage, fetchgit, ... } @ args: + +callPackage ./generic.nix (args // { + version = "2015-12-20"; + src = fetchgit { + sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed"; + rev = "5136e664b8608604f54a2cc1d466019922b311e6"; + url = "git://alioth.debian.org/git/sane/sane-backends.git"; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8be89661b67..38e095e8183 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15531,14 +15531,14 @@ let }; }; - saneBackends = callPackage ../applications/graphics/sane/backends.nix { + saneBackends = callPackage ../applications/graphics/sane/backends { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; hotplugSupport = config.sane.hotplugSupport or true; libusb = libusb1; }; - saneBackendsGit = callPackage ../applications/graphics/sane/backends-git.nix { + saneBackendsGit = callPackage ../applications/graphics/sane/backends/git.nix { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; hotplugSupport = config.sane.hotplugSupport or true; From 61106207cd3b53861a0ade8b2ff655045c7ee25c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 21 Dec 2015 00:01:37 +0100 Subject: [PATCH 565/707] saneBackends: remove some redundancies (no hash change) --- pkgs/applications/graphics/sane/backends/generic.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 0324acec6c7..c5c8d837a20 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -6,12 +6,11 @@ , version, src, ... }: -assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); +assert hotplugSupport -> + builtins.elem stdenv.system [ "i686-linux" "x86_64-linux" ]; let - firmware = gt68xxFirmware { inherit fetchurl; }; - udevSupport = hotplugSupport; in @@ -41,8 +40,8 @@ stdenv.mkDerivation { preInstall = if gt68xxFirmware != null then - "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + firmware.fw + - " \${out}/share/sane/gt68xx/" + firmware.name + "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + gt68xxFirmware.fw + + " \${out}/share/sane/gt68xx/" + gt68xxFirmware.name else if snapscanFirmware != null then "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + " \${out}/share/sane/snapscan/your-firmwarefile.bin" From d91765d2e08cc15bc996d56194341ecfc40aa3d1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 04:18:31 +0100 Subject: [PATCH 566/707] saneBackends: append epson2 to dll.conf if installed --- pkgs/applications/graphics/sane/backends/generic.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index c5c8d837a20..8709531f609 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -45,6 +45,8 @@ stdenv.mkDerivation { else if snapscanFirmware != null then "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + " \${out}/share/sane/snapscan/your-firmwarefile.bin" + "mkdir -p \${out}/etc/sane.d ; " + + "echo epson2 >> \${out}/etc/sane.d/dll.conf" else ""; meta = with stdenv.lib; { From d39892699325b85a9a4a222088b8937512e737d9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 05:03:12 +0100 Subject: [PATCH 567/707] saneBackends: simplify buildInputs --- pkgs/applications/graphics/sane/backends/generic.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 8709531f609..022cdd72f10 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl -, avahi ? null, libusb ? null, libv4l ? null, net_snmp ? null +, avahi, libusb, libv4l, net_snmp , pkgconfig , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true @@ -25,10 +25,8 @@ stdenv.mkDerivation { ++ stdenv.lib.optional (avahi != null) "--enable-avahi" ++ stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; - buildInputs = [ avahi net_snmp pkgconfig ] - ++ stdenv.lib.optional (libusb != null) libusb - ++ stdenv.lib.optional (libv4l != null) libv4l - ; + buildInputs = [ avahi libusb libv4l net_snmp ]; + nativeBuildInputs = [ pkgconfig ]; postInstall = '' if test "$udevSupport" = "1"; then From eeca8c0441d3065d0db3f83fba28cc3c541efb18 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 05:04:22 +0100 Subject: [PATCH 568/707] saneBackends: add translations (gettext) --- pkgs/applications/graphics/sane/backends/generic.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 022cdd72f10..707a0b09120 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl , avahi, libusb, libv4l, net_snmp -, pkgconfig +, gettext, pkgconfig , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true , version, src, ... @@ -26,7 +26,7 @@ stdenv.mkDerivation { ++ stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; buildInputs = [ avahi libusb libv4l net_snmp ]; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ gettext pkgconfig ]; postInstall = '' if test "$udevSupport" = "1"; then From 6a76cd13362dab971bc2de54b63be96dcd55288a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 16:39:08 +0100 Subject: [PATCH 569/707] saneBackends: drop libusb override; use libusb1 directly --- pkgs/applications/graphics/sane/backends/generic.nix | 7 ++++--- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 707a0b09120..e617bcc814d 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl -, avahi, libusb, libv4l, net_snmp +, avahi, libusb1, libv4l, net_snmp , gettext, pkgconfig , gt68xxFirmware ? null, snapscanFirmware ? null , hotplugSupport ? true @@ -23,9 +23,10 @@ stdenv.mkDerivation { configureFlags = [] ++ stdenv.lib.optional (avahi != null) "--enable-avahi" - ++ stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; + ++ stdenv.lib.optional (libusb1 != null) "--enable-libusb_1_0" + ; - buildInputs = [ avahi libusb libv4l net_snmp ]; + buildInputs = [ avahi libusb1 libv4l net_snmp ]; nativeBuildInputs = [ gettext pkgconfig ]; postInstall = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 38e095e8183..92042392094 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15535,7 +15535,6 @@ let gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; hotplugSupport = config.sane.hotplugSupport or true; - libusb = libusb1; }; saneBackendsGit = callPackage ../applications/graphics/sane/backends/git.nix { From fd9e991616b57473e059542ad7b70cf692323d43 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 17:30:27 +0100 Subject: [PATCH 570/707] saneBackends: remove udevSupport == hotplugSupport --- pkgs/applications/graphics/sane/backends/generic.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index e617bcc814d..a8963b438b8 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -9,11 +9,6 @@ assert hotplugSupport -> builtins.elem stdenv.system [ "i686-linux" "x86_64-linux" ]; -let - - udevSupport = hotplugSupport; - -in stdenv.mkDerivation { inherit src; @@ -30,7 +25,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ gettext pkgconfig ]; postInstall = '' - if test "$udevSupport" = "1"; then + if test "$hotplugSupport" = "1"; then mkdir -p $out/etc/udev/rules.d/ ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules From 09c8911bd7ab8c6702652f36dfb12f176d723c14 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 21 Dec 2015 03:13:18 +0100 Subject: [PATCH 571/707] redshift: don't busy-loop like crazy on NixOS start-up --- nixos/modules/services/x11/redshift.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix index d40373ec2e5..6614be261e5 100644 --- a/nixos/modules/services/x11/redshift.nix +++ b/nixos/modules/services/x11/redshift.nix @@ -98,13 +98,16 @@ in { requires = [ "display-manager.service" ]; after = [ "display-manager.service" ]; wantedBy = [ "graphical.target" ]; - serviceConfig.ExecStart = '' - ${cfg.package}/bin/redshift \ - -l ${cfg.latitude}:${cfg.longitude} \ - -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ - -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \ - ${lib.strings.concatStringsSep " " cfg.extraOptions} - ''; + serviceConfig = { + ExecStart = '' + ${cfg.package}/bin/redshift \ + -l ${cfg.latitude}:${cfg.longitude} \ + -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ + -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \ + ${lib.strings.concatStringsSep " " cfg.extraOptions} + ''; + RestartSec = 3; + }; environment = { DISPLAY = ":0"; }; serviceConfig.Restart = "always"; }; From b8a7875d6401f720e9b317af884c2eb196da127a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 20:27:52 +0100 Subject: [PATCH 572/707] vnstat: 1.14 -> 1.15 & add longDescription Changes: - Fix: XML output had extra commas, broken since previous version - Fix: unintended shared pointer modification in mosecs() sometimes resulted in wrong month name to be shown for the current month - Fix: possible buffer overflow in /proc/net/dev parsing, requires corrupted content in /proc/net/dev or use of address sanitizer - Use ANSI escape codes in -l and -tr modes for cursor location manipulation instead of printing backspaces, hide cursor while output is active - Improve database import robustness - Improve support for Asian UTF-8 date strings - Replace hand written Makefiles with Autotools - Add --alwaysadd parameter to daemon for allowing automatic addition of interfaces even if the database directory was populated during startup --- .../networking/vnstat/default.nix | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/vnstat/default.nix b/pkgs/applications/networking/vnstat/default.nix index b2cba633db8..96de04b2733 100644 --- a/pkgs/applications/networking/vnstat/default.nix +++ b/pkgs/applications/networking/vnstat/default.nix @@ -1,29 +1,32 @@ -{stdenv, fetchurl, ncurses}: +{ stdenv, fetchurl, ncurses }: -let version = "1.14"; in +let version = "1.15"; in stdenv.mkDerivation rec { name = "vnstat-${version}"; src = fetchurl { - sha256 = "11l39qqv5pgli9zzn0xilld67bi5qzxymsn97m4r022xv13jlipq"; + sha256 = "0fdw3nbrfm4acv48r0934ls6ld5lwkff3gyym2c72qlbm9dlp0f3"; url = "http://humdi.net/vnstat/${name}.tar.gz"; }; - installPhase = '' - mkdir -p $out/{bin,sbin} $out/share/man/{man1,man5} - cp src/vnstat $out/bin - cp src/vnstatd $out/sbin - cp man/vnstat.1 man/vnstatd.1 $out/share/man/man1 - cp man/vnstat.conf.5 $out/share/man/man5 - ''; + buildInputs = [ ncurses ]; - buildInputs = [ncurses]; + postPatch = '' + substituteInPlace src/cfg.c --replace /usr/local $out + ''; meta = with stdenv.lib; { inherit version; + description = "Console-based network statistics utility for Linux"; + longDescription = '' + vnStat is a console-based network traffic monitor for Linux and BSD that + keeps a log of network traffic for the selected interface(s). It uses the + network interface statistics provided by the kernel as information source. + This means that vnStat won't actually be sniffing any traffic and also + ensures light use of system resources. + ''; homepage = http://humdi.net/vnstat/; license = licenses.gpl2Plus; - description = "Console-based network statistics utility for Linux"; maintainers = with maintainers; [ nckx ]; platforms = platforms.linux; }; From 9ecc0612f932157509299ea4d695b9519b8939cc Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 20:29:57 +0100 Subject: [PATCH 573/707] vnstat: add image output (gd) support --- pkgs/applications/networking/vnstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/vnstat/default.nix b/pkgs/applications/networking/vnstat/default.nix index 96de04b2733..a553de8abb2 100644 --- a/pkgs/applications/networking/vnstat/default.nix +++ b/pkgs/applications/networking/vnstat/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses }: +{ stdenv, fetchurl, gd, ncurses }: let version = "1.15"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { url = "http://humdi.net/vnstat/${name}.tar.gz"; }; - buildInputs = [ ncurses ]; + buildInputs = [ gd ncurses ]; postPatch = '' substituteInPlace src/cfg.c --replace /usr/local $out From f5b52aa3827753f92d97ec18541b25f9e974f548 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 20:57:01 +0100 Subject: [PATCH 574/707] clipgrab: 3.5.5 -> 3.5.6 --- pkgs/applications/video/clipgrab/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index 4075c87146b..d4f968a3b9f 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }: -let version = "3.5.5"; in +let version = "3.5.6"; in stdenv.mkDerivation rec { name = "clipgrab-${version}"; src = fetchurl { - sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd"; + sha256 = "0wm6hqaq6ydbvvd0fqkfydxd5h7gf4di7lvq63xgxl4z40jqc25n"; # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz! url = "http://download.clipgrab.de/${name}.tar.gz"; }; From 6b508687cf6d86600f64cb2c8f27e22784af24c2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Dec 2015 21:06:23 +0100 Subject: [PATCH 575/707] perlPackages.Glib: 1.314 -> 1.320 & fix licence --- pkgs/top-level/perl-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 04cf46e9339..8e6d02ada39 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4972,17 +4972,17 @@ let self = _self // overrides; _self = with self; { }; Glib = buildPerlPackage rec { - name = "Glib-1.314"; + name = "Glib-1.320"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "13lhyksm7fgj6rgrgs06kr0hinbyhiq3lfr6gd2qal1j2w0rwzml"; + sha256 = "15mrwscqjgwpkw9n4x6rakr9rjz2ss8d90k574fs5wx9cmgg3np3"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ]; meta = { homepage = http://gtk2-perl.sourceforge.net/; description = "Perl wrappers for the GLib utility and Object libraries"; maintainers = with maintainers; [ nckx ]; - license = stdenv.lib.licenses.lgpl3Plus; + license = stdenv.lib.licenses.lgpl21Plus; }; }; From b8bc82a45998998f3223c5d01e4a74fe9e7dbb3c Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sun, 20 Dec 2015 15:38:21 +0800 Subject: [PATCH 576/707] archiveopteryx: init at 3.2.0 --- lib/maintainers.nix | 1 + pkgs/servers/mail/archiveopteryx/default.nix | 22 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 25 insertions(+) create mode 100644 pkgs/servers/mail/archiveopteryx/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 16e4c1e35ff..8b2ec630066 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -233,6 +233,7 @@ phausmann = "Philipp Hausmann "; philandstuff = "Philip Potter "; phreedom = "Evgeny Egorochkin "; + phunehehe = "Hoang Xuan Phu "; pierron = "Nicolas B. Pierron "; piotr = "Piotr Pietraszkiewicz "; pjbarnoy = "Perry Barnoy "; diff --git a/pkgs/servers/mail/archiveopteryx/default.nix b/pkgs/servers/mail/archiveopteryx/default.nix new file mode 100644 index 00000000000..8388d63d6b2 --- /dev/null +++ b/pkgs/servers/mail/archiveopteryx/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, openssl, perl, zlib }: +stdenv.mkDerivation rec { + version = "3.2.0"; + name = "archiveopteryx-${version}"; + src = fetchurl { + url = "http://archiveopteryx.org/download/${name}.tar.bz2"; + sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx"; + }; + buildInputs = [ openssl perl zlib ]; + installPhase = '' + INSTALLROOT=$out make install + mkdir $out/bin + ln --symbolic $out/usr/local/archiveopteryx/sbin/* $out/bin/ + ln --symbolic $out/usr/local/archiveopteryx/bin/* $out/bin/ + ''; + meta = with stdenv.lib; { + homepage = http://archiveopteryx.org/; + description = "An advanced PostgreSQL-based IMAP/POP server"; + license = licenses.postgresql; + maintainers = [ maintainers.phunehehe ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 92042392094..25745518109 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9110,6 +9110,8 @@ let apacheHttpdPackages_2_2 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_2 pkgs.apacheHttpdPackages_2_2; apacheHttpdPackages_2_4 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4; + archiveopteryx = callPackage ../servers/mail/archiveopteryx/default.nix { }; + cadvisor = callPackage ../servers/monitoring/cadvisor { }; cassandra_1_2 = callPackage ../servers/nosql/cassandra/1.2.nix { }; From 0fda4ff7152dd9c59441a6ab1f4c48978f2a4a30 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Wed, 23 Dec 2015 22:46:30 +0100 Subject: [PATCH 577/707] tahoelafs: mock is required at runtime for some reason --- pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index 836f3e1e60c..1f935c2f83b 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { ''; # Some tests want this + http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-sdists/mock-0.6.0.tar.bz2 - buildInputs = [ unzip numpy mock ]; + buildInputs = [ unzip numpy ]; # The `backup' command requires `sqlite3'. propagatedBuildInputs = [ twisted foolscap nevow simplejson zfec pycryptopp sqlite3 - darcsver setuptoolsTrial setuptoolsDarcs pycrypto pyasn1 zope_interface + darcsver setuptoolsTrial setuptoolsDarcs pycrypto pyasn1 zope_interface mock ]; postInstall = '' From 79b4e5a8d7efe534647e2d5287f606883fc555a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Thu, 24 Dec 2015 12:07:45 +0100 Subject: [PATCH 578/707] docker module: fix kernel module loading The docker module used different code for socket-activated docker daemon than for the non-socket activated daemon. In particular, if the socket-activated daemon is used, then modprobe wasn't set up to be usable and in PATH for the docker daemon, which resulted in a failure to start the daemon with overlayfs as storageDriver if the `overlay` kernel module wasn't already loaded. This commit fixes that bug (which only appears if socket activation is used), and also reduces the duplication between code paths so that it's easier to keep both in sync in future. --- nixos/modules/virtualisation/docker.nix | 47 +++++++++---------------- 1 file changed, 16 insertions(+), 31 deletions(-) diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix index 718ca085147..97b2927cf1b 100644 --- a/nixos/modules/virtualisation/docker.nix +++ b/nixos/modules/virtualisation/docker.nix @@ -69,7 +69,8 @@ in description = '' The postStart phase of the systemd service. You may need to override this if you are passing in flags to docker which - don't cause the socket file to be created. + don't cause the socket file to be created. This option is ignored + if socket activation is used. ''; }; @@ -81,22 +82,29 @@ in config = mkIf cfg.enable (mkMerge [ { environment.systemPackages = [ pkgs.docker ]; users.extraGroups.docker.gid = config.ids.gids.docker; - } - (mkIf cfg.socketActivation { - systemd.services.docker = { description = "Docker Application Container Engine"; - after = [ "network.target" "docker.socket" ]; - requires = [ "docker.socket" ]; + wantedBy = optional (!cfg.socketActivation) "multi-user.target"; + after = [ "network.target" ] ++ (optional cfg.socketActivation "docker.socket") ; + requires = optional cfg.socketActivation "docker.socket"; serviceConfig = { - ExecStart = "${pkgs.docker}/bin/docker daemon --host=fd:// --group=docker --storage-driver=${cfg.storageDriver} ${cfg.extraOptions}"; + ExecStart = "${pkgs.docker}/bin/docker daemon --group=docker --storage-driver=${cfg.storageDriver} ${optionalString cfg.socketActivation "--host=fd://"} ${cfg.extraOptions}"; # I'm not sure if that limits aren't too high, but it's what # goes in config bundled with docker itself LimitNOFILE = 1048576; LimitNPROC = 1048576; } // proxy_env; - }; + path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs); + environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules"; + + postStart = if cfg.socketActivation then "" else cfg.postStart; + + # Presumably some containers are running we don't want to interrupt + restartIfChanged = false; + }; + } + (mkIf cfg.socketActivation { systemd.sockets.docker = { description = "Docker Socket for the API"; wantedBy = [ "sockets.target" ]; @@ -108,29 +116,6 @@ in }; }; }) - (mkIf (!cfg.socketActivation) { - - systemd.services.docker = { - description = "Docker Application Container Engine"; - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - serviceConfig = { - ExecStart = "${pkgs.docker}/bin/docker daemon --group=docker --storage-driver=${cfg.storageDriver} ${cfg.extraOptions}"; - # I'm not sure if that limits aren't too high, but it's what - # goes in config bundled with docker itself - LimitNOFILE = 1048576; - LimitNPROC = 1048576; - } // proxy_env; - - path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs); - environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules"; - - postStart = cfg.postStart; - - # Presumably some containers are running we don't want to interrupt - restartIfChanged = false; - }; - }) ]); } From 2faea53f8eb16b9b7b8af16f4d4c084459d0e398 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 09:48:17 +0000 Subject: [PATCH 579/707] cargo: 0.6.0 -> 0.7.0 --- pkgs/development/tools/build-managers/cargo/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/cargo/default.nix b/pkgs/development/tools/build-managers/cargo/default.nix index bdd6c18e92c..aa3df6fb1ce 100644 --- a/pkgs/development/tools/build-managers/cargo/default.nix +++ b/pkgs/development/tools/build-managers/cargo/default.nix @@ -5,7 +5,7 @@ with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "0.6.0"; + version = "0.7.0"; }); buildRustPackage rec { @@ -15,10 +15,10 @@ buildRustPackage rec { src = fetchgit { url = "git://github.com/rust-lang/cargo"; rev = "refs/tags/${version}"; - sha256 = "1kxri32sz9ygnf4wlbj7hc7q9p6hmm5xrb9zzkx23wzkzbcpyjyz"; + sha256 = "139rv7d6mk31klbnccmn573i05ygjrnflag6c3qwc075i62yfmx6"; }; - depsSha256 = "1m045yywv67sx75idbsny59d3dzbqnhr07k41jial5n5zwp87mb9"; + depsSha256 = "07p244bcw3aa1hfbsz6q89pyl8ypkw9zp1r8cvd131w890w9ab4b"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; From dad3cd7928a043f9e6b69939da8acbd3820b9f55 Mon Sep 17 00:00:00 2001 From: Christian Albrecht Date: Thu, 24 Dec 2015 06:47:31 +0100 Subject: [PATCH 580/707] jzmq: fix missing shasum in fetchgit src --- pkgs/development/libraries/java/jzmq/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/java/jzmq/default.nix b/pkgs/development/libraries/java/jzmq/default.nix index 508b188aef7..4576c1a1c72 100644 --- a/pkgs/development/libraries/java/jzmq/default.nix +++ b/pkgs/development/libraries/java/jzmq/default.nix @@ -6,6 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/zeromq/jzmq.git; rev = "946fd39780423b2df6e5efd9fa2cd863fd79c9db"; + sha256 = "0j6kfmngqw2gpyxc1ak67d65l208vrb0h8bm8svclia8b339m37a"; }; buildInputs = [ automake autoconf libtool pkgconfig zeromq2 jdk ]; From 021c2cad22e73090959e4057e022a5d9a70713ad Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 23 Dec 2015 22:54:49 +0000 Subject: [PATCH 581/707] rustRegistry: 2015-12-10 -> 2015-12-23 --- pkgs/top-level/rust-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index 9fee03b701e..1f43751bc73 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2015-12-10"; - rev = "22d6577ebaf063f121fb8dc7dd3b53b73a75f453"; + version = "2015-12-23"; + rev = "0fd482d73d5a13fd49a36d2940ad7a069a6fc049"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "10hqb8pwi5bcxc96ddijjswxjv8yqh54w7r3x1xsz2i7160z8gs6"; + sha256 = "18g69d7npky31rbd4bfcps9180bhfnddg2vhp9w1w0smvgzmg0i3"; }; in From 37ebb4c2aca8ceb82fa82f48d1d6dc415b3bdc05 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 23 Dec 2015 22:55:13 +0000 Subject: [PATCH 582/707] rustfmt: 2015-12-08 -> 2015-12-23 --- pkgs/development/tools/rust/rustfmt/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 49a87754e72..f67b1f00a0f 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,15 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2015-12-08"; + name = "rustfmt-git-2015-12-23"; src = fetchFromGitHub { - owner = "nrc"; + owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "e94bd34a06d878a41bb8be409f173a8824dda63f"; - sha256 = "0f0ixbr5nfla0j0b91plmapw75yl3d3lxwvllj2wx4z94nfxanp6"; + rev = "c0b7de7c521dc65b2ad2b5a3c81fb56030f4af22"; + sha256 = "1axnp8w26c3dwlx7bby3qi6385n301rlk1ndh5yaz7vkbpn4w9km"; }; - depsSha256 = "0vsrpw4icn9jf44sqr5749hbazsxp3hqn1g7gr90fvnfvz4s5f07"; + depsSha256 = "1s2as7qc7jbksc16gj5cxxm52zw8h4nfgka66dmwwjlv9679wj9f"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; From a5e94225609a178e1d7b663176ccb67881fc65ef Mon Sep 17 00:00:00 2001 From: leenaars Date: Thu, 24 Dec 2015 13:29:43 +0100 Subject: [PATCH 583/707] sipsimple: 2.5.1 -> 2.6.0 Updated SIP Simple SDK to new version, is a dependency for e.g. Blink (which needs to be updated as the old version does not build anymore because the tarball has been removed) --- 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 26b6d7de503..eab64615606 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17983,12 +17983,12 @@ in modules // { sipsimple = buildPythonPackage rec { name = "sipsimple-${version}"; - version = "2.5.1"; + version = "2.6.0"; disabled = isPy3k; src = pkgs.fetchurl { url = "http://download.ag-projects.com/SipClient/python-${name}.tar.gz"; - sha256 = "0vpy2vss8667c0kp1k8vybl38nxp7kr2v2wa8sngrgzd65m6ww5p"; + sha256 = "0xcyasas28q1ad1hgw4vd62b72mf1sng7xwfcls6dc05k9p3q8v3"; }; propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ]; From 92e48a4383484f21d2979728a251b257ccc2db19 Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Thu, 24 Dec 2015 13:30:42 +0100 Subject: [PATCH 584/707] xserver: make xkbdir configurable --- nixos/modules/services/x11/xserver.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index d637a753bb2..2bcaf2cf2a3 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -280,6 +280,14 @@ in ''; }; + xkbDir = mkOption { + type = types.str; + default = "${pkgs.xkeyboard_config}/etc/X11/xkb"; + description = '' + Path used for -xkbdir xserver parameter. + ''; + }; + config = mkOption { type = types.lines; description = '' @@ -462,7 +470,7 @@ in target = "X11/xorg.conf"; } # -xkbdir command line option does not seems to be passed to xkbcomp. - { source = "${pkgs.xkeyboard_config}/etc/X11/xkb"; + { source = "${cfg.xkbDir}"; target = "X11/xkb"; } ]); @@ -528,7 +536,7 @@ in [ "-ac" "-terminate" "-config ${configFile}" - "-xkbdir" "${pkgs.xkeyboard_config}/etc/X11/xkb" + "-xkbdir" "${cfg.xkbDir}" ] ++ optional (cfg.display != null) ":${toString cfg.display}" ++ optional (cfg.tty != null) "vt${toString cfg.tty}" ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] From 767f145a605a72e282abc04a98d8820d0178acc8 Mon Sep 17 00:00:00 2001 From: leenaars Date: Thu, 24 Dec 2015 14:41:23 +0100 Subject: [PATCH 585/707] blink: 1.4.1 -> 1.4.2 --- .../networking/instant-messengers/blink/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 7bb14efc1bb..9c75af2c77f 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -3,11 +3,11 @@ pythonPackages.buildPythonPackage rec { name = "blink-${version}"; - version = "1.4.1"; + version = "1.4.2"; src = fetchurl { url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz"; - sha256 = "0lpc3gm0hk55m7i2hlmk2p76akcfvnqxg0hyamfhha90nv6fk7sf"; + sha256 = "0ia5hgwyg6cm393ik4ggzhcmc957ncswycs07ilwj6vrrzraxfk7"; }; patches = [ ./pythonpath.patch ]; From 8c4bfb747ec23a7aa58ea080d386fa4f296f34f8 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Thu, 24 Dec 2015 13:27:09 +0100 Subject: [PATCH 586/707] gpsprune: init at 18.2 --- pkgs/applications/misc/gpsprune/default.nix | 32 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/applications/misc/gpsprune/default.nix diff --git a/pkgs/applications/misc/gpsprune/default.nix b/pkgs/applications/misc/gpsprune/default.nix new file mode 100644 index 00000000000..dead3b83dcf --- /dev/null +++ b/pkgs/applications/misc/gpsprune/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv, bash, jre8 }: + +stdenv.mkDerivation rec { + name = "gpsprune-${version}"; + version = "18.2"; + + src = fetchurl { + url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar"; + sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2"; + }; + + phases = [ "installPhase" ]; + + buildInputs = [ jre8 ]; + + installPhase = '' + mkdir -p $out/bin $out/share/java + cp -v $src $out/share/java/gpsprune.jar + cat > $out/bin/gpsprune < Date: Wed, 23 Dec 2015 23:52:28 +0100 Subject: [PATCH 587/707] josm: init at 9060 --- pkgs/applications/misc/josm/default.nix | 32 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/applications/misc/josm/default.nix diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix new file mode 100644 index 00000000000..275cc8ff2ad --- /dev/null +++ b/pkgs/applications/misc/josm/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv, bash, jre8 }: + +stdenv.mkDerivation rec { + name = "josm-${version}"; + version = "9060"; + + src = fetchurl { + url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; + sha256 = "0c1q0bs3x1j9wzmb52xnppdyvni4li5khbfja7axn2ml09hqa0j2"; + }; + + phases = [ "installPhase" ]; + + buildInputs = [ jre8 ]; + + installPhase = '' + mkdir -p $out/bin $out/share/java + cp -v $src $out/share/java/josm.jar + cat > $out/bin/josm < Date: Thu, 24 Dec 2015 23:04:07 +0900 Subject: [PATCH 588/707] firefox-bin: 43.0.1 -> 43.0.2 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index e9b171dc94d..57f0550a793 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_sources.rb > sources.nix { - version = "43.0.1"; + version = "43.0.2"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "77cd7332ecebd3e51cb45896d61494e95e57707dcc1393af00695f8232274c17"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "792d25a8d536d32dc89b655f5e3961b704fa27618395d3ae637180242eae2b71"; } - { locale = "af"; arch = "linux-i686"; sha256 = "fe211798f211a316a5ecf5a5c4dd61389e448b45166c681f886fa1e97bff4734"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "7a6e077c0702e7c832a9b9c5f35a70f19dd4c0c9f910a8a254fe165a5f3d8331"; } - { locale = "an"; arch = "linux-i686"; sha256 = "a01769decb90c7235f2cffcb6eaa135ba0a838e182f8398e12ff664e8be500c0"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "8e4b243cca233a6f00b07ccb5ac2330edc5de590d2d6b787d753e965fd6e777c"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "e572f980f5d28b994b930d3a5665e92f8ab5c149a19a99132bf93cdf2bf75fbc"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "b42f56de042899d67461fab43d41f9b23817e879df23cd0c4be748b701a8d5da"; } - { locale = "as"; arch = "linux-i686"; sha256 = "652919614ebd2775d3a13706ffb09959655f9bb12f0a120698c1deec6c244554"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "62793f511b7a4244beca42d5dbb235df8431f7156a09fc4c1227cfaf19fe8885"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "e6a8ab24ef5585cc5204b5150066c8e96fb30c15b89a7c885fb8def445f2734f"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "e8c286528d5149c58bbae4a75b2d95c408e81de85cfe68e431d97f51c19ec0b0"; } - { locale = "az"; arch = "linux-i686"; sha256 = "829728affcb12321102bee38eb5b0e428d9a9d910a69bb299e77452c5bca6f02"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "aed06f78b55620e2632a9fcb4cbbf36f34ad1510ab7df2dc3de94c8c57f79263"; } - { locale = "be"; arch = "linux-i686"; sha256 = "257afd489537fa53ae84daf819a859a62757122d824d501d95c5010235c345e1"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "7021ac97b762b7d17a498c86c52551056b0cc388a8e10e81e034b845e05f0925"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "a2c74efe9233c4b3bf1a6b9beee417b869ef129e6b60a3078e9528a84d354149"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "a492710cc54c9bc6e406d558063bd16158059fe2e87bf172405b3c6ea38eb391"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "465bad32dc16f8ddb669d032a217ca5863410384b40a86b81290f85b2fc85811"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "063b1642e0ea6ac8b07baa3969698337bfc3a96db724b7a32a668c2e4cf516f1"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "cebcf89bafe0cb88e1d725bf4b4caf72f845a6abd7d5c0ff9b9ed02c99eba686"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "85b51db611b917d3ffddc6b1bf39405eadb69d64473731780fb21f4db42a94af"; } - { locale = "br"; arch = "linux-i686"; sha256 = "997ae06800cf75ec62084db0f453caebe9e6ef0cc43abaf14a623785ca365a2e"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "4455965e809900bb42595c7c05365ec1d26b7508c9d7ca24ac636be4b6583147"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "0e88abaa021e9e435e41baf59590e4d2ee7c3ec442b01620297671f4c4fa023e"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "229ad924b0c72823e7599f8a53df0c1fe46fc4d9972e18a32caa78bbd7f72dec"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "5f03a177cd4ea81732329f7ee62494ad25f79e65f12ad4e0cb244aaa95c66e0a"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "67f29e97d323fa8ccf1e14f1638beeecf5489701a13509cd824b61e6c64e0b96"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "100c1ce1bcdbfc9b4a6f3e576e71ca9cbc771ac7d28d916fbfbbf40c7e37a42c"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "178373db4c0ca4edd6150595529d62fa38912a71ab0d6122fe8ba2ee5947f7dd"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "fbdf1b10f6f07c21669a5d515e9c14b3ad8b2a606e2bb997cb75df4928021f48"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "7444923521bf421fe60c721fa16b6005f40a108813e547ef32c0c1263d687630"; } - { locale = "da"; arch = "linux-i686"; sha256 = "4277aa0783b92e5a101ef52ea191347fb873700f8366d06480dc2445fe7c391e"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "9300787407ca226bf1ac9a25f8f4e9428793c032ca102c65b1841a12ebb508b6"; } - { locale = "de"; arch = "linux-i686"; sha256 = "ceaef87cf7553368a919396c3c303033fe6e1bb23477549ff25d2426473127e6"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "55b7296fa2643d7caee38fa0e282959cd0160fb7f8a89bca11085d6bba40a679"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "7b92682d19f457d162c537bea71f9c026b36cefdda440f2a1ea489f44fc57f63"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "be235c2af381500a5cbc4f0c400106a31b00a49fcf19d2a981f5ee7221f7617e"; } - { locale = "el"; arch = "linux-i686"; sha256 = "832c7f65d97795a284e93bec61c14ffcffaf74fa3fc844f1ae896058f0409e72"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "4758c97ab627cd7818f4a38febca52c11084e2c8e0ee2d05f70a6e1f2b67661f"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "02b926d46100116ab7bab27ecbfa60ded6674d5d687f76412443a52e5fdb4283"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "98d83b9434d948d7fbc24708363d1c8e8d37551711994c7b8448f6e924f49be7"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "a8530e2b5d5c16c1afef6759a9015e83767271046537a050442fd6c457986746"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "ea797acf50c2efb39968773864aeac0bd17dc3a1dc726b3ff95780aec01ea669"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "4baa2cc65dd053e226f4391a975c162c8c709f31f82c31d7707ab168f8c249c2"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "93ddb0c696131e9a7a258fc44eed88d5aecac50f101106211e69220e602c949a"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "eabb1fad074ccc3887fb56eda2d71f51af3aa22541d310f0c25ddab0a52ba7a8"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "280f9010cad2583eaca8892cbb2600e3b98d77181ef30f5cf233951e26414df9"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "82741dd5a2bdb7541d931ed8606ec483f44b0d6416a3f4d9b3fa1c1e57cd3390"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "10499b8c57d6d6c8976e80e5b50c278846c45d408a2ead66328c780cb5a40ed2"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "e5879a71124b429250f6bea231f0411e80c28718a7cecdd7713e9512d21c22f6"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "177b19854746c70fbe1243db51b22e3a96e660def60763d79a340b08c7537d6d"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "b1f2baa7fdeb2a670289fdbea089084f01171c1a5295142aff38a36efe7c4f3f"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "231e9d0d9588732d4aa440e7d56eaa4d6a94457b0805802643c4ab6b5be46087"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "917e235734993f4a121eb01fd91cf1788b018f52477116b1848a2faebdf6c4d0"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "de6ec93363ae0f814737bb63ff17d5beb2e756d5990ca15f7dca445bfcf83331"; } - { locale = "et"; arch = "linux-i686"; sha256 = "dacfc817b23972d066a89c2430d0e4ae450fa7c05cc148c726e0a739aa248dcc"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "e114477a85c27f199e807b203c78c148b9b594d3dcf8fefa08bb6b15c1b60deb"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "0fba5ce5724309e251cc010b5bdff861b21934fe21ce810c11bc8f25ef6f2854"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "d43fa45c2e78c112a2dfc00e5486dad0150aca3d14ea87e6184392a394ca0e0a"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "fb37966eca9e8077b96187b73925e3ff9d2725954db4ce6a9dcf8fe7004d1213"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "46e103d2bbaf66e123a2f178b29c20fc7e87dec3cd1ef4cf7edbee379104774a"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "46658e4701c21276a2731efa1c64783dce29fd3cfca35edebb36dd094f826280"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "aae29a8ab6a2245536a7828dc688973589d46c32f60e3e08424d417b2fdca1ce"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "45c19f14327a5ec2a6ca64e9126467d88ff43995e98a9954a3b50b5440a2cc46"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "2ea74f89de5af4ffdcc27746a524114f5160ddc38d041a344367c85856830c7e"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "05b2998f27e59ef1a771deceef92888995503b220b4bd6e60bf62d5bf5bb3b91"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "8b39731c52323fda138e82a6152cefa5f90bed9b3997415feb508498faa96c34"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "b51c3801e852f6ded7f5cc166dba95398e14a316103e34dab71b7bb82260880f"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44f8629a19a48748b10246df108b2dfb3b685b261462a925c64c337649ee6b55"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "62d5eda1223150bb402ab56a5bd106e5b5e95229b5f4f7542d786d7d6b4e55d0"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "8b1329faf13cd75e960f5958c98002ef486cbd76d8429e800b8930707d23bbc4"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "6f572140ee8ff1a299613c6f459a7de0097519f04fb4094bfd9736fb13bd9d58"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "4d03d82c86cf1e574264786ff2cf6d70201d0ec657ab729530ae90303a160fdc"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "f0f1ab79f93a5467f097b7c5c4ac20847c1029b975ea2bd40b772a9a6ae8c759"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "093cad0eac9c3f399a24ed5cc954f520a997562e05920cb833b44f19dfe35807"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ab234f32b8fbedbcf80965661f0db0245826e965d6f6266a329723ea2f5a19f"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "d10681ce58b2b2ff00b0219b0807707efb4005dcb1bb7d63ce4c297d2c6f6213"; } - { locale = "he"; arch = "linux-i686"; sha256 = "10f8c4ce42dc5a74754bc18d1f2883eee7c02884900435f432be01a7fdb4b8ed"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "9bc878bc21c03717f75f6a24ba604f7822dc2872afe02a00d01fefec593679d0"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "e5cf142f1aedbaee1044ef07e2ab78f9a11658d11544dd4a0f2d5a756862e8ba"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "adea7b2dffbd2b354c1fbb395c661ddf433e65ba2ea0e121e3275ecc0d691df4"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "12152b2510a30b0961715af872c93f16e178d9251b76e69e036f48576795fff9"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "37013843d5ec1056139cfd54d12c490314cf22cd0cef54dd95540baeeee6230c"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "5f9cda6b0a8a86bf22697d05625abb0b12776a5dd28e696ccece9a2eb5147bc6"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "d927c16ad103a0b2c2fa701e474d68b89cf45813b94714d1fed82140ae699d66"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "26522239478dad6fc04c06cf1a4e13998cdc69dd026afe127f5c62cf40114332"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "3742d3f582d5229e58fe918d022b8bd55e856957b95f7d75aed4aefa2983713f"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "d847834c540d40344678d20e4c0a9f30cb3af3b28e0147da9905522c1e43d553"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "672bb8abca09194ffcf402ac89296c31d46c5dd10cec7d98e7588faf98112d15"; } - { locale = "id"; arch = "linux-i686"; sha256 = "d6388edc053ffd8d1c8b96d09edacec503109f33b42ba89a3a35fee8593e1b58"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "7968be1865b6381f970e514f1f9268bd41cfda5b8e5695544dd93627ec0c8124"; } - { locale = "is"; arch = "linux-i686"; sha256 = "7239ce4db17389e1717a63827faad3ef4957ef496f2f7b4d7e1e9fc96aa864cd"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "babbec58f631050242183926f0956a3c5ff2a064a8aafdc2d1bdd945b0c353ad"; } - { locale = "it"; arch = "linux-i686"; sha256 = "75b5f2fa097819a5de8450422b368f0b2bd4fb8e5ff67b60abc9a014939113f5"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "63737299f29d8f52f9ef00e43160ecc3c8a9046c050e6b78c651079750853505"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "6ee7bc9487d9ac5d121a706920e8efaabe9bdc5bb7527f02f38fe27771aa1042"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "f9add10fe74ad4b1fb42618a93f686ae3929e862b24248eed7abb3ab8129808d"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "8e10163a29fd333f31bbfa57ad92f2b3cfedec23726779cafa567de80e217548"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "b20fcb23b481ad30089bf94b704847ae8deae3841c3d032b39d3ec43eef0eda5"; } - { locale = "km"; arch = "linux-i686"; sha256 = "6df67080e6e2b8236432bdf7d215b674ef2d534c63dcabeb3a894966e4e8866f"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "983571f48d4517f25e22a0c828240bd00e8cdf5f643c7ad0b094b2a73d7cd2f5"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "27e20cc9794805763539683407d3e40a02b8cc77ea7e4ec6d63a73bad36d6a74"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "6d4733730e57ea4aac60e0fb55b8db00c41d9848f1b9b28811cbada781b557d8"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "81cc34afd043bebd79760ec759eb47b5ac32374ee1e3698327a3520d51f308b8"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "2401953e6f1fdf8a7b5c3bf01c9ae7b0873697f8519ac8c27495053e1a23990c"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "3d3917d0fad2cea34325d95e21208f7bc33a5f8823b633c5c4c3e38979f0e4d4"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "85e8b23f22a5349a649f892b5134ece615ba2832257cdbeebe4d44900d140070"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "4ac4805e59b4a9546b5a035d5599be3bb828d06f53ceaef1a38d7e906da40030"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "b9f0ae9691e2c956a7e7227552d86624a03e99258caab7a4fa8a028f28a50551"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "552e9bd5a00373135a165bbf05d2edfbc6ee6708b0b6e2ff71c7762d44baa303"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "7591d8edf125a3c98383b2fdcb84016659ada7314cf15390401183641fffbe2a"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "c25de9a04ae447b39c1ba33e0e1ab56a1e085a2fc6d0bffe4d47f3c2e6353587"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "b8bd88d4e472f12518e848900947fea0070dd6acba698fe7330a0aec0e2241c4"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "baa001a2118908ec106717260b6aa8e8a66372f72a6424c4ec77545ddfc586c5"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "cbb8e8c9184ae617809603c0ab0704d0271d7bc5a84b0d7697dd5ab980a1108e"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "5defd3a75c2f7858335b5bd2f5d46e555e237af7be3cb671f324a107fecc04dc"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "bc5dadffe98a2fb127fa0a83442880359123630e944516410b48a923659f0f70"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "fa324f6e164be65b94e5d9dd56f52dfed744f71403d06e1ee6db6d653fa9c56e"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "e52a794c144c062925e310d2aae725152e70b2c1c61657772ae639f2a36bf656"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "a27bf493efba61fc01f2c64308338e510671708895567af4b209fa3bc41718da"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "da349192ee2a36ed48e3ae8ff4d1acea55877544c77a2b07dd2f017ce4f6e1b7"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "37245f0291b519b436b1b862299960a7961bfb496ca18c247cc5014ccddf9427"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "02c93155e20775db45d05cd46a8b28e2e88c2a20dc4c847ca0ac4844691c4a2a"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "c449d3b9b9b1aa3e438e7380f7c9c89c3d91f207f798a7a5dea11ea05371caa5"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "15ccabff42c778fdff18757bfca234e0bf1bde589b76c7fb950783437cd9c0b8"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "1ec5fea33f0a150c1039386ebefef81acb004142ca4d18023d6e86852969cffb"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "3a8d31dd02895a7113ed3eb4cc004b2748c39badff206f69f2f9fe0aceb1b013"; } - { locale = "or"; arch = "linux-i686"; sha256 = "fa93ce73fa59876f7beb0f48e484dd4561a4d4c2c187d8c896f5e1e5f9306342"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "bd3cdf10fce0ac75bfa2e5fac591b09c8351a3ae2f2018e45546e77d85c384f5"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "5f2917636c1b193b3b7136bf6444a0924f693916f981456965cb452d58812400"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "a8f440c37462a4712df9cd274fd939a4c5bd1a5e4d38435499f598be36b18e1a"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "757cc7c6d9e6cfd701b0a84cce6973f356b0f16781ba80ad92b66c5bc8389d65"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "45702d113636970e97222bb7ff48f8e54e16912e39f9c576a17b1ee3fd2530a0"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "241ba56480c8e7a983e26fa8382c3a5f177d31858fd4453b6ba42578d1d0c9ef"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "90f03fbbe12256824024050698e231c3093630ebd09be56e372d4f76e89b55b2"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "af2e770bd86a2d683883ce9e28be32837be55c3e705430dd5b60d6684154969f"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "dbaefe62b8285931e1a09b70f6082c7c52404117d0ee92a343250b419a2399e3"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "b559d1ffb96587ecf335b6cefcd8f4155161780f6121d19f244d59b051f2145f"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "247029e16aa38a83aec68e7269a93a1ee6f6cb9846aca97fd4a2c44a22ff2b64"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "d3555d64bb64958c577af8ffd958eebaec8cba00a9755b2005bf480527fa52cf"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "e81aeb9737cfece9ae9e886fcf32a85aea943ef4211af8a4fee46cca8b9c9027"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "ab93abbabb9f0d605cc8a0775d3a25e383e5d16c19eda2c5d88fbb7353f4983e"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "304c4eec5ddb2416b71fec38bb2eb0bb9260a9746bccc4c31b9ebf97351d09fb"; } - { locale = "si"; arch = "linux-i686"; sha256 = "4f946959e40dfff8fa83654c733e3c7dc5cd4bfe2d166d454a1f9c98cf3a7d65"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "e06e5d2ea19ea5f4e8db666a53c1854f7861a06f53d2bfac8bc3c128bddc9f87"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "10aa224b3e7eac73f196d4c8ef836b903938c326ee86024f56847afb667cad35"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "376e803c1626a6cd47f1627c4d735fba422e48385bfb5333b58a52115ce13ae8"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "fb15fc51459c916a9c9c6e3969dedd873fdd89d7864d17d6cbedb29e905b6749"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "ae545eae7e637aff1825913b454eb9be87321a1fd6d9777c6aea33aa4159f629"; } - { locale = "son"; arch = "linux-i686"; sha256 = "9df97e243e34df135c91476a4bfb632e0a1e0935afc643f142b1536d0f6c3c1a"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "f8f0ba26226d12bc5896d67fb52e4f5166f307dcc1ea4a09faf11a3a57bdefa4"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "0478e708713d8a8d966442d26f02654945e8b888213e1df017b09de066ddbeb0"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "516a655ac44e81f530673aecfd3ce2d50487b79e00a89ad196ba8772bd87eb3b"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "777d1582a745eaa1134282cf9b299fabf1eaabfefa045701fdf5ccc33ea7f439"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "2675e68d168baa851bd8c7b320818add6135ac96f938ef9039807286c82d9321"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2af1b6c6f2a054176e2ae19d4a8d1ff659fdf25fbb6dda1ae01fe1d3e20fce6"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc8ed365766fe29849f3840d05516be2c68018b3165a2a83bce4c4f1fff63a9e"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "d24f0fe9ee72cb88a214873a49d7734b9a0e78fbcf39baaa5bf72a50aea34ff7"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "5a88e39ccad7f3aca46d5f0558194b13c33e557c58c24683eadd4484566be219"; } - { locale = "te"; arch = "linux-i686"; sha256 = "78b61877ba4b89b9a7d2198d59c3331b2e697f8bf9c55a3e6e734cb3f4e3df91"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "693e5253f4564ae69a21a25e18fbbf5902e2e5e39b388d1cc30e35f9a49029c4"; } - { locale = "th"; arch = "linux-i686"; sha256 = "372f36a5ea8fe5b92c2aa1ec7fcde80ca0bd006cdc220b14d1175eeb11fb7679"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "03b1f0037809b14f7e2daafa7dd43471ed914e445fdf4d12c5bba50c4b66e0aa"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "d030908f9ed247e93a4417d48ef3b4ab136dd5325d5a7e8894f186a6a5179a3f"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "9e15c843feff5d071a4a8e3be64cb2faba9021846c7d5bfe13f206ce91300eb9"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "1b377aec5af5af4021b5385f2a46198d181d1c4d8994b2a1a4108bf9cacdcac3"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "0b158a684610ca92d95868605f18dd61040e0bab820ef7e858505d04d8b5685f"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "8d905bac16fd022354aa54743ae12afabc6f823609586f9ca12ea6b9717ef9e7"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "e22740daf104694323437ae5885aaba67fb7392719c0872ba6f07e2ea73557c1"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "372904386e107a595179b6a0f6bed84e7f986878e054c7e052c3e0378b2a9b2e"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "9c6e2f5cfec7d468dbbf3bda667b00865fec1f10d90a0ba9971ca4c33e8e87b9"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "b056ba0741f09be1d2d2e7980ecc17e813c587080328959e7f4362409fabac3e"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "075effe19f422430948c0a90255ba26bcbf0a4b21153652c1d582ab626eb6be6"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "e3e8b0e0bba1a9a583cb0f82e24d3898f453a9fc478f119ca15f9a8c280dc1e8"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "92236719b5553aad48215b51d13173f7c2673afc4f05d16d92d74a102efa8a22"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "7400fe4f31e95472ca7ddaf2fc0ededa7b8fe709d32674a264639bd065885aaf"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "7f5dd7597600175f7d049d99558c44910ca5a3d07b4ee1140d1ad7e5fb4e6c16"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "da9307cb24c75665adc6a5e02d3045eac9babd33c6da778167644d13cc685de2"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "1a8f13b44107e9689aa339f19c8247142ce82ef9a63bb4be077c212d4d4ad03c"; } + { locale = "af"; arch = "linux-i686"; sha256 = "b8dcbf287b350becd7a4e1d812a2251bf10861fe6fe3c85ea9b56e4aafa2a156"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "241a503d4cd2793c538a5cc1ad0990b2a5cd40a584504cf5dde77a28d2f47049"; } + { locale = "an"; arch = "linux-i686"; sha256 = "530f5e4743384e543e4cf829f00e5f37adccf64b4af5067aab1e316aba72c579"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "1bbde5a3c897ebed7c7820362257626835c1adfafb29a20e80bcc4b1c40407b4"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "f254b2f7117b866e2c8611d5367fc1e2a8e20e1997746204234ae6869c01f6e9"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "bec6a50c9ce11906edb09591ed1f37d94291fb67b2d4ab9a8f5f87b0e837c0be"; } + { locale = "as"; arch = "linux-i686"; sha256 = "b894da79ba753489a3f0509aa54abb9cf67c84e80a73bc00d0e7e7483e1c4ac9"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "ef435b67eac29cf4024ad8df1d4efd413ea58fd76c0e4ec2f2595e7c90743953"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "96566e2de543bb4b3bba195b99efb8ec1c01f6ec969dc75293ed66033b52a92b"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "29f9ccdfc93a72db314df43564fce754ddc678b89a55035f23582bf4a7c66135"; } + { locale = "az"; arch = "linux-i686"; sha256 = "cc58914388b53df51d5bd78f0e63286166bbf278e691b8589bc7db18257627c5"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "7f1db3428190e1bbc01506a029df8c81a0ea67b301f161a5bb297c47d5db41d8"; } + { locale = "be"; arch = "linux-i686"; sha256 = "c8bd88c4ffb98d8611d760b144f46ab3cef4f7808f2b1008cd5aa75eadaf02eb"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "1b063e4e4a33b9d29f01d7c98a942446d738b195877a617dd454c2697fd6a539"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "1186851b6a27a2d23572c9fa0a9bfabcfca1925d36e7fa79e5918541892bcda9"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "d185c5eb1640d13ee9fd049db41d267af728de56f833bc32a182f69c4921d1c0"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "fcc0a0c46e913cb7b4d44c502f62ece83ae8d22703419edafd15321b77758625"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "d1e066c2347e109fab28e525b5780edb9c5c063322745d971e4ad79a110568f6"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "3a85767878b840411c57d176af597666aaeaede9a290032f374629eac536eeca"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "a3314e2a9f74d9f2c85e592a74e1353b2f048349ba65bf4cfdf35c72b130cd61"; } + { locale = "br"; arch = "linux-i686"; sha256 = "a6cd3445e65ca3c818856d6a3b9069aa437ea638f11bb8be520db73604150090"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "9c9f5720b568d768933d7d55bfa7853bb7918bcc651b7c2e281ccf3d2a5e2218"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "9c0844cc1dde7712219626148988df642ab10e81494d4794a51a61bb92ddd110"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "44d91b25d18aa108adf49677069ebd75236f82c7016ee9d518e2ff3f6ad40ffb"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5669828dec411832064e790e65203dabd3703a86090e87a931c6bd495fd39bc7"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "1e1cec512fb7038327488ce884e171ecda23ae26f98d39159ca96b8acea2029a"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "a7bdf99153ae8351c3f4f98db5e65d2a0598457dc0774508fc6ebe26c40ff43e"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "16fd46498fa33334a5bd1cf06351b410f7df41526c195de21959bf837ce5d488"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "8a251c77bbdb6a44163285cacb3a78ffe85835cbe0b9156ad300e733c9ee3934"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "61f2b6b13d9ce1066b6207b16865a038cb35c51f61a5bc05503cf948704320f7"; } + { locale = "da"; arch = "linux-i686"; sha256 = "d1e5d20f7b396bb8b823e7a15a6e220fb930601c2df6e9fc5ca588d3ffce1698"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "a5f20fb678a51a526ebd135b149c6769dda46827174259cabbc4912c6f0619d5"; } + { locale = "de"; arch = "linux-i686"; sha256 = "74e9e40b191fd56e99708910c8798d4a8588271a90eef6f7658e042a0765d0e5"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "470781e1debb2085fa538008cd3203c64b534b5a88c6a6ac01418a3ef344216b"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "459e0d6c55ad822bae10a47a7b14004153a3f3363026556568d7108411318104"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "97fd138bb33c80a3213b33d4796573b65d4659b888959730cc02e726bcc65388"; } + { locale = "el"; arch = "linux-i686"; sha256 = "41b684530ed9bd80c03cb0cd8b1e4de8b3af383f611884965e98215ade1dd8c7"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "b1a7f2a4de87510b9630c6cade94b7f628bbf04289119d3912ea0eb5260b55b2"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "3c40217b451bd28dd5f1aebcb9a9f7aafdfa3c9c7fd635d69674912a9e73f77c"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6aa6cd0945bbe97b30e431fdb09a4deb45a0aba6e1283f881a35732b7403e247"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "dd6c585c24e1e9212b65eabee8e52c5dbc9e4acce4fc51c32aacd82b3c6333e3"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "9c56ff8734eb860a6038f6bd00d98aeabe57037e230c66d551aac451a27efa79"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "0335775eb1a073d1889e8a43f913ea096bbd735a0b98687c75c7fde5eb636f44"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "5ab68e226bfc141167a477779181c48a84cabe80f250c874182ad0364d0c3dd5"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "99a0cf562a067cd30d1047814c1984364b1702e93e638016a4fe8910868cfcdf"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "ba0bc0093bf2b0ea82eb958fdf06683f4941bd9a44138c793175a0b9e5a86ad4"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "3adaec2ccb2b1949492c27c466daa5809afc690bf0559418d2d60faae0b5456a"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "67f774442c64d653d624a270eea1202fad389f926c6b7dee56ef965e65311ef0"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "ee56546d943795434a6759a55dec6e848f244691dc234f4c62746aa1f73cb85d"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "cdbf12f21efb2e18d23ef9c6322c96469c72140200fa47c554067df3a9f89b8d"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "d3518ffe26d3c21beb009c657b93cf2f01be416f697d89beac497c71044f134a"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "ae34d9f586b28b1063cfebb755edc2a11214085f3a185f31d757c2358493ed13"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "09a03624363efba7e5d707c312f58e577019b8b7987d817fe1cf77bf2afa7dfc"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "820c50a0991779f664be8013e10a6db2833caa4b1fed370a7d6a8eb71f5766f3"; } + { locale = "et"; arch = "linux-i686"; sha256 = "bb2d259606836c5d01d149f2735639cad7411efcd5e0e5deacdc3f1bbae8d80d"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "17265f828cb3232cca73b3bf5b806cf361769c77bfef0e6571a16eb73036cccb"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0bedcadc3b60ecb58af25d5950fe693063eb80f65d6d85e72ff0cdab3e7f2030"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "371d5648c7ffaf325ef34030ad0a9971246bc1df354fc11dd66bc461dce303fc"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "a7c55492f08e5f44d5cccb015d00abf8b8e74dec7da37e937f8d0f76a4c49338"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "6fe831c56d96dbed1c4a6859ba58dc20bbdf43efbc2bb225a707df7966f8b9dc"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "5cf4f3235db02c385ffc355e0fa1060b79afd5a8899ff31da1d0dad4d065e4cf"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "0576772ddcbdbe3d26ae20dd47b4e635de709c34eb6a797afab7743ac68815bf"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "8edd2e8058fc848456b2dc1bb54f669159b232b5423dcde6638e5d61294f1ffe"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "94bd189308502abea3d6d762378220097d3d743cc42872e6c43cdcd86aa51b4f"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "652f87501ba2a5baf1de865d7a607837a9ed623834c2d796baf4e3891fc78a6b"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "94c3725ea6fc2a7833e9ee60fdcd0ae3a53c80ce7f13ca00634b5d99b12a4607"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8d9ed839afa148da954acfdca139dbcf9f235c097fc7c562a8ab52f9ece68b4b"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "650c8a50b8473fd09dbcd1c818ca8c3ab0c6618696198124f32e0153307e2aa3"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "a70af727b36bc7d084211a880318f3a9f73977ff75f728b50cc4bfa9398c61d2"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "01d3635c38068facc135fcca979517d729999db52f4a00c0b2ee27cf830df870"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "9763cbe0387cb86f91cdd6b1dfa6e257cc40c4525c753869ee091bfe49f172e8"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "16d3452fdbabada41626d981dee0e48282d672d9d6073b363ede9e86c4ed56ce"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "facde8f17e2f90e49a02b36d016535e1123c7f78ac44ee1110c80dc472e84133"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "b0955c4381f7f0013e9e0b1dcf8d8c53a3bf694af6970638b2e88dc080771ed7"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "cb42e0750736bd14c81bbb76bb05e02c97e798b01d9f41bad091295f9bbb5655"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "c497650eda2e4fc0f99b9d9c1ef0df33b0ea7b6e32d2eb7d4ee109e5ae1f2add"; } + { locale = "he"; arch = "linux-i686"; sha256 = "d4cc561b6ce55f0820e6bd8479de9fd1ed53fd228e7cef28a890aebd687c26aa"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "9294083a0ce8b06cc565c9d643d3e45d50393a5abff230dde8fe42aa29d8b870"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "3493dda678fe94e13d34a62d194b612037f472546b96a94de2390706139636ef"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "db45625e758d3db82705373004cc16176f8376bf087ac11da06c7c22e613dc2a"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "227399d033c4a7877387ac965d84ac265600bc16614de1b99618f39808b92894"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "a4f061ed24c66f936da13f8d93eb311f8fda7cc468d7cc9f71a4c747bbd9af19"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "41bc010d4cca63bc77b8d637e6ca2731e3c5900b6783955335aae0ee3d2eedae"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "4618d03269cad3fe8ca3d618de581d37fef37b9276e72613d2c12b212bb2c894"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "be456ef5df061985f7413fc7af45b4f0b86ac4a99a57d3574d8ad6dba727a8fe"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "c229ca2c9fba2ac98e912e5c5f4500d423b1f2cbf768e539112e97c0f0fe410b"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "0a569d1b8c8d685c3eb5701471420aa47110c737504a105f660dca72a82490af"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "b15c86feb6d69005244f409290489d8f5ffaff0c85ec876ba931be38c7de07b0"; } + { locale = "id"; arch = "linux-i686"; sha256 = "dc8ca98414ccc67087c896c84a0a223026f12ed9fec499eba6203b8ec0b3e6e7"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "6a831ab4c2605fdbac15ac81853a19f5c8633756ad5136f93c3eb76637e2b997"; } + { locale = "is"; arch = "linux-i686"; sha256 = "02e9a2022c0da27e069689d25ba80c1d04dc29e6a045833fa1c5e503b5ca9f9a"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "0ffd2b8f1fdafd91ae4e089c075446f57adcc748bea4994d40207e5cba9a5655"; } + { locale = "it"; arch = "linux-i686"; sha256 = "f84d5304a37e33883322c9c508f4d342f99901c9339d293308ef78bb561a3c40"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "78c5cb912d6c24d5a7636fd400470d298e4f58493ca6fd3e5f6b88e4b8037e77"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "a3d563846ef60176712574a9f66d24a785f749390afde21cbc4823e9d30cc3ba"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "56bdf673d645dff09e96970fc4cb33b1810d57051e7c12f6fe1ba01fa971e293"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "a5b10502bacf265e2157b7246457c33adcf037e4e28291e26a7fdd9f53f94638"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "2a7c74168d040653cbc31d6d03846b9165f617cebb74388818d73d681056561d"; } + { locale = "km"; arch = "linux-i686"; sha256 = "26e696f0a03d7d6c3541563f89ba08d06a47039ca93f15d2f1909db7ca1b8d08"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "18676450680d18631a855dcf91fd4592f8e3e908b04122476ae62d619bfbdd4f"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "cf6c95c0f06381f3aa4eb03c8854a530e63b0b5c6d971dc019a5c6cf81f80b0b"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "fabd1b824a4593454f8c9d7c6c47f7244ec9d1800cbe397042fb3bc41a75d09b"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "d3d9ff36de18ca424511df1ddbd4c49c84499491510a064a6f55f15599e1c172"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "e8eef3e4c6201e1d1e936ee6ec53f875b6c2a0496d308b8fbe03b5cbdf229bec"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "de6b35a675539d1bf0ff1c8f3837ba030da64b0e51c30e594515ac13578495f5"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "9d2351a7bed09127b618cfd86f2d394fdefcbbf2801da3a60a697982b5bbb9f1"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "5e5c3d5083b8d71a249f9e5009072132c9524063fa0cdb1f47ad0ff5260725c7"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "c57df2ce20d09070514f783a12e179ff05a4ac14e7ec67b0081f284f70079468"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "30267f85939965eab0ec50f4c869a0a42fa0d0775ae516088f9a3ff57f1bf3d2"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "c1389231d627df347910d28172a823da18f2ebd5697093035faa499da24755eb"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "6dec829e1ea28f8c4480d0517f72909d2d652fd827693dc919298906b62b47d2"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "29ed57ad173243d7cc2460a534c3f63709e235db74810a0d6f12dc460c5f4a52"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "98d4c529ca979e4ba03b3c1640feb0c93ca1ac2a92ac07403a39a07adce8df44"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "53d6752d67e3277afe3ea239ceb1f890edc5a15fe078d41bc074246598376603"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "321d682e8e1e42e8e4522d791e7e7ae13d1622d740038f3586813099f0275d96"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "f0dfba4cd8fd961ef6c088ef9139b8ce5e33fcefa8cda142c9f51bfae663c092"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "b40b8fbbe5ab56055d57f7b9a67ff00e84b7c7d19afc7bb07b4311ef3fb6c66b"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "3bb64e13d59a1c65460282e4236655a0c2997d894e9b897a8dc3b20a4baca3c9"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "15aeda467f0c0c893dd923ee56fcf2547242f0a4089709ce0cbdb27778c71b1b"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "32cea21ff68efd7c384746c32c0138464fbae4d25065fe58d6d56e191ee5b082"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "371af3de1ae68ba242cc55cb7c080008ca305c61d5c8c4e687f53568bcb8f416"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "54e17787e0d31893dcba314e98cfb795fd6f85e335a0e84ce35a0f44a56b6e1d"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "92df7a99107ccd938800161e759beb6269a6a30f69c892064e130280a3caa692"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "41c1bfc828917d58cf8f334b8d2b333ddb50dd416faaae41a0c063bd8c23942c"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "ad96e3c670c244d366ce0d600d87a308d95e51309ab86becf1c8c69245dbed0f"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "eee10d92a2bcc32507936c3c2c5c2c220a4de955aa8b48d23f0d923c9b0faa48"; } + { locale = "or"; arch = "linux-i686"; sha256 = "1ddaa000c9b3d5a7dccdddaeb8fda53ba821935bf24ee5c2ca0053e3b2900bd7"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "0d62ab80bdd5853d8dfae01d9420929d9321d1f6b9f40d372c6241f1345de76a"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "accdde423ac5c518d14b435d00e1f536cd240f31108b58f0b5e1a925637faab4"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "89ae2f460c6fdab846d6b41dba84f63c94a7bfc1f61e3e79da5d643d4c1a1fca"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "d8e043d8ba0c223f0232facef10b6d2e2ee13733bf8670a9101796bfddb3c2f1"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "f6ada91433d48b699c02fddf22e2d8aa36e6b0cc365b73625bf6fb80ed3fb877"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "b2d294d7761cfc3c8a58ee072bb8a0b82cc79724f6b103073632e682fda32f60"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "642c56b5d510f5efc8a365be956789d7760bfe983aa397ae194eef5bd15f601b"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "6bc224414c39047c42040ebaaa7e7d61bb09939a9878ec4a2d7d7e8c31a7ecfc"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "cc00a2fb38fed6ffef5a6a6931b043c65948c18f3d502a0e3ae641a1847203b7"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "2cebf2678e1a469447205a7495f17185259d73a72439f8fd400eee957e571bbc"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "32fe2ef01b0d495476768eff7e4750c2c82196e60f50c2e824adbf611f275289"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "289cef6b438a59bac459c203a6b1b2965b089f1487ea78ff524a6a68f5996862"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "7df67b1a5a12297a214d1f794c84b58ca12a182ee780e2574116214dfc785388"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "65fd6a9a90b4e5c8fc784850dd5bce41901b0d241dae9c37110bf99643d52d32"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "585683dca4c427ecbcc17d42465b6e374a76d5266b908df1b47f4a1ad81e7794"; } + { locale = "si"; arch = "linux-i686"; sha256 = "6567d5ab15a1bd20426569a6480d6e44f2c1917145fa607357f0d3d0502c840a"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "f0aad93013b6070516851a13352d1aabd0d10bd7891eaea878d3632c1b295296"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "c6da9d539302dca6ad8e3165ca595eb80438fb4caea11979c0e07ca215696929"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "236dd9171f471849e8cddb2b8ff0166e41bdedcb0bb3c1662fdffa83c3e89374"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "4b9160bfa7579fc893a40387f0185cb74d7db2cfb0eabd2aa032259ed53b7a97"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "56bc853e4e5e21d08b2ccd04687388473c45ac4403d0b51ed41d8a6a3a26e396"; } + { locale = "son"; arch = "linux-i686"; sha256 = "b73fcee703ce937ec25993da5e09163541fef9eaa4e65ec7d5358f1dfa1b596f"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "95ef838ac58e82ec435ddf7e2ea0bbf8b8d1bdb34832aa664d1ad8f5abbd9a13"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "370313d2cf543ab3aeaa5de11f748d69a168a82d6e29c27d4c398bb577fdb06d"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "a86a6604169ab6d9bc2657a0d26db0a3f96b2927223c5a43128dcf49bad243f1"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "a7ad2ec678944f37cfee69025871369b658013f77df9df0f1bbfd9cbc03666d2"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "b081bc35064722b4de95f4e29c4ee203bca124ebe0c33bbf91f0e11f904928f7"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "5a6fe1f1c7e1d5bd91a0c82e47ce5b88e31611cf51d6452afde3ef06d2d1a695"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "9a09a020acabfaef4fa25d94723fa437c57761f0dbd9bda880b8ca3acb5248df"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "0e0839d5a899576f3fd796079748dba8612526bd5f855e8718eccb3ed05944c0"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "cdcd8e06216289df7cdb4f82f01207a7112fa4f52040bd70c2f497b3d701730a"; } + { locale = "te"; arch = "linux-i686"; sha256 = "e4609f803edb243ba8c8fbfb7ecea2e652a9e94adeec2f6c03af42c2e8bc5b74"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "b9151a27be6a8de94fa25b53dfb85e765cc2ff823c2de6a0d0583883fc30ea48"; } + { locale = "th"; arch = "linux-i686"; sha256 = "48349866a10948cc0b4f8b6bc2fecd5dcbd4d09ff4ba569f7fb3e569edadd976"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "ef38e6a99cc8cb9e32e95af0ae7f7c99b82310e28b082b6aa085aa80f180ef60"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "fbad5fa2196dddb5061fec1f47fa7af85c0a824f520588b7446d2740928e34cd"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "c644f251f1e43acc3baa550b540750fb7d11c2f440c7906e1955d34694a0d718"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "9db7dc494734011ed61c5286fcb1f4b4dfb418528792ef92fbfc3734a9618129"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "06cbcceb189bad7174cf46678535cd4bfb1062e5ac878fd313fc341315001106"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "cfa94474277edc7739c11795b2907b894c87f5c573c43aaf5a951a2f13a9c8ef"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "e3a581e965fbb3711e6ca6d6d5b378eded8e8ea9767f94993c50632b6f4a7aed"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "ecd4a5b8fa66e78cdb93b04eb2b3a5ac354bd5e231d8f4bcbf2acfb94b5190b5"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "1d52852d973d5d6bea8ef860b216aff4eea59dff576f13ae67aa9b96ef0c9878"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "24befe5e2fe2001ab3827543f97b52ecd15f5cbad89d977584aa4dc08a0e9c11"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "4cafc2a6028d8141e47b09a9d8d96404cb4b5806cfaab452566f9a7baff89f25"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "80ec43ed8918fa452271988d53875f184196460b15086fe793af4842458ab790"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "1d3fc933a5b3f4082fac9176f6a802e01f8a26d711c339116799e58629843f27"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "a255ce81f6ac1774ae6c8a5b9208169864a672f22f7037c93f01758c4eaa357b"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "27b048c3df2ff25fd6f7c33cc30016e8a657a2f30ef7b0da9a2f4097c1b5e494"; } ]; } From 66cddef22178f13209df06427a14d169a2a1085d Mon Sep 17 00:00:00 2001 From: taku0 Date: Fri, 25 Dec 2015 00:21:01 +0900 Subject: [PATCH 589/707] thunderbird-bin: 38.4.0 -> 38.5.0 --- .../mailreaders/thunderbird-bin/sources.nix | 234 +++++++++--------- 1 file changed, 117 insertions(+), 117 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index e07e972bf41..8b06d083dc0 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -4,123 +4,123 @@ # ruby generate_sources.rb > sources.nix { - version = "38.4.0"; + version = "38.5.0"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha256 = "30383ea1567d2338af99de09f144e4a3cf6c195bc3707c1011171b4c09a885ab"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "0325b8da77e0ec1c97eac81367cbf68c2e4cf62ddd086ab07494cd1705d6134e"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "5e91cb9df7aab8c887dadcdf8d01b0dd2e6427ed570333b66a680c57ff9391b2"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "3e275d4db234f2ce1c226577dbd6289f870c7ac9f3963136eaa6fa097cb7fbef"; } - { locale = "be"; arch = "linux-i686"; sha256 = "74a4dcbcf45e766b3a4b23a0bf4c08d61b8e8e8923b45d27ca23f2785dd4120b"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "52e9c46cb12b4cdb8d6eaa384717572ef5bd845c18a36d8cfd15db39c4d0332f"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "0dde851fee0eba8be214f8f673a5da9924f84cf1b558d3f76aa80f6008e518f1"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "198607f773ddc38ab1c2433500f53578fab38dea817a24ae94849fa8045bbb67"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "a34e8ae21b22cb80b772a31341a7dd5da23aaddf8685c6a1a20be6f8f3c312af"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "03f611a7029002e593175cb4e624b1d3885c12847115a027d89625d3be9247c4"; } - { locale = "br"; arch = "linux-i686"; sha256 = "6c61dcc67472b3fd1b8361d4960e0ec2a190e7a18aa9e05060fa80a7d23b3796"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "f4589f1e31697fd65296f306350558ca9355962182e69d0c6f4b303b62407e5b"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "dd2f59e278a34081c6ac3f1c8dbb61b2e9fe188b23715e6917c7034ac562ae42"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "0f77e01e3a9dda94c8dd7cc34ab2eefbfd4bcacc6d09b3a8563632130c3fb83b"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "389e99cc4b2c56067ea02eef9e2e347ef972fe21a20a094c6d056aa5e7fb65ff"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "c34ee1e3607df27a9edc03faed4476533489a962715a9d7920282044e9af2dd6"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "f77986fb3ab81e82e611247066ba6856518a209694cc71592895c4186ec80607"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "549a0c15bbd298e9d3753782e97a0874bf2bfca607bfed484efe3b9fdce3c9b0"; } - { locale = "da"; arch = "linux-i686"; sha256 = "e56cf65ce0719a3a22d2fdb33ce08113348022afd3a557f2ac39a25e35f632de"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "991b5ff474cff16d106b88ee31ac889c6e0543e15b3bf4340c3c263cd3a3ea4c"; } - { locale = "de"; arch = "linux-i686"; sha256 = "7f28547c9e67c4d76815337d8f5f39e303d1a1055077a77af42ad4162dd3b476"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "4c16d7477792759eb754cb5770be67dc78dab3cdfb47c29bb3bf038dbfe6601e"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "8f5a82f61c80dd9a1358ee43e192364f34dbba0253aeba00ad0c5d1656e57a34"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "7804c72b8c758193fbd45feedc185d01717133bf2fa1b1d0054ea421224c780e"; } - { locale = "el"; arch = "linux-i686"; sha256 = "8128d4330fdfa0c5b0e5b309d1957b7523b337f862bd1e9d2286f50fc652f339"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "1d1f7859cd25aa5bd18222f97b4496c8f661a375b1e0404eb92b0bec3bb60ae7"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "980f494e26c8a2904490d55ff2bdfcf8b3d2c82c4b251a7ade3bce90d1e4632c"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "3f3fd4139c64bbea32c53683a2ba75be24fa4a2024922c42b4647ce28a59457f"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "bca69f68e6296608e50bb798e46e209cc3be9f20b5baacc102f7571316f7f65e"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e8d9a31537a6db91efec6372106e655d73ab3e55f3c0ff2e42e564e2a4da7781"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "bbb8817ed30f591f54d47066765cc4796786f5fa41cd2ee2dbf59001fcaad4c6"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "06b55c261bc0cfbc257c264e9643088682256aaf739c8905cfbd4cd08f0868bd"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "44a77de45e05ad469cd03d17efa4766a1e2e06bc8e2e7a5d954db3aea17b8407"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f14c54fc64eb586c8015352d24b392268d3b2ced7312a5647fc1385e14f6d93d"; } - { locale = "et"; arch = "linux-i686"; sha256 = "81b28a75d61d9f8463f18ce48943b0f701f392201655eba4899fa609cb59cd9c"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "974247ffb2e003026d46888b425a5f497b7a6d06213190e5668c085e1c44453d"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "f45344ec704ad5a07639da1076ad2e6b1cad21bb75c9462e5e46abad3e57b588"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "4acba2bb5780f85e45a28f58027b75b2832281a7f001f780b215c564a2da2671"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "74c4d196d31fbc000d541d057ed7dfa31cf713f7964be4bc6fe1c3f80680824d"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "14dfe7b1cf2b1feb8a27628a27d5ef00e64dc401c5aebac1e01e1b94f7d091b6"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "a6749feae77747703f3a07a1c58bc5679c5faaeb207cb5e46f98cbac733294e1"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "201af3653ade9411902e208a2d16a7b0357d2a4a44d5dfcccf59d7939e24e787"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8521f1f0551531aef107a21ad953fdeaf0b025266f709e9cfd49eab92a3dcaf2"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "195f0f25dab810e4f8a89d01f3ddb837378cd9fd691425b0b6b50653ac9bad73"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "f3f216995781f4ec55346822483d073e4a1c15449df78e56a05acb7743198292"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ebcbc721eee9020ac52eeee92531307512a8a3f2306eee3952b9343a52381d4b"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "234e5cb13726b1025c96403e8522c2cbb169ba547513c007501230d6fff3face"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "2cffd346a895b520c804d8efc7f92e38ace1256a007d8a95abd5687c6fdebcbc"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "e65afb4d848a4d6922b550888990733046227dd9201c917b161f19d9b5cab232"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "ec85e88f167c195fb1f5ac07adcd4b1ebe538ccb94959a1d2d9ca33406fc2277"; } - { locale = "he"; arch = "linux-i686"; sha256 = "2b6f436f26ab131d6d6e883a16d27f5a5b9570ada883fe8a387462ad6a2e50ea"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "e37020bd431a697b73b88cfc1a9ddee0168009627ce3848684d8de499ad3b053"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "7c005e34cde48c606dbd67d43fa691c96cd8a27ce50b552b1c1b3e114ae112b3"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "b41260a478e8afa2ae530d6b170514a815b8962bbb3bd32431032604868c3d48"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "b4b2e41f9afe8eea8b347bd8fe0ba8d03ac8b9cf9b055469e053e4f72bc1c665"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b6540fe80976a53828058e91f4a311192a7da37fd1ea8574161c0cfe494d17f2"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "c7b27a351e095353f2f53b50275ed7774faeb9254b980dd6571d48a935b50630"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "d5b014fd679bc475ade1278ba661a97e0a92d0fea8a6351e199677f5185f19f4"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e6748c7f84a6040e98bb0cb3b1ec1c975f2174f8a89c2cc0ef83921dd56d2b1c"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "ce902a1ecadf1a89ab7f32ed17eef33725c946447fd67bc83cde0492fd65022b"; } - { locale = "id"; arch = "linux-i686"; sha256 = "6f2851c35f8b3fa5187d05d252da8d593f5ec4f9d268dc9c6973b0f87ed0733e"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "1a89f09b6a4c3418fb4a1490430e96742e5e8f5dc8b2613ccd9214950c6e8c80"; } - { locale = "is"; arch = "linux-i686"; sha256 = "e1cdede34db4b9d289596a689e04452813b6c9a83c72513d51c9f356879af9b2"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "eeb91667080edb15bb5e023333ff7410580b70de878628b4e6bbaa3d0db2bdfa"; } - { locale = "it"; arch = "linux-i686"; sha256 = "bd531bf775d991710fd63f1de90b6389c176d6a0c7d7068a8139f70379d6a76b"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "89fe33ffda15340926c727b535b378bf629389edccf8f8627b03b4056284b93b"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "6e22ad0f04be5ce33dfe1d33d4d935e0dce425d80c5e6e07f3b7f2c856f64aee"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "2aaafcb3b5da060458e67f493c10a3f02266e328222f25f96b8229f8dfec37b2"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "7a0a5957bb1cf2724e551fe2f05e06e4493f95ea939812f535a166428d127a25"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "ee62aee7a4b549d95e4bcab696c28ada842f352111bb44f4d39d1fe05a49d970"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "ed13eeea81f3673ae082e92db0cb966889f00cfc14c6f54f4f90677a3adc0fd4"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "22fdb92474591dcb05fae0c6bf65d696bcba718b208224411867a38af187c87a"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "44c999f4f73d02ea3c336ceba5771ddd187ce241fd3dcc027f315bdd935ba1c4"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "04aaf3ce92aaadfc975730956b0e92a3b26b5b1abfb376bbc2e8c35b2b1d5169"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "06b86c4bc4018e5117a8e8a129f81d8ca5fb2781bd06a2f2ec29fcaceba23d58"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "186ee5e191160a72f6f5f99371412cc0cb44fc66184d5a33b0aa8cc480b784c7"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "0ce71ba703d3b307ae66502768c6fe924fbd838570f917e1ab65fc8ffedddfc8"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "4e5f3b1ac34c61ae977d9f346fa04de7a3b21a21756bbf120f5d1bd8f56a98c9"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "7b99742ca9ccca0f5151d4f9ff4b3fffbc9df5f6c8e89c3f2236da84639d6050"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6e66778a0c318add8d8fdac631400af94a9fff77d90c1c039a91e3b4ae8e66fe"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "7d50ff91e15954c4736309e23425603ae731c9d221936106a67517a5caf8c24d"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "bc224b70b522199e6c3c7012f3aec9a4cd6b31feb8eea23e3701ff891bcd2d77"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "7194b4ef864aa1cfcc00d9ba108cb9436bfcb72fda9a4bf2ff3abbf47877a5f4"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "6a94b5a6448af6c273fa526b3a359f4435482d1f55f9fbd40ef0d7aded98b1ad"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "1a0fab79901d40fe8709e8675a3c8cc6cb6474e10c64730bcda13a3577f94334"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "3672d9b0e9de882ef9f9851e0ecd9deb52053c65b4a747ac8ef0700b53426f5a"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "5f2008f9225ade5e1cff93f804e59b95f998129b1de7910280a3a7f508ea9ca5"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "645d13223d1aaf5ca3768515e6d9ac12a4205834bf1329765fbc6ff0410eed8e"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "582bafffc11ff585860b5af8e8f75d359f4f8e928c794cf35522c083089664ea"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "bf3d9ca3e1ee0d55dd601d25be1b2f2c9ebbe78094a2df725704b060b834eda0"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "3f3ebf446a22176b429cc328b002ffa723e27727ca29def5dfb88eeddef605f7"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "41f17ef5311d0d1cb10893adb68ca312710f16b07c41d64b31695013cfe15cdd"; } - { locale = "si"; arch = "linux-i686"; sha256 = "de99654352ff974fcf0c83d0f6aca669bf6fbfcc6ad534b0a26568d30c650564"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "554e32f4c204a8c7aa1b3d83dd736524abc0595c5fde6c5f58b0b5a644133df1"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "c54c6039343bd0bdbe449e6c8633a8aa18ce187850a4d81912b0751d84769fa4"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "cc38fdc0202da4a7292564f3f30fc01080582991dd5a5fb28860ccb4f4c8d75f"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "a276c5f8d1ce308f79f6ae6f95118164bd8882acc9c2aa8140c544626d1c1960"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "ccbbb0cfd53a9ac5f500e7313111a74d305107578ab94e17bf54175f3366279e"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "ede984ffb03f4a35ee18699a217d1d75492a4e7a372168a9c6ccc8fb7d133922"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "43a3fdb69989c0365d568eb7d7e697fd9d94ce59f0438a3f9b0e615c255e1eb3"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "48ee50e180515633db238d73ec8d50cd3dd5dd79e8ab7050f341a5be73401dd9"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "2a7deb046cd8652e04aafcd88b8d621a2503f7061c6b48cdafcbc763143e88bd"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "e87406cb2503ab7cc0ee8df8ac4ec92c90e5033a0133da72b14fd72e736c5360"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "f6227e1c4442dca0ff7ececf90c03bd711d6a5a83d0f8bf9857dd5c964ed243f"; } - { locale = "ta-LK"; arch = "linux-i686"; sha256 = "758c22dac6d97296ef1543f7eafca7d937a2313dd09ac3ca4bfe401009afe210"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "5f1993c3c54cd0ae42cdac9606664d8127de26ef31a94ec4f7da264a233d788e"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "68a3dce3a3c84d111b36dc544a82496364d3b16b411d70ee148bf8f9b8d650a0"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "facf8cc17d37049ce5c48a9aec9ce97a46242c46c18b2b52a2b3d6ca14217f63"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "836cd0eca497cc554da3e68e2274c16c875dc600b8541854a4c11e54e3262b49"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "2fdaafbd212530c309639aa0ee3ebc113c8aeddf7811b5db51e9792a98deeecb"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "9b263fb42a5ed939dc63a452e7cb87c295c6eaf270bfa97d9c858eed2931c0ae"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "b7684a1836b489b5ef8ad9b28ce0837a846fa55305f83d3a998f6722a97c0e65"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "39b0d87388ae8646f7b81d1008e8b9019a3f702031103e497326bb80988559ed"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "c85ad956bb69a97abd116b30ca5e2303fe4aebdffb08a8120ce7fdeda161b117"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "e2f931b5ffbb1d6169e16125bcc40bc432debc01354f193450075d19f0a23a78"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "3d9310cec9c1370e6a9fa8185935c6c48c3029fc17b6f2fcc311e8f8565ac804"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "29237bd1fff3790d891fcfa18959b808afa88c35b9c7036cc3cf79737560c3a5"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "480120055452c284eef26329419faa176cc5abff90c3dd986ea1d3478b869984"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "e659e19bc053a95bb4d753ff452637a29f792e61247fd1b70f70e90f62e8a268"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "1755ad5c097b92342224f7d659fc1c0db899b15f6874fcd256f76fac1bf27488"; } + { locale = "be"; arch = "linux-i686"; sha256 = "3682652d2aae978ceef32b4dccb2e20c4dc5584b6840df823664c214495e89bd"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "99a5e05ea1cd5a302b24b0bf8a87e495de1bd044d7335609016fbae49786a6b0"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "cd0b6cf8b620d619040a64f8692f78fcacf5500b5c092a6a40552397f56e2757"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "4001a26df6cee9182b85370e51d9e54284a066e8f8002c6dafc2ca872153ca36"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "bcdc5791b3a95c12e8cb19f92d57191360fff12ddf116d92b8ca1b32aa977827"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "037459abe2bf39d0ca05b0abfb18d112b9e56b4888b64ae956a6317800cc0047"; } + { locale = "br"; arch = "linux-i686"; sha256 = "1c907debf9f9c9a949bd1c7e7329ebc2fbdd6ff19ecf9411a67ce27079dae1ee"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "ace19a987e0a5fb10cf73d1b031e96c9333054083ab380e9a602f00b3347f334"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5553dcde7e432643516405f465a981f52d5eaf3e53f7cec7d179034778d74122"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "1d3ee5b1487ff62243147aaaa1ba984976a969ddc0c7697b1f361db6a5d66023"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "d22a52c3e5d66a4cb8d084e7127f0acf79a36fbc1e96cccbb66adb205a4eb7a6"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "f75b81a8a984ef52bd5a11fbd98f00b16a1696c5dca9b2315ca35d23ed6ad4b9"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "0cae8f5bcff66cea0ea7a92f4503039078402eb149bca9a1bbbb170423a9625f"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "e4d5c5d920489ad73ceb2a0582285d35bc9fdf2e817a14a20d563b3f36dca71b"; } + { locale = "da"; arch = "linux-i686"; sha256 = "7cdbc0622b71ead86d7d180fab328b4346bba324f43381680cb9e4cad026667d"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "95cb578a1b9d271c7597852be14c18bd057eae01ef62429197ea47cb97f367b7"; } + { locale = "de"; arch = "linux-i686"; sha256 = "5e7a7d84bba7e3ce06a31678e2b97439597b5185866586c69f61d3eeaead7bf8"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "6d221dc885188ae683eb0c103b8551d25f2c26a82456abfcaea695b4555c83e1"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "d5cc9990acc678c483bc19649d67af96dda0308f66eea61f5917fcb40db13a4f"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "01ad8dbd1b9fac2dfe269ed171ab6fe32751892147f136f9ab8c8d023ed0fe11"; } + { locale = "el"; arch = "linux-i686"; sha256 = "7040a9d0c51ce310e74e9d3b1c04f5088ba688212100700f78e1c7b4f8722739"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "e2a3b0f3b022c320b0b7b372442cb85ac716f85e757cdf107246a6b7d4715835"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "c7258c7864087eb90d59f763ed0b23ee99f2a6a45c433d97e89583ea37ccdb32"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "af32ae7ba6d7b61d46c074ec0086fce4150b5b6255eb43c3c17c97f597b688d1"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "c7794f3e1d51fa7e0935d689078b348114d3abf010a0525b22e5375950b6098e"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "01bb4a3bd43aa5dde30197178cb50ac35ac62cde637227aca8bdd410c9f62546"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "f89e5f28d792161cd5b791ad68eb64c6a55a5de15dc00d5b042153b8fe549ab4"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "a7c3102c5c5c6999723fa889af88f1d14630867334db8703ca9b5f5368359127"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "a01fc84e9ce676f9b163e882cee5b6ca70b98a43b2937c6f5298f800b7ee3d78"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "030840e14241776d60cbd1ce9d0790df4e4f7b1fd5f554df9a3a51c9421af573"; } + { locale = "et"; arch = "linux-i686"; sha256 = "f6da6a171f4a00afaf5af2fbcc6cdd7504e00cc38f62baad1f9aad51467ef191"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "8fed1407c48e0f7f39c888f08001ec0705c09b587a6921b2644e91020e8f2763"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0f1c30b2e5c6d1a2359a1714605ab382c617a00fb2a3ab9aa0570c27df6bc1a6"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "5192b9230659a8ec35abf4353201d6f2ac66c1ffce33d0dd68c38dbb1302029c"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "5812be19808c789c6f36484aad72ead4a5b75ce52d91047794da0c5919a4f68f"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "64243724356329e81f8754f4bc1d3e848a6544f598ceec44ac63a69d52003944"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "63117d10a3fa00b86eaf9023d562ca817ea44b89788de190d7870c22df6ee5b1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "22715532882458ff60ccf52c5502eddb5f7a9ef646a22915c3928ff6ca244bdf"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "9be2f10d9f5dcddc7b5119609ac9b864aa61b2e1839e3bdce3f4e742f5e94c12"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "a71900daca5ac832240fa27c15ad76afca75b8b86c101899c58f6ee20bd33fc2"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "4426fcb698d40fc796a3affafda1f142e4f252e3861354915a8ba4db41e28754"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "a7533879eda14dd1b6e8ce4e68006fd1d1fff9b7fec12c14f30871084625581c"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "82593c88c14b6ac518d0da17aced0ffe4a78e06faf4275508218fd09da535f4b"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "3ec0a23d6ac098dd97dec52778202d6dc24cd76d7f142a452b4309be32d9cc29"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "64cd467c054da7506b5e72e159c0829a6d41db1482d9343a8cdd5b0bf7166d0f"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "a9ec09c8cbc54f071f80226bb203f4f5823f71cf376978d0e69cefc5562cd5bf"; } + { locale = "he"; arch = "linux-i686"; sha256 = "bb21099de57446c1a9284fa54ed491bbd1d104b64f9c479b8d0ded607fb79c7d"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "4397b52af2d90e0642b7e66fc39b60987dbba94737666e205df8b1b0b4c280de"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "65164ae7e551458bcb8afef5da13d1a632c7ddb181e112833b1fe0a0ab391c17"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "e026eae7e0eb85558ad58616a90240e14bd9011bbe6ed5bcf68788ad21d182eb"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "c2bd24db8c46a11108241a3aa6f57f234aa52e982af013e081c4b45621878b7b"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b01690e94a2f8b5d8049ac62061206fc296b6a7e2c609d3368facefa246f06e5"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "7ea9be32fc7b198e300273a973162364a4dbe17bfa6b7e5fe39bd01fbd93c79e"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "d9ca99cb52265fe8cf89c9b48469479dcb9e251f8c3f3527540c19f44439234b"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "899906072114caaab0e7f48a7b67f77dbeca7d2130171a2277c98116479951ea"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "6a636b312c1a38474cd26700b0419e2cb174c440e4ac652a6d29bf6837a2bdd1"; } + { locale = "id"; arch = "linux-i686"; sha256 = "9827c378de89d3eed6bd297233c934fa7a84796efb02d82a4be1f8235c2dbe6c"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "23075b98ac7a1674cd1189806680062eb0eb35cbe08d7d0592242295184932bc"; } + { locale = "is"; arch = "linux-i686"; sha256 = "e64f2b7dfa4654bb681bfa5c34adc9d64400c3c7dfb1f9dd7ab0c04d998c6784"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "2049e8c19e3a58f1f0f08926e786c3a2d81292d94eb0346b54ae86edba35bf3b"; } + { locale = "it"; arch = "linux-i686"; sha256 = "12941cb1feec8beacc8cf62b94f902ddacadc424abe511226be2e85248496a60"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "9da22cef1e8b5d92c048c8bee59ca88b9801f95073083c218412de0406af6dc4"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "bdd5fee3bc2d807b1b6329f0f8f14bed85f8eacfc1210f4a5204687b7c0e250b"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "c48477523b11d7ec6314f54c2d0d62b35c6474b06bbd7c0bd0317971303a1073"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "d887a32f4073231856522ba034c4e952eb56d7ed06895e0d26dfc3d3a7488b0f"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "c02ff12289d32d5d3ad5f88a5c851f46f8d31c66ce8013622959f537cae1101b"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "99095f5f55c3ce6d0bb485d25eff1afdadb63e8f41caaddacceced71a92bbb9e"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "a4de32255d7334bf1eabda06332f8665a9d60bdf667a43c219ba2de08865f1e8"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "8b547faa6f76d1aa1f0f33235380e5379663c5d6e66e55ea0baa61a62f37e272"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "17873b2664d665d1d53fe69c4041aa6474f58a18cf5dc0f86b739d95d193bb48"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "ba36cb5c4b008f878b181ed3ff56198cd83739fb9d2018d6710288daafa6df7a"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "04afe1c59bfdfb9573623e9e84165863465356ec7872f1afc448c841c4e9392d"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "2fa6cc0e585574d3460597b25c6549b2aebd2b2af203edef960dea2b81bae954"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "ca8bdb92d16a89f7baca59e0c11662d2dfead62eb209746d738fbccbea8d00c5"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "79575806b00f77adae3b2ad794c2e268436e2b4b2904186ea88caa2bbcc5e232"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "2220b6bc45f98f088c653ee255718613b43e93691173441f0825c39e3ea8c263"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "829788db6afdb0f09b23d0230abf176153a252a76964ae4ad6df161568e03b6b"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "89792685c6ff26bae9d42326dbe0ca77b6a651df51ba02bd76a85692c83aba5a"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "b7898b8fde2c32c8d7fe105ab88751fb9acaa756f3826dfaab3fa33fa7bfd5a4"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "691e722d24695960574fb5423d2d5713d3729a0cf3bbffdbe3f550b1b0a8a91b"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "06e9c005c45b6d71e4f4957ae0d92578baf2b0ff783f38dca4a5018f84319bfd"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "5422bf1e694a462864759374bc3afdf9f0033121b879413a3edc18a20d406b4e"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "54c0f6dfc40b748f74ab9fd79dd4b0987ce17eced23b293cf83b1867f38d7c53"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "a164dfa18736b3f84ce2a80fea1f6441bbd3de113c26eab503ab7710866f7555"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "3135adfb8c2b674545d3e80a8f3d77a89332dbe4cdff0f05817d5ae2edac8025"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "7a95f8853d5776267ab62fcc208214a7a4f2a7d82350ac7967ca90ab2178e737"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "df9cb429c6fe10e7aeae06d49329fed27cf9cd84b3b28e7fef82008399dfe453"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "aa97b360bd5cfd0686b0d75df21500249e0f7ab1586e37774d60040abdd2ecd8"; } + { locale = "si"; arch = "linux-i686"; sha256 = "ba1ef9b8576589a9bf8523f26fe42416f14f4c38b74b4519792aff6896a4c34b"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "bcd73d4a1187d8e43dcbfd7bb4df3c0f7893175785d633113b0a5b526bb718d8"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "004423ed395fcc4cba02e703f5086f9255758edd2bd3125adeb8fb006a4f769e"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "9abb27a35c2076fc3c85e18b20f909ba41b4618afda51f2adbb0ef960b67483f"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "ff2dca954720bcb1947c18b1013666c6568f6638b204adf5a0277e6bff64f468"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "a334a65d54efaacdafcddad336f313d24b594c14bfc874159cd9a4ca9ded2b03"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "b5e53cd682a8b4494074c1c0c7e4d4fb94a36a06e81522cb4b7289b4ed6bd486"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "747174de108fcf0a7201e22df90f613846a0b66384b007ccddeb51b6dc651aca"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "fa53bfe3c00878b462e6aa3a0bf76a6e1e4dc6d9095f2104a355ac5b773e936c"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "308965f1b97405e7c6db95e7cffae69fe6a899539782c06b1446ab97ddb19d45"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "0b2e6e13cd30b46b81c8fb9fd195d27ce96c40f03d17ba0f8095d4ddd226ff45"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc47f9c38a845461db14a08d67f143c8b5ba04aa441aeecae8bd8f3cbf79fca6"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "3f5afc0975aebe8981202927fe5507065c47ccd64f1ddd8adb426c0032ee267e"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "8a9b241836c0b495865e9d64d2e89cb054a01e8e3fb55ee8a1cbbd0def7d5a93"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "c104cbdfaee89946ab11b3bc0de6cfaf5d88f5e18a6be400dc573e7b1c10319d"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "717c460478cdb986fbfcd5fcd16f7fb66af930e3ca2826176b7158ff865d51a5"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "dcfbdd8ba1897bdfcb26b0ec1c50a88808c2ca988418cca56eab74e1f870ba1c"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "648764a8aad2ea954416f2293023598cd26d4bae1bb44da1406868d1286c3f58"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "2b938e4c4614de013b9e0f7d4bdde0353cea42c7651491f2d92323a25d9157d6"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "82571f95eaf3a88c7cc7fc056779ed4f4ea5664333c5e015ccd4995fc48ca0a7"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "db6a5619c7fcd9487ecd5518590a7ad28ee4a9fd12348c950ce1b12de5232dfe"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "36ac3599d3bba4a4e982df6cbb355becc0e0e237b127c3b2afea3618754fafbe"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "269dccd617074567654a053186d6830fff38503431156db5a00d70bef093bf0e"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "c78e2ad7df58f86a26bb81c13a27a8722884573278a1dd179ffba577902c92e5"; } ]; } From 47f17939c24179d8d7bf296b64a3f471d87774d6 Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 24 Dec 2015 15:43:47 +0100 Subject: [PATCH 590/707] cvs2nix: 2.0.1 -> 2.4.0 --- .../version-management/cvs2svn/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/version-management/cvs2svn/default.nix b/pkgs/applications/version-management/cvs2svn/default.nix index 65c2c84d0da..870248ed75d 100644 --- a/pkgs/applications/version-management/cvs2svn/default.nix +++ b/pkgs/applications/version-management/cvs2svn/default.nix @@ -1,11 +1,11 @@ -{stdenv, fetchurl, python, makeWrapper}: +{stdenv, lib, fetchurl, python, cvs, makeWrapper}: -stdenv.mkDerivation { - name = "cvs2svn-2.0.1"; +stdenv.mkDerivation rec { + name = "cvs2svn-2.4.0"; src = fetchurl { - url = http://cvs2svn.tigris.org/files/documents/1462/39919/cvs2svn-2.0.1.tar.gz; - sha256 = "1pgbyxzgn22lnw3h5c2nd8z46pkk863jg3fgh9pqa1jihsx1cg1j"; + url = "http://cvs2svn.tigris.org/files/documents/1462/49237/${name}.tar.gz"; + sha256 = "05piyrcp81a1jgjm66xhq7h1sscx42ccjqaw30h40dxlwz1pyrx6"; }; buildInputs = [python makeWrapper]; @@ -13,8 +13,11 @@ stdenv.mkDerivation { buildPhase = "true"; installPhase = '' python ./setup.py install --prefix=$out - wrapProgram $out/bin/cvs2svn \ - --set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH" + for i in bzr svn git; do + wrapProgram $out/bin/cvs2$i \ + --prefix PATH : "${lib.makeSearchPath "bin" [ cvs ]}" \ + --set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH" + done ''; /* !!! maybe we should absolutise the program names in @@ -23,5 +26,6 @@ stdenv.mkDerivation { meta = { description = "A tool to convert CVS repositories to Subversion repositories"; homepage = http://cvs2svn.tigris.org/; + maintainers = [ lib.maintainers.makefu ]; }; } From 6e27454728d4e5970c4b5c7f3f4fcc9d3a7f9d3d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 24 Dec 2015 10:08:32 -0600 Subject: [PATCH 591/707] sddm: build with Qt 5.5 --- pkgs/top-level/all-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1e729c7f06..2a8c459a019 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13131,9 +13131,7 @@ let printrun = callPackage ../applications/misc/printrun { }; - sddm = qt5.callPackage ../applications/display-managers/sddm { - themes = []; # extra themes, etc. - }; + sddm = kde5.sddm; slim = callPackage ../applications/display-managers/slim { libpng = libpng12; @@ -14773,6 +14771,10 @@ let withKDE = false; }; + sddm = callPackage ../applications/display-managers/sddm { + themes = []; # extra themes, etc. + }; + }; kde5 = From ac79d3ad611ce7927cc8eabaf57803f41440bff9 Mon Sep 17 00:00:00 2001 From: Ryan Seto Date: Thu, 24 Dec 2015 12:06:59 -0500 Subject: [PATCH 592/707] pythonPackages.maildir-deduplicate: init at 1.0.2 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 26b6d7de503..1d41cb84112 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22955,6 +22955,26 @@ in modules // { }; }; + maildir-deduplicate = buildPythonPackage rec { + name = "maildir-deduplicate-${version}"; + version = "1.0.2"; + + disabled = !isPy27; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/maildir-deduplicate/${name}.tar.gz"; + sha256 = "1xy5z756alrjgpl9qx2gdx898rw1mryrqkwmipbh39mgrvkl3fz9"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = with stdenv.lib; { + description = "Command-line tool to deduplicate mails from a set of maildir folders"; + homepage = "https://github.com/kdeldycke/maildir-deduplicate"; + license = licenses.gpl2; + }; + }; + mps-youtube = buildPythonPackage rec { name = "mps-youtube-${version}"; From 269f261c738a88799f348cbb42e8617ff79c6710 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 24 Dec 2015 19:31:07 +0200 Subject: [PATCH 593/707] installation-cd: Add separate boot entry that has 'nomodeset' We seem to be in an unfortunate situation: booting without 'nomodeset' causes hangs when booting on some NVIDIA cards (6948c3ab807), but on the other hand adding 'nomodeset' prevents X from starting on other hardware (e.g. issue #10381 and my Thinkpad X250 with an integrated Broadwell GPU). Attempt to remedy this situation a bit by adding a separate entry in the ISOLINUX menu (with the non-'nomodeset' being the default). --- nixos/modules/installer/cd-dvd/iso-image.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix index fa9cc6fa20b..d3353ee7d64 100644 --- a/nixos/modules/installer/cd-dvd/iso-image.nix +++ b/nixos/modules/installer/cd-dvd/iso-image.nix @@ -43,6 +43,13 @@ let LINUX /boot/bzImage APPEND init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} INITRD /boot/initrd + + # A variant to boot with 'nomodeset' + LABEL boot-nomodeset + MENU LABEL NixOS ${config.system.nixosVersion}${config.isoImage.appendToMenuLabel} (with nomodeset) + LINUX /boot/bzImage + APPEND init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset + INITRD /boot/initrd ''; isolinuxMemtest86Entry = '' @@ -59,10 +66,18 @@ let mkdir -p $out/EFI/boot cp -v ${pkgs.gummiboot}/lib/gummiboot/gummiboot${targetArch}.efi $out/EFI/boot/boot${targetArch}.efi mkdir -p $out/loader/entries + echo "title NixOS Live CD" > $out/loader/entries/nixos-livecd.conf echo "linux /boot/bzImage" >> $out/loader/entries/nixos-livecd.conf echo "initrd /boot/initrd" >> $out/loader/entries/nixos-livecd.conf echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}" >> $out/loader/entries/nixos-livecd.conf + + # A variant to boot with 'nomodeset' + echo "title NixOS Live CD (with nomodeset)" > $out/loader/entries/nixos-livecd-nomodeset.conf + echo "linux /boot/bzImage" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "initrd /boot/initrd" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "default nixos-livecd" > $out/loader/loader.conf echo "timeout ${builtins.toString config.boot.loader.gummiboot.timeout}" >> $out/loader/loader.conf ''; @@ -230,7 +245,6 @@ in boot.kernelParams = [ "root=LABEL=${config.isoImage.volumeID}" "boot.shell_on_fail" - "nomodeset" ]; fileSystems."/" = From 84accab674a1aaac3b73748a6542a160e7b2bb2e Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 24 Dec 2015 13:24:57 -0500 Subject: [PATCH 594/707] kotlin: 1.0.0-beta-4583 -> 1.0.0-beta-4584 --- pkgs/development/compilers/kotlin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 9b7c97c8c25..b17be1c534b 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip, which }: stdenv.mkDerivation rec { - version = "1.0.0-beta-4583"; + version = "1.0.0-beta-4584"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188"; + sha256 = "191698784f4a1f769df14757bad40243293aa6bc3d8e906bfa0c80c3db0a1d2c"; }; propagatedBuildInputs = [ jre which ] ; From 8c42b26fa28fbce374e9c9fc6253fc201a2f126b Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 24 Dec 2015 19:59:44 +0000 Subject: [PATCH 595/707] libvirt: switch who makes assertions about whose version Previously, the native libvirt package was making an assertion that the dependent Python package had a compatible version. This commit switches that so that the Python package makes the assertion, since it makes more sense to me to have a child package making an assertion about its parent than vice versa. --- pkgs/development/libraries/libvirt/default.nix | 8 ++------ pkgs/top-level/python-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 27e67866fe3..888cf833eab 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -1,16 +1,12 @@ { stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python , iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng -, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl -, pythonPackages, perlPackages +, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages }: -let version = "1.2.19"; in - -assert version == pythonPackages.libvirt.version; - stdenv.mkDerivation rec { name = "libvirt-${version}"; + version = "1.2.19"; src = fetchurl { url = "http://libvirt.org/sources/${name}.tar.gz"; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eab64615606..0bcc1714982 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21724,9 +21724,10 @@ in modules // { }; }; - libvirt = pkgs.stdenv.mkDerivation rec { + libvirt = let + version = "1.2.18"; + in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { name = "libvirt-python-${version}"; - version = "1.2.19"; src = pkgs.fetchurl { url = "http://libvirt.org/sources/python/${name}.tar.gz"; From e5e8d3e250dfa82b18e0a27b7a50cb84cfc7c500 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 24 Dec 2015 20:02:38 +0000 Subject: [PATCH 596/707] libvirt-python: fix broken version that I included by accident in 8c42b26fa28fbce374e9c9fc6253fc201a2f126b --- 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 0bcc1714982..e5359b97168 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21725,7 +21725,7 @@ in modules // { }; libvirt = let - version = "1.2.18"; + version = "1.2.19"; in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { name = "libvirt-python-${version}"; From b45161fbbe5b36ba7f8bc27af6493d6e63f7c2ee Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Thu, 24 Dec 2015 14:18:27 +0100 Subject: [PATCH 597/707] llvm: Add backported patch for Rust. Rust runs into a bug with LLVM 3.7.0 that's fixed in the upcoming release 3.7.1. This commit backports this fix. --- pkgs/development/compilers/llvm/3.7/llvm.nix | 5 ++ .../3.7/r242372-fix-LLVMBuildLandingPad.patch | 60 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix index 060c0f3e867..bbeb0c858e5 100644 --- a/pkgs/development/compilers/llvm/3.7/llvm.nix +++ b/pkgs/development/compilers/llvm/3.7/llvm.nix @@ -22,6 +22,11 @@ let in stdenv.mkDerivation rec { name = "llvm-${version}"; + patches = [ + # Backport for Rust, remove when 3.7.1 is released + ./r242372-fix-LLVMBuildLandingPad.patch + ]; + unpackPhase = '' unpackFile ${src} mv llvm-${version}.src llvm diff --git a/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch b/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch new file mode 100644 index 00000000000..749de6e9b6a --- /dev/null +++ b/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch @@ -0,0 +1,60 @@ +Index: llvm/bindings/ocaml/llvm/llvm_ocaml.c +=================================================================== +--- llvm/bindings/ocaml/llvm/llvm_ocaml.c (revision 242371) ++++ llvm/bindings/ocaml/llvm/llvm_ocaml.c (revision 242372) +@@ -1745,7 +1745,7 @@ + CAMLprim LLVMValueRef llvm_build_landingpad(LLVMTypeRef Ty, LLVMValueRef PersFn, + value NumClauses, value Name, + value B) { +- return LLVMBuildLandingPad(Builder_val(B), Ty, Int_val(NumClauses), ++ return LLVMBuildLandingPad(Builder_val(B), Ty, PersFn, Int_val(NumClauses), + String_val(Name)); + } + +Index: llvm/bindings/go/llvm/ir.go +=================================================================== +--- llvm/bindings/go/llvm/ir.go (revision 242371) ++++ llvm/bindings/go/llvm/ir.go (revision 242372) +@@ -1731,7 +1731,7 @@ + func (b Builder) CreateLandingPad(t Type, nclauses int, name string) (l Value) { + cname := C.CString(name) + defer C.free(unsafe.Pointer(cname)) +- l.C = C.LLVMBuildLandingPad(b.C, t.C, C.unsigned(nclauses), cname) ++ l.C = C.LLVMBuildLandingPad(b.C, t.C, nil, C.unsigned(nclauses), cname) + return l + } + +Index: llvm/lib/IR/Core.cpp +=================================================================== +--- llvm/lib/IR/Core.cpp (revision 242371) ++++ llvm/lib/IR/Core.cpp (revision 242372) +@@ -2257,7 +2257,14 @@ + } + + LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty, +- unsigned NumClauses, const char *Name) { ++ LLVMValueRef PersFn, unsigned NumClauses, ++ const char *Name) { ++ // The personality used to live on the landingpad instruction, but now it ++ // lives on the parent function. For compatibility, take the provided ++ // personality and put it on the parent function. ++ if (PersFn) ++ unwrap(B)->GetInsertBlock()->getParent()->setPersonalityFn( ++ cast(unwrap(PersFn))); + return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty), NumClauses, Name)); + } + +Index: llvm/include/llvm-c/Core.h +=================================================================== +--- llvm/include/llvm-c/Core.h (revision 242371) ++++ llvm/include/llvm-c/Core.h (revision 242372) +@@ -2675,7 +2675,8 @@ + LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, + const char *Name); + LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty, +- unsigned NumClauses, const char *Name); ++ LLVMValueRef PersFn, unsigned NumClauses, ++ const char *Name); + LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn); + LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef); + From b26aa99d9dbda8ef5e83625d88977aedb63f7443 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 23 Dec 2015 23:21:35 +0000 Subject: [PATCH 598/707] rustc: 1.4.0 -> 1.5.0 --- pkgs/development/compilers/rustc/default.nix | 7 +++--- pkgs/development/compilers/rustc/head.nix | 2 +- .../compilers/rustc/patches/grsec-head.patch | 24 ------------------- .../compilers/rustc/patches/grsec.patch | 16 +++++++++---- 4 files changed, 16 insertions(+), 33 deletions(-) delete mode 100644 pkgs/development/compilers/rustc/patches/grsec-head.patch diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix index 19e746d7dbf..1a2e9b1e4bb 100644 --- a/pkgs/development/compilers/rustc/default.nix +++ b/pkgs/development/compilers/rustc/default.nix @@ -1,11 +1,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "1.4.0"; + shortVersion = "1.5.0"; isRelease = true; - forceBundledLLVM = false; + forceBundledLLVM = true; configureFlags = [ "--release-channel=stable" ]; - srcSha = "13wpi9nb3h6wwck2mxhza85fahzcwgas00w8m25086v34dha4dp1"; + srcSha = "1vfpwx6a2f2rn528774cz9r7r82ppycn8z8ybll6bphdw7cyar1g"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -22,7 +22,6 @@ callPackage ./generic.nix { snapshotDate = "2015-08-11"; snapshotRev = "1af31d4"; - # cc-ar-opts.patch should be removable in 1.4.0+ patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index ac232348328..ccbfc51b671 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -23,6 +23,6 @@ callPackage ./generic.nix { snapshotRev = "1af31d4"; patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec-head.patch; + ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } diff --git a/pkgs/development/compilers/rustc/patches/grsec-head.patch b/pkgs/development/compilers/rustc/patches/grsec-head.patch deleted file mode 100644 index b97b40c2409..00000000000 --- a/pkgs/development/compilers/rustc/patches/grsec-head.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile -index b22f34f..c6489bd 100644 ---- a/src/test/run-make/relocation-model/Makefile -+++ b/src/test/run-make/relocation-model/Makefile -@@ -2,9 +2,11 @@ - - all: others - $(RUSTC) -C relocation-model=dynamic-no-pic foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - - $(RUSTC) -C relocation-model=default foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - - $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs -@@ -16,6 +18,7 @@ others: - else - others: - $(RUSTC) -C relocation-model=static foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - $(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs - endif diff --git a/pkgs/development/compilers/rustc/patches/grsec.patch b/pkgs/development/compilers/rustc/patches/grsec.patch index 84582ab7d70..b97b40c2409 100644 --- a/pkgs/development/compilers/rustc/patches/grsec.patch +++ b/pkgs/development/compilers/rustc/patches/grsec.patch @@ -1,16 +1,24 @@ diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile -index 2fcdd32..2d9ddb0 100644 +index b22f34f..c6489bd 100644 --- a/src/test/run-make/relocation-model/Makefile +++ b/src/test/run-make/relocation-model/Makefile -@@ -5,9 +5,11 @@ all: +@@ -2,9 +2,11 @@ + + all: others + $(RUSTC) -C relocation-model=dynamic-no-pic foo.rs ++ paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) $(RUSTC) -C relocation-model=default foo.rs + paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) + $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs +@@ -16,6 +18,7 @@ others: + else + others: $(RUSTC) -C relocation-model=static foo.rs + paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) - - $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs + $(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs + endif From c11f6c9dc7333d6039c2e4edb1f86d12cffac520 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Thu, 24 Dec 2015 21:12:57 +0100 Subject: [PATCH 599/707] rustc-1.5.0: Don't force bundled LLVM --- pkgs/development/compilers/rustc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix index 1a2e9b1e4bb..ce1e4cf1f5c 100644 --- a/pkgs/development/compilers/rustc/default.nix +++ b/pkgs/development/compilers/rustc/default.nix @@ -3,7 +3,7 @@ callPackage ./generic.nix { shortVersion = "1.5.0"; isRelease = true; - forceBundledLLVM = true; + forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; srcSha = "1vfpwx6a2f2rn528774cz9r7r82ppycn8z8ybll6bphdw7cyar1g"; From ca277c2257ff981b47ad4b025712cc4f549267c8 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 24 Dec 2015 22:11:41 +0000 Subject: [PATCH 600/707] python-gnupg: use gnupg1 instead of 2 --- 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 e5359b97168..b4788050784 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -426,7 +426,7 @@ in modules // { # Let's make the library default to our gpg binary patchPhase = '' substituteInPlace gnupg.py \ - --replace "gpgbinary='gpg'" "gpgbinary='${pkgs.gnupg}/bin/gpg'" + --replace "gpgbinary='gpg'" "gpgbinary='${pkgs.gnupg1}/bin/gpg'" ''; meta = { From 5925f9f709c083b6fdbcceb1589ff2eea51fc9a5 Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Fri, 25 Dec 2015 03:43:49 +0300 Subject: [PATCH 601/707] Network script module fix --- nixos/modules/tasks/network-interfaces-scripted.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix index 80b7f718580..f07e7baeb11 100644 --- a/nixos/modules/tasks/network-interfaces-scripted.nix +++ b/nixos/modules/tasks/network-interfaces-scripted.nix @@ -83,13 +83,13 @@ in # FIXME: get rid of "|| true" (necessary to make it idempotent). ip route add default via "${cfg.defaultGateway}" ${ optionalString (cfg.defaultGatewayWindowSize != null) - "window ${cfg.defaultGatewayWindowSize}"} || true + "window ${toString cfg.defaultGatewayWindowSize}"} || true ''} ${optionalString (cfg.defaultGateway6 != null && cfg.defaultGateway6 != "") '' # FIXME: get rid of "|| true" (necessary to make it idempotent). ip -6 route add ::/0 via "${cfg.defaultGateway6}" ${ optionalString (cfg.defaultGatewayWindowSize != null) - "window ${cfg.defaultGatewayWindowSize}"} || true + "window ${toString cfg.defaultGatewayWindowSize}"} || true ''} ''; }; From 50a00101c17eb081d84145492f74e3d172040008 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 24 Dec 2015 23:27:31 -0500 Subject: [PATCH 602/707] dnsmasq: get it working on darwin again --- pkgs/tools/networking/dnsmasq/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/dnsmasq/default.nix b/pkgs/tools/networking/dnsmasq/default.nix index 35cd7ae4661..63720faf707 100644 --- a/pkgs/tools/networking/dnsmasq/default.nix +++ b/pkgs/tools/networking/dnsmasq/default.nix @@ -3,10 +3,10 @@ with stdenv.lib; let copts = concatStringsSep " " ([ - "-DHAVE_DBUS" "-DHAVE_IDN" "-DHAVE_DNSSEC" ] ++ optionals stdenv.isLinux [ + "-DHAVE_DBUS" "-DHAVE_CONNTRACK" ]); in @@ -29,13 +29,16 @@ stdenv.mkDerivation rec { "LOCALEDIR=$(out)/share/locale" ]; - postBuild = '' + postBuild = optionalString stdenv.isLinux '' make -C contrib/wrt ''; + # XXX: Does the systemd service definition really belong here when our NixOS + # module can create it in Nix-land? postInstall = '' - install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf install -Dm644 trust-anchors.conf $out/share/dnsmasq/trust-anchors.conf + '' + optionalString stdenv.isLinux '' + install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf install -Dm755 contrib/wrt/dhcp_lease_time $out/bin/dhcp_lease_time install -Dm755 contrib/wrt/dhcp_release $out/bin/dhcp_release @@ -50,8 +53,8 @@ stdenv.mkDerivation rec { ''; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ dbus_libs nettle libidn ] - ++ optional stdenv.isLinux libnetfilter_conntrack; + buildInputs = [ nettle libidn ] + ++ optionals stdenv.isLinux [ dbus_libs libnetfilter_conntrack ]; meta = { description = "An integrated DNS, DHCP and TFTP server for small networks"; From 6878b2b21ded9e29e55ea7a3c564715877692e58 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 24 Dec 2015 23:34:47 -0500 Subject: [PATCH 603/707] libvirt: make it build on darwin Not sure if it works, but it no longer fails miserably at build time --- .../development/libraries/libvirt/default.nix | 34 ++++++++++++++----- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 888cf833eab..2c31ef323f2 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -2,6 +2,7 @@ , iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng , dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages +, curl, libiconv, gmp }: stdenv.mkDerivation rec { @@ -14,25 +15,39 @@ stdenv.mkDerivation rec { }; buildInputs = [ - pkgconfig libxml2 gnutls devicemapper perl python readline lvm2 - utillinux udev libpciaccess gettext libtasn1 libgcrypt yajl makeWrapper - libcap_ng libnl libxslt xhtml1 perlPackages.XMLXPath numad numactl + pkgconfig libxml2 gnutls perl python readline + gettext libtasn1 libgcrypt yajl makeWrapper + libxslt xhtml1 perlPackages.XMLXPath curl + ] ++ stdenv.lib.optionals stdenv.isLinux [ + libpciaccess devicemapper lvm2 utillinux udev libcap_ng libnl numad numactl + ] ++ stdenv.lib.optionals stdenv.isDarwin [ + libiconv gmp ]; - preConfigure = '' - PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:${dnsmasq}/bin:$PATH + preConfigure = stdenv.lib.optionalString stdenv.isLinux '' + PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH substituteInPlace configure --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' + '' + '' + PATH=${dnsmasq}/bin:$PATH patchShebangs . # fixes /usr/bin/python references ''; configureFlags = [ "--localstatedir=/var" "--sysconfdir=/etc" - "--with-init-script=redhat" + "--with-libpcap" + "--with-vmware" + "--with-vbox" + "--with-test" + "--with-esx" + "--with-remote" + ] ++ stdenv.lib.optionals stdenv.isLinux [ + "--with-numad" "--with-macvtap" "--with-virtualport" - "--with-libpcap" - "--with-numad" + "--with-init-script=redhat" + ] ++ stdenv.lib.optionals stdenv.isDarwin [ + "--with-init-script=none" ]; installFlags = [ @@ -44,6 +59,7 @@ stdenv.mkDerivation rec { sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh substituteInPlace $out/libexec/libvirt-guests.sh \ --replace "$out/bin" "${gettext}/bin" + '' + stdenv.lib.optionalString stdenv.isLinux '' wrapProgram $out/sbin/libvirtd \ --prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin:${numad}/bin:${numactl}/bin ''; @@ -60,6 +76,6 @@ stdenv.mkDerivation rec { versions of Linux (and other OSes) ''; license = licenses.lgpl2Plus; - platforms = platforms.linux; + platforms = platforms.unix; }; } From 5303351c72b725b2138daa87ef4f852dd826bdd2 Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Fri, 25 Dec 2015 13:56:26 +0100 Subject: [PATCH 604/707] make taglib-extras work with taglib > 1.9 --- pkgs/development/libraries/taglib-extras/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/taglib-extras/default.nix b/pkgs/development/libraries/taglib-extras/default.nix index 05fe67eb9d7..1edabe4c81f 100644 --- a/pkgs/development/libraries/taglib-extras/default.nix +++ b/pkgs/development/libraries/taglib-extras/default.nix @@ -8,4 +8,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ taglib ]; nativeBuildInputs = [ cmake ]; + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake + ''; } From ca4c35478979106fe64163c11606516e3b3d2e7e Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 25 Dec 2015 15:54:35 +0100 Subject: [PATCH 605/707] slurm service: improve config --- .../services/computing/slurm/slurm.nix | 56 ++++++++++++++++--- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/nixos/modules/services/computing/slurm/slurm.nix b/nixos/modules/services/computing/slurm/slurm.nix index 019d7fbb16c..cf00d894655 100644 --- a/nixos/modules/services/computing/slurm/slurm.nix +++ b/nixos/modules/services/computing/slurm/slurm.nix @@ -34,6 +34,15 @@ in }; + package = mkOption { + type = types.package; + default = pkgs.slurm-llnl; + example = literalExample "pkgs.slurm-llnl-full"; + description = '' + The packge to use for slurm binaries. + ''; + }; + controlMachine = mkOption { type = types.nullOr types.str; default = null; @@ -91,38 +100,69 @@ in ###### implementation - config = mkIf (cfg.client.enable || cfg.server.enable) { + config = + let + wrappedSlurm = pkgs.stdenv.mkDerivation { + name = "wrappedSlurm"; - environment.systemPackages = [ pkgs.slurm-llnl ]; + propagatedBuildInputs = [ cfg.package configFile ]; + + builder = pkgs.writeText "builder.sh" '' + source $stdenv/setup + mkdir -p $out/bin + find ${cfg.package}/bin -type f -executable | while read EXE + do + exename="$(basename $EXE)" + wrappername="$out/bin/$exename" + cat > "$wrappername" < Date: Fri, 25 Dec 2015 15:55:07 +0100 Subject: [PATCH 606/707] slurm service: add tests --- nixos/tests/slurm.nix | 80 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 nixos/tests/slurm.nix diff --git a/nixos/tests/slurm.nix b/nixos/tests/slurm.nix new file mode 100644 index 00000000000..0dd00dfb04c --- /dev/null +++ b/nixos/tests/slurm.nix @@ -0,0 +1,80 @@ +import ./make-test.nix ({ pkgs, ... }: +let mungekey = "mungeverryweakkeybuteasytointegratoinatest"; + slurmconfig = { + client.enable = true; + controlMachine = "control"; + nodeName = '' + control + NodeName=node[1-3] CPUs=1 State=UNKNOWN + ''; + partitionName = "debug Nodes=node[1-3] Default=YES MaxTime=INFINITE State=UP"; + }; +in { + name = "slurm"; + + nodes = + let + computeNode = + { config, pkgs, ...}: + { + # TODO slrumd port and slurmctld port should be configurations and + # automatically allowed by the firewall. + networking.firewall.enable = false; + services.munge.enable = true; + services.slurm = slurmconfig; + }; + in { + control = + { config, pkgs, ...}: + { + networking.firewall.enable = false; + services.munge.enable = true; + services.slurm = { + server.enable = true; + } // slurmconfig; + }; + node1 = computeNode; + node2 = computeNode; + node3 = computeNode; + }; + + testScript = + '' + startAll; + + # Set up authentification across the cluster + foreach my $node (($control,$node1,$node2,$node3)) + { + $node->waitForUnit("default.target"); + + $node->succeed("mkdir /etc/munge"); + $node->succeed("echo '${mungekey}' > /etc/munge/munge.key"); + $node->succeed("chmod 0400 /etc/munge/munge.key"); + $node->succeed("systemctl restart munged"); + } + + # Restart the services since they have probably failed due to the munge init + # failure + + subtest "can_start_slurmctld", sub { + $control->succeed("systemctl restart slurmctld"); + $control->waitForUnit("slurmctld.service"); + }; + + subtest "can_start_slurmd", sub { + foreach my $node (($control,$node1,$node2,$node3)) + { + $node->succeed("systemctl restart slurmd.service"); + $node->waitForUnit("slurmd"); + } + }; + + # Test that the cluster work and can distribute jobs; + + subtest "run_distributed_command", sub { + # Run `hostname` on 3 nodes of the partition (so on all the 3 nodes). + # The output must contain the 3 different names + $control->succeed("srun -N 3 hostname | sort | uniq | wc -l | xargs test 3 -eq"); + }; + ''; +}) From 9e3498543012846dfa5af78eb1aa2bdf710054df Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 25 Dec 2015 15:14:20 -0500 Subject: [PATCH 607/707] w3m: use Arch patches Fix the built-in help (perl.patch) https://bugs.archlinux.org/task/45608 Properly link w3mimgdisplay to x11 https://bbs.archlinux.org/viewtopic.php?id=196093 Fix rendering bug in w3mimgdisplay (w3m_rgba.patch) https://github.com/hut/ranger/issues/86 Don't ignore input tags with invalid types (form_unkown.patch) http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615843 Fix a segfault when using https (https.patch) https://bugzilla.redhat.com/show_bug.cgi?id=707994 --- .../networking/browsers/w3m/default.nix | 60 +++++++++++++++---- .../networking/browsers/w3m/glibc214.patch | 60 ------------------- .../networking/browsers/w3m/newgc.patch | 15 ----- 3 files changed, 50 insertions(+), 85 deletions(-) delete mode 100644 pkgs/applications/networking/browsers/w3m/glibc214.patch delete mode 100644 pkgs/applications/networking/browsers/w3m/newgc.patch diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix index 358f005a878..6f37477c1b3 100644 --- a/pkgs/applications/networking/browsers/w3m/default.nix +++ b/pkgs/applications/networking/browsers/w3m/default.nix @@ -1,9 +1,10 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, fetchpatch , ncurses, boehmgc, gettext, zlib , sslSupport ? true, openssl ? null , graphicsSupport ? true, imlib2 ? null , x11Support ? graphicsSupport, libX11 ? null , mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null +, perl, man }: assert sslSupport -> openssl != null; @@ -21,15 +22,49 @@ stdenv.mkDerivation rec { sha256 = "1qx9f0kprf92r1wxl3sacykla0g04qsi0idypzz24b7xy9ix5579"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lsocket -lnsl"; + NIX_LDFLAGS = optionalString stdenv.isSunOS "-lsocket -lnsl"; - patches = [ ./glibc214.patch ./RAND_egd.libressl.patch ] - # Patch for the newer unstable boehm-gc 7.2alpha. Not all platforms use that - # alpha. At the time of writing this, boehm-gc-7.1 is the last stable. - ++ optional (boehmgc.name != "boehm-gc-7.1") [ ./newgc.patch ] - ++ optional stdenv.isCygwin ./cygwin.patch - # for frame buffer only version - ++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ]; + # we must set these so that the generated files (e.g. w3mhelp.cgi) contain + # the correct paths. + PERL = "${perl}/bin/perl"; + MAN = "${man}/bin/man"; + + # the Arch patches were pulled from: + # https://aur.archlinux.org/cgit/aur.git/?h=w3m-mouse + patches = [ + ./RAND_egd.libressl.patch + (fetchpatch { + name = "file_handle.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/file_handle.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "0kkqm68ig9d658kf1iwa1dwcf651f6dy2j98gplcks1mn3bdlak4"; + }) + (fetchpatch { + name = "form_unknown.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/form_unknown.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1mbfclid3bihb1xv7sxcahprn3slzd6ga8rjzlq4rbq80bl053fw"; + }) + (fetchpatch { + name = "gc72.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/gc72.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1n6anaw17by0s6rn25bwkgj2mck7ffspizpwbijvx1ynk451459a"; + }) + (fetchpatch { + name = "https.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/https.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "08skvaha1hjyapsh8zw5dgfy433mw2hk7qy9yy9avn8rjqj7kjxk"; + }) + (fetchpatch { + name = "perl.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/perl.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "15cq7cwh0d2v64i8by44rgxw48156sgh872921hxrqdakr95p3gy"; + }) + (fetchpatch { + name = "w3m_rgba.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/w3m_rgba.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1dhp1p6z621ayyl9zip9w35x2cxyhhj72jv5dvf0zp4rk6cjm781"; + }) + ] ++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ] + ++ optional stdenv.isCygwin ./cygwin.patch; buildInputs = [ncurses boehmgc gettext zlib] ++ optional sslSupport openssl @@ -37,6 +72,10 @@ stdenv.mkDerivation rec { ++ optional graphicsSupport imlib2 ++ optional x11Support libX11; + postInstall = optionalString graphicsSupport '' + ln -s $out/libexec/w3m/w3mimgdisplay $out/bin + ''; + configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}" + optionalString graphicsSupport " --enable-image=${optionalString x11Support "x11,"}fb"; @@ -48,11 +87,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; # for w3mimgdisplay + # see: https://bbs.archlinux.org/viewtopic.php?id=196093 LIBS = optionalString x11Support "-lX11"; meta = { homepage = http://w3m.sourceforge.net/; description = "A text-mode web browser"; - maintainers = [ maintainers.mornfall ]; + maintainers = [ maintainers.mornfall maintainers.cstrahan ]; }; } diff --git a/pkgs/applications/networking/browsers/w3m/glibc214.patch b/pkgs/applications/networking/browsers/w3m/glibc214.patch deleted file mode 100644 index 37e466e2106..00000000000 --- a/pkgs/applications/networking/browsers/w3m/glibc214.patch +++ /dev/null @@ -1,60 +0,0 @@ -http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/www-client/w3m/files/w3m-0.5.3-glibc214.patch?revision=1.1 - ---- a/istream.c.~1.27.~ 2011-01-04 18:22:22.000000000 +0900 -+++ b/istream.c 2011-06-24 08:15:23.522990618 +0900 -@@ -22,8 +22,8 @@ - static void basic_close(int *handle); - static int basic_read(int *handle, char *buf, int len); - --static void file_close(struct file_handle *handle); --static int file_read(struct file_handle *handle, char *buf, int len); -+static void file_close(struct afile_handle *handle); -+static int file_read(struct afile_handle *handle, char *buf, int len); - - static int str_read(Str handle, char *buf, int len); - -@@ -114,7 +114,7 @@ - stream = New(union input_stream); - init_base_stream(&stream->base, STREAM_BUF_SIZE); - stream->file.type = IST_FILE; -- stream->file.handle = New(struct file_handle); -+ stream->file.handle = New(struct afile_handle); - stream->file.handle->f = f; - if (closep) - stream->file.handle->close = closep; -@@ -658,13 +658,13 @@ - } - - static void --file_close(struct file_handle *handle) -+file_close(struct afile_handle *handle) - { - handle->close(handle->f); - } - - static int --file_read(struct file_handle *handle, char *buf, int len) -+file_read(struct afile_handle *handle, char *buf, int len) - { - return fread(buf, 1, len, handle->f); - } ---- a/istream.h.~1.12.~ 2003-10-21 01:41:56.000000000 +0900 -+++ b/istream.h 2011-06-24 08:15:54.392991144 +0900 -@@ -20,7 +20,7 @@ - - typedef struct stream_buffer *StreamBuffer; - --struct file_handle { -+struct afile_handle { - FILE *f; - void (*close) (); - }; -@@ -53,7 +53,7 @@ - - struct file_stream { - struct stream_buffer stream; -- struct file_handle *handle; -+ struct afile_handle *handle; - char type; - char iseos; - int (*read) (); diff --git a/pkgs/applications/networking/browsers/w3m/newgc.patch b/pkgs/applications/networking/browsers/w3m/newgc.patch deleted file mode 100644 index db25e305c8c..00000000000 --- a/pkgs/applications/networking/browsers/w3m/newgc.patch +++ /dev/null @@ -1,15 +0,0 @@ -https://bugzilla.redhat.com/show_bug.cgi?id=555467 - ---- a/main.c.old 2007-05-31 06:49:50.000000000 +0530 -+++ b/main.c 2010-02-16 16:16:24.000000000 +0530 -@@ -842,7 +842,9 @@ - mySignal(SIGPIPE, SigPipe); - #endif - -- orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc); -+ orig_GC_warn_proc = GC_get_warn_proc(); -+ GC_set_warn_proc(wrap_GC_warn_proc); -+ - err_msg = Strnew(); - if (load_argc == 0) { - /* no URL specified */ From 59ed410d6da12459bbfec2f59b2ae098a16bf7b7 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sat, 26 Dec 2015 02:32:09 +0000 Subject: [PATCH 608/707] fix ftp.mozilla.org URLs The old URLs time out. --- .../interpreters/spidermonkey/default.nix | 6 +++--- pkgs/development/libraries/java/rhino/default.nix | 2 +- pkgs/development/libraries/svrcore/default.nix | 2 +- pkgs/top-level/perl-packages.nix | 13 +++++++------ 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index e8d548df548..b7744ea53c3 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -2,9 +2,9 @@ stdenv.mkDerivation rec { name = "spidermonkey-1.7"; - + src = fetchurl { - url = ftp://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz; + url = https://ftp.mozilla.org/pub/js/js-1.7.0.tar.gz; sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4"; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { makefileExtra = ./Makefile.extra; makefile = "Makefile.ref"; - + patchPhase = '' cat ${makefileExtra} >> ${makefile} diff --git a/pkgs/development/libraries/java/rhino/default.nix b/pkgs/development/libraries/java/rhino/default.nix index 74aa8c9ba16..87958512925 100644 --- a/pkgs/development/libraries/java/rhino/default.nix +++ b/pkgs/development/libraries/java/rhino/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { name = "rhino-${version}"; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R2.zip"; + url = "https://ftp.mozilla.org/pub/js/rhino1_7R2.zip"; sha256 = "1p32hkghi6bkc3cf2dcqyaw5cjj7403mykcp0fy8f5bsnv0pszv7"; }; diff --git a/pkgs/development/libraries/svrcore/default.nix b/pkgs/development/libraries/svrcore/default.nix index 637b8b8ab7f..a5559e87aad 100644 --- a/pkgs/development/libraries/svrcore/default.nix +++ b/pkgs/development/libraries/svrcore/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "4.0.4"; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; + url = "https://ftp.mozilla.org/pub/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7"; }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 8e6d02ada39..1d9211fae2f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -8047,17 +8047,18 @@ let self = _self // overrides; _self = with self; { }; }; - MozillaLdap = buildPerlPackage { - name = "Mozilla-Ldap-1.5.3"; - USE_OPENLDAP=1; - LDAPSDKDIR=pkgs.openldap; + MozillaLdap = buildPerlPackage rec { + name = "Mozilla-Ldap-${version}"; + version = "1.5.3"; + USE_OPENLDAP = 1; + LDAPSDKDIR = pkgs.openldap; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/directory/perldap/releases/1.5.3/src/perl-mozldap-1.5.3.tar.gz"; + url = "https://ftp.mozilla.org/pub/directory/perldap/releases/${version}/src/perl-mozldap-${version}.tar.gz"; sha256 = "0s0albdw0zvg3w37s7is7gddr4mqwicjxxsy400n1p96l7ipnw4x"; }; meta = { description = "Mozilla's ldap client library"; - license = "unknown"; + license = with stdenv.lib.licenses; [ mpl20 lgpl21Plus gpl2Plus ]; }; }; From 0e07172c6d8eb4527f5cfc173889943e3221e417 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Dec 2015 17:27:35 +0100 Subject: [PATCH 609/707] bind: Fix patching Makefile.in There is no postPatchPhase. --- pkgs/servers/dns/bind/default.nix | 6 +----- pkgs/servers/dns/bind/remove-mkdir-var.patch | 12 ++++++++++++ 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 pkgs/servers/dns/bind/remove-mkdir-var.patch diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 64c461b70ea..a6933653e60 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -10,11 +10,7 @@ stdenv.mkDerivation rec { sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; }; - postPatchPhase = '' - sed -i 's/^\t.*run/\t/' Makefile.in - ''; - - patches = [ ./libressl.patch ]; + patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; buildInputs = [ openssl libtool perl libxml2 ]; diff --git a/pkgs/servers/dns/bind/remove-mkdir-var.patch b/pkgs/servers/dns/bind/remove-mkdir-var.patch new file mode 100644 index 00000000000..d0dcd580c20 --- /dev/null +++ b/pkgs/servers/dns/bind/remove-mkdir-var.patch @@ -0,0 +1,12 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -53,8 +53,7 @@ docclean manclean maintainer-clean:: + doc man:: ${MANOBJS} + + installdirs: +- $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ +- ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} ++ $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} ${DESTDIR}${sysconfdir} + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1 + + install:: isc-config.sh installdirs From 5a2f0541a1ff3756bae30b0115c1610222858a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 26 Dec 2015 09:06:28 +0100 Subject: [PATCH 610/707] nixos/xserver: fix evaluation of xkbDir I solved it this way because it seems the current state-of-the-art 89e983786 The problem was introduced in #11930. Close #11951 (a different solution). --- nixos/modules/services/x11/xserver.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 2bcaf2cf2a3..768fa50313a 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -281,10 +281,9 @@ in }; xkbDir = mkOption { - type = types.str; - default = "${pkgs.xkeyboard_config}/etc/X11/xkb"; + type = types.path; description = '' - Path used for -xkbdir xserver parameter. + Path used for -xkbdir xserver parameter. ''; }; @@ -548,6 +547,8 @@ in xorg.xf86inputevdev ]; + services.xserver.xkbDir = mkDefault "${pkgs.xkeyboard_config}/etc/X11/xkb"; + services.xserver.config = '' Section "ServerFlags" From ae4a7f9351ae77d24fe72f88ee95cc56554528b4 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sat, 26 Dec 2015 11:35:56 +0100 Subject: [PATCH 611/707] hostapd: rename extraCfg -> extraConfig, added asserts --- nixos/modules/rename.nix | 2 + nixos/modules/services/networking/hostapd.nix | 47 ++++++++++--------- 2 files changed, 26 insertions(+), 23 deletions(-) diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 28ac1c3e888..2a3d89e9f6f 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -75,6 +75,8 @@ with lib; # DNSCrypt-proxy (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) + (mkRenamedOptionModule [ "services" "hostapd" "extraCfg" ] [ "services" "hostapd" "extraConfig" ]) + # Options that are obsolete and have no replacement. (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) (mkRemovedOptionModule [ "programs" "bash" "enable" ]) diff --git a/nixos/modules/services/networking/hostapd.nix b/nixos/modules/services/networking/hostapd.nix index 5a6ca139dda..287964aab07 100644 --- a/nixos/modules/services/networking/hostapd.nix +++ b/nixos/modules/services/networking/hostapd.nix @@ -2,21 +2,17 @@ # TODO: # -# asserts +# asserts # ensure that the nl80211 module is loaded/compiled in the kernel -# hwMode must be a/b/g -# channel must be between 1 and 13 (maybe) # wpa_supplicant and hostapd on the same wireless interface doesn't make any sense -# perhaps an assertion that there is a dhcp server and a dns server on the IP address serviced by the hostapd? with lib; let cfg = config.services.hostapd; - - configFile = pkgs.writeText "hostapd.conf" - '' + + configFile = pkgs.writeText "hostapd.conf" '' interface=${cfg.interface} driver=${cfg.driver} ssid=${cfg.ssid} @@ -37,8 +33,8 @@ let wpa_passphrase=${cfg.wpaPassphrase} '' else ""} - ${cfg.extraCfg} - '' ; + ${cfg.extraConfig} + '' ; in @@ -65,9 +61,9 @@ in interface = mkOption { default = ""; - example = "wlan0"; + example = "wlp2s0"; description = '' - The interfaces hostapd will use. + The interfaces hostapd will use. ''; }; @@ -89,8 +85,7 @@ in }; hwMode = mkOption { - default = "b"; - example = "g"; + default = "g"; type = types.string; description = '' Operation mode. @@ -98,17 +93,16 @@ in ''; }; - channel = mkOption { + channel = mkOption { default = 7; example = 11; type = types.int; - description = - '' + description = '' Channel number (IEEE 802.11) Please note that some drivers do not use this value from hostapd and the channel will need to be configured separately with iwconfig. - ''; + ''; }; group = mkOption { @@ -131,16 +125,15 @@ in default = "my_sekret"; example = "any_64_char_string"; type = types.string; - description = - '' + description = '' WPA-PSK (pre-shared-key) passphrase. Clients will need this passphrase to associate with this access point. Warning: This passphrase will get put into a world-readable file in the Nix store! - ''; + ''; }; - extraCfg = mkOption { + extraConfig = mkOption { default = ""; example = '' auth_algo=0 @@ -158,17 +151,25 @@ in config = mkIf cfg.enable { + assertions = [ + { assertion = (cfg.hwMode == "a" || cfg.hwMode == "b" || cfg.hwMode == "g"); + message = "hwMode must be a/b/g"; + } + { assertion = (cfg.channel >= 1 && cfg.channel <= 13); + message = "channel must be between 1 and 13"; + }]; + environment.systemPackages = [ pkgs.hostapd ]; systemd.services.hostapd = { description = "hostapd wireless AP"; - path = [ pkgs.hostapd ]; + path = [ pkgs.hostapd ]; wantedBy = [ "network.target" ]; after = [ "${cfg.interface}-cfg.service" "nat.service" "bind.service" "dhcpd.service"]; - serviceConfig = + serviceConfig = { ExecStart = "${pkgs.hostapd}/bin/hostapd ${configFile}"; Restart = "always"; }; From d9ad002b2c49fed8fd416cbbf6eba4962e17fa1e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 26 Dec 2015 13:39:48 +0100 Subject: [PATCH 612/707] Prefer GnuPG 2.0.x by default. "nix-env -iA gnupg" installs the 2.0.x version of GNU Privacy Guard. This patch ensures that "nix-env -i gnupg" chooses the same version, instead of installing GnuPG 2.1.x, which is considered a "development version". Closes https://github.com/NixOS/nixpkgs/issues/11899. --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8ec08438a2a..08259db1cb7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1657,7 +1657,7 @@ let gnupg20 = callPackage ../tools/security/gnupg/20.nix { }; - gnupg21 = callPackage ../tools/security/gnupg/21.nix { }; + gnupg21 = lowPrio (callPackage ../tools/security/gnupg/21.nix { }); gnupg = gnupg20; From d623916494772649d8868f496210605544024a17 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Sat, 26 Dec 2015 14:08:56 +0100 Subject: [PATCH 613/707] maintainers: Change my email address --- lib/maintainers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 8b2ec630066..610d399b906 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -142,7 +142,7 @@ jcumming = "Jack Cummings "; jefdaj = "Jeffrey David Johnson "; jfb = "James Felix Black "; - jgeerds = "Jascha Geerds "; + jgeerds = "Jascha Geerds "; jgillich = "Jakob Gillich "; jirkamarsik = "Jirka Marsik "; joachifm = "Joachim Fasting "; From 4400f01c0bb2630e4ff175024e05d2b171c2782b Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Sat, 26 Dec 2015 18:00:20 +0100 Subject: [PATCH 614/707] amarok: fix taglib search --- pkgs/applications/audio/amarok/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index d99e1b7a150..95f55abddba 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -25,6 +25,10 @@ stdenv.mkDerivation rec { libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core ]; + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake + ''; + cmakeFlags = "-DKDE4_BUILD_TESTS=OFF"; propagatedUserEnvPkgs = [ qtscriptgenerator ]; From a25de32033e22ba9d70c813b81f6acd43d3f794e Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Sat, 26 Dec 2015 18:00:32 +0100 Subject: [PATCH 615/707] cantata: fix taglib search --- pkgs/applications/audio/cantata/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/audio/cantata/default.nix b/pkgs/applications/audio/cantata/default.nix index 2d399ba44da..c3b4e60b87c 100644 --- a/pkgs/applications/audio/cantata/default.nix +++ b/pkgs/applications/audio/cantata/default.nix @@ -93,6 +93,10 @@ stdenv.mkDerivation rec { "-DENABLE_UDISKS2=ON" ]; + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake + ''; + postInstall = stdenv.lib.optionalString withQt5 '' wrapQtProgram "$out/bin/cantata" ''; From e94139f8c8a5e4c56ae7868e2348af47c4955a58 Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Sat, 26 Dec 2015 18:42:03 +0100 Subject: [PATCH 616/707] Add comments identifying workarounds --- pkgs/applications/audio/amarok/default.nix | 1 + pkgs/applications/audio/cantata/default.nix | 1 + pkgs/development/libraries/taglib-extras/default.nix | 2 ++ 3 files changed, 4 insertions(+) diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index 95f55abddba..e0519f2db5c 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -25,6 +25,7 @@ stdenv.mkDerivation rec { libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core ]; + # This is already fixed upstream, will be release in 2.9 preConfigure = '' sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake ''; diff --git a/pkgs/applications/audio/cantata/default.nix b/pkgs/applications/audio/cantata/default.nix index c3b4e60b87c..6906c7bccb5 100644 --- a/pkgs/applications/audio/cantata/default.nix +++ b/pkgs/applications/audio/cantata/default.nix @@ -93,6 +93,7 @@ stdenv.mkDerivation rec { "-DENABLE_UDISKS2=ON" ]; + # This is already fixed upstream but not released yet. Maybe in version 2. preConfigure = '' sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake ''; diff --git a/pkgs/development/libraries/taglib-extras/default.nix b/pkgs/development/libraries/taglib-extras/default.nix index 1edabe4c81f..623119703d4 100644 --- a/pkgs/development/libraries/taglib-extras/default.nix +++ b/pkgs/development/libraries/taglib-extras/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { }; buildInputs = [ taglib ]; nativeBuildInputs = [ cmake ]; + + # Workaround for upstream bug https://bugs.kde.org/show_bug.cgi?id=357181 preConfigure = '' sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake ''; From 0f52d33f96f82bb2e981bd98b88d849ef6523613 Mon Sep 17 00:00:00 2001 From: Drew Carey Buglione Date: Sat, 26 Dec 2015 12:36:19 -0600 Subject: [PATCH 617/707] nixos/manual: typo --- nixos/doc/manual/installation/installing.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 6d734cd8cac..9aec57fb6d5 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -35,7 +35,7 @@ systemctl stop network-manager. The NixOS installer doesn’t do any partitioning or - formatting yet, so you need to that yourself. Use the following + formatting yet, so you need to do that yourself. Use the following commands: From bbcc08cb30ff8ec21b39a58344e3c1171e09f454 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Sat, 26 Dec 2015 10:38:17 -0800 Subject: [PATCH 618/707] NixOS manual: fix typo --- nixos/modules/misc/nixos.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/misc/nixos.xml b/nixos/modules/misc/nixos.xml index f8d3b4bc6e3..064bdd80b3c 100644 --- a/nixos/modules/misc/nixos.xml +++ b/nixos/modules/misc/nixos.xml @@ -35,7 +35,7 @@ nixos.path = ./nixpkgs-16-03/nixos; Another option is to fetch a specific version of NixOS, with either the fetchTarball builtin, or the -pkgs.fetchFromGithub function and use the result as an +pkgs.fetchFromGitHub function and use the result as an input. From f3048aed1d8b1461a89a2fcd60e7d2994d80d429 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 25 Dec 2015 14:38:16 +0100 Subject: [PATCH 619/707] eid-viewer: 4.1.4 -> 4.1.9 --- pkgs/tools/security/eid-viewer/default.nix | 14 +++++--------- pkgs/top-level/python-packages.nix | 2 -- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/security/eid-viewer/default.nix b/pkgs/tools/security/eid-viewer/default.nix index c9663253761..ac6dee4beaa 100644 --- a/pkgs/tools/security/eid-viewer/default.nix +++ b/pkgs/tools/security/eid-viewer/default.nix @@ -1,16 +1,12 @@ -{ stdenv, fetchurl, jre, makeWrapper, pcsclite }: +{ stdenv, fetchurl, makeWrapper, jre, pcsclite }: -let - # TODO: find out what the version components actually mean, if anything: - major = "4.1.4-v4.1.4"; - minor = "tcm406-270732"; - version = "${major}-${minor}"; -in stdenv.mkDerivation rec { +let version = "4.1.9"; in +stdenv.mkDerivation rec { name = "eid-viewer-${version}"; src = fetchurl { - url = "http://eid.belgium.be/en/binaries/eid-viewer-${major}.src.tar_${minor}.gz"; - sha256 = "06kda45y7c3wvvqby153zcasgz4jibjypv8gvfwvrwvn4ag2z934"; + url = "https://downloads.services.belgium.be/eid/eid-viewer-${version}-v${version}.src.tar.gz"; + sha256 = "0bq9jl4kl97j0dfhz4crcb1wqhn420z5vpg510zadvrmqjhy1x4g"; }; buildInputs = [ jre pcsclite ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index baadc405537..c8def0b907a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17993,8 +17993,6 @@ in modules // { propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ]; buildInputs = with pkgs; [ alsaLib ffmpeg libv4l pkgconfig sqlite libvpx ]; - - doCheck = false; }; From cf699caf4d9be4445b3516f9b9b362dd3d442edf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 25 Dec 2015 15:56:05 +0100 Subject: [PATCH 620/707] saneBackends: don't add option for 1 udev rule --- pkgs/applications/graphics/sane/backends/generic.nix | 12 +++--------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index a8963b438b8..9fbeb612614 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -2,13 +2,9 @@ , avahi, libusb1, libv4l, net_snmp , gettext, pkgconfig , gt68xxFirmware ? null, snapscanFirmware ? null -, hotplugSupport ? true , version, src, ... }: -assert hotplugSupport -> - builtins.elem stdenv.system [ "i686-linux" "x86_64-linux" ]; - stdenv.mkDerivation { inherit src; @@ -25,11 +21,9 @@ stdenv.mkDerivation { nativeBuildInputs = [ gettext pkgconfig ]; postInstall = '' - if test "$hotplugSupport" = "1"; then - mkdir -p $out/etc/udev/rules.d/ - ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ - cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules - fi + mkdir -p $out/etc/udev/rules.d/ + ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ + cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules ''; preInstall = diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 08259db1cb7..a9593b36186 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15542,13 +15542,11 @@ let saneBackends = callPackage ../applications/graphics/sane/backends { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; - hotplugSupport = config.sane.hotplugSupport or true; }; saneBackendsGit = callPackage ../applications/graphics/sane/backends/git.nix { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; - hotplugSupport = config.sane.hotplugSupport or true; }; mkSaneConfig = callPackage ../applications/graphics/sane/config.nix { }; From c05165ba5ce24fb793040218b8e899c53bda448c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 26 Dec 2015 19:05:48 +0100 Subject: [PATCH 621/707] saneBackends: don't add epson2 to dll.conf It's already in there by default. --- pkgs/applications/graphics/sane/backends/generic.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 9fbeb612614..5b6c8943783 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -33,8 +33,6 @@ stdenv.mkDerivation { else if snapscanFirmware != null then "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + " \${out}/share/sane/snapscan/your-firmwarefile.bin" - "mkdir -p \${out}/etc/sane.d ; " + - "echo epson2 >> \${out}/etc/sane.d/dll.conf" else ""; meta = with stdenv.lib; { From 8b4273a65dfc73044f27f6f43fc7f9a7c2202d9f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 26 Dec 2015 19:48:33 +0100 Subject: [PATCH 622/707] saneBackends: add generic extraFirmware support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This usurps the model-specific gt68xxFirmware and snapscanFirmware, which are still supported for backwards compatibility – hopefully not forever. --- .../graphics/sane/backends/generic.nix | 39 +++++++++++++------ 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index 5b6c8943783..e98774a4368 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -1,7 +1,14 @@ { stdenv, fetchurl , avahi, libusb1, libv4l, net_snmp , gettext, pkgconfig + +# List of { src name backend } attibute sets - see installFirmware below: +, extraFirmware ? [] + +# For backwards compatibility with older setups; use extraFirmware instead: , gt68xxFirmware ? null, snapscanFirmware ? null + +# Passed from versioned package (e.g. default.nix, git.nix): , version, src, ... }: @@ -20,20 +27,30 @@ stdenv.mkDerivation { buildInputs = [ avahi libusb1 libv4l net_snmp ]; nativeBuildInputs = [ gettext pkgconfig ]; - postInstall = '' + postInstall = let + + compatFirmware = extraFirmware + ++ stdenv.lib.optional (gt68xxFirmware != null) { + src = gt68xxFirmware.fw; + inherit (gt68xxFirmware) name; + backend = "gt68xx"; + } + ++ stdenv.lib.optional (snapscanFirmware != null) { + src = snapscanFirmware; + name = "your-firmwarefile.bin"; + backend = "snapscan"; + }; + + installFirmware = f: '' + mkdir -p $out/share/sane/${f.backend} + ln -sv ${f.src} $out/share/sane/${f.backend}/${f.name} + ''; + + in '' mkdir -p $out/etc/udev/rules.d/ ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules - ''; - - preInstall = - if gt68xxFirmware != null then - "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + gt68xxFirmware.fw + - " \${out}/share/sane/gt68xx/" + gt68xxFirmware.name - else if snapscanFirmware != null then - "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + - " \${out}/share/sane/snapscan/your-firmwarefile.bin" - else ""; + '' + stdenv.lib.concatStrings (builtins.map installFirmware compatFirmware); meta = with stdenv.lib; { inherit version; From bb3a2aa8eb710b8950d7b65cd3270b11da5003d1 Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Sat, 26 Dec 2015 13:46:34 -0800 Subject: [PATCH 623/707] autossh: build on darwin too Tested it out just now - seems like it works fine. --- pkgs/tools/networking/autossh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/autossh/default.nix b/pkgs/tools/networking/autossh/default.nix index 5addf30c322..9ff0376c8bc 100644 --- a/pkgs/tools/networking/autossh/default.nix +++ b/pkgs/tools/networking/autossh/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = http://www.harding.motd.ca/autossh/; description = "Automatically restart SSH sessions and tunnels"; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = with maintainers; [ pSub ]; }; } From 5cfeedc9147d543b5409f1d19e9303c813200e9d Mon Sep 17 00:00:00 2001 From: Yuri Albuquerque Date: Sun, 27 Dec 2015 00:02:09 -0400 Subject: [PATCH 624/707] fontforge: needs pango on Linux, too --- pkgs/tools/misc/fontforge/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/fontforge/default.nix b/pkgs/tools/misc/fontforge/default.nix index 3ecb886419f..9ee3eb23e0e 100644 --- a/pkgs/tools/misc/fontforge/default.nix +++ b/pkgs/tools/misc/fontforge/default.nix @@ -29,10 +29,9 @@ stdenv.mkDerivation { buildInputs = [ git autoconf automake gnum4 libtool perl pkgconfig gettext uthash python freetype zlib glib libungif libpng libjpeg libtiff libxml2 + pango ] - ++ lib.optionals withGTK [ gtk2 ] - # I'm not sure why pango doesn't seem necessary on Linux - ++ lib.optionals stdenv.isDarwin [ pango ]; + ++ lib.optionals withGTK [ gtk2 ]; configureFlags = lib.optionals (!withPython) [ "--disable-python-scripting" "--disable-python-extension" ] From 9c6fecbda0f713a1394bcfd9054050205133835d Mon Sep 17 00:00:00 2001 From: Yuri Albuquerque Date: Sun, 27 Dec 2015 00:01:58 -0400 Subject: [PATCH 625/707] playonlinux: needs which and curl during runtime --- pkgs/applications/misc/playonlinux/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix index 731cf5a6ba9..178fc13065b 100644 --- a/pkgs/applications/misc/playonlinux/default.nix +++ b/pkgs/applications/misc/playonlinux/default.nix @@ -17,6 +17,8 @@ , xterm , pkgs , pkgsi686Linux +, which +, curl }: assert stdenv.isLinux; @@ -39,6 +41,8 @@ let wine xdg-user-dirs xterm + which + curl ]; ld32 = From d4406237a9731f1a9f3330f675bf57b8eb58a048 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 06:33:35 +0100 Subject: [PATCH 626/707] dvdisaster: 0.72.6 -> 0.79.5 --- pkgs/tools/cd-dvd/dvdisaster/default.nix | 27 +++++++++++++------ pkgs/tools/cd-dvd/dvdisaster/encryption.patch | 24 ++++++++--------- 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index 101d69c0903..7d17b8b3282 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -1,16 +1,20 @@ -{ stdenv, fetchurl, pkgconfig, which, gettext, intltool +{ stdenv, fetchurl, pkgconfig, gettext, which , glib, gtk2 , enableSoftening ? true }: +let version = "0.79.5"; in stdenv.mkDerivation rec { - name = "dvdisaster-0.72.6"; + name = "dvdisaster-${version}"; src = fetchurl { url = "http://dvdisaster.net/downloads/${name}.tar.bz2"; - sha256 = "e9787dea39aeafa38b26604752561bc895083c17b588489d857ac05c58be196b"; + sha256 = "0f8gjnia2fxcbmhl8b3qkr5b7idl8m855dw7xw2fnmbqwvcm6k4w"; }; + nativeBuildInputs = [ gettext pkgconfig which ]; + buildInputs = [ glib gtk2 ]; + patches = stdenv.lib.optional enableSoftening [ ./encryption.patch ./dvdrom.patch @@ -21,8 +25,13 @@ stdenv.mkDerivation rec { sed -i 's/dvdisaster48.png/dvdisaster/' contrib/dvdisaster.desktop ''; - # Explicit --docdir= is required for on-line help to work: - configureFlags = [ "--docdir=$out/share/doc" ]; + configureFlags = [ + # Explicit --docdir= is required for on-line help to work: + "--docdir=$out/share/doc" + "--with-nls=yes" + "--with-embedded-src-path=no" + ] ++ stdenv.lib.optional (builtins.elem stdenv.system + stdenv.lib.platforms.x86_64) "--with-sse2=yes"; buildInputs = [ pkgconfig which gettext intltool @@ -35,11 +44,13 @@ stdenv.mkDerivation rec { for size in 16 24 32 48 64; do mkdir -pv $out/share/icons/hicolor/"$size"x"$size"/apps/ - cp contrib/dvdisaster"$size".png $out/share/icons/hicolor/"$size"x"$size"/apps/dvdisaster.png + cp contrib/dvdisaster"$size".png \ + $out/share/icons/hicolor/"$size"x"$size"/apps/dvdisaster.png done ''; meta = with stdenv.lib; { + inherit version; homepage = http://dvdisaster.net/; description = "Data loss/scratch/aging protection for CD/DVD media"; longDescription = '' @@ -48,8 +59,8 @@ stdenv.mkDerivation rec { data which is used to recover unreadable sectors if the disc becomes damaged at a later time. ''; - license = licenses.gpl2; + license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ jgeerds ]; + maintainers = with maintainers; [ jgeerds nckx ]; }; } diff --git a/pkgs/tools/cd-dvd/dvdisaster/encryption.patch b/pkgs/tools/cd-dvd/dvdisaster/encryption.patch index a9383cb13cf..21e35889382 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/encryption.patch +++ b/pkgs/tools/cd-dvd/dvdisaster/encryption.patch @@ -1,21 +1,19 @@ Author: n/a Description: Disables to skip on encrypted disks (e.g. DVD with CSS-Encryption). -Index: dvdisaster/scsi-layer.c -=================================================================== ---- dvdisaster.orig/scsi-layer.c 2012-04-08 21:51:10.995588783 +0900 -+++ dvdisaster/scsi-layer.c 2012-04-08 21:51:29.259678075 +0900 -@@ -2693,11 +2693,12 @@ - return NULL; +diff -Naur dvdisaster-0.79.5.orig/scsi-layer.c dvdisaster-0.79.5/scsi-layer.c +--- dvdisaster-0.79.5.orig/scsi-layer.c 2015-10-28 21:56:57.000000000 +0100 ++++ dvdisaster-0.79.5/scsi-layer.c 2015-12-27 06:19:32.012253661 +0100 +@@ -2712,12 +2712,6 @@ } } -- -+/* - if(dh->mainType == DVD && query_copyright(dh)) - { CloseDevice(dh); - Stop(_("This software does not support encrypted media.\n")); - } -+*/ +- if(dh->mainType == DVD && query_copyright(dh)) +- { CloseImage(image); +- Stop(_("This software does not support encrypted media.\n")); +- return NULL; +- } +- /* Create the bitmap of simulated defects */ + if(Closure->simulateDefects) From 5d03506df77885e1ac4a18236723d37663cf8709 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 06:36:30 +0100 Subject: [PATCH 627/707] dvdisaster: run tests & build in parallel It seems like a good idea to test back-up software... --- pkgs/tools/cd-dvd/dvdisaster/default.nix | 28 ++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index 7d17b8b3282..a98ce2088bd 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -33,10 +33,30 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optional (builtins.elem stdenv.system stdenv.lib.platforms.x86_64) "--with-sse2=yes"; - buildInputs = [ - pkgconfig which gettext intltool - glib gtk2 - ]; + enableParallelBuilding = true; + + doCheck = true; + checkPhase = '' + pushd regtest + + mkdir -p "$TMP"/{log,regtest} + substituteInPlace common.bash \ + --replace /dev/shm "$TMP/log" \ + --replace /var/tmp "$TMP" + + for test in *.bash; do + case "$test" in + common.bash) + echo "Skipping $test" + continue ;; + *) + echo "Running $test" + ./"$test" + esac + done + + popd + ''; postInstall = '' mkdir -pv $out/share/applications From 39c43bc6e22ac739952b5e2e45c1ad6e57ff9e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 26 Dec 2015 11:07:29 +0100 Subject: [PATCH 628/707] archiveopteryx: improve install paths, parallel build --- pkgs/servers/mail/archiveopteryx/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/mail/archiveopteryx/default.nix b/pkgs/servers/mail/archiveopteryx/default.nix index 8388d63d6b2..966f90c40f1 100644 --- a/pkgs/servers/mail/archiveopteryx/default.nix +++ b/pkgs/servers/mail/archiveopteryx/default.nix @@ -1,18 +1,24 @@ -{ stdenv, fetchurl, openssl, perl, zlib }: +{ stdenv, fetchurl, openssl, perl, zlib, jam }: stdenv.mkDerivation rec { version = "3.2.0"; name = "archiveopteryx-${version}"; + src = fetchurl { url = "http://archiveopteryx.org/download/${name}.tar.bz2"; sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx"; }; + + nativeBuildInputs = [ jam ]; buildInputs = [ openssl perl zlib ]; + + preConfigure = ''export PREFIX="$out" ''; + buildPhase = ''jam "-j$NIX_BUILD_CORES" ''; installPhase = '' - INSTALLROOT=$out make install - mkdir $out/bin - ln --symbolic $out/usr/local/archiveopteryx/sbin/* $out/bin/ - ln --symbolic $out/usr/local/archiveopteryx/bin/* $out/bin/ + jam install + mkdir -p "$out/share/doc/archiveopteryx" + mv -t "$out/share/doc/archiveopteryx/" "$out"/{bsd.txt,COPYING,README} ''; + meta = with stdenv.lib; { homepage = http://archiveopteryx.org/; description = "An advanced PostgreSQL-based IMAP/POP server"; From 42557425bc2b3554d09698648d46711320d7c797 Mon Sep 17 00:00:00 2001 From: codsl Date: Sun, 27 Dec 2015 07:20:11 +0000 Subject: [PATCH 629/707] tor: 0.2.7.5 -> 0.2.7.6 --- pkgs/tools/security/tor/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index a03a945f805..7ff1cd9cca5 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libevent, openssl, zlib, torsocks, libseccomp }: stdenv.mkDerivation rec { - name = "tor-0.2.7.5"; + name = "tor-0.2.7.6"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz"; - sha256 = "0pxayvcab4cb107ynbpzx4g0qyr1mjfba2an76wdx6dxn56rwakx"; + sha256 = "0p8hjlfi8dwghlyjif5s0q98cmpgz9kn9jja25430l04z5wqcfj9"; }; # Note: torsocks is specified as a dependency, as the distributed From d776afef095fb8763ab9f0dc47e769c696852c4f Mon Sep 17 00:00:00 2001 From: wedens Date: Sun, 27 Dec 2015 14:02:21 +0600 Subject: [PATCH 630/707] rtv: 1.7.0 -> 1.8.0 --- pkgs/applications/misc/rtv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix index 84f9bdcadb7..2126ce23d3a 100644 --- a/pkgs/applications/misc/rtv/default.nix +++ b/pkgs/applications/misc/rtv/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }: pythonPackages.buildPythonPackage rec { - version = "1.7.0"; + version = "1.8.0"; name = "rtv-${version}"; src = fetchFromGitHub { owner = "michael-lazar"; repo = "rtv"; rev = "v${version}"; - sha256 = "0fynymia3c2rynq9bm0jssd3rad7f7hhmjpkby7yj6g3jvk7jn4x"; + sha256 = "0vp9yapm6bm4zdhd1ibbirc23ck7smrbsrask7xkrnz7qysxgsd3"; }; propagatedBuildInputs = with pythonPackages; [ From 8fb46420efcbfb06108f47d831db5d38ed1371b4 Mon Sep 17 00:00:00 2001 From: codsl Date: Sun, 27 Dec 2015 09:30:47 +0000 Subject: [PATCH 631/707] torbrowser: 5.0.4 -> 5.0.6 --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 3ff4ce724b8..e6ce333cc91 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.0.4"; + version = "5.0.6"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "03vn1wkkpgr6wzd6iiyqs7zv7yxl9q99j755n8l2579bd10w1xcn" else - "1yc13cykr4fafz6r8hnjccl0s33sk297c779cknbdbhj3z3yn163"; + "1ix05760l9j6bwbswd2fnk4b6nrrzxp3b8abvm4y4979pkkmasfw" else + "1q5mf91xxj1xs4ajj9i6mdhnzqycbdvprkzskx8pl6j9ll2hlsyh"; }; patchPhase = '' From 56aa0ff1d9d14486de2ebad3b5605c43695bae95 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 27 Dec 2015 14:23:52 +0100 Subject: [PATCH 632/707] runzip: init at 1.4 --- pkgs/tools/archivers/runzip/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/archivers/runzip/default.nix diff --git a/pkgs/tools/archivers/runzip/default.nix b/pkgs/tools/archivers/runzip/default.nix new file mode 100644 index 00000000000..9b2fd0eda59 --- /dev/null +++ b/pkgs/tools/archivers/runzip/default.nix @@ -0,0 +1,23 @@ +{stdenv, fetchFromGitHub, libzip, autoconf, automake, libtool, m4}: +stdenv.mkDerivation rec { + baseName = "runzip"; + version = "1.4"; + name = "${baseName}-${version}"; + buildInputs = [libzip autoconf automake libtool m4]; + src = fetchFromGitHub { + owner = "vlm"; + repo = "zip-fix-filename-encoding"; + rev = "v${version}"; + sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07"; + }; + preConfigure = '' + autoreconf -iv + ''; + meta = { + inherit version; + description = ''A tool to convert filename encoding inside a ZIP archive''; + license = stdenv.lib.licenses.bsd2 ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a9593b36186..88dc7faced3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2964,6 +2964,8 @@ let rtorrent = callPackage ../tools/networking/p2p/rtorrent { }; rubber = callPackage ../tools/typesetting/rubber { }; + + runzip = callPackage ../tools/archivers/runzip { }; rxp = callPackage ../tools/text/xml/rxp { }; From 5d682e515ebba4b395dd3557a3479c732bca112b Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 27 Dec 2015 13:32:44 +0000 Subject: [PATCH 633/707] release-notes: add pump.io as a new service --- nixos/doc/manual/release-notes/rl-unstable.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index 1b8efe8770e..f74fff83b48 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -30,6 +30,7 @@ nixos.path = ./nixpkgs-unstable-2015-12-06/nixos; services/monitoring/longview.nix + services/web-apps/pump.io.nix From 3eda86cfea3e8900abe1d83966cdaf196e9899e5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 27 Dec 2015 08:33:28 -0600 Subject: [PATCH 634/707] elpa-packages 2015-12-27 --- pkgs/applications/editors/emacs-modes/elpa-packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index a3813435f63..479808d1d03 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json @@ -246,10 +246,10 @@ "org": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/org-20151214.tar", - "sha256": "15m9l7p7xfmcrxrcsxbvpp8bq5ajcapknvqblhmk77j7ca3jffi1" + "url": "http://elpa.gnu.org/packages/org-20151221.tar", + "sha256": "01p8c70bd2mp3w08vpha0dvpljhj4r5797b0m9q16z4zhxqaqbqx" }, - "version": "20151214", + "version": "20151221", "deps": [] }, "bug-hunter": { From 5558dc828c1b1b28ed87bf749e90f9caa5e01430 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 27 Dec 2015 15:01:04 +0100 Subject: [PATCH 635/707] anki: major refactor This refactoring changes a number of things: - use system copies of Python libraries BeautifulSoup, and HTTPLIB2, - custom install to avoid installation of unnecessary files and poor directory structure, and - add patch for sorting out file paths, in particular this fixes localization. --- pkgs/games/anki/default.nix | 66 ++++++++++++++-------- pkgs/games/anki/fix-paths.patch | 98 +++++++++++++++++++++++++++++++++ 2 files changed, 142 insertions(+), 22 deletions(-) create mode 100644 pkgs/games/anki/fix-paths.patch diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index f99a8ddb4a8..ca18ca194da 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -1,5 +1,5 @@ -{ stdenv, lib, fetchurl, lame, mplayer, libpulseaudio, portaudio -, python, pyqt4, pythonPackages +{ stdenv, lib, fetchurl, substituteAll, lame, mplayer +, libpulseaudio, python, pyqt4, qt4, pythonPackages # This little flag adds a huge number of dependencies, but we assume that # everyone wants Anki to draw plots with statistics by default. , plotsSupport ? true }: @@ -18,37 +18,59 @@ stdenv.mkDerivation rec { sha256 = "1d5rf5gcw98m38wam6wh3hyh7qd78ws7zipm67xg744flqsjrzmr"; }; - pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio ] + pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio py.beautifulsoup py.httplib2 ] ++ lib.optional plotsSupport py.matplotlib; buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; - patchPhase = '' - substituteInPlace anki/sound.py --replace '["mplayer"]' '["${mplayer}/bin/mplayer"]' + phases = [ "unpackPhase" "patchPhase" "installPhase" ]; + + patches = [ + (substituteAll { + src = ./fix-paths.patch; + inherit lame mplayer qt4; + qt4name = qt4.name; + }) + ]; + + postPatch = '' + substituteInPlace oldanki/lang.py --subst-var-by anki $out + substituteInPlace anki/lang.py --subst-var-by anki $out + + # Remove unused starter. We'll create our own, minimalistic, + # starter. + rm anki/anki + + # Remove QT translation files. We'll use the standard QT ones. + rm "locale/"*.qm ''; - preConfigure = '' - substituteInPlace anki/anki \ - --replace /usr/share/ $out/share/ + installPhase = '' + pp=$out/lib/${python.libPrefix}/site-packages - substituteInPlace Makefile \ - --replace PREFIX=/usr PREFIX=$out \ - --replace /local/bin/ /bin/ - - sed -i '/xdg-mime/ d' Makefile - ''; - - preInstall = '' mkdir -p $out/bin - mkdir -p $out/share/pixmaps mkdir -p $out/share/applications + mkdir -p $out/share/doc/anki mkdir -p $out/share/man/man1 - ''; + mkdir -p $out/share/mime/packages + mkdir -p $out/share/pixmaps + mkdir -p $pp + + cat > $out/bin/anki < Date: Sun, 27 Dec 2015 10:14:57 -0600 Subject: [PATCH 636/707] melpa-packages 2015-12-27 --- .../editors/emacs-modes/melpa-packages.json | 7102 +++++++++-------- 1 file changed, 3665 insertions(+), 3437 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 39e720553ca..889b4cea4a5 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -9,7 +9,7 @@ }, "recipe": { "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1017", "deps": [] @@ -24,7 +24,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140118.244", "deps": [ @@ -37,14 +37,14 @@ "tag": "fetchFromGitHub", "owner": "sshbio", "repo": "drawille", - "sha256": "0ay71bny5sn8ndv5b7mpr19hjislaaah0sw2wbqxcvh219l05gna", - "rev": "d56a71a168b391365c8d6f567391a6892bbd3909" + "sha256": "1i4kccig2qy9rqfblibjj0aml7yqxjl9j2za4nkqdjwqkn9ihin7", + "rev": "2b31e339a64e06ae817b29cade04a2a141c69121" }, "recipe": { "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.1208", + "version": "20151222.1832", "deps": [ "cl-lib" ] @@ -59,7 +59,7 @@ }, "recipe": { "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140915.1610", "deps": [] @@ -74,7 +74,7 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.1440", "deps": [] @@ -84,11 +84,11 @@ "tag": "fetchsvn", "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11156" + "rev": "11174" }, "recipe": { "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.604", "deps": [] @@ -103,7 +103,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150909.43", "deps": [ @@ -120,7 +120,7 @@ }, "recipe": { "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141012.511", "deps": [ @@ -137,7 +137,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.2305", "deps": [] @@ -152,7 +152,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.215", "deps": [ @@ -170,7 +170,7 @@ }, "recipe": { "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150504.1811", "deps": [] @@ -185,7 +185,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.249", "deps": [] @@ -200,7 +200,7 @@ }, "recipe": { "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150418.355", "deps": [] @@ -215,7 +215,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.144", "deps": [ @@ -235,7 +235,7 @@ }, "recipe": { "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.516", "deps": [ @@ -254,7 +254,7 @@ }, "recipe": { "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140128.1334", "deps": [] @@ -269,7 +269,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151003.2131", "deps": [ @@ -288,7 +288,7 @@ }, "recipe": { "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.350", "deps": [ @@ -304,7 +304,7 @@ }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.837", "deps": [] @@ -319,7 +319,7 @@ }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1347", "deps": [ @@ -336,7 +336,7 @@ }, "recipe": { "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120223.1650", "deps": [] @@ -351,7 +351,7 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.814", "deps": [] @@ -366,7 +366,7 @@ }, "recipe": { "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.657", "deps": [ @@ -382,7 +382,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.1640", "deps": [ @@ -399,7 +399,7 @@ }, "recipe": { "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.245", "deps": [ @@ -419,7 +419,7 @@ }, "recipe": { "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150824.901", "deps": [] @@ -434,7 +434,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151028.210", "deps": [ @@ -450,7 +450,7 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1906", "deps": [] @@ -465,7 +465,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140418.915", "deps": [ @@ -484,7 +484,7 @@ }, "recipe": { "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.149", "deps": [] @@ -499,7 +499,7 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150404.701", "deps": [] @@ -514,7 +514,7 @@ }, "recipe": { "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150607.941", "deps": [ @@ -531,7 +531,7 @@ }, "recipe": { "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150715.1404", "deps": [] @@ -544,7 +544,7 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1750", "deps": [] @@ -559,7 +559,7 @@ }, "recipe": { "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1915", "deps": [ @@ -576,7 +576,7 @@ }, "recipe": { "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150209.1626", "deps": [] @@ -591,7 +591,7 @@ }, "recipe": { "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.2226", "deps": [ @@ -608,7 +608,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.1159", "deps": [ @@ -626,7 +626,7 @@ }, "recipe": { "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131201.130", "deps": [] @@ -641,7 +641,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.1009", "deps": [ @@ -660,7 +660,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141208.908", "deps": [ @@ -677,7 +677,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150623.533", "deps": [] @@ -692,7 +692,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.814", "deps": [ @@ -710,7 +710,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121104.1302", "deps": [ @@ -727,7 +727,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150801.1144", "deps": [] @@ -742,7 +742,7 @@ }, "recipe": { "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.351", "deps": [ @@ -760,7 +760,7 @@ }, "recipe": { "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140121.1143", "deps": [] @@ -775,7 +775,7 @@ }, "recipe": { "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.2245", "deps": [] @@ -790,7 +790,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.839", "deps": [ @@ -809,7 +809,7 @@ }, "recipe": { "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140730.1449", "deps": [] @@ -824,7 +824,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131103.413", "deps": [] @@ -839,7 +839,7 @@ }, "recipe": { "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150919.530", "deps": [ @@ -859,7 +859,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150913.1933", "deps": [ @@ -881,7 +881,7 @@ }, "recipe": { "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.2223", "deps": [ @@ -898,7 +898,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141229.1329", "deps": [ @@ -917,7 +917,7 @@ }, "recipe": { "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131118.426", "deps": [] @@ -927,14 +927,14 @@ "tag": "fetchFromGitHub", "owner": "clojure-emacs", "repo": "inf-clojure", - "sha256": "1vjzykbh9fid490481zr913hzw2vyhzsym44pkqafzm9q27075mc", - "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548" + "sha256": "1b1w999gsz2w7djc46pcxchqzpkwvqg3cfsh3j8mhb1rvmh33m7a", + "rev": "54fe6de266db1bbdaa634ce7680ea8733971335c" }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151129.234", + "version": "20151224.1407", "deps": [ "clojure-mode", "emacs" @@ -950,7 +950,7 @@ }, "recipe": { "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140209.1235", "deps": [ @@ -968,7 +968,7 @@ }, "recipe": { "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140406.2019", "deps": [ @@ -985,7 +985,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150408.506", "deps": [ @@ -1002,7 +1002,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.830", "deps": [ @@ -1019,7 +1019,7 @@ }, "recipe": { "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.2337", "deps": [ @@ -1037,7 +1037,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140702.1009", "deps": [] @@ -1052,7 +1052,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1143", "deps": [ @@ -1069,7 +1069,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130522.1603", "deps": [ @@ -1086,7 +1086,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150614.246", "deps": [] @@ -1101,7 +1101,7 @@ }, "recipe": { "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.910", "deps": [ @@ -1118,7 +1118,7 @@ }, "recipe": { "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150225.242", "deps": [ @@ -1135,7 +1135,7 @@ }, "recipe": { "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.1111", "deps": [ @@ -1152,7 +1152,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150901.450", "deps": [ @@ -1170,7 +1170,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.412", "deps": [ @@ -1190,7 +1190,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.2246", "deps": [ @@ -1207,7 +1207,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150716.802", "deps": [ @@ -1225,7 +1225,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150812.347", "deps": [ @@ -1243,7 +1243,7 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1751", "deps": [] @@ -1258,7 +1258,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131019.2358", "deps": [] @@ -1273,7 +1273,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.432", "deps": [ @@ -1290,7 +1290,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.224", "deps": [ @@ -1307,7 +1307,7 @@ }, "recipe": { "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140627.307", "deps": [] @@ -1322,7 +1322,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140829.738", "deps": [] @@ -1337,7 +1337,7 @@ }, "recipe": { "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130615.1633", "deps": [] @@ -1352,7 +1352,7 @@ }, "recipe": { "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.1155", "deps": [ @@ -1369,7 +1369,7 @@ }, "recipe": { "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140805.505", "deps": [] @@ -1379,17 +1379,18 @@ "tag": "fetchFromGitHub", "owner": "emacs-pe", "repo": "jist.el", - "sha256": "0irfqrga1hzi8g1bji5mq01z63sp0dqnd8nf0jkf02vgaagrhdc8", - "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950" + "sha256": "0c53awaf93pxc8fn1wf6gkd46x1c0q98ygssz8gflp0a88fmm78g", + "rev": "6f36b550b65083ac4a6e824382891518b578e9f3" }, "recipe": { "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150927.1318", + "version": "20151221.1752", "deps": [ - "cl-lib", + "dash", "emacs", + "let-alist", "magit", "pkg-info", "request" @@ -1405,7 +1406,7 @@ }, "recipe": { "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.154", "deps": [] @@ -1419,7 +1420,7 @@ }, "recipe": { "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120510.1430", "deps": [] @@ -1434,7 +1435,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150630.916", "deps": [ @@ -1451,7 +1452,7 @@ }, "recipe": { "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1350", "deps": [] @@ -1466,7 +1467,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140603.2331", "deps": [ @@ -1485,7 +1486,7 @@ }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1523", "deps": [ @@ -1505,7 +1506,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.707", "deps": [ @@ -1526,11 +1527,28 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140215.314", "deps": [] }, + "helm-img-tiqav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "l3msh0", + "repo": "helm-img-tiqav", + "sha256": "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp", + "rev": "33a7e9508bc8f37d53320b56c92b53d321a57bb0" + }, + "recipe": { + "sha256": "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1722", + "deps": [ + "helm-img" + ] + }, "meta-presenter": { "fetch": { "tag": "fetchFromGitHub", @@ -1541,7 +1559,7 @@ }, "recipe": { "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.610", "deps": [] @@ -1556,7 +1574,7 @@ }, "recipe": { "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150827.1840", "deps": [] @@ -1571,7 +1589,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.2352", "deps": [ @@ -1589,7 +1607,7 @@ }, "recipe": { "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.341", "deps": [] @@ -1604,7 +1622,7 @@ }, "recipe": { "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130720.849", "deps": [] @@ -1619,7 +1637,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100510.2305", "deps": [] @@ -1634,7 +1652,7 @@ }, "recipe": { "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130828.1144", "deps": [] @@ -1649,7 +1667,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150516.919", "deps": [ @@ -1666,7 +1684,7 @@ }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.905", "deps": [ @@ -1686,7 +1704,7 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150815.1032", "deps": [] @@ -1699,7 +1717,7 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121026.950", "deps": [] @@ -1714,7 +1732,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151010.936", "deps": [] @@ -1729,7 +1747,7 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150603.1636", "deps": [] @@ -1744,7 +1762,7 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140227.929", "deps": [ @@ -1761,7 +1779,7 @@ }, "recipe": { "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130421.1434", "deps": [] @@ -1776,7 +1794,7 @@ }, "recipe": { "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150413.1518", "deps": [] @@ -1791,7 +1809,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.1530", "deps": [ @@ -1810,7 +1828,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150314.802", "deps": [ @@ -1828,7 +1846,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.2357", "deps": [ @@ -1846,7 +1864,7 @@ }, "recipe": { "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141221.249", "deps": [] @@ -1859,7 +1877,7 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1616", "deps": [] @@ -1874,7 +1892,7 @@ }, "recipe": { "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140301.802", "deps": [] @@ -1889,7 +1907,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151008.212", "deps": [ @@ -1906,7 +1924,7 @@ }, "recipe": { "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140104.1607", "deps": [] @@ -1916,14 +1934,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm", - "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", - "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" + "sha256": "0l7dzk4xa4nfyj943x4gqcn1brfznfyrdxfwf1v097fp4ix8654q", + "rev": "e6fbd80f9f21e7cdb5d530f7aba138ad1dc527ab" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.1416", + "version": "20151224.1416", "deps": [ "async", "cl-lib", @@ -1941,7 +1959,7 @@ }, "recipe": { "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.1112", "deps": [ @@ -1958,7 +1976,7 @@ }, "recipe": { "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.1503", "deps": [] @@ -1973,7 +1991,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.2136", "deps": [ @@ -1990,7 +2008,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1059", "deps": [] @@ -2005,7 +2023,7 @@ }, "recipe": { "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151102.843", "deps": [ @@ -2024,7 +2042,7 @@ }, "recipe": { "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150120.1240", "deps": [] @@ -2039,7 +2057,7 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150329.523", "deps": [ @@ -2057,7 +2075,7 @@ }, "recipe": { "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -2073,7 +2091,7 @@ }, "recipe": { "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090723.1019", "deps": [] @@ -2088,7 +2106,7 @@ }, "recipe": { "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140106.1939", "deps": [ @@ -2107,7 +2125,7 @@ }, "recipe": { "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131014.1707", "deps": [ @@ -2125,7 +2143,7 @@ }, "recipe": { "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -2140,7 +2158,7 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.659", "deps": [] @@ -2154,8 +2172,8 @@ "rev": "21248bd852c9520ec27692f286c5f43b50892b12" }, "recipe": { - "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.222", "deps": [ @@ -2174,7 +2192,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.1315", "deps": [] @@ -2189,7 +2207,7 @@ }, "recipe": { "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.305", "deps": [ @@ -2207,7 +2225,7 @@ }, "recipe": { "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150426.749", "deps": [ @@ -2224,7 +2242,7 @@ }, "recipe": { "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.15", "deps": [ @@ -2247,7 +2265,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.1448", "deps": [] @@ -2262,7 +2280,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.918", "deps": [] @@ -2277,7 +2295,7 @@ }, "recipe": { "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.2353", "deps": [ @@ -2294,7 +2312,7 @@ }, "recipe": { "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.523", "deps": [ @@ -2311,7 +2329,7 @@ }, "recipe": { "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121224.2049", "deps": [] @@ -2326,7 +2344,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150812.205", "deps": [] @@ -2341,7 +2359,7 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140329.1629", "deps": [ @@ -2358,7 +2376,7 @@ }, "recipe": { "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150903.903", "deps": [ @@ -2378,7 +2396,7 @@ }, "recipe": { "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140227.2236", "deps": [] @@ -2391,7 +2409,7 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130328.633", "deps": [] @@ -2406,7 +2424,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150701.1015", "deps": [] @@ -2421,7 +2439,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.933", "deps": [ @@ -2440,7 +2458,7 @@ }, "recipe": { "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130131.1302", "deps": [ @@ -2458,7 +2476,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.1425", "deps": [] @@ -2473,7 +2491,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150913.908", "deps": [ @@ -2491,7 +2509,7 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.941", "deps": [] @@ -2506,7 +2524,7 @@ }, "recipe": { "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140906.642", "deps": [ @@ -2524,7 +2542,7 @@ }, "recipe": { "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150309.129", "deps": [ @@ -2542,7 +2560,7 @@ }, "recipe": { "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140614.335", "deps": [ @@ -2559,7 +2577,7 @@ }, "recipe": { "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150516.1538", "deps": [] @@ -2574,7 +2592,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.959", "deps": [ @@ -2593,7 +2611,7 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -2602,15 +2620,15 @@ "fetch": { "tag": "fetchFromGitHub", "owner": "bbatsov", - "repo": "projectile", - "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", - "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" + "repo": "persp-projectile", + "sha256": "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5", + "rev": "83e03b1284ea36f37a24571abd6442a267408360" }, "recipe": { - "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150405.327", + "version": "20151220.630", "deps": [ "cl-lib", "perspective", @@ -2627,7 +2645,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150613.417", "deps": [] @@ -2642,7 +2660,7 @@ }, "recipe": { "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141021.1322", "deps": [] @@ -2657,7 +2675,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.1848", "deps": [ @@ -2674,7 +2692,7 @@ }, "recipe": { "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.719", "deps": [ @@ -2686,14 +2704,14 @@ "tag": "fetchFromGitHub", "owner": "kazu-yamamoto", "repo": "ghc-mod", - "sha256": "0s3d2h0fhsli2bq6q6kfaf8gng1wfff6rr1ms6smpg1sxd3k783n", - "rev": "2988749b844136148bdd35f239d3f4747813b821" + "sha256": "0ig6f0wfkcm1jfl3khsik0ggr3gypvvn8c3r3n1kgmy5s72r98cn", + "rev": "41b9c0bbf249d763f617dcdc052c49d5b7c98987" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151211.1843", + "version": "20151220.455", "deps": [ "haskell-mode" ] @@ -2708,7 +2726,7 @@ }, "recipe": { "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141023.337", "deps": [] @@ -2723,7 +2741,7 @@ }, "recipe": { "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130414.221", "deps": [ @@ -2740,7 +2758,7 @@ }, "recipe": { "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.221", "deps": [] @@ -2755,7 +2773,7 @@ }, "recipe": { "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151024.37", "deps": [ @@ -2772,7 +2790,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141203.2359", "deps": [ @@ -2789,7 +2807,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140111.1601", "deps": [] @@ -2804,7 +2822,7 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150412.941", "deps": [ @@ -2819,7 +2837,7 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120509.605", "deps": [] @@ -2834,7 +2852,7 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150516.348", "deps": [ @@ -2851,7 +2869,7 @@ }, "recipe": { "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.31", "deps": [] @@ -2864,7 +2882,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150727.1554", "deps": [ @@ -2882,8 +2900,8 @@ "rev": "38" }, "recipe": { - "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110926.1118", "deps": [ @@ -2900,7 +2918,7 @@ }, "recipe": { "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.415", "deps": [ @@ -2918,7 +2936,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150930.1234", "deps": [ @@ -2935,7 +2953,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090621.832", "deps": [] @@ -2948,7 +2966,7 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1602", "deps": [] @@ -2963,7 +2981,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.2050", "deps": [ @@ -2981,7 +2999,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.2106", "deps": [] @@ -2991,14 +3009,14 @@ "tag": "fetchFromGitHub", "owner": "greghendershott", "repo": "racket-mode", - "sha256": "0yshyfgdvpys38iqi4jqxa40gvwhc79njp0gq25n036kzarwjch8", - "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd" + "sha256": "0xjdf0zw8faf5ya7nsv8m6qiicwz268rb2y1z5ijknjhsjp2bwi6", + "rev": "ffb9904d4d9d69c69900151f96cb4d4a08657720" }, "recipe": { "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151207.2152", + "version": "20151218.2014", "deps": [ "emacs", "faceup", @@ -3015,7 +3033,7 @@ }, "recipe": { "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.1834", "deps": [ @@ -3033,7 +3051,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.301", "deps": [ @@ -3046,12 +3064,12 @@ "tag": "fetchFromGitHub", "owner": "jwiegley", "repo": "use-package", - "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", - "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + "sha256": "1kng5yzm73gz67znifjhzrr2zbcc7cyb2f1j703hmf33zb9naqhp", + "rev": "1d7e6ff5b73761c3b7180530da8bc433338d0cec" }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.1639", "deps": [ @@ -3068,7 +3086,7 @@ }, "recipe": { "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.120", "deps": [] @@ -3083,7 +3101,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141225.930", "deps": [ @@ -3100,7 +3118,7 @@ }, "recipe": { "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141109.1956", "deps": [ @@ -3117,7 +3135,7 @@ }, "recipe": { "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091203.1222", "deps": [] @@ -3132,7 +3150,7 @@ }, "recipe": { "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.848", "deps": [] @@ -3147,7 +3165,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1959", "deps": [] @@ -3162,7 +3180,7 @@ }, "recipe": { "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1141", "deps": [ @@ -3180,7 +3198,7 @@ }, "recipe": { "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131001.2318", "deps": [] @@ -3195,7 +3213,7 @@ }, "recipe": { "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141004.1752", "deps": [ @@ -3212,7 +3230,7 @@ }, "recipe": { "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131215.719", "deps": [] @@ -3227,7 +3245,7 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131229.2051", "deps": [ @@ -3244,7 +3262,7 @@ }, "recipe": { "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150126.603", "deps": [ @@ -3262,7 +3280,7 @@ }, "recipe": { "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.1015", "deps": [ @@ -3277,7 +3295,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1508", "deps": [ @@ -3294,7 +3312,7 @@ }, "recipe": { "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131023.1213", "deps": [] @@ -3309,7 +3327,7 @@ }, "recipe": { "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150324.1725", "deps": [] @@ -3324,7 +3342,7 @@ }, "recipe": { "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.1426", "deps": [] @@ -3339,7 +3357,7 @@ }, "recipe": { "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150904.1334", "deps": [ @@ -3356,7 +3374,7 @@ }, "recipe": { "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150125.441", "deps": [] @@ -3371,7 +3389,7 @@ }, "recipe": { "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131015.835", "deps": [ @@ -3389,7 +3407,7 @@ }, "recipe": { "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140314.628", "deps": [] @@ -3404,7 +3422,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.2319", "deps": [ @@ -3422,7 +3440,7 @@ }, "recipe": { "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.723", "deps": [] @@ -3437,7 +3455,7 @@ }, "recipe": { "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.2012", "deps": [ @@ -3454,7 +3472,7 @@ }, "recipe": { "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140410.1522", "deps": [] @@ -3469,7 +3487,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150114.1004", "deps": [] @@ -3484,7 +3502,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150831.716", "deps": [ @@ -3502,7 +3520,7 @@ }, "recipe": { "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.758", "deps": [] @@ -3517,7 +3535,7 @@ }, "recipe": { "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.134", "deps": [ @@ -3536,7 +3554,7 @@ }, "recipe": { "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.2148", "deps": [] @@ -3549,7 +3567,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.1047", "deps": [] @@ -3562,7 +3580,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -3577,7 +3595,7 @@ }, "recipe": { "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150121.1646", "deps": [ @@ -3594,7 +3612,7 @@ }, "recipe": { "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130513.251", "deps": [ @@ -3609,7 +3627,7 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120608.1335", "deps": [] @@ -3624,7 +3642,7 @@ }, "recipe": { "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130509.1255", "deps": [] @@ -3639,7 +3657,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150617.831", "deps": [ @@ -3657,7 +3675,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140504.357", "deps": [ @@ -3674,7 +3692,7 @@ }, "recipe": { "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.1815", "deps": [] @@ -3689,7 +3707,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.924", "deps": [ @@ -3708,7 +3726,7 @@ }, "recipe": { "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.839", "deps": [ @@ -3728,7 +3746,7 @@ }, "recipe": { "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131014.1621", "deps": [ @@ -3746,7 +3764,7 @@ }, "recipe": { "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130524.609", "deps": [] @@ -3761,7 +3779,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.800", "deps": [] @@ -3776,7 +3794,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150422.1039", "deps": [] @@ -3791,7 +3809,7 @@ }, "recipe": { "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.1304", "deps": [ @@ -3808,7 +3826,7 @@ }, "recipe": { "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150826.616", "deps": [ @@ -3827,7 +3845,7 @@ }, "recipe": { "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150207.717", "deps": [] @@ -3842,7 +3860,7 @@ }, "recipe": { "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140109.2146", "deps": [ @@ -3859,7 +3877,7 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150217.913", "deps": [] @@ -3874,7 +3892,7 @@ }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.946", "deps": [ @@ -3893,7 +3911,7 @@ }, "recipe": { "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141120.825", "deps": [ @@ -3910,7 +3928,7 @@ }, "recipe": { "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150427.1132", "deps": [] @@ -3925,7 +3943,7 @@ }, "recipe": { "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.629", "deps": [ @@ -3942,7 +3960,7 @@ }, "recipe": { "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140409.1801", "deps": [] @@ -3952,14 +3970,14 @@ "tag": "fetchFromGitHub", "owner": "abo-abo", "repo": "lispy", - "sha256": "134694ngr01nb8qihyclwc2cd93ipkwjbkmwdflsbi99gv9bkyxj", - "rev": "864a4efcc686601855823f0af750fa25f4dc2e8a" + "sha256": "0w5wwwffn3dhvdcr54jfh9l4kv99bkf0ck5ryjh165cjjy3y9z28", + "rev": "83a670d230d60112337d5b1c92bced20e3f43d1c" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.555", + "version": "20151226.1224", "deps": [ "ace-window", "emacs", @@ -3977,7 +3995,7 @@ }, "recipe": { "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141228.1605", "deps": [ @@ -3994,7 +4012,7 @@ }, "recipe": { "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.412", "deps": [] @@ -4009,7 +4027,7 @@ }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130526.1215", "deps": [ @@ -4027,7 +4045,7 @@ }, "recipe": { "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.925", "deps": [] @@ -4040,7 +4058,7 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1846", "deps": [] @@ -4055,7 +4073,7 @@ }, "recipe": { "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.1706", "deps": [ @@ -4075,7 +4093,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150523.1315", "deps": [ @@ -4092,7 +4110,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.301", "deps": [ @@ -4109,7 +4127,7 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150716.433", "deps": [ @@ -4127,7 +4145,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150525.416", "deps": [ @@ -4149,11 +4167,28 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141123.1136", "deps": [] }, + "platformio-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zachmassia", + "repo": "platformio-mode", + "sha256": "0xcmnla5cm5kk5cnjzszrwrlab98g4w8nfydvagbhfh5gzglqm4q", + "rev": "5fde4cb291790e174542423accdbe6674efb176b" + }, + "recipe": { + "sha256": "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.2142", + "deps": [ + "projectile" + ] + }, "w32-browser": { "fetch": { "tag": "fetchurl", @@ -4162,7 +4197,7 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1905", "deps": [] @@ -4177,7 +4212,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100419.1245", "deps": [] @@ -4192,7 +4227,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1243", "deps": [ @@ -4213,7 +4248,7 @@ }, "recipe": { "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.434", "deps": [ @@ -4229,7 +4264,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20051013.1256", "deps": [] @@ -4244,7 +4279,7 @@ }, "recipe": { "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140722.1621", "deps": [ @@ -4260,7 +4295,7 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1911", "deps": [] @@ -4275,7 +4310,7 @@ }, "recipe": { "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.1148", "deps": [ @@ -4293,7 +4328,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.815", "deps": [] @@ -4308,7 +4343,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1114", "deps": [ @@ -4325,7 +4360,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.1916", "deps": [ @@ -4345,7 +4380,7 @@ }, "recipe": { "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131208.124", "deps": [ @@ -4364,7 +4399,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130421.500", "deps": [ @@ -4377,14 +4412,14 @@ "tag": "fetchFromGitHub", "owner": "jaor", "repo": "geiser", - "sha256": "0b5rs1w0gcci0b8047n0s2m02khjhs9qsp0yn0jwrg4i46jn0vll", - "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570" + "sha256": "1sr053v8vdc4v7prbbz8dbwk84hravpcc3zyfsifghmv999iwrz3", + "rev": "8e75455dfbd46355d777c26366e7ccfcb59ace20" }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.2122", + "version": "20151226.2114", "deps": [] }, "tup-mode": { @@ -4397,7 +4432,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140410.1114", "deps": [] @@ -4412,7 +4447,7 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150625.1333", "deps": [] @@ -4425,7 +4460,7 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.833", "deps": [] @@ -4440,7 +4475,7 @@ }, "recipe": { "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130719.1557", "deps": [ @@ -4457,7 +4492,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.541", "deps": [ @@ -4474,7 +4509,7 @@ }, "recipe": { "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.225", "deps": [ @@ -4491,7 +4526,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1347", "deps": [ @@ -4509,7 +4544,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140906.1708", "deps": [] @@ -4524,7 +4559,7 @@ }, "recipe": { "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150820.338", "deps": [ @@ -4541,7 +4576,7 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130908.1224", "deps": [] @@ -4556,7 +4591,7 @@ }, "recipe": { "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150730.1354", "deps": [ @@ -4573,7 +4608,7 @@ }, "recipe": { "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150829.711", "deps": [ @@ -4590,7 +4625,7 @@ }, "recipe": { "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091203.1223", "deps": [] @@ -4603,7 +4638,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1902", "deps": [] @@ -4618,7 +4653,7 @@ }, "recipe": { "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141106.1551", "deps": [] @@ -4633,7 +4668,7 @@ }, "recipe": { "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.215", "deps": [] @@ -4646,7 +4681,7 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.916", "deps": [] @@ -4661,7 +4696,7 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150313.1405", "deps": [ @@ -4678,7 +4713,7 @@ }, "recipe": { "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1011", "deps": [ @@ -4693,7 +4728,7 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.551", "deps": [] @@ -4708,7 +4743,7 @@ }, "recipe": { "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150402.2209", "deps": [ @@ -4725,7 +4760,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130509.658", "deps": [ @@ -4744,7 +4779,7 @@ }, "recipe": { "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.456", "deps": [] @@ -4759,7 +4794,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.2205", "deps": [] @@ -4774,7 +4809,7 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140823.939", "deps": [ @@ -4791,7 +4826,7 @@ }, "recipe": { "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.832", "deps": [] @@ -4804,7 +4839,7 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140201.1745", "deps": [] @@ -4819,7 +4854,7 @@ }, "recipe": { "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140423.832", "deps": [] @@ -4834,7 +4869,7 @@ }, "recipe": { "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100210.952", "deps": [] @@ -4849,7 +4884,7 @@ }, "recipe": { "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120910.411", "deps": [] @@ -4864,7 +4899,7 @@ }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.505", "deps": [ @@ -4881,7 +4916,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150430.44", "deps": [ @@ -4898,7 +4933,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141005.613", "deps": [ @@ -4917,7 +4952,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150216.1542", "deps": [] @@ -4932,7 +4967,7 @@ }, "recipe": { "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150204.452", "deps": [ @@ -4950,7 +4985,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.642", "deps": [ @@ -4966,14 +5001,14 @@ "tag": "fetchFromGitHub", "owner": "xcwen", "repo": "ac-php", - "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z", - "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" + "sha256": "0gvb3bwp4nk8xxjhv17ss0f1pbdl20rhkah83x267ckksz534mh1", + "rev": "e574960b27000ed9b15b43bc15809d269e87d4fd" }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151209.2128", + "version": "20151224.2322", "deps": [ "auto-complete", "company", @@ -4992,14 +5027,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-ghq", - "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", - "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + "sha256": "0rlk9016rxj292kpxrnqgrm4xsjs4m4gk2fwh8z3fcihi013lxaw", + "rev": "2997646b2fb5421ab435b772dd2dbaeb92d70166" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151115.512", + "version": "20151221.623", "deps": [ "helm" ] @@ -5013,7 +5048,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.1359", "deps": [] @@ -5028,7 +5063,7 @@ }, "recipe": { "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1243", "deps": [] @@ -5043,7 +5078,7 @@ }, "recipe": { "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.143", "deps": [ @@ -5061,7 +5096,7 @@ }, "recipe": { "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1651", "deps": [] @@ -5076,7 +5111,7 @@ }, "recipe": { "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150124.2123", "deps": [] @@ -5086,14 +5121,14 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-helm-gtags", - "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", - "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + "sha256": "01l8d282jr191dak8zijqf5j12svp5rwnlqampnd2xdy39lw3800", + "rev": "28875c7b72798c357aa40d78a6a2d969b78e183a" }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151205.820", + "version": "20151222.919", "deps": [ "cl-lib", "helm" @@ -5104,14 +5139,14 @@ "tag": "fetchFromGitHub", "owner": "tumashu", "repo": "chinese-pyim", - "sha256": "0sw9iajxy6lmpr8d2g6409b84psa1xr5pikrb3i5qbbwpvz6q3w4", - "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6" + "sha256": "0kh3zn23qkw4i36ca28yly3h20i47kvf04cqywmchmic9nd8kh13", + "rev": "98e10e1e70b0eab713e1d764a5078f92917396b1" }, "recipe": { "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.1812", + "version": "20151227.154", "deps": [ "cl-lib", "pos-tip" @@ -5127,7 +5162,7 @@ }, "recipe": { "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140213.222", "deps": [] @@ -5142,7 +5177,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.920", "deps": [ @@ -5161,7 +5196,7 @@ }, "recipe": { "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1238", "deps": [ @@ -5178,7 +5213,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120920.1148", "deps": [] @@ -5193,7 +5228,7 @@ }, "recipe": { "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150113.2126", "deps": [] @@ -5203,14 +5238,14 @@ "tag": "fetchFromGitHub", "owner": "dakrone", "repo": "emacs-java-imports", - "sha256": "0canb3yp29n4bb31852hg8fbmwi1rw8r02ngd5f60mfpdrz2jqm6", - "rev": "90d1b813a88b93bea8733be3babac3ec238b54d1" + "sha256": "1iy1y2lslh7agix7srkvbqcxhg9kgjbm9m44kgpim3kyjzgagw6i", + "rev": "9d39496f437e27dabe0873d4fc158a14bb25ed67" }, "recipe": { "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.1821", + "version": "20151224.2013", "deps": [ "pcache", "s" @@ -5226,7 +5261,7 @@ }, "recipe": { "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.900", "deps": [ @@ -5246,7 +5281,7 @@ }, "recipe": { "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131013.1332", "deps": [ @@ -5259,12 +5294,12 @@ "tag": "fetchFromGitHub", "owner": "cacology", "repo": "private-diary", - "sha256": "02l86flh3pyvd8va3dkckf4whr8lab1iybgdb9k6dqsc6j46dcfh", - "rev": "9d2589e46a51ce256ded0542b9826f520ccfcb1a" + "sha256": "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn", + "rev": "0c86fb6150ad8ed14f94def3504f5a68f4147283" }, "recipe": { "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1057", "deps": [ @@ -5281,7 +5316,7 @@ }, "recipe": { "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141008.728", "deps": [ @@ -5298,7 +5333,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1015", "deps": [ @@ -5315,7 +5350,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150430.1955", "deps": [ @@ -5332,7 +5367,7 @@ }, "recipe": { "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -5349,7 +5384,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140605.1328", "deps": [] @@ -5364,7 +5399,7 @@ }, "recipe": { "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.936", "deps": [] @@ -5379,7 +5414,7 @@ }, "recipe": { "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140729.1152", "deps": [ @@ -5398,7 +5433,7 @@ }, "recipe": { "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1655", "deps": [ @@ -5415,7 +5450,7 @@ }, "recipe": { "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.444", "deps": [] @@ -5430,7 +5465,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141214.2203", "deps": [ @@ -5447,7 +5482,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.1858", "deps": [ @@ -5464,7 +5499,7 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141110.217", "deps": [] @@ -5479,7 +5514,7 @@ }, "recipe": { "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.447", "deps": [ @@ -5496,7 +5531,7 @@ }, "recipe": { "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120829.752", "deps": [] @@ -5509,7 +5544,7 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140813.319", "deps": [] @@ -5524,7 +5559,7 @@ }, "recipe": { "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141119.243", "deps": [] @@ -5539,7 +5574,7 @@ }, "recipe": { "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141016.1856", "deps": [] @@ -5554,7 +5589,7 @@ }, "recipe": { "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130731.1642", "deps": [] @@ -5569,7 +5604,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.2149", "deps": [ @@ -5586,7 +5621,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.1951", "deps": [ @@ -5598,14 +5633,14 @@ "tag": "fetchFromGitHub", "owner": "rexim", "repo": "gruber-darker-theme", - "sha256": "12klcl22npffx363bsx3sbndkbnz564yi38pk6iscps8gccyxjkm", - "rev": "25d52be23017f5a79d5eba53e767eab9d751819e" + "sha256": "0l6gkhzg0dn4q223gljh1jh305aa9n8rbf9h5gg5d1aygs7cb3ha", + "rev": "60d8262d8e38103568bbe58e2ece1d9a970fc15a" }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.126", + "version": "20151223.252", "deps": [] }, "orgbox": { @@ -5618,7 +5653,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140528.2026", "deps": [ @@ -5636,7 +5671,7 @@ }, "recipe": { "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140122.534", "deps": [] @@ -5651,7 +5686,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.154", "deps": [] @@ -5666,7 +5701,7 @@ }, "recipe": { "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1636", "deps": [ @@ -5684,7 +5719,7 @@ }, "recipe": { "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.2325", "deps": [ @@ -5701,7 +5736,7 @@ }, "recipe": { "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141208.755", "deps": [ @@ -5719,7 +5754,7 @@ }, "recipe": { "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.1600", "deps": [ @@ -5737,7 +5772,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150317.44", "deps": [ @@ -5757,7 +5792,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141010.1039", "deps": [] @@ -5772,7 +5807,7 @@ }, "recipe": { "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150111.623", "deps": [ @@ -5789,7 +5824,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.714", "deps": [] @@ -5799,14 +5834,14 @@ "tag": "fetchFromGitHub", "owner": "DarwinAwardWinner", "repo": "ido-ubiquitous", - "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", - "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151129.1726", + "version": "20151219.1036", "deps": [ "cl-lib", "emacs" @@ -5822,7 +5857,7 @@ }, "recipe": { "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140105.1626", "deps": [] @@ -5837,7 +5872,7 @@ }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.659", "deps": [ @@ -5856,7 +5891,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140320.224", "deps": [ @@ -5873,7 +5908,7 @@ }, "recipe": { "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.1604", "deps": [] @@ -5888,7 +5923,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140223.1132", "deps": [] @@ -5903,7 +5938,7 @@ }, "recipe": { "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1841", "deps": [ @@ -5916,12 +5951,12 @@ "tag": "fetchFromGitHub", "owner": "travisbhartwell", "repo": "nix-emacs", - "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", - "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.1809", "deps": [ @@ -5939,7 +5974,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.38", "deps": [ @@ -5951,14 +5986,14 @@ "fetch": { "tag": "fetchgit", "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", - "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341", - "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809" + "sha256": "28022465db474430300c3776165eb2cb7a243c476332da09d7558bc3051b2448", + "rev": "26e4696de28a12d9ac2d3af43bedc871f47f4dad" }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151201.1443", + "version": "20151219.1249", "deps": [ "json", "request" @@ -5974,7 +6009,7 @@ }, "recipe": { "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.526", "deps": [] @@ -5984,14 +6019,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-hatena-bookmark", - "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", - "rev": "497d33632f195354eaa24670db0804c846b7261b" + "sha256": "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f", + "rev": "1ba352b858869a32323d4e6f9ca4b3eae055809e" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151115.826", + "version": "20151221.620", "deps": [ "helm" ] @@ -6006,7 +6041,7 @@ }, "recipe": { "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.1528", "deps": [ @@ -6021,14 +6056,14 @@ "tag": "fetchFromGitHub", "owner": "paddymcall", "repo": "xquery-tool.el", - "sha256": "06mcz6ppr1cc5dfbxqbxhzwzmgpi8m3wbncckq5qi9xq5wvbah1d", - "rev": "af60aba324819ff6692f89f1c85aac59b820bf18" + "sha256": "00b8nndvgpa20vmdc9vcig65ij6pmd9q3wfmczj1qbkz2q00kn5a", + "rev": "3d43bf6d18ccf5553a5a80b80b99ad1fb8b9ccb2" }, "recipe": { "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.907", + "version": "20151221.450", "deps": [] }, "gruvbox-theme": { @@ -6036,14 +6071,14 @@ "tag": "fetchFromGitHub", "owner": "Greduan", "repo": "emacs-theme-gruvbox", - "sha256": "1i9qjv39w6kvk7r829gagp4sbc1w0hp0qgnqxya1jac56h6ylhky", - "rev": "7cc236f7e357d3e53914f46d98a29588d2e7de62" + "sha256": "04jknwkax9gdmzz0yq0m21grl9c43vr3abdam3g8zjh5sjx5gs14", + "rev": "6af232a46073235ccf81cf99f46ee600fea7ba3e" }, "recipe": { "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.934", + "version": "20151227.313", "deps": [] }, "java-snippets": { @@ -6056,7 +6091,7 @@ }, "recipe": { "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140728.36", "deps": [ @@ -6073,7 +6108,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.915", "deps": [ @@ -6093,7 +6128,7 @@ }, "recipe": { "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.1044", "deps": [] @@ -6108,7 +6143,7 @@ }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.554", "deps": [ @@ -6125,7 +6160,7 @@ }, "recipe": { "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140102.1423", "deps": [] @@ -6140,7 +6175,7 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150525.1129", "deps": [ @@ -6157,7 +6192,7 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.2043", "deps": [ @@ -6173,7 +6208,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1552", "deps": [ @@ -6190,7 +6225,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131230.419", "deps": [] @@ -6205,7 +6240,7 @@ }, "recipe": { "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140626.235", "deps": [] @@ -6220,7 +6255,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.440", "deps": [ @@ -6240,7 +6275,7 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20081011.1526", "deps": [] @@ -6253,7 +6288,7 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101129.2052", "deps": [] @@ -6268,7 +6303,7 @@ }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.1316", "deps": [ @@ -6286,7 +6321,7 @@ }, "recipe": { "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.2316", "deps": [ @@ -6299,14 +6334,14 @@ "tag": "fetchFromGitHub", "owner": "zonuexe", "repo": "magic-filetype.el", - "sha256": "1q5bjk9dzq8my804kd6i185522mxdkwrh2lhc2nvjbj4idx7rgll", - "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e" + "sha256": "1ycqhmi18yjniw6w258rhxcc70ngq51vjlafx0bcs1aw1px97z5s", + "rev": "bffe69c70565c534bcc245cfdc2781d85e4edb68" }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151029.1057", + "version": "20151224.715", "deps": [ "emacs", "s" @@ -6322,7 +6357,7 @@ }, "recipe": { "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.641", "deps": [ @@ -6339,7 +6374,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150422.953", "deps": [] @@ -6349,14 +6384,14 @@ "tag": "fetchFromGitHub", "owner": "cadadr", "repo": "paper-theme", - "sha256": "0mv8biyv3ydgy3hhr30p57348g93swdwnf0vmxnrbpjprk6a4w4i", - "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182" + "sha256": "115j0zg3gfbgrl62h1sx7jaxsnd484sb1b14jqz185i12lrca506", + "rev": "37b1b16901231854b31b525f0796958c82aa8565" }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151025.1000", + "version": "20151225.732", "deps": [ "emacs", "hexrgb" @@ -6372,7 +6407,7 @@ }, "recipe": { "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.947", "deps": [] @@ -6387,7 +6422,7 @@ }, "recipe": { "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130528.2227", "deps": [ @@ -6402,7 +6437,7 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.2036", "deps": [] @@ -6417,7 +6452,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140127.1246", "deps": [ @@ -6436,7 +6471,7 @@ }, "recipe": { "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1350", "deps": [] @@ -6451,7 +6486,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150821.2344", "deps": [ @@ -6468,7 +6503,7 @@ }, "recipe": { "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.407", "deps": [] @@ -6483,7 +6518,7 @@ }, "recipe": { "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150131.352", "deps": [ @@ -6500,7 +6535,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.528", "deps": [ @@ -6518,7 +6553,7 @@ }, "recipe": { "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140107.1004", "deps": [] @@ -6533,7 +6568,7 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.2227", "deps": [ @@ -6552,7 +6587,7 @@ }, "recipe": { "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150115.1301", "deps": [ @@ -6572,7 +6607,7 @@ }, "recipe": { "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1137", "deps": [ @@ -6590,7 +6625,7 @@ }, "recipe": { "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131223.700", "deps": [ @@ -6607,7 +6642,7 @@ }, "recipe": { "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120223.1608", "deps": [] @@ -6622,7 +6657,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130409.1249", "deps": [ @@ -6639,7 +6674,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150601.206", "deps": [] @@ -6654,7 +6689,7 @@ }, "recipe": { "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140208.914", "deps": [] @@ -6669,7 +6704,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131219.2239", "deps": [] @@ -6684,7 +6719,7 @@ }, "recipe": { "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.1357", "deps": [] @@ -6699,7 +6734,7 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131127.206", "deps": [ @@ -6714,7 +6749,7 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150403.1121", "deps": [] @@ -6729,7 +6764,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.653", "deps": [ @@ -6748,7 +6783,7 @@ }, "recipe": { "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151129.833", "deps": [ @@ -6760,12 +6795,12 @@ "tag": "fetchFromGitHub", "owner": "dimitri", "repo": "el-get", - "sha256": "0ppcja9mhjm0ymln72nigilkl0jj9mwxclw3v5djdcfq0xp1mc77", - "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e" + "sha256": "07c7rik31zxqck3wprdgww41pr1f08knj169bxrn59ayla7h8yy5", + "rev": "ec946c9b6df2565bed80ee4e940502d804d1ef10" }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.1015", "deps": [] @@ -6780,7 +6815,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120829.710", "deps": [ @@ -6797,7 +6832,7 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141121.1230", "deps": [] @@ -6810,7 +6845,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1550", "deps": [ @@ -6825,7 +6860,7 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150402.1829", "deps": [] @@ -6840,7 +6875,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150328.118", "deps": [] @@ -6855,7 +6890,7 @@ }, "recipe": { "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130329.1748", "deps": [ @@ -6872,7 +6907,7 @@ }, "recipe": { "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1813", "deps": [ @@ -6889,7 +6924,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140816.1148", "deps": [] @@ -6904,7 +6939,7 @@ }, "recipe": { "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.2226", "deps": [ @@ -6926,7 +6961,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151019.1035", "deps": [ @@ -6943,7 +6978,7 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140728.1736", "deps": [] @@ -6956,7 +6991,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150116.2302", "deps": [] @@ -6969,7 +7004,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130407.1320", "deps": [] @@ -6984,7 +7019,7 @@ }, "recipe": { "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.405", "deps": [] @@ -6998,7 +7033,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1120", "deps": [ @@ -7016,7 +7051,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.334", "deps": [ @@ -7033,7 +7068,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150523.1003", "deps": [] @@ -7048,7 +7083,7 @@ }, "recipe": { "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121208.558", "deps": [] @@ -7063,7 +7098,7 @@ }, "recipe": { "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1433", "deps": [ @@ -7081,7 +7116,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.329", "deps": [ @@ -7099,7 +7134,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.1116", "deps": [ @@ -7117,7 +7152,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140830.1721", "deps": [ @@ -7134,7 +7169,7 @@ }, "recipe": { "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121017.57", "deps": [] @@ -7144,12 +7179,12 @@ "tag": "fetchFromGitHub", "owner": "clojure-emacs", "repo": "clj-refactor.el", - "sha256": "1xvhypskaap9rlvza34ad8bry1g3zr53wf8a3zbxj024lbw37ay2", - "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7" + "sha256": "1wp4pbvj2llc72ypznq5dg9fisaa90g78kqjc29xczz30hkj3dji", + "rev": "76508499cbd1c69751a7d1437f703c4b2734023b" }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.400", "deps": [ @@ -7175,7 +7210,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150922.905", "deps": [] @@ -7190,7 +7225,7 @@ }, "recipe": { "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.407", "deps": [ @@ -7208,7 +7243,7 @@ }, "recipe": { "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141108.2315", "deps": [ @@ -7226,7 +7261,7 @@ }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1311", "deps": [ @@ -7245,7 +7280,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1012", "deps": [ @@ -7264,7 +7299,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140625.650", "deps": [] @@ -7279,7 +7314,7 @@ }, "recipe": { "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1651", "deps": [ @@ -7296,7 +7331,7 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151102.943", "deps": [] @@ -7305,15 +7340,15 @@ "fetch": { "tag": "fetchFromGitHub", "owner": "abingham", - "repo": "traad", - "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", - "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" + "repo": "emacs-traad", + "sha256": "0sr159v18x7xp2rqq2lr4ir15ksc6xyh96whipxzbi2qnvx3j3xg", + "rev": "5affdb2278228566007d189ca950a15d1c7e509e" }, "recipe": { - "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150106.815", + "version": "20151226.134", "deps": [ "deferred", "popup", @@ -7332,7 +7367,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150731.1046", "deps": [] @@ -7347,7 +7382,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140620.1609", "deps": [] @@ -7362,7 +7397,7 @@ }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130711.1239", "deps": [ @@ -7379,7 +7414,7 @@ }, "recipe": { "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140107.422", "deps": [ @@ -7394,7 +7429,7 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121115.443", "deps": [] @@ -7409,7 +7444,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.15", "deps": [ @@ -7423,14 +7458,14 @@ "tag": "fetchFromGitHub", "owner": "defunkt", "repo": "coffee-mode", - "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5", - "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" + "sha256": "03f8dvajaz6bf3mzfpgcvl0mc79jadlk7419whawcfgzlp9lq676", + "rev": "1b938ba9100aa67a0e0ce22c258033bbad50a45d" }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.828", + "version": "20151227.753", "deps": [ "cl-lib", "emacs" @@ -7444,7 +7479,7 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110722.1051", "deps": [] @@ -7454,14 +7489,14 @@ "tag": "fetchFromGitHub", "owner": "Fuco1", "repo": "smartparens", - "sha256": "1zs6jxl7a9hwap78w81s2h62jicikn1lyj0yxiiz0gll428p3rnj", - "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3" + "sha256": "0bmv079l8sak9afnjkf71f180i72l5cch49ckahxrdwwwhglh9a9", + "rev": "aa35628d4ad8cf4bcc2f9654f6fbf261327c75ae" }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.1707", + "version": "20151226.1756", "deps": [ "cl-lib", "dash" @@ -7477,7 +7512,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.1029", "deps": [ @@ -7496,7 +7531,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140512.900", "deps": [] @@ -7511,7 +7546,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.126", "deps": [ @@ -7529,7 +7564,7 @@ }, "recipe": { "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141028.218", "deps": [] @@ -7539,14 +7574,14 @@ "tag": "fetchFromGitHub", "owner": "cqql", "repo": "dictcc.el", - "sha256": "0jv4r9l8n7k2m85f4nnj6igsav4hmaq41gi1mp662mgmgfpaf0wl", - "rev": "5cc898de535536380e1031b67421bd2a00cdd689" + "sha256": "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v", + "rev": "1fd76499cf5d2045e8594aec3c0b62168802f887" }, "recipe": { "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150731.455", + "version": "20151221.557", "deps": [ "cl-lib", "dash", @@ -7565,7 +7600,7 @@ }, "recipe": { "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.1226", "deps": [ @@ -7583,7 +7618,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.441", "deps": [ @@ -7600,7 +7635,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.455", "deps": [] @@ -7615,7 +7650,7 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.1015", "deps": [] @@ -7628,7 +7663,7 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.720", "deps": [] @@ -7643,7 +7678,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.101", "deps": [] @@ -7658,7 +7693,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130506.8", "deps": [ @@ -7677,7 +7712,7 @@ }, "recipe": { "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.847", "deps": [] @@ -7692,7 +7727,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150601.542", "deps": [] @@ -7707,7 +7742,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150601.1209", "deps": [] @@ -7722,7 +7757,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150416.1458", "deps": [] @@ -7737,7 +7772,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150824.1800", "deps": [] @@ -7752,7 +7787,7 @@ }, "recipe": { "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.118", "deps": [ @@ -7769,7 +7804,7 @@ }, "recipe": { "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131208.1114", "deps": [ @@ -7782,14 +7817,14 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-git-gutter", - "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", - "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + "sha256": "1pjvy4r1wrvqsqlxssrkw5c5qn57icgsz7p7fh6qkj9dfpszg8ad", + "rev": "cb2b341162447bc04b6f561dbb2e5add9a24c134" }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.203", + "version": "20151226.2202", "deps": [ "cl-lib", "emacs" @@ -7805,7 +7840,7 @@ }, "recipe": { "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.604", "deps": [ @@ -7820,7 +7855,7 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091012.1230", "deps": [] @@ -7835,7 +7870,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150313.1012", "deps": [ @@ -7852,7 +7887,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.141", "deps": [] @@ -7867,7 +7902,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.728", "deps": [ @@ -7890,7 +7925,7 @@ }, "recipe": { "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150506.2052", "deps": [] @@ -7905,7 +7940,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.1300", "deps": [ @@ -7923,7 +7958,7 @@ }, "recipe": { "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.432", "deps": [] @@ -7938,7 +7973,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1023", "deps": [] @@ -7953,7 +7988,7 @@ }, "recipe": { "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150119.2033", "deps": [] @@ -7963,14 +7998,14 @@ "tag": "fetchFromGitHub", "owner": "vapniks", "repo": "bbdb-ext", - "sha256": "09fdw5byqcjpnh3qjngp171695y6zpkgl2hyvrxha1mpcx7v1lr4", - "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc" + "sha256": "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g", + "rev": "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55" }, "recipe": { "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20130513.1352", + "version": "20151220.1413", "deps": [ "bbdb" ] @@ -7985,7 +8020,7 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1513", "deps": [ @@ -8000,7 +8035,7 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141021.1338", "deps": [] @@ -8015,7 +8050,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150909.2039", "deps": [] @@ -8030,7 +8065,7 @@ }, "recipe": { "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140118.957", "deps": [ @@ -8047,7 +8082,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140818.255", "deps": [] @@ -8062,7 +8097,7 @@ }, "recipe": { "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150917.1802", "deps": [ @@ -8079,7 +8114,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141204.1541", "deps": [] @@ -8093,7 +8128,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.2103", "deps": [] @@ -8108,7 +8143,7 @@ }, "recipe": { "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.1026", "deps": [] @@ -8123,7 +8158,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1658", "deps": [ @@ -8140,7 +8175,7 @@ }, "recipe": { "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130301.148", "deps": [] @@ -8154,7 +8189,7 @@ }, "recipe": { "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.1700", "deps": [ @@ -8172,7 +8207,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150404.951", "deps": [] @@ -8186,8 +8221,8 @@ "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { - "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1224", "deps": [ @@ -8205,7 +8240,7 @@ }, "recipe": { "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150607.945", "deps": [ @@ -8222,7 +8257,7 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.1420", "deps": [] @@ -8237,7 +8272,7 @@ }, "recipe": { "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140909.38", "deps": [ @@ -8252,7 +8287,7 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140807.1550", "deps": [] @@ -8267,7 +8302,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150730.1408", "deps": [ @@ -8285,7 +8320,7 @@ }, "recipe": { "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.438", "deps": [] @@ -8300,7 +8335,7 @@ }, "recipe": { "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150522.2119", "deps": [] @@ -8315,7 +8350,7 @@ }, "recipe": { "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.338", "deps": [ @@ -8332,7 +8367,7 @@ }, "recipe": { "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150812.1141", "deps": [] @@ -8347,7 +8382,7 @@ }, "recipe": { "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.406", "deps": [] @@ -8362,7 +8397,7 @@ }, "recipe": { "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.17", "deps": [] @@ -8377,7 +8412,7 @@ }, "recipe": { "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141231.1407", "deps": [ @@ -8396,7 +8431,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150115.1623", "deps": [ @@ -8415,7 +8450,7 @@ }, "recipe": { "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130321.2314", "deps": [] @@ -8430,7 +8465,7 @@ }, "recipe": { "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150213.2142", "deps": [ @@ -8448,7 +8483,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150826.1732", "deps": [ @@ -8469,7 +8504,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150102.912", "deps": [] @@ -8484,7 +8519,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.534", "deps": [ @@ -8502,7 +8537,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.1646", "deps": [ @@ -8519,7 +8554,7 @@ }, "recipe": { "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.612", "deps": [] @@ -8529,14 +8564,14 @@ "tag": "fetchFromGitLab", "owner": "python-mode-devs", "repo": "python-mode", - "sha256": "1204804m31kfsb0vlfm6ndvxs16maqpghw96s8wmvyg16s8vnczj", - "rev": "c6dd413218221a0b7c85d12b6733229fac8f7788" + "sha256": "1x1nf3xsv4wzahqjzaavjrh1zjvf67h6kwyz6fx6ijycyx52bcwr", + "rev": "2ead7e73280f42ee8f18368e093b49ae839a643d" }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151219.555", + "version": "20151226.1231", "deps": [] }, "ob-sml": { @@ -8549,7 +8584,7 @@ }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130829.1343", "deps": [ @@ -8566,7 +8601,7 @@ }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1227", "deps": [ @@ -8585,7 +8620,7 @@ }, "recipe": { "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150119.1441", "deps": [] @@ -8600,7 +8635,7 @@ }, "recipe": { "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150725.909", "deps": [] @@ -8615,7 +8650,7 @@ }, "recipe": { "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131229.1011", "deps": [ @@ -8632,7 +8667,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150811.806", "deps": [ @@ -8650,7 +8685,7 @@ }, "recipe": { "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.1727", "deps": [] @@ -8665,7 +8700,7 @@ }, "recipe": { "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -8680,7 +8715,7 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150228.1213", "deps": [] @@ -8695,7 +8730,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140815.1813", "deps": [ @@ -8711,7 +8746,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1820", "deps": [] @@ -8721,11 +8756,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53195" + "rev": "53351" }, "recipe": { "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150424.952", "deps": [] @@ -8740,7 +8775,7 @@ }, "recipe": { "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141127.447", "deps": [] @@ -8755,7 +8790,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130823.2254", "deps": [] @@ -8769,7 +8804,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110911.504", "deps": [] @@ -8784,7 +8819,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150409.1934", "deps": [ @@ -8801,7 +8836,7 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150410.1110", "deps": [] @@ -8816,7 +8851,7 @@ }, "recipe": { "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1619", "deps": [ @@ -8833,7 +8868,7 @@ }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150519.1524", "deps": [] @@ -8848,7 +8883,7 @@ }, "recipe": { "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131020.1354", "deps": [ @@ -8861,14 +8896,14 @@ "tag": "fetchFromGitHub", "owner": "auto-complete", "repo": "popup-el", - "sha256": "18yhvcnp669xrwgxdjm1vrnv7f6lgg1i42vpkxnmj0fy8bzndqf1", - "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc" + "sha256": "19sbdxs6l66nflfb4kmx4lb6z0shwpfq79b5h9hhi0xr70xacd4b", + "rev": "004d58c47f6406b6555cf112f8a6eed6114cb63b" }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151125.742", + "version": "20151222.1539", "deps": [ "cl-lib" ] @@ -8883,7 +8918,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.527", "deps": [ @@ -8900,7 +8935,7 @@ }, "recipe": { "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150419.649", "deps": [ @@ -8917,7 +8952,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150423.722", "deps": [ @@ -8935,7 +8970,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.1206", "deps": [ @@ -8953,7 +8988,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121104.1300", "deps": [ @@ -8970,7 +9005,7 @@ }, "recipe": { "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.804", "deps": [] @@ -8985,7 +9020,7 @@ }, "recipe": { "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.912", "deps": [] @@ -9000,11 +9035,29 @@ }, "recipe": { "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.920", "deps": [] }, + "helm-xcdoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fujimisakari", + "repo": "emacs-helm-xcdoc", + "sha256": "1519hknpa9j4ybdsx3a39zcsac4nvpwivydqlgfyfilyryxkwns8", + "rev": "fe779cc0a0b79fb6690972d54f36e3f847e39e2f" + }, + "recipe": { + "sha256": "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.2126", + "deps": [ + "emacs", + "helm" + ] + }, "ponylang-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -9015,7 +9068,7 @@ }, "recipe": { "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.450", "deps": [ @@ -9032,7 +9085,7 @@ }, "recipe": { "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.1713", "deps": [] @@ -9047,7 +9100,7 @@ }, "recipe": { "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140413.1625", "deps": [] @@ -9062,7 +9115,7 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.816", "deps": [] @@ -9075,7 +9128,7 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.659", "deps": [] @@ -9090,7 +9143,7 @@ }, "recipe": { "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150716.824", "deps": [] @@ -9105,7 +9158,7 @@ }, "recipe": { "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140730.447", "deps": [] @@ -9120,7 +9173,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.2256", "deps": [ @@ -9140,7 +9193,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141230.738", "deps": [] @@ -9155,7 +9208,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.2143", "deps": [] @@ -9170,7 +9223,7 @@ }, "recipe": { "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140619.1102", "deps": [] @@ -9185,7 +9238,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1145", "deps": [ @@ -9197,6 +9250,21 @@ "rake" ] }, + "super-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "super-save", + "sha256": "1pq71simdb4pcbzzavlxdfbgh548m15f493h821k04n67ydzlmj3", + "rev": "4eb8aef705237d706b30cf722c5ad4909ea3acf1" + }, + "recipe": { + "sha256": "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.139", + "deps": [] + }, "furl": { "fetch": { "tag": "fetchhg", @@ -9206,7 +9274,7 @@ }, "recipe": { "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110112.1907", "deps": [] @@ -9221,7 +9289,7 @@ }, "recipe": { "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150707.1044", "deps": [ @@ -9238,7 +9306,7 @@ }, "recipe": { "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130423.1048", "deps": [ @@ -9255,7 +9323,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120406.1551", "deps": [] @@ -9270,7 +9338,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130907.332", "deps": [] @@ -9285,7 +9353,7 @@ }, "recipe": { "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150105.1636", "deps": [] @@ -9300,7 +9368,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121001.2245", "deps": [] @@ -9310,12 +9378,12 @@ "tag": "fetchFromGitHub", "owner": "HKey", "repo": "keyset", - "sha256": "1i17hm00ba7kf23cgb15hmxn0dgwmf00a5awqn5p76kfzf1ashpy", - "rev": "727661420ce4b2c67c2dc6188d2822c22761904a" + "sha256": "1kkp3frsk644djmdwxq3l1m88690gch3g8pijlzv566xrwkd903j", + "rev": "0a186c3316fda5baa72ae1fdf50c31e00761cc21" }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.2330", "deps": [ @@ -9328,12 +9396,12 @@ "tag": "fetchFromGitHub", "owner": "editorconfig", "repo": "editorconfig-emacs", - "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", - "rev": "301d67b26098d048ff7235c0878252e80becc7e0" + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1035", "deps": [ @@ -9350,7 +9418,7 @@ }, "recipe": { "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131031.1832", "deps": [ @@ -9367,7 +9435,7 @@ }, "recipe": { "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130609.443", "deps": [ @@ -9382,7 +9450,7 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150519.1147", "deps": [] @@ -9397,7 +9465,7 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140729.603", "deps": [ @@ -9415,7 +9483,7 @@ }, "recipe": { "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.305", "deps": [ @@ -9432,7 +9500,7 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140927.29", "deps": [] @@ -9445,7 +9513,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150509.1607", "deps": [ @@ -9462,7 +9530,7 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150208.2015", "deps": [] @@ -9475,7 +9543,7 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.627", "deps": [] @@ -9490,7 +9558,7 @@ }, "recipe": { "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130126.1823", "deps": [] @@ -9505,7 +9573,7 @@ }, "recipe": { "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150325.918", "deps": [ @@ -9522,7 +9590,7 @@ }, "recipe": { "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150621.623", "deps": [ @@ -9539,7 +9607,7 @@ }, "recipe": { "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150119.1554", "deps": [] @@ -9554,7 +9622,7 @@ }, "recipe": { "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140707.720", "deps": [ @@ -9572,7 +9640,7 @@ }, "recipe": { "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141012.217", "deps": [] @@ -9587,7 +9655,7 @@ }, "recipe": { "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.334", "deps": [ @@ -9604,7 +9672,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.853", "deps": [ @@ -9623,7 +9691,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151022.1950", "deps": [ @@ -9636,14 +9704,14 @@ "tag": "fetchFromGitHub", "owner": "chrisbarrett", "repo": "skeletor.el", - "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", - "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + "sha256": "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq", + "rev": "8dffccd773d6c8e73ea3d9c1de689634cbf427d4" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151212.10", + "version": "20151220.2254", "deps": [ "cl-lib", "dash", @@ -9663,7 +9731,7 @@ }, "recipe": { "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150502.1528", "deps": [] @@ -9673,14 +9741,14 @@ "tag": "fetchFromGitHub", "owner": "abo-abo", "repo": "swiper", - "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", - "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" + "sha256": "1262k48ky88m3jgdryyxm9dqzsd2lc17vcra93lp3yrr6iqn55dl", + "rev": "d74fab4a5b98910bd09956d3cb9b3376d6287840" }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151207.519", + "version": "20151227.301", "deps": [ "emacs", "swiper" @@ -9696,13 +9764,32 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.1751", "deps": [ "emacs" ] }, + "popup-imenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "popup-imenu", + "sha256": "0pkaic2l0xk2nsqcvxgxqbk152hd42h21j3z1ldgmpy1162viw7z", + "rev": "2a03162d9439d80f2eeca1fac14215af0d1b77e2" + }, + "recipe": { + "sha256": "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1909", + "deps": [ + "dash", + "flx-ido", + "popup" + ] + }, "google-c-style": { "fetch": { "tag": "fetchFromGitHub", @@ -9713,7 +9800,7 @@ }, "recipe": { "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140929.1318", "deps": [] @@ -9728,7 +9815,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.744", "deps": [] @@ -9743,7 +9830,7 @@ }, "recipe": { "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.1531", "deps": [ @@ -9760,7 +9847,7 @@ }, "recipe": { "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150729.2110", "deps": [] @@ -9775,7 +9862,7 @@ }, "recipe": { "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141227.1530", "deps": [ @@ -9793,7 +9880,7 @@ }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.1210", "deps": [ @@ -9812,7 +9899,7 @@ }, "recipe": { "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131110.741", "deps": [ @@ -9831,7 +9918,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.236", "deps": [ @@ -9849,7 +9936,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120928.1545", "deps": [] @@ -9864,7 +9951,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.605", "deps": [ @@ -9882,7 +9969,7 @@ }, "recipe": { "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140205.2151", "deps": [] @@ -9897,7 +9984,7 @@ }, "recipe": { "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.842", "deps": [ @@ -9913,7 +10000,7 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.1438", "deps": [] @@ -9928,7 +10015,7 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -9942,9 +10029,9 @@ }, "recipe": { "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151209.1748", + "version": "20140513.1941", "deps": [ "stem", "w3m" @@ -9960,7 +10047,7 @@ }, "recipe": { "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.1431", "deps": [ @@ -9977,7 +10064,7 @@ }, "recipe": { "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.1640", "deps": [ @@ -9994,7 +10081,7 @@ }, "recipe": { "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141115.143", "deps": [] @@ -10009,7 +10096,7 @@ }, "recipe": { "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.747", "deps": [] @@ -10024,7 +10111,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141120.149", "deps": [] @@ -10039,7 +10126,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140626.1616", "deps": [ @@ -10056,7 +10143,7 @@ }, "recipe": { "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150628.1842", "deps": [] @@ -10071,7 +10158,7 @@ }, "recipe": { "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.54", "deps": [] @@ -10086,7 +10173,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150721.1854", "deps": [ @@ -10105,7 +10192,7 @@ }, "recipe": { "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130620.1446", "deps": [ @@ -10120,7 +10207,7 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20081128.906", "deps": [] @@ -10135,7 +10222,7 @@ }, "recipe": { "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140902.1602", "deps": [ @@ -10152,7 +10239,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141203.1224", "deps": [ @@ -10169,7 +10256,7 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.1636", "deps": [] @@ -10184,7 +10271,7 @@ }, "recipe": { "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140310.1100", "deps": [ @@ -10201,7 +10288,7 @@ }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.2333", "deps": [] @@ -10216,7 +10303,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1257", "deps": [] @@ -10231,7 +10318,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150105.705", "deps": [] @@ -10246,7 +10333,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.821", "deps": [] @@ -10261,7 +10348,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140604.1147", "deps": [ @@ -10279,7 +10366,7 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130720.533", "deps": [ @@ -10296,7 +10383,7 @@ }, "recipe": { "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121129.1452", "deps": [] @@ -10309,7 +10396,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1534", "deps": [ @@ -10326,7 +10413,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150405.1808", "deps": [ @@ -10344,7 +10431,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150608.1923", "deps": [ @@ -10361,7 +10448,7 @@ }, "recipe": { "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131014.129", "deps": [ @@ -10379,7 +10466,7 @@ }, "recipe": { "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130219.419", "deps": [] @@ -10394,7 +10481,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130520.1155", "deps": [] @@ -10409,7 +10496,7 @@ }, "recipe": { "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150528.1536", "deps": [ @@ -10427,7 +10514,7 @@ }, "recipe": { "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.2107", "deps": [] @@ -10442,7 +10529,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140302.613", "deps": [ @@ -10461,7 +10548,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.1314", "deps": [ @@ -10483,7 +10570,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20080502.1152", "deps": [] @@ -10498,7 +10585,7 @@ }, "recipe": { "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150628.2133", "deps": [ @@ -10518,7 +10605,7 @@ }, "recipe": { "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131122.1527", "deps": [] @@ -10531,7 +10618,7 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130605.1239", "deps": [] @@ -10546,7 +10633,7 @@ }, "recipe": { "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.139", "deps": [] @@ -10561,7 +10648,7 @@ }, "recipe": { "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140816.1208", "deps": [ @@ -10578,7 +10665,7 @@ }, "recipe": { "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150516.355", "deps": [] @@ -10593,7 +10680,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150531.807", "deps": [ @@ -10611,7 +10698,7 @@ }, "recipe": { "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130923.1317", "deps": [] @@ -10626,7 +10713,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150301.513", "deps": [ @@ -10640,12 +10727,12 @@ "tag": "fetchFromGitHub", "owner": "dgtized", "repo": "occur-context-resize.el", - "sha256": "1y67mfkmzjdwnah6knc1v9rxcvnzi3dxw9f5gaz4layy7ir61b8f", - "rev": "e64898124528244134bd125aaa39e396406b01e8" + "sha256": "161lsgpzlrfzsn3pzcwhwj46ns088frjm0dps9jbc4bzqbpsd293", + "rev": "78263b8907569695773e9acaa375ce0cb3245f10" }, "recipe": { "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140826.1449", "deps": [] @@ -10660,7 +10747,7 @@ }, "recipe": { "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.1418", "deps": [] @@ -10675,7 +10762,7 @@ }, "recipe": { "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150403.1804", "deps": [] @@ -10690,7 +10777,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.308", "deps": [ @@ -10707,7 +10794,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150217.632", "deps": [] @@ -10717,14 +10804,14 @@ "tag": "fetchFromGitHub", "owner": "josteink", "repo": "csharp-mode", - "sha256": "1xnfn7ag9xm1980h8hssac9n3ng6rf7ffqb67vjbjw14gb7vxd0l", - "rev": "a553430c3f55b12db3af3da14dd0a1b45e3277fb" + "sha256": "1bp4bsghvmar6kvwiarxz4fnh0bikkyjnw30x796d1hi7jdk3ll9", + "rev": "b11fcda620aed46fbd4e702ee565448af26a1b25" }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.21", + "version": "20151226.1524", "deps": [] }, "evil-avy": { @@ -10737,7 +10824,7 @@ }, "recipe": { "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.248", "deps": [ @@ -10757,7 +10844,7 @@ }, "recipe": { "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.2032", "deps": [ @@ -10776,7 +10863,7 @@ }, "recipe": { "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140802.642", "deps": [ @@ -10793,7 +10880,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.706", "deps": [ @@ -10810,7 +10897,7 @@ }, "recipe": { "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150621.2242", "deps": [ @@ -10827,7 +10914,7 @@ }, "recipe": { "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.1727", "deps": [ @@ -10844,7 +10931,7 @@ }, "recipe": { "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150121.1957", "deps": [ @@ -10861,7 +10948,7 @@ }, "recipe": { "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150812.258", "deps": [] @@ -10876,7 +10963,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131203.2225", "deps": [] @@ -10891,7 +10978,7 @@ }, "recipe": { "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140709.2004", "deps": [] @@ -10906,7 +10993,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130302.536", "deps": [ @@ -10924,7 +11011,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.735", "deps": [ @@ -10942,7 +11029,7 @@ }, "recipe": { "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140306.850", "deps": [] @@ -10957,7 +11044,7 @@ }, "recipe": { "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130913.124", "deps": [ @@ -10974,7 +11061,7 @@ }, "recipe": { "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101118.1524", "deps": [] @@ -10989,7 +11076,7 @@ }, "recipe": { "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.2322", "deps": [ @@ -11008,7 +11095,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.935", "deps": [ @@ -11025,7 +11112,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.617", "deps": [ @@ -11046,7 +11133,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.847", "deps": [ @@ -11064,7 +11151,7 @@ }, "recipe": { "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120304.1222", "deps": [] @@ -11079,7 +11166,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1954", "deps": [] @@ -11094,7 +11181,7 @@ }, "recipe": { "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.130", "deps": [ @@ -11111,7 +11198,7 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140304.1859", "deps": [] @@ -11126,7 +11213,7 @@ }, "recipe": { "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.2000", "deps": [] @@ -11141,7 +11228,7 @@ }, "recipe": { "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.1427", "deps": [] @@ -11156,7 +11243,7 @@ }, "recipe": { "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140720.546", "deps": [ @@ -11173,7 +11260,7 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121026.1618", "deps": [] @@ -11188,7 +11275,7 @@ }, "recipe": { "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140218.2004", "deps": [] @@ -11198,14 +11285,14 @@ "tag": "fetchFromGitHub", "owner": "fniessen", "repo": "emacs-leuven-theme", - "sha256": "18nyb8bb16br2qpif33gz51sqzl3afh9mavzxrcqi40bgmfzpj0n", - "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0" + "sha256": "1kbvpf3wvma6r2gxd0zmz1j6clgr3xfsvsrbh900j5k5f1w8r8jx", + "rev": "94d12f81c5103e01b57f125581c5337ef883433c" }, "recipe": { "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151105.952", + "version": "20151218.1750", "deps": [] }, "snippet": { @@ -11218,7 +11305,7 @@ }, "recipe": { "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130210.1715", "deps": [] @@ -11233,7 +11320,7 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.744", "deps": [ @@ -11245,12 +11332,12 @@ "tag": "fetchFromGitHub", "owner": "OCamlPro", "repo": "ocp-indent", - "sha256": "0r44bh9nd2f6r9vz4xzv6mri91lc4276znaj29l974q0f7i3b3ad", - "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312" + "sha256": "0ydmjgxzdxbrzfz3zal1m3hnlxanldx8japapafpa9k8fm02rgnr", + "rev": "930f05acdf3ca6783e48a4729761996d27c8c009" }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.332", "deps": [] @@ -11265,7 +11352,7 @@ }, "recipe": { "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120910.351", "deps": [] @@ -11280,7 +11367,7 @@ }, "recipe": { "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130619.1704", "deps": [] @@ -11295,7 +11382,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.236", "deps": [ @@ -11311,7 +11398,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140306.845", "deps": [] @@ -11325,7 +11412,7 @@ }, "recipe": { "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.1433", "deps": [] @@ -11340,7 +11427,7 @@ }, "recipe": { "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150505.1350", "deps": [ @@ -11357,7 +11444,7 @@ }, "recipe": { "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.1229", "deps": [ @@ -11374,7 +11461,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141223.1414", "deps": [ @@ -11393,7 +11480,7 @@ }, "recipe": { "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.914", "deps": [ @@ -11412,7 +11499,7 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.2126", "deps": [ @@ -11430,7 +11517,7 @@ }, "recipe": { "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.839", "deps": [] @@ -11445,7 +11532,7 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.1324", "deps": [ @@ -11462,7 +11549,7 @@ }, "recipe": { "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.43", "deps": [ @@ -11480,7 +11567,7 @@ }, "recipe": { "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130207.1509", "deps": [] @@ -11493,7 +11580,7 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131210.1222", "deps": [] @@ -11508,7 +11595,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.2036", "deps": [ @@ -11526,7 +11613,7 @@ }, "recipe": { "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.1023", "deps": [ @@ -11545,7 +11632,7 @@ }, "recipe": { "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120912.24", "deps": [] @@ -11560,7 +11647,7 @@ }, "recipe": { "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140513.1316", "deps": [] @@ -11573,7 +11660,7 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100119.1548", "deps": [] @@ -11588,7 +11675,7 @@ }, "recipe": { "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140412.812", "deps": [ @@ -11606,7 +11693,7 @@ }, "recipe": { "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1645", "deps": [ @@ -11624,7 +11711,7 @@ }, "recipe": { "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140831.721", "deps": [ @@ -11642,7 +11729,7 @@ }, "recipe": { "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150820.908", "deps": [] @@ -11657,7 +11744,7 @@ }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.622", "deps": [ @@ -11672,7 +11759,7 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140808.1635", "deps": [] @@ -11687,7 +11774,7 @@ }, "recipe": { "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120128.1501", "deps": [] @@ -11702,7 +11789,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.18", "deps": [ @@ -11720,7 +11807,7 @@ }, "recipe": { "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.414", "deps": [] @@ -11735,7 +11822,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140805.1338", "deps": [ @@ -11752,7 +11839,7 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150126.606", "deps": [ @@ -11769,7 +11856,7 @@ }, "recipe": { "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.1252", "deps": [ @@ -11786,7 +11873,7 @@ }, "recipe": { "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131203.1437", "deps": [] @@ -11796,13 +11883,13 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53195" + "rev": "53351" }, "recipe": { "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150306.1959", + "version": "20091002.545", "deps": [ "emacs", "ruby-mode" @@ -11816,7 +11903,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130131.120", "deps": [] @@ -11831,7 +11918,7 @@ }, "recipe": { "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.619", "deps": [ @@ -11851,7 +11938,7 @@ }, "recipe": { "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151010.1229", "deps": [] @@ -11866,7 +11953,7 @@ }, "recipe": { "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140217.1512", "deps": [ @@ -11887,7 +11974,7 @@ }, "recipe": { "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150128.1151", "deps": [] @@ -11902,7 +11989,7 @@ }, "recipe": { "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150327.1218", "deps": [ @@ -11921,7 +12008,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150607.1201", "deps": [ @@ -11938,7 +12025,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.1013", "deps": [] @@ -11953,7 +12040,7 @@ }, "recipe": { "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140902.1227", "deps": [] @@ -11966,7 +12053,7 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111222.1156", "deps": [] @@ -11981,7 +12068,7 @@ }, "recipe": { "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130831.1155", "deps": [ @@ -11999,7 +12086,7 @@ }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140814.1648", "deps": [] @@ -12014,7 +12101,7 @@ }, "recipe": { "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130731.1021", "deps": [] @@ -12029,7 +12116,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130929.147", "deps": [ @@ -12045,7 +12132,7 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130130.1550", "deps": [] @@ -12060,7 +12147,7 @@ }, "recipe": { "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150217.1149", "deps": [ @@ -12078,7 +12165,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.851", "deps": [ @@ -12095,7 +12182,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140810.234", "deps": [] @@ -12110,7 +12197,7 @@ }, "recipe": { "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150905.438", "deps": [] @@ -12125,7 +12212,7 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.2240", "deps": [ @@ -12142,7 +12229,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150302.1048", "deps": [] @@ -12157,7 +12244,7 @@ }, "recipe": { "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150430.1642", "deps": [] @@ -12172,7 +12259,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.1829", "deps": [] @@ -12187,7 +12274,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.1409", "deps": [] @@ -12201,7 +12288,7 @@ }, "recipe": { "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130816.1554", "deps": [] @@ -12216,7 +12303,7 @@ }, "recipe": { "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.1842", "deps": [ @@ -12233,7 +12320,7 @@ }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150709.140", "deps": [ @@ -12250,7 +12337,7 @@ }, "recipe": { "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140806.1125", "deps": [ @@ -12265,7 +12352,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150630.1632", "deps": [ @@ -12282,7 +12369,7 @@ }, "recipe": { "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121113.700", "deps": [] @@ -12297,7 +12384,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.49", "deps": [ @@ -12318,7 +12405,7 @@ }, "recipe": { "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.109", "deps": [ @@ -12338,7 +12425,7 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141207.1352", "deps": [] @@ -12353,7 +12440,7 @@ }, "recipe": { "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151022.751", "deps": [ @@ -12370,7 +12457,7 @@ }, "recipe": { "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.455", "deps": [ @@ -12389,7 +12476,7 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150505.932", "deps": [ @@ -12406,7 +12493,7 @@ }, "recipe": { "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150806.113", "deps": [] @@ -12421,7 +12508,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140811.1609", "deps": [ @@ -12438,7 +12525,7 @@ }, "recipe": { "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.35", "deps": [] @@ -12453,7 +12540,7 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140717.2229", "deps": [] @@ -12468,7 +12555,7 @@ }, "recipe": { "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.1029", "deps": [ @@ -12485,7 +12572,7 @@ }, "recipe": { "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.2145", "deps": [ @@ -12500,7 +12587,7 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1833", "deps": [] @@ -12515,7 +12602,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.754", "deps": [] @@ -12530,7 +12617,7 @@ }, "recipe": { "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.937", "deps": [] @@ -12545,7 +12632,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1433", "deps": [] @@ -12560,7 +12647,7 @@ }, "recipe": { "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131023.1351", "deps": [ @@ -12578,7 +12665,7 @@ }, "recipe": { "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140216.1046", "deps": [ @@ -12595,7 +12682,7 @@ }, "recipe": { "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150506.2327", "deps": [] @@ -12610,7 +12697,7 @@ }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150623.655", "deps": [ @@ -12630,7 +12717,7 @@ }, "recipe": { "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130920.1259", "deps": [] @@ -12645,7 +12732,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150811.1908", "deps": [ @@ -12664,7 +12751,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141123.1516", "deps": [] @@ -12679,7 +12766,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130228.408", "deps": [] @@ -12694,7 +12781,7 @@ }, "recipe": { "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150706.24", "deps": [ @@ -12706,14 +12793,14 @@ "tag": "fetchFromGitHub", "owner": "nlamirault", "repo": "sift.el", - "sha256": "0v4glcpxp812554dggimv6srccwg7031iys4j7c0b97cm279jyhi", - "rev": "a757745492124e5a021a4cc7e62d5349c21213c6" + "sha256": "0mlwv66528927gf9x8jx9ifqbj1bhid21lrcm5gjym92lvpvps4p", + "rev": "99218553b5979b3431f188906cf3f50265ad72a0" }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151114.1123", + "version": "20151223.140", "deps": [] }, "moz": { @@ -12726,7 +12813,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.1206", "deps": [] @@ -12741,7 +12828,7 @@ }, "recipe": { "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.615", "deps": [ @@ -12758,7 +12845,7 @@ }, "recipe": { "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.1528", "deps": [ @@ -12777,7 +12864,7 @@ }, "recipe": { "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141117.714", "deps": [ @@ -12794,7 +12881,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150122.1432", "deps": [] @@ -12808,7 +12895,7 @@ }, "recipe": { "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141210.627", "deps": [] @@ -12823,7 +12910,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.2320", "deps": [ @@ -12843,7 +12930,7 @@ }, "recipe": { "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140905.1906", "deps": [ @@ -12860,7 +12947,7 @@ }, "recipe": { "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1415", "deps": [ @@ -12877,7 +12964,7 @@ }, "recipe": { "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120118.2334", "deps": [] @@ -12892,7 +12979,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150629.435", "deps": [] @@ -12907,7 +12994,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141112.1915", "deps": [] @@ -12922,7 +13009,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140731.726", "deps": [ @@ -12941,7 +13028,7 @@ }, "recipe": { "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.2010", "deps": [] @@ -12956,7 +13043,7 @@ }, "recipe": { "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120904.1542", "deps": [] @@ -12970,8 +13057,8 @@ "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { - "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130607.129", "deps": [ @@ -12988,7 +13075,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150603.647", "deps": [] @@ -13003,7 +13090,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.1116", "deps": [ @@ -13021,7 +13108,7 @@ }, "recipe": { "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140816.1244", "deps": [] @@ -13036,7 +13123,7 @@ }, "recipe": { "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150312.849", "deps": [] @@ -13051,7 +13138,7 @@ }, "recipe": { "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1415", "deps": [] @@ -13066,7 +13153,7 @@ }, "recipe": { "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.1316", "deps": [] @@ -13076,12 +13163,12 @@ "tag": "fetchFromGitHub", "owner": "yukihr", "repo": "emacs-pow", - "sha256": "1qizc9vh7lazs66s80avbf4whyrcinav07lpzva27yqb1gkmwap2", - "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140" + "sha256": "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf", + "rev": "7c0b39a07069d8b0f6b21adf3b4e462944641ad9" }, "recipe": { "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140420.306", "deps": [ @@ -13099,7 +13186,7 @@ }, "recipe": { "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.1221", "deps": [ @@ -13117,7 +13204,7 @@ }, "recipe": { "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131004.1844", "deps": [] @@ -13132,7 +13219,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150916.2057", "deps": [ @@ -13150,7 +13237,7 @@ }, "recipe": { "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.816", "deps": [ @@ -13168,7 +13255,7 @@ }, "recipe": { "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1636", "deps": [ @@ -13188,7 +13275,7 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140703.352", "deps": [] @@ -13201,7 +13288,7 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120426.2023", "deps": [] @@ -13216,7 +13303,7 @@ }, "recipe": { "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.2330", "deps": [ @@ -13233,7 +13320,7 @@ }, "recipe": { "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.508", "deps": [] @@ -13248,7 +13335,7 @@ }, "recipe": { "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.55", "deps": [ @@ -13261,16 +13348,16 @@ "scala-mode2": { "fetch": { "tag": "fetchFromGitHub", - "owner": "hvesalai", - "repo": "scala-mode2", - "sha256": "1xyfxwrp2hlj49412ypl1mi5pxx6z4aw1hhzkgcwd3bfyyqdrg1k", - "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f" + "owner": "ensime", + "repo": "emacs-scala-mode", + "sha256": "015p93isbpxgqiq6l0jmvsyxjqajjjclfnn76p7xz5p73hzlvfx7", + "rev": "c20d6e6df028f055e69066aa75d571e520ff0670" }, "recipe": { - "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150618.150", + "version": "20151226.1248", "deps": [] }, "show-marks": { @@ -13283,7 +13370,7 @@ }, "recipe": { "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130805.949", "deps": [ @@ -13300,7 +13387,7 @@ }, "recipe": { "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140926.639", "deps": [] @@ -13315,7 +13402,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.1056", "deps": [ @@ -13331,7 +13418,7 @@ }, "recipe": { "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131010.154", "deps": [ @@ -13348,7 +13435,7 @@ }, "recipe": { "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150928.1133", "deps": [] @@ -13363,7 +13450,7 @@ }, "recipe": { "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150909.1034", "deps": [ @@ -13382,7 +13469,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130725.2119", "deps": [] @@ -13397,7 +13484,7 @@ }, "recipe": { "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130707.859", "deps": [] @@ -13412,7 +13499,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140802.1120", "deps": [] @@ -13427,7 +13514,7 @@ }, "recipe": { "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150512.1549", "deps": [ @@ -13444,7 +13531,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150425.1506", "deps": [ @@ -13456,12 +13543,12 @@ "tag": "fetchFromGitHub", "owner": "algernon", "repo": "tdd-status-mode-line", - "sha256": "01r34h3srli5bglss0zxnblpfbgzd45cvh3bg16i8dyyph9wgqyn", - "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b" + "sha256": "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5", + "rev": "4c082e62f4915b573338a97efcc6854d132323dc" }, "recipe": { "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131123.1116", "deps": [] @@ -13476,13 +13563,28 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140426.928", "deps": [ "yasnippet" ] }, + "minibuf-isearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knagano", + "repo": "minibuf-isearch", + "sha256": "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879", + "rev": "2846c6ac369ee623dad4cd3c8a7a6d9078965516" + }, + "recipe": { + "sha256": "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1343", + "deps": [] + }, "namespaces": { "fetch": { "tag": "fetchFromGitHub", @@ -13493,7 +13595,7 @@ }, "recipe": { "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130326.1750", "deps": [] @@ -13506,7 +13608,7 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150815.938", "deps": [] @@ -13521,7 +13623,7 @@ }, "recipe": { "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.1955", "deps": [] @@ -13531,14 +13633,14 @@ "tag": "fetchFromGitHub", "owner": "d11wtq", "repo": "grizzl", - "sha256": "1y2vn7xxzphg1d1isvimygzndybb6z4cfhpbrciswv983lixwcpx", - "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c" + "sha256": "1v5xh0hana9wqc73g0yrzk5ip9zxbqg9xi8k7972nzj3fnma77bh", + "rev": "38b819b8f132962e24eb6a2cff33d571e848776d" }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150712.30", + "version": "20151223.1358", "deps": [ "cl-lib", "emacs" @@ -13554,7 +13656,7 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150615.1225", "deps": [] @@ -13569,7 +13671,7 @@ }, "recipe": { "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.2308", "deps": [ @@ -13586,7 +13688,7 @@ }, "recipe": { "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120403.1315", "deps": [] @@ -13601,7 +13703,7 @@ }, "recipe": { "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140616.1333", "deps": [ @@ -13616,7 +13718,7 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1907", "deps": [] @@ -13631,7 +13733,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150806.645", "deps": [] @@ -13646,7 +13748,7 @@ }, "recipe": { "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140215.1447", "deps": [ @@ -13664,7 +13766,7 @@ }, "recipe": { "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141207.607", "deps": [] @@ -13679,7 +13781,7 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140505.855", "deps": [] @@ -13694,7 +13796,7 @@ }, "recipe": { "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.2006", "deps": [ @@ -13706,11 +13808,11 @@ "tag": "fetchsvn", "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143722" + "rev": "143923" }, "recipe": { "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150717.239", "deps": [ @@ -13729,7 +13831,7 @@ }, "recipe": { "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140617.1258", "deps": [] @@ -13744,7 +13846,7 @@ }, "recipe": { "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150308.718", "deps": [] @@ -13759,7 +13861,7 @@ }, "recipe": { "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150718.1509", "deps": [] @@ -13774,7 +13876,7 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140606.743", "deps": [ @@ -13791,7 +13893,7 @@ }, "recipe": { "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150630.1021", "deps": [] @@ -13806,7 +13908,7 @@ }, "recipe": { "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131216.428", "deps": [] @@ -13819,7 +13921,7 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.1851", "deps": [] @@ -13834,7 +13936,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.1922", "deps": [] @@ -13849,7 +13951,7 @@ }, "recipe": { "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141126.431", "deps": [ @@ -13867,7 +13969,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150717.7", "deps": [] @@ -13882,7 +13984,7 @@ }, "recipe": { "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140609.956", "deps": [] @@ -13897,7 +13999,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100930.943", "deps": [] @@ -13912,7 +14014,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131001.1034", "deps": [] @@ -13927,7 +14029,7 @@ }, "recipe": { "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150304.803", "deps": [] @@ -13942,7 +14044,7 @@ }, "recipe": { "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.909", "deps": [ @@ -13959,7 +14061,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140419.16", "deps": [ @@ -13976,7 +14078,7 @@ }, "recipe": { "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.1639", "deps": [ @@ -13996,7 +14098,7 @@ }, "recipe": { "sha256": "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.622", "deps": [ @@ -14008,14 +14110,14 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "elfeed", - "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", - "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.1138", + "version": "20151222.1322", "deps": [ "emacs" ] @@ -14030,7 +14132,7 @@ }, "recipe": { "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150113.2309", "deps": [ @@ -14049,7 +14151,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.2229", "deps": [ @@ -14066,7 +14168,7 @@ }, "recipe": { "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130201.1338", "deps": [ @@ -14084,7 +14186,7 @@ }, "recipe": { "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130412.430", "deps": [] @@ -14098,7 +14200,7 @@ }, "recipe": { "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130207.1402", "deps": [] @@ -14113,7 +14215,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.1635", "deps": [ @@ -14130,7 +14232,7 @@ }, "recipe": { "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.1718", "deps": [ @@ -14148,7 +14250,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141004.1603", "deps": [] @@ -14163,7 +14265,7 @@ }, "recipe": { "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150506.1639", "deps": [] @@ -14178,7 +14280,7 @@ }, "recipe": { "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150213.1436", "deps": [] @@ -14193,7 +14295,7 @@ }, "recipe": { "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.704", "deps": [ @@ -14210,7 +14312,7 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.2223", "deps": [ @@ -14226,7 +14328,7 @@ }, "recipe": { "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100330.543", "deps": [] @@ -14241,7 +14343,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.1905", "deps": [ @@ -14260,7 +14362,7 @@ }, "recipe": { "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100124.428", "deps": [] @@ -14275,7 +14377,7 @@ }, "recipe": { "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130216.704", "deps": [] @@ -14290,7 +14392,7 @@ }, "recipe": { "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.2245", "deps": [] @@ -14305,7 +14407,7 @@ }, "recipe": { "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141207.948", "deps": [] @@ -14320,7 +14422,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140506.1818", "deps": [] @@ -14335,7 +14437,7 @@ }, "recipe": { "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140217.1818", "deps": [ @@ -14352,7 +14454,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140606.751", "deps": [] @@ -14367,7 +14469,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150114.415", "deps": [] @@ -14382,7 +14484,7 @@ }, "recipe": { "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.2107", "deps": [] @@ -14397,7 +14499,7 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.2155", "deps": [ @@ -14414,7 +14516,7 @@ }, "recipe": { "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.1025", "deps": [ @@ -14433,7 +14535,7 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.2117", "deps": [ @@ -14446,14 +14548,14 @@ "tag": "fetchFromGitHub", "owner": "buzztaiki", "repo": "lice-el", - "sha256": "0df5v401w9n2d64gxxgb34mb4dm2nxc8jx1cj9ir23cx9dqmxjrq", - "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c" + "sha256": "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb", + "rev": "d8572d997f54f4022f245dcf7c38fef6919a474a" }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151130.2223", + "version": "20151225.1222", "deps": [] }, "mark-tools": { @@ -14466,7 +14568,7 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130614.525", "deps": [] @@ -14481,7 +14583,7 @@ }, "recipe": { "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150712.1630", "deps": [] @@ -14496,7 +14598,7 @@ }, "recipe": { "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150517.2256", "deps": [ @@ -14514,7 +14616,7 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.2025", "deps": [] @@ -14529,7 +14631,7 @@ }, "recipe": { "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131110.515", "deps": [ @@ -14546,7 +14648,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090428.1431", "deps": [] @@ -14561,7 +14663,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.54", "deps": [] @@ -14576,7 +14678,7 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141213.1205", "deps": [ @@ -14593,7 +14695,7 @@ }, "recipe": { "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.28", "deps": [ @@ -14611,7 +14713,7 @@ }, "recipe": { "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150102.1521", "deps": [ @@ -14624,6 +14726,21 @@ "s" ] }, + "fireplace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johanvts", + "repo": "emacs-fireplace", + "sha256": "1y1bk18wfirscbq7mz8i1bmfvp2xh7pzfrkpq0lxmfb4sridqlx0", + "rev": "36c7cc50d23dad979d3e2d166032fd295b1ab743" + }, + "recipe": { + "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1934", + "deps": [] + }, "morlock": { "fetch": { "tag": "fetchFromGitHub", @@ -14634,7 +14751,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150815.1034", "deps": [] @@ -14649,7 +14766,7 @@ }, "recipe": { "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150613.549", "deps": [ @@ -14662,14 +14779,14 @@ "tag": "fetchFromGitHub", "owner": "auto-complete", "repo": "auto-complete", - "sha256": "1dp7gmrykln29axs1l180abi5ycnn3fzkg7qrlvsnrlkzl43zrji", - "rev": "67df105a4210b114e01ec08368b8b6b07f28de77" + "sha256": "1kaamih2589y2bc67wjkb5xh1rgxxyw1zkr58dvpfyhagjg3czzd", + "rev": "422e1a24b2e75bac25cf224191e306a645794e10" }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151211.427", + "version": "20151227.554", "deps": [ "cl-lib", "popup" @@ -14685,7 +14802,7 @@ }, "recipe": { "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.1242", "deps": [] @@ -14700,7 +14817,7 @@ }, "recipe": { "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.57", "deps": [ @@ -14717,7 +14834,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.1114", "deps": [ @@ -14734,7 +14851,7 @@ }, "recipe": { "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130812.1139", "deps": [ @@ -14752,7 +14869,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.758", "deps": [] @@ -14767,7 +14884,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.1608", "deps": [ @@ -14786,7 +14903,7 @@ }, "recipe": { "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1207", "deps": [ @@ -14803,7 +14920,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.941", "deps": [ @@ -14821,7 +14938,7 @@ }, "recipe": { "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140120.1740", "deps": [] @@ -14836,7 +14953,7 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140101.910", "deps": [ @@ -14852,7 +14969,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101223.420", "deps": [] @@ -14865,7 +14982,7 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1608", "deps": [] @@ -14875,12 +14992,12 @@ "tag": "fetchFromGitHub", "owner": "openscad", "repo": "openscad", - "sha256": "0z1nf0hdm5q3b65y5jsg5f7qmzk2ilw24i3yg4r8dyygk5c40mr6", - "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be" + "sha256": "1na5ab12y5zr93pinnl9x7cgz139wvxgwpjys7akbpm3car86g5n", + "rev": "dff10cc9af40ff5c8ac1dd46deace5971409b31b" }, "recipe": { "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.2229", "deps": [] @@ -14890,12 +15007,12 @@ "tag": "fetchFromGitHub", "owner": "skk-dev", "repo": "ddskk", - "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", - "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" }, "recipe": { "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.743", "deps": [] @@ -14910,7 +15027,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150312.603", "deps": [] @@ -14925,7 +15042,7 @@ }, "recipe": { "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140119.2144", "deps": [ @@ -14942,7 +15059,7 @@ }, "recipe": { "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150605.2239", "deps": [] @@ -14957,7 +15074,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131012.1601", "deps": [] @@ -14967,12 +15084,12 @@ "tag": "fetchFromGitHub", "owner": "kivy", "repo": "kivy", - "sha256": "0mk5z0kxacjdcd64vq8ryg0bdb2230141kfxka7dphjl4q7wdfhi", - "rev": "2d1b4664d2e733a46db3cfeb1f2c052fa86e7cf5" + "sha256": "1py7wzbbmmz5924n23jlss403yliljd608yhcxvf50i41svvsdrw", + "rev": "dfc535142a1ffa75ac3b7685b5c2168d99b1ba28" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140524.757", "deps": [] @@ -14987,7 +15104,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.318", "deps": [ @@ -15008,7 +15125,7 @@ }, "recipe": { "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.259", "deps": [ @@ -15025,7 +15142,7 @@ }, "recipe": { "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140902.1149", "deps": [] @@ -15040,7 +15157,7 @@ }, "recipe": { "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130920.1142", "deps": [] @@ -15054,8 +15171,8 @@ "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" }, "recipe": { - "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.357", "deps": [] @@ -15070,7 +15187,7 @@ }, "recipe": { "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150810.1209", "deps": [] @@ -15083,7 +15200,7 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150425.1301", "deps": [] @@ -15098,7 +15215,7 @@ }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150309.2252", "deps": [ @@ -15115,7 +15232,7 @@ }, "recipe": { "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.139", "deps": [] @@ -15130,7 +15247,7 @@ }, "recipe": { "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140116.1516", "deps": [] @@ -15143,7 +15260,7 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1610", "deps": [] @@ -15158,7 +15275,7 @@ }, "recipe": { "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.253", "deps": [] @@ -15173,7 +15290,7 @@ }, "recipe": { "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091203.1223", "deps": [] @@ -15188,7 +15305,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.319", "deps": [ @@ -15207,7 +15324,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -15222,7 +15339,7 @@ }, "recipe": { "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151003.300", "deps": [] @@ -15237,7 +15354,7 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.1009", "deps": [ @@ -15252,7 +15369,7 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130906.18", "deps": [] @@ -15267,7 +15384,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140513.1039", "deps": [ @@ -15285,7 +15402,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140520.403", "deps": [] @@ -15300,7 +15417,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.1203", "deps": [] @@ -15310,14 +15427,14 @@ "tag": "fetchFromGitHub", "owner": "Andersbakken", "repo": "rtags", - "sha256": "0pdjbjg81xy41ybrmc2aznb2gv3pic5a0l0gn2yg2hzdbrgfyswn", - "rev": "c68e490fea320c62da44a06fe216fb073f1ebf89" + "sha256": "0lvajqcw4mfw33wpb6m43k0c0f74s8m33lw5i730qvkrh0in8gf0", + "rev": "8f032d75a7a7d6b8019913b5f2b5703181a15d19" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.147", + "version": "20151221.1501", "deps": [] }, "totd": { @@ -15330,7 +15447,7 @@ }, "recipe": { "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150519.940", "deps": [ @@ -15348,7 +15465,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.1504", "deps": [ @@ -15367,7 +15484,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.637", "deps": [ @@ -15386,7 +15503,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.322", "deps": [ @@ -15404,7 +15521,7 @@ }, "recipe": { "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.758", "deps": [ @@ -15419,7 +15536,7 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.826", "deps": [] @@ -15434,7 +15551,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150825.638", "deps": [ @@ -15454,7 +15571,7 @@ }, "recipe": { "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150116.1000", "deps": [ @@ -15471,7 +15588,7 @@ }, "recipe": { "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120111.400", "deps": [] @@ -15486,7 +15603,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150503.1914", "deps": [ @@ -15504,7 +15621,7 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.1603", "deps": [] @@ -15519,7 +15636,7 @@ }, "recipe": { "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.107", "deps": [] @@ -15534,7 +15651,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140919.1117", "deps": [ @@ -15554,7 +15671,7 @@ }, "recipe": { "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140930.1223", "deps": [ @@ -15571,7 +15688,7 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150320.217", "deps": [] @@ -15584,7 +15701,7 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150418.1028", "deps": [] @@ -15599,7 +15716,7 @@ }, "recipe": { "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150509.1618", "deps": [ @@ -15616,7 +15733,7 @@ }, "recipe": { "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.1148", "deps": [ @@ -15633,7 +15750,7 @@ }, "recipe": { "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130220.1250", "deps": [] @@ -15648,7 +15765,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140612.737", "deps": [ @@ -15668,7 +15785,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -15689,7 +15806,7 @@ }, "recipe": { "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.717", "deps": [] @@ -15704,7 +15821,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130126.1818", "deps": [] @@ -15719,7 +15836,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.523", "deps": [ @@ -15740,7 +15857,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120520.932", "deps": [] @@ -15755,7 +15872,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150103.50", "deps": [ @@ -15772,7 +15889,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151019.822", "deps": [ @@ -15789,7 +15906,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150514.1610", "deps": [ @@ -15806,7 +15923,7 @@ }, "recipe": { "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150621.2133", "deps": [ @@ -15823,7 +15940,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141102.926", "deps": [ @@ -15840,7 +15957,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.1453", "deps": [ @@ -15853,14 +15970,14 @@ "tag": "fetchFromGitHub", "owner": "dgtized", "repo": "github-clone.el", - "sha256": "1w1w3rmfj7bj721v0f3bg8hjadipa1z8yf62xpn3ypfr0wa6hnhy", - "rev": "36202b802f6d0e4a9da63e5d93d99b6171407e4a" + "sha256": "1aiy1jwrzyy3v0ra4a107dbsdf8c92yyvv87q5pf471vsf61fqmb", + "rev": "96070145cdcbbfbbfbfa69e6992b8663fef5c9d1" }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.230", + "version": "20151225.1842", "deps": [ "emacs", "gh", @@ -15877,7 +15994,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150916.1415", "deps": [] @@ -15892,7 +16009,7 @@ }, "recipe": { "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141212.717", "deps": [ @@ -15909,7 +16026,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141005.1431", "deps": [] @@ -15924,7 +16041,7 @@ }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.1857", "deps": [] @@ -15939,7 +16056,7 @@ }, "recipe": { "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150915.1452", "deps": [ @@ -15952,14 +16069,14 @@ "tag": "fetchFromGitHub", "owner": "jwiegley", "repo": "use-package", - "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", - "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + "sha256": "1kng5yzm73gz67znifjhzrr2zbcc7cyb2f1j703hmf33zb9naqhp", + "rev": "1d7e6ff5b73761c3b7180530da8bc433338d0cec" }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150321.413", + "version": "20151220.1639", "deps": [] }, "urlenc": { @@ -15972,7 +16089,7 @@ }, "recipe": { "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140116.856", "deps": [] @@ -15987,7 +16104,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140221.1754", "deps": [ @@ -16006,7 +16123,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1517", "deps": [ @@ -16024,7 +16141,7 @@ }, "recipe": { "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.303", "deps": [] @@ -16039,7 +16156,7 @@ }, "recipe": { "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150327.1216", "deps": [ @@ -16058,7 +16175,7 @@ }, "recipe": { "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150312.1444", "deps": [] @@ -16073,7 +16190,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150728.618", "deps": [ @@ -16091,7 +16208,7 @@ }, "recipe": { "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.606", "deps": [ @@ -16108,7 +16225,7 @@ }, "recipe": { "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150515.947", "deps": [] @@ -16123,7 +16240,7 @@ }, "recipe": { "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.542", "deps": [] @@ -16138,7 +16255,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141103.1541", "deps": [] @@ -16153,7 +16270,7 @@ }, "recipe": { "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150312.814", "deps": [ @@ -16170,7 +16287,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140208.1037", "deps": [] @@ -16185,7 +16302,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140415.358", "deps": [ @@ -16202,7 +16319,7 @@ }, "recipe": { "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150308.1312", "deps": [] @@ -16217,7 +16334,7 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150316.2028", "deps": [] @@ -16230,7 +16347,7 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.834", "deps": [] @@ -16245,7 +16362,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150528.1428", "deps": [ @@ -16263,7 +16380,7 @@ }, "recipe": { "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120819.1914", "deps": [ @@ -16281,7 +16398,7 @@ }, "recipe": { "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.1317", "deps": [ @@ -16298,7 +16415,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -16306,14 +16423,14 @@ "sbt-mode": { "fetch": { "tag": "fetchFromGitHub", - "owner": "hvesalai", - "repo": "sbt-mode", + "owner": "ensime", + "repo": "emacs-sbt-mode", "sha256": "1l6l90lhqk56l20dhy19snn0fz4di03j714d2v07yl19q64gfk6c", "rev": "209a396babd0a302cbb5a32f16525aabb409528b" }, "recipe": { - "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.242", "deps": [ @@ -16330,7 +16447,7 @@ }, "recipe": { "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.2259", "deps": [ @@ -16348,7 +16465,7 @@ }, "recipe": { "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150812.502", "deps": [ @@ -16365,7 +16482,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150530.422", "deps": [] @@ -16380,7 +16497,7 @@ }, "recipe": { "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.342", "deps": [ @@ -16399,7 +16516,7 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140317.536", "deps": [ @@ -16414,7 +16531,7 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1834", "deps": [] @@ -16429,7 +16546,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140103.1539", "deps": [ @@ -16446,7 +16563,7 @@ }, "recipe": { "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.647", "deps": [ @@ -16463,7 +16580,7 @@ }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.1742", "deps": [] @@ -16478,7 +16595,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150927.224", "deps": [] @@ -16493,7 +16610,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.601", "deps": [ @@ -16514,7 +16631,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140315.1129", "deps": [ @@ -16527,14 +16644,14 @@ "tag": "fetchFromGitHub", "owner": "skk-dev", "repo": "ddskk", - "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", - "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" }, "recipe": { "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.552", + "version": "20151226.42", "deps": [ "ccc", "cdb" @@ -16548,7 +16665,7 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.657", "deps": [] @@ -16558,14 +16675,14 @@ "tag": "fetchFromGitHub", "owner": "takaxp", "repo": "org-tree-slide", - "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45", - "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" + "sha256": "19id53sjv0r0xnm3l8d694s27dxlmdfm9dal57zlf60s5lg8hykq", + "rev": "3a2d3733baa81484ac53bee9a8d0f9dafa54881c" }, "recipe": { "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151017.253", + "version": "20151223.147", "deps": [] }, "org-transform-tree-table": { @@ -16578,7 +16695,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.833", "deps": [ @@ -16596,7 +16713,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150105.925", "deps": [ @@ -16612,7 +16729,7 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150619.1003", "deps": [] @@ -16627,7 +16744,7 @@ }, "recipe": { "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.106", "deps": [ @@ -16639,14 +16756,14 @@ "tag": "fetchFromGitHub", "owner": "howardabrams", "repo": "demo-it", - "sha256": "0ws46aq5nl6ayhfrg9lm12i53v99a7pbfwb65rn9xsy4176k7zqb", - "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c" + "sha256": "051i2ywmy0qs6cqq6qxyjpgy28k7pxr9wfjpm48r871hmb61xaai", + "rev": "1b41e85d34960278f21139b02e4d85eecb07c4b0" }, "recipe": { "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151020.1429", + "version": "20151221.2343", "deps": [] }, "helm-package": { @@ -16659,7 +16776,7 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.248", "deps": [ @@ -16677,7 +16794,7 @@ }, "recipe": { "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150909.1336", "deps": [ @@ -16695,7 +16812,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.1916", "deps": [] @@ -16710,7 +16827,7 @@ }, "recipe": { "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.1755", "deps": [] @@ -16725,7 +16842,7 @@ }, "recipe": { "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150703.1117", "deps": [] @@ -16735,15 +16852,17 @@ "tag": "fetchFromGitHub", "owner": "nflath", "repo": "man-commands", - "sha256": "0w3d01q46clg3kz1zy963sih0dsi3ryl4p8zrgpd1frpf8lpg5fv", - "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211" + "sha256": "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk", + "rev": "f4ba0c3790855d7544dff92d470d212f24de1d9d" }, "recipe": { "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20130627.1853", - "deps": [] + "version": "20151221.1621", + "deps": [ + "cl-lib" + ] }, "helm-git": { "fetch": { @@ -16755,7 +16874,7 @@ }, "recipe": { "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120630.1603", "deps": [] @@ -16770,7 +16889,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.214", "deps": [ @@ -16787,7 +16906,7 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120727.926", "deps": [] @@ -16802,7 +16921,7 @@ }, "recipe": { "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150603.1210", "deps": [ @@ -16819,7 +16938,7 @@ }, "recipe": { "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131015.1058", "deps": [ @@ -16835,7 +16954,7 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140816.733", "deps": [] @@ -16850,7 +16969,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140916.1322", "deps": [ @@ -16867,7 +16986,7 @@ }, "recipe": { "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141101.120", "deps": [] @@ -16881,7 +17000,7 @@ }, "recipe": { "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140509.722", "deps": [] @@ -16896,7 +17015,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.436", "deps": [] @@ -16911,7 +17030,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131231.830", "deps": [ @@ -16927,7 +17046,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140130.2016", "deps": [] @@ -16942,7 +17061,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150905.239", "deps": [ @@ -16955,14 +17074,14 @@ "tag": "fetchFromGitHub", "owner": "josteink", "repo": "wsd-mode", - "sha256": "1jqm4ysakdnb8lp3kj1d4cr0krnwvm7b5i70sfkx8ps0f9k7dhjb", - "rev": "a5b012607793a5edc9d54b30e04f4a324144e930" + "sha256": "134ysscql74v1ix3wnpgrcbmayq6d264m0m975g41hcz8f876j03", + "rev": "d54c22f6f9a774ef2b1595ab52947403af2ff994" }, "recipe": { - "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150913.1230", + "version": "20151224.850", "deps": [] }, "rubocop": { @@ -16975,7 +17094,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.2337", "deps": [ @@ -16993,7 +17112,7 @@ }, "recipe": { "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150627.951", "deps": [ @@ -17010,7 +17129,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.313", "deps": [ @@ -17032,7 +17151,7 @@ }, "recipe": { "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131012.730", "deps": [ @@ -17044,14 +17163,14 @@ "tag": "fetchFromGitHub", "owner": "bbatsov", "repo": "zenburn-emacs", - "sha256": "14m4azwy6h8d9gw764ikddnis13armxagpfvj6v97773v56ankgg", - "rev": "fc77c5382f2074f8defe39541b4bfc568cd67ca7" + "sha256": "071wrw9n1f3f9r19ng55942fzijlssrd3kzmxxs1c76yvdpy3wy5", + "rev": "7bdf03cb51105bb1c8f1cd86107e4a7b03b2a81e" }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.1441", + "version": "20151223.450", "deps": [] }, "web-mode": { @@ -17064,7 +17183,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.1600", "deps": [] @@ -17079,7 +17198,7 @@ }, "recipe": { "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140929.1335", "deps": [ @@ -17097,7 +17216,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.1248", "deps": [] @@ -17112,7 +17231,7 @@ }, "recipe": { "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130630.739", "deps": [ @@ -17129,7 +17248,7 @@ }, "recipe": { "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.1040", "deps": [] @@ -17138,14 +17257,14 @@ "fetch": { "tag": "fetchhg", "url": "https://bitbucket.com/agriggio/ahg", - "sha256": "04ngls59336lyjbwcxz6qdddpaijh51zds8m666vgwjihniv7skg", - "rev": "bc4ab0720d4a" + "sha256": "0fnn52b2prai8dlsj4759mbcgbbbvhr2lbqs3f0k5d2q8vvqrch1", + "rev": "e8eda2f41471" }, "recipe": { "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.213", + "version": "20151223.501", "deps": [] }, "isearch-dabbrev": { @@ -17158,7 +17277,7 @@ }, "recipe": { "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141224.22", "deps": [ @@ -17175,7 +17294,7 @@ }, "recipe": { "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131224.905", "deps": [ @@ -17195,7 +17314,7 @@ }, "recipe": { "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.408", "deps": [] @@ -17210,7 +17329,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150822.1436", "deps": [] @@ -17225,7 +17344,7 @@ }, "recipe": { "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150518.809", "deps": [ @@ -17237,14 +17356,14 @@ "tag": "fetchFromGitHub", "owner": "holomorph", "repo": "transmission", - "sha256": "0k6y501lqk73b38l2san0hc379f4qva9b4q101m0ajwbkkw383vn", - "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede" + "sha256": "08jir2kj42x0kf124g1znphnmh6n25vcxkykyyn01brbdycgkb1j", + "rev": "61d487b5cdf1931852bf3c8a30f3695c5ae7e8aa" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.343", + "version": "20151220.1447", "deps": [ "emacs", "let-alist" @@ -17260,7 +17379,7 @@ }, "recipe": { "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.318", "deps": [] @@ -17275,7 +17394,7 @@ }, "recipe": { "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140420.1143", "deps": [] @@ -17289,7 +17408,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.854", "deps": [ @@ -17306,7 +17425,7 @@ }, "recipe": { "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.1346", "deps": [] @@ -17319,7 +17438,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.924", "deps": [] @@ -17333,7 +17452,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.640", "deps": [] @@ -17343,12 +17462,12 @@ "tag": "fetchFromGitHub", "owner": "travisbhartwell", "repo": "nix-emacs", - "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", - "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.1809", "deps": [ @@ -17365,7 +17484,7 @@ }, "recipe": { "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150404.218", "deps": [] @@ -17380,7 +17499,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150730.416", "deps": [ @@ -17399,7 +17518,7 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131014.5", "deps": [] @@ -17414,7 +17533,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.946", "deps": [ @@ -17432,7 +17551,7 @@ }, "recipe": { "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.1126", "deps": [ @@ -17449,7 +17568,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.1335", "deps": [] @@ -17464,7 +17583,7 @@ }, "recipe": { "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141027.929", "deps": [] @@ -17479,7 +17598,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -17494,7 +17613,7 @@ }, "recipe": { "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150326.31", "deps": [ @@ -17511,7 +17630,7 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141108.2108", "deps": [ @@ -17528,7 +17647,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140626.742", "deps": [ @@ -17552,7 +17671,7 @@ }, "recipe": { "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150813.808", "deps": [ @@ -17570,7 +17689,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.456", "deps": [ @@ -17588,7 +17707,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.249", "deps": [ @@ -17608,7 +17727,7 @@ }, "recipe": { "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.1533", "deps": [ @@ -17622,14 +17741,14 @@ "tag": "fetchFromGitHub", "owner": "Floobits", "repo": "floobits-emacs", - "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", - "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + "sha256": "1b9zxyv5bn1ja0gcv5p3dk3lq3gp3g1dhbnizx7ifgpzc36sp374", + "rev": "c75af788d089b701dc71fd79c2baefe82d0d17eb" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151016.1836", + "version": "20151221.1804", "deps": [ "highlight", "json" @@ -17645,7 +17764,7 @@ }, "recipe": { "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150506.159", "deps": [] @@ -17660,7 +17779,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.1102", "deps": [] @@ -17675,7 +17794,7 @@ }, "recipe": { "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140823.1942", "deps": [] @@ -17690,7 +17809,7 @@ }, "recipe": { "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.718", "deps": [ @@ -17709,7 +17828,7 @@ }, "recipe": { "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130212.626", "deps": [ @@ -17727,7 +17846,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130602.748", "deps": [] @@ -17742,7 +17861,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150307.1642", "deps": [ @@ -17759,7 +17878,7 @@ }, "recipe": { "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141005.40", "deps": [] @@ -17774,7 +17893,7 @@ }, "recipe": { "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150615.2056", "deps": [ @@ -17792,7 +17911,7 @@ }, "recipe": { "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131006.847", "deps": [] @@ -17802,14 +17921,14 @@ "tag": "fetchFromGitHub", "owner": "stan-dev", "repo": "stan-mode", - "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", - "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + "sha256": "1k0jidh177s9lk4k9vphivq8dapd2qzajim2s835pn72j6k675vg", + "rev": "e981ca7fee98431162b21ec6b79c82100ce4b276" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150829.2215", + "version": "20151222.2258", "deps": [] }, "parse-csv": { @@ -17822,7 +17941,7 @@ }, "recipe": { "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140203.316", "deps": [] @@ -17837,7 +17956,7 @@ }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.710", "deps": [ @@ -17861,7 +17980,7 @@ }, "recipe": { "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.614", "deps": [] @@ -17871,14 +17990,14 @@ "tag": "fetchFromGitHub", "owner": "abo-abo", "repo": "avy", - "sha256": "1vd6i1kpnqh7344jfz0my3ykmfj449ik26cz4sgridsi8ymq4wzg", - "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef" + "sha256": "17sa27vhyz642y3g6pjqjs03clqlblmbx2vinpmylga3anf5rrnw", + "rev": "9d18bf9fc247e7423b954d05cecdea2417dfc239" }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151207.756", + "version": "20151222.445", "deps": [ "cl-lib", "emacs" @@ -17894,7 +18013,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110602.1822", "deps": [ @@ -17910,7 +18029,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.1212", "deps": [ @@ -17927,7 +18046,7 @@ }, "recipe": { "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151015.1302", "deps": [] @@ -17942,7 +18061,7 @@ }, "recipe": { "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.1340", "deps": [] @@ -17957,7 +18076,7 @@ }, "recipe": { "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.726", "deps": [ @@ -17978,7 +18097,7 @@ }, "recipe": { "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110507.224", "deps": [] @@ -17993,7 +18112,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150901.247", "deps": [ @@ -18010,7 +18129,7 @@ }, "recipe": { "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130306.1415", "deps": [] @@ -18025,7 +18144,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140717.2229", "deps": [] @@ -18040,7 +18159,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140815.1016", "deps": [ @@ -18057,7 +18176,7 @@ }, "recipe": { "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.2134", "deps": [] @@ -18072,7 +18191,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131202.1503", "deps": [] @@ -18082,14 +18201,14 @@ "tag": "fetchFromGitHub", "owner": "clojure-emacs", "repo": "clojure-mode", - "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", - "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + "sha256": "130s55mwzmi1almjajfl5bv3jra9ccafsiv240ls4agqkq2702vv", + "rev": "22b6709a651cc9c38a0c2a4c42df500ec3e46f1b" }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.1238", + "version": "20151224.636", "deps": [ "emacs" ] @@ -18104,7 +18223,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.447", "deps": [ @@ -18116,14 +18235,14 @@ "tag": "fetchFromGitHub", "owner": "magit", "repo": "magit", - "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", - "rev": "6b595ac224f512cf672c56600e136714875a940f" + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.705", + "version": "20151223.1541", "deps": [ "async", "dash", @@ -18140,7 +18259,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.1002", "deps": [ @@ -18158,7 +18277,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100807.1231", "deps": [] @@ -18173,7 +18292,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1257", "deps": [ @@ -18191,7 +18310,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.600", "deps": [ @@ -18208,7 +18327,7 @@ }, "recipe": { "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131226.1408", "deps": [] @@ -18223,7 +18342,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150326.1118", "deps": [ @@ -18242,7 +18361,7 @@ }, "recipe": { "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120531.1636", "deps": [] @@ -18257,7 +18376,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.521", "deps": [] @@ -18272,7 +18391,7 @@ }, "recipe": { "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131207.2140", "deps": [] @@ -18287,7 +18406,7 @@ }, "recipe": { "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140110.2211", "deps": [] @@ -18302,7 +18421,7 @@ }, "recipe": { "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131217.911", "deps": [ @@ -18319,7 +18438,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.617", "deps": [ @@ -18336,7 +18455,7 @@ }, "recipe": { "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1113", "deps": [] @@ -18351,7 +18470,7 @@ }, "recipe": { "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151028.502", "deps": [] @@ -18366,7 +18485,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150829.832", "deps": [] @@ -18381,7 +18500,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150416.1257", "deps": [ @@ -18399,7 +18518,7 @@ }, "recipe": { "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.908", "deps": [ @@ -18417,7 +18536,7 @@ }, "recipe": { "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.617", "deps": [ @@ -18437,7 +18556,7 @@ }, "recipe": { "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150711.1723", "deps": [ @@ -18454,7 +18573,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.2125", "deps": [ @@ -18472,7 +18591,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150720.1255", "deps": [ @@ -18490,7 +18609,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140619.505", "deps": [ @@ -18507,7 +18626,7 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140309.422", "deps": [] @@ -18522,7 +18641,7 @@ }, "recipe": { "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150211.1149", "deps": [] @@ -18537,7 +18656,7 @@ }, "recipe": { "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140222.2022", "deps": [ @@ -18554,7 +18673,7 @@ }, "recipe": { "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131220.1447", "deps": [ @@ -18569,7 +18688,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150630.1635", "deps": [] @@ -18584,7 +18703,7 @@ }, "recipe": { "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140528.1627", "deps": [ @@ -18599,7 +18718,7 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130822.532", "deps": [] @@ -18614,7 +18733,7 @@ }, "recipe": { "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141109.343", "deps": [] @@ -18629,7 +18748,7 @@ }, "recipe": { "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140814.459", "deps": [] @@ -18644,7 +18763,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150825.1749", "deps": [] @@ -18659,7 +18778,7 @@ }, "recipe": { "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150414.1810", "deps": [ @@ -18676,7 +18795,7 @@ }, "recipe": { "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130605.1624", "deps": [ @@ -18694,7 +18813,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150427.2214", "deps": [] @@ -18709,7 +18828,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.531", "deps": [] @@ -18724,7 +18843,7 @@ }, "recipe": { "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150629.1353", "deps": [ @@ -18741,7 +18860,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150428.1354", "deps": [ @@ -18759,7 +18878,7 @@ }, "recipe": { "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151019.911", "deps": [] @@ -18769,14 +18888,14 @@ "tag": "fetchFromGitHub", "owner": "xahlee", "repo": "xah-fly-keys", - "sha256": "0c8l924sanlbwbckg4ganw91lvbh5q05gn03f2j194adgjhqsw1n", - "rev": "83d0da590640dda6d175cf88e83062717e39ed50" + "sha256": "0ayd26gmv4jw6dblq1x81hsb35hy65f2mx5nsbfrgdkh078vzsq7", + "rev": "668895c2f6014174b0e42539b9d2963ed71b401c" }, "recipe": { "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.348", + "version": "20151223.2256", "deps": [] }, "chm-view": { @@ -18787,7 +18906,7 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110616.1219", "deps": [] @@ -18802,7 +18921,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.519", "deps": [ @@ -18816,14 +18935,14 @@ "tag": "fetchFromGitHub", "owner": "msherry", "repo": "fxrd-mode", - "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b", - "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" + "sha256": "1n2cvingj7li61k1ff4kmf2gf591fdkslvqsqk0lh71nz59c543j", + "rev": "e8c93535cc04083d3b63a1944770488984bc19ce" }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151211.1328", + "version": "20151220.1444", "deps": [ "s" ] @@ -18838,7 +18957,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150703.854", "deps": [ @@ -18855,7 +18974,7 @@ }, "recipe": { "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.608", "deps": [ @@ -18872,7 +18991,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.2038", "deps": [ @@ -18889,7 +19008,7 @@ }, "recipe": { "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150430.713", "deps": [ @@ -18908,7 +19027,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130427.1008", "deps": [] @@ -18923,7 +19042,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.949", "deps": [] @@ -18938,7 +19057,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.918", "deps": [] @@ -18953,7 +19072,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.344", "deps": [ @@ -18970,7 +19089,7 @@ }, "recipe": { "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150401.916", "deps": [ @@ -18987,7 +19106,7 @@ }, "recipe": { "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150915.203", "deps": [] @@ -19002,7 +19121,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141007.656", "deps": [ @@ -19015,14 +19134,14 @@ "tag": "fetchFromGitHub", "owner": "kyleam", "repo": "snakemake-mode", - "sha256": "0ymgiqfz33b0iyc6y9m8mb76q3jrccxlh7sbpqn8hj31iwlqyr48", - "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a" + "sha256": "18n4r3nqslvlzambraf70s5qgbdljy0qlfhpghilp1nvh327fmv5", + "rev": "3c6ed16930c0c18c4f5fddbe181ba407df681a07" }, "recipe": { "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151103.2203", + "version": "20151224.37", "deps": [ "emacs" ] @@ -19037,7 +19156,7 @@ }, "recipe": { "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.639", "deps": [ @@ -19054,7 +19173,7 @@ }, "recipe": { "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150324.810", "deps": [] @@ -19069,7 +19188,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -19086,7 +19205,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151002.2230", "deps": [] @@ -19101,7 +19220,7 @@ }, "recipe": { "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140214.904", "deps": [ @@ -19118,7 +19237,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.934", "deps": [ @@ -19135,7 +19254,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130605.1100", "deps": [ @@ -19153,7 +19272,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120225.1455", "deps": [ @@ -19165,14 +19284,14 @@ "tag": "fetchFromGitHub", "owner": "yuya373", "repo": "emacs-slack", - "sha256": "1xpkcabi0cnk895fkg8ssaz7m3bc9x5i77v6a9mwdyjjxikcmgi2", - "rev": "861b250458606039301480bcf8c166b1a2ce174b" + "sha256": "1qczdpklkb1ayyy71d40xi3iw276kpns4p3ml30sykva4y995khl", + "rev": "feaf6beae109e3dd9c8828cda2024eba69fad936" }, "recipe": { "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.347", + "version": "20151226.532", "deps": [ "alert", "circe", @@ -19192,7 +19311,7 @@ }, "recipe": { "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130607.2149", "deps": [] @@ -19207,7 +19326,7 @@ }, "recipe": { "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150426.2037", "deps": [] @@ -19222,7 +19341,7 @@ }, "recipe": { "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140606.2106", "deps": [ @@ -19239,7 +19358,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151129.1441", "deps": [ @@ -19255,7 +19374,7 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20080329.2159", "deps": [] @@ -19270,7 +19389,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1536", "deps": [ @@ -19289,7 +19408,7 @@ }, "recipe": { "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120515.1148", "deps": [] @@ -19304,7 +19423,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141011.938", "deps": [ @@ -19323,7 +19442,7 @@ }, "recipe": { "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.2004", "deps": [ @@ -19341,7 +19460,7 @@ }, "recipe": { "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150623.2350", "deps": [] @@ -19354,7 +19473,7 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.918", "deps": [] @@ -19369,7 +19488,7 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.1003", "deps": [] @@ -19384,7 +19503,7 @@ }, "recipe": { "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141027.2142", "deps": [ @@ -19401,7 +19520,7 @@ }, "recipe": { "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150712.1000", "deps": [ @@ -19418,7 +19537,7 @@ }, "recipe": { "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.255", "deps": [ @@ -19435,7 +19554,7 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131010.2258", "deps": [] @@ -19450,7 +19569,7 @@ }, "recipe": { "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141102.1239", "deps": [] @@ -19465,7 +19584,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.932", "deps": [] @@ -19480,7 +19599,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.1253", "deps": [ @@ -19498,7 +19617,7 @@ }, "recipe": { "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.816", "deps": [ @@ -19515,7 +19634,7 @@ }, "recipe": { "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111121.900", "deps": [] @@ -19530,7 +19649,7 @@ }, "recipe": { "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141118.840", "deps": [] @@ -19545,7 +19664,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150324.939", "deps": [] @@ -19560,7 +19679,7 @@ }, "recipe": { "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.1048", "deps": [ @@ -19577,7 +19696,7 @@ }, "recipe": { "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.409", "deps": [ @@ -19596,7 +19715,7 @@ }, "recipe": { "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150726.159", "deps": [] @@ -19611,7 +19730,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.1740", "deps": [ @@ -19629,7 +19748,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.846", "deps": [] @@ -19644,7 +19763,7 @@ }, "recipe": { "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120323.1835", "deps": [] @@ -19659,7 +19778,7 @@ }, "recipe": { "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.15", "deps": [] @@ -19674,7 +19793,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.454", "deps": [ @@ -19691,7 +19810,7 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101125.1355", "deps": [] @@ -19706,7 +19825,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150922.2148", "deps": [ @@ -19727,7 +19846,7 @@ }, "recipe": { "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150803.646", "deps": [ @@ -19745,7 +19864,7 @@ }, "recipe": { "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.348", "deps": [] @@ -19760,7 +19879,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140826.656", "deps": [ @@ -19774,14 +19893,14 @@ "tag": "fetchFromGitHub", "owner": "Wilfred", "repo": "ag.el", - "sha256": "04rvj7arjmg12vimf55yzj2md1blncksl8q15jrdbzddhrbdjvg4", - "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0" + "sha256": "03157dyw4in7hazw2glc9dz9509097s76x8g79w9cr9cyjwax42p", + "rev": "4894b38feffc4c044f8cbaabf3033f49084dba2c" }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151209.1750", + "version": "20151226.1805", "deps": [ "cl-lib", "dash", @@ -19798,7 +19917,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131230.939", "deps": [] @@ -19813,7 +19932,7 @@ }, "recipe": { "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150113.1611", "deps": [ @@ -19831,7 +19950,7 @@ }, "recipe": { "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.2108", "deps": [ @@ -19845,12 +19964,12 @@ "tag": "fetchFromGitHub", "owner": "HKey", "repo": "el-init", - "sha256": "01yxv5kladg04rqglrzrh3vdf435g3m0hnv8ay9zkwgggcnqiknw", - "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072" + "sha256": "140afbksvm1kvam7pyaibay8rqhfhmb22rrh39mvdnqskqfnlqgr", + "rev": "a23cc95dd67fe63e131da211caa48eae804b11c5" }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150728.420", "deps": [ @@ -19869,7 +19988,7 @@ }, "recipe": { "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150424.904", "deps": [] @@ -19884,7 +20003,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.959", "deps": [ @@ -19902,7 +20021,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130218.1737", "deps": [] @@ -19917,7 +20036,7 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1050", "deps": [ @@ -19932,7 +20051,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100504.329", "deps": [] @@ -19945,7 +20064,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.952", "deps": [ @@ -19960,7 +20079,7 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150712.621", "deps": [] @@ -19975,7 +20094,7 @@ }, "recipe": { "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150901.604", "deps": [ @@ -19997,7 +20116,7 @@ }, "recipe": { "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.442", "deps": [ @@ -20014,7 +20133,7 @@ }, "recipe": { "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.414", "deps": [] @@ -20029,7 +20148,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150121.1327", "deps": [ @@ -20046,7 +20165,7 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100504.350", "deps": [] @@ -20061,7 +20180,7 @@ }, "recipe": { "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100330.1331", "deps": [] @@ -20071,14 +20190,14 @@ "tag": "fetchFromGitHub", "owner": "DarwinAwardWinner", "repo": "ido-ubiquitous", - "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", - "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151130.1816", + "version": "20151219.1036", "deps": [ "cl-lib", "emacs", @@ -20096,7 +20215,7 @@ }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.525", "deps": [] @@ -20111,7 +20230,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150328.2006", "deps": [ @@ -20130,7 +20249,7 @@ }, "recipe": { "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150707.1952", "deps": [ @@ -20147,7 +20266,7 @@ }, "recipe": { "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.1418", "deps": [] @@ -20162,7 +20281,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141125.2159", "deps": [] @@ -20177,7 +20296,7 @@ }, "recipe": { "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141104.1545", "deps": [] @@ -20192,7 +20311,7 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.740", "deps": [] @@ -20205,7 +20324,7 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140307.328", "deps": [] @@ -20220,7 +20339,7 @@ }, "recipe": { "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140918.1801", "deps": [] @@ -20230,14 +20349,14 @@ "tag": "fetchFromGitHub", "owner": "m00natic", "repo": "anti-zenburn-theme", - "sha256": "1cqgzzk4hrdnji9cj55shs2fzjfhw0ri6gcmhs7wci4330iqgznm", - "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59" + "sha256": "0p4jg397iqriahqm7ssr8zsmqnwh0wrwl9bxkhwh8fzkd2rvxci0", + "rev": "7e107cd0b77e4212a6c330600e8eb83a72d7defe" }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151103.1846", + "version": "20151223.1613", "deps": [] }, "sws-mode": { @@ -20250,7 +20369,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150317.1445", "deps": [] @@ -20265,7 +20384,7 @@ }, "recipe": { "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.447", "deps": [ @@ -20284,7 +20403,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150121.1037", "deps": [ @@ -20296,14 +20415,14 @@ "tag": "fetchFromGitHub", "owner": "phillord", "repo": "lentic", - "sha256": "1lb7sxnnz1hi4xlf1q0ldvzig48dfmf6ki2p8b0mxk3lm4i3m1js", - "rev": "37f9fedb44c5feaeb14279ab3e8113f69cdf19a7" + "sha256": "0r5mngz8jsgx1z0dyvm93pimsh63wg18bisvk11d9mq7c1whyc4v", + "rev": "02073c4f1c376c99511e0e637a15ed0da18405a8" }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.1029", + "version": "20151223.314", "deps": [ "dash", "emacs", @@ -20322,7 +20441,7 @@ }, "recipe": { "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150412.1300", "deps": [] @@ -20337,7 +20456,7 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.1006", "deps": [] @@ -20347,12 +20466,12 @@ "tag": "fetchFromGitHub", "owner": "rvirding", "repo": "lfe", - "sha256": "1i0nw7b19c26v6lnv8zjmcvirjbh7hfb1magr49ric3gpwlblnv7", - "rev": "b0921aacf954e68689c181ec1c4651b02dc51855" + "sha256": "14rkvxyyxsr80bcymvwxvnyvk9mminvxsy5yg1gqvw9aif0y8ia4", + "rev": "64dec553ac6fcee72cb61f7e0f6f317690a73c1f" }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.1835", "deps": [] @@ -20366,7 +20485,7 @@ }, "recipe": { "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20080305.234", "deps": [] @@ -20381,7 +20500,7 @@ }, "recipe": { "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131029.133", "deps": [] @@ -20394,7 +20513,7 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -20409,7 +20528,7 @@ }, "recipe": { "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150709.109", "deps": [ @@ -20427,7 +20546,7 @@ }, "recipe": { "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090510.1555", "deps": [] @@ -20442,7 +20561,7 @@ }, "recipe": { "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.150", "deps": [ @@ -20460,7 +20579,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140810.8", "deps": [] @@ -20475,7 +20594,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.526", "deps": [ @@ -20491,7 +20610,7 @@ }, "recipe": { "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141107.1717", "deps": [ @@ -20508,7 +20627,7 @@ }, "recipe": { "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150626.145", "deps": [] @@ -20523,7 +20642,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140510.1637", "deps": [] @@ -20538,7 +20657,7 @@ }, "recipe": { "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151019.1144", "deps": [ @@ -20550,14 +20669,14 @@ "tag": "fetchFromGitHub", "owner": "rexim", "repo": "org-cliplink", - "sha256": "1hc8yrfnla66p9lqvcnql51xa5pdmaqpka60nvfnyc5h40jyjsfd", - "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2" + "sha256": "1fwnsyl6lq43bvdh4fldsb8224y1dasavkjdlg0fw1libqjp8w6i", + "rev": "401d378e6324334d8b6ac4d28c86182848cd8c26" }, "recipe": { "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150922.51", + "version": "20151219.1455", "deps": [] }, "flymake-cppcheck": { @@ -20570,7 +20689,7 @@ }, "recipe": { "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140415.757", "deps": [ @@ -20587,7 +20706,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.647", "deps": [ @@ -20607,7 +20726,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150328.1401", "deps": [ @@ -20628,7 +20747,7 @@ }, "recipe": { "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.1339", "deps": [] @@ -20643,7 +20762,7 @@ }, "recipe": { "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.1301", "deps": [] @@ -20658,7 +20777,7 @@ }, "recipe": { "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.1503", "deps": [] @@ -20673,7 +20792,7 @@ }, "recipe": { "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.1527", "deps": [ @@ -20690,7 +20809,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150809.2340", "deps": [ @@ -20706,7 +20825,7 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1604", "deps": [] @@ -20721,7 +20840,7 @@ }, "recipe": { "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150428.2252", "deps": [ @@ -20738,7 +20857,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130707.116", "deps": [] @@ -20753,7 +20872,7 @@ }, "recipe": { "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151002.2030", "deps": [] @@ -20768,7 +20887,7 @@ }, "recipe": { "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.2028", "deps": [] @@ -20783,7 +20902,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.1123", "deps": [ @@ -20801,7 +20920,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140117.120", "deps": [ @@ -20818,7 +20937,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130327.732", "deps": [] @@ -20833,7 +20952,7 @@ }, "recipe": { "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.430", "deps": [] @@ -20848,7 +20967,7 @@ }, "recipe": { "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1222", "deps": [ @@ -20866,7 +20985,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121227.1702", "deps": [] @@ -20881,7 +21000,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150927.224", "deps": [] @@ -20891,12 +21010,12 @@ "tag": "fetchFromGitHub", "owner": "google", "repo": "protobuf", - "sha256": "023654g10pwx6h88jiwqdfskq663cc06dvr9pf6l1xjqm28wra34", - "rev": "43f9cb1e6f535e3a57bab517f8041beb2b3b1c51" + "sha256": "04j0i9glv0g6k59gjdpdpnlq44h2b958md8vr2mh4qsbhm89nbk3", + "rev": "b27f2893b2a118b4e3bfcd23d32114dbdd4e6d9b" }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150521.2211", "deps": [] @@ -20911,7 +21030,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141130.805", "deps": [ @@ -20928,7 +21047,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150107.1139", "deps": [ @@ -20945,7 +21064,7 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.2332", "deps": [ @@ -20962,7 +21081,7 @@ }, "recipe": { "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150403.2127", "deps": [ @@ -20979,7 +21098,7 @@ }, "recipe": { "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151002.1657", "deps": [ @@ -20994,7 +21113,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.1335", "deps": [] @@ -21008,7 +21127,7 @@ }, "recipe": { "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120507.207", "deps": [] @@ -21023,7 +21142,7 @@ }, "recipe": { "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121118.1753", "deps": [] @@ -21038,7 +21157,7 @@ }, "recipe": { "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130313.443", "deps": [] @@ -21051,7 +21170,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.345", "deps": [] @@ -21066,7 +21185,7 @@ }, "recipe": { "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150712.210", "deps": [ @@ -21085,7 +21204,7 @@ }, "recipe": { "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150129.1516", "deps": [] @@ -21100,7 +21219,7 @@ }, "recipe": { "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131123.1039", "deps": [ @@ -21118,7 +21237,7 @@ }, "recipe": { "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130705.250", "deps": [] @@ -21133,7 +21252,7 @@ }, "recipe": { "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121224.1947", "deps": [] @@ -21146,7 +21265,7 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130130.1550", "deps": [] @@ -21161,7 +21280,7 @@ }, "recipe": { "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150525.2045", "deps": [] @@ -21176,7 +21295,7 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150312.28", "deps": [ @@ -21192,7 +21311,7 @@ }, "recipe": { "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120205.507", "deps": [] @@ -21207,7 +21326,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.1520", "deps": [ @@ -21224,7 +21343,7 @@ }, "recipe": { "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.225", "deps": [] @@ -21239,7 +21358,7 @@ }, "recipe": { "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130527.1625", "deps": [] @@ -21254,7 +21373,7 @@ }, "recipe": { "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130616.125", "deps": [] @@ -21269,7 +21388,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140216.619", "deps": [ @@ -21293,7 +21412,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.2006", "deps": [ @@ -21310,7 +21429,7 @@ }, "recipe": { "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130328.1218", "deps": [] @@ -21325,7 +21444,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140122.1056", "deps": [] @@ -21340,7 +21459,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150926.756", "deps": [] @@ -21355,7 +21474,7 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140220.2258", "deps": [ @@ -21370,7 +21489,7 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130130.1551", "deps": [] @@ -21385,7 +21504,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150126.959", "deps": [] @@ -21400,7 +21519,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.746", "deps": [] @@ -21415,7 +21534,7 @@ }, "recipe": { "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131209.2319", "deps": [ @@ -21432,7 +21551,7 @@ }, "recipe": { "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140109.812", "deps": [] @@ -21447,7 +21566,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141120.1431", "deps": [] @@ -21462,7 +21581,7 @@ }, "recipe": { "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140420.1143", "deps": [] @@ -21477,7 +21596,7 @@ }, "recipe": { "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -21494,7 +21613,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150511.519", "deps": [] @@ -21509,7 +21628,7 @@ }, "recipe": { "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150501.1300", "deps": [ @@ -21522,14 +21641,14 @@ "tag": "fetchFromGitHub", "owner": "wavexx", "repo": "python-x.el", - "sha256": "0ahsz3ij4smngss0kspw0f27xl6324a48m7z0r78wywclnnpvrv2", - "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a" + "sha256": "0ky23irh8zdkssgzhsyas37118vjc7w50rlc5a2414d2mmgnp70m", + "rev": "d241015775e34f5ef7844abc067ea68b88f0b548" }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.909", + "version": "20151226.1926", "deps": [ "cl-lib", "folding", @@ -21546,7 +21665,7 @@ }, "recipe": { "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121018.204", "deps": [] @@ -21561,7 +21680,7 @@ }, "recipe": { "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131230.2108", "deps": [ @@ -21578,7 +21697,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.218", "deps": [ @@ -21595,7 +21714,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150806.1251", "deps": [ @@ -21613,7 +21732,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150402.1922", "deps": [] @@ -21626,8 +21745,8 @@ "rev": "5b49aea3810d" }, "recipe": { - "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.2228", "deps": [] @@ -21642,7 +21761,7 @@ }, "recipe": { "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150527.423", "deps": [ @@ -21657,7 +21776,7 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090208.2238", "deps": [] @@ -21672,11 +21791,28 @@ }, "recipe": { "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150329.2116", "deps": [] }, + "smartwin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jerryxgh", + "repo": "smartwin", + "sha256": "1fyv0j641iyhnkdf8wmg6d35gv0678w26kdgx61phwa3kgcc156l", + "rev": "bff875daca9509ef323e4ed846b9b4fdbf7b0d95" + }, + "recipe": { + "sha256": "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.611", + "deps": [ + "emacs" + ] + }, "dired-filetype-face": { "fetch": { "tag": "fetchFromGitHub", @@ -21687,7 +21823,7 @@ }, "recipe": { "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.2057", "deps": [] @@ -21702,7 +21838,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.513", "deps": [ @@ -21720,7 +21856,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.116", "deps": [] @@ -21735,7 +21871,7 @@ }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.639", "deps": [ @@ -21752,7 +21888,7 @@ }, "recipe": { "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.1746", "deps": [ @@ -21765,14 +21901,14 @@ "tag": "fetchFromGitHub", "owner": "ensime", "repo": "ensime-emacs", - "sha256": "0mzw17s831r8m4kbs2d5p15c86v7w1y7barzqwcj76sdbb7wfkmy", - "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca" + "sha256": "0p6fdph08332c82vv8ds2h6ghxjb1kird84ykblkx41f748hw2y2", + "rev": "f590c350695e3efbe3a3197bb4ad7e6a3174f77c" }, "recipe": { "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151205.1416", + "version": "20151224.620", "deps": [ "company", "dash", @@ -21793,7 +21929,7 @@ }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.610", "deps": [ @@ -21811,7 +21947,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150901.1017", "deps": [ @@ -21828,7 +21964,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151008.1649", "deps": [ @@ -21845,7 +21981,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150827.2234", "deps": [ @@ -21864,7 +22000,7 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131015.822", "deps": [ @@ -21879,7 +22015,7 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140630.947", "deps": [] @@ -21894,7 +22030,7 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120328.314", "deps": [ @@ -21909,7 +22045,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -21922,7 +22058,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150821.1428", "deps": [ @@ -21939,7 +22075,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.2302", "deps": [ @@ -21957,7 +22093,7 @@ }, "recipe": { "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.1035", "deps": [] @@ -21972,7 +22108,7 @@ }, "recipe": { "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140102.1736", "deps": [] @@ -21987,7 +22123,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.100", "deps": [ @@ -22005,7 +22141,7 @@ }, "recipe": { "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150825.327", "deps": [] @@ -22020,7 +22156,7 @@ }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1544", "deps": [ @@ -22036,7 +22172,7 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140307.1044", "deps": [] @@ -22051,7 +22187,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140320.208", "deps": [ @@ -22069,7 +22205,7 @@ }, "recipe": { "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.1937", "deps": [ @@ -22081,12 +22217,12 @@ "tag": "fetchFromGitHub", "owner": "cfengine", "repo": "core", - "sha256": "1z68f6x0ycpsiszlv7mwh2vcsrvl97nk0wzsn9q858yyki7slya1", - "rev": "ccaf5d1c5225ab4b50212273d45fb20b8034795e" + "sha256": "176s48z9zm8xl1dm891kzky0f6c0ammsn1kk9vps9i7cig8j4aar", + "rev": "6929de02ae1084c20f89ade7f2653ee8860baee0" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131209.611", "deps": [] @@ -22101,7 +22237,7 @@ }, "recipe": { "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150411.1055", "deps": [] @@ -22116,7 +22252,7 @@ }, "recipe": { "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151015.1249", "deps": [ @@ -22134,7 +22270,7 @@ }, "recipe": { "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.803", "deps": [ @@ -22152,7 +22288,7 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1809", "deps": [] @@ -22165,7 +22301,7 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1226", "deps": [] @@ -22180,7 +22316,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120319.1859", "deps": [ @@ -22197,7 +22333,7 @@ }, "recipe": { "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.2206", "deps": [] @@ -22212,7 +22348,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121006.34", "deps": [ @@ -22229,7 +22365,7 @@ }, "recipe": { "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.537", "deps": [ @@ -22248,7 +22384,7 @@ }, "recipe": { "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150214.23", "deps": [] @@ -22263,7 +22399,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131013.1044", "deps": [ @@ -22280,7 +22416,7 @@ }, "recipe": { "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.801", "deps": [] @@ -22295,7 +22431,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.1100", "deps": [] @@ -22310,7 +22446,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -22330,7 +22466,7 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.2352", "deps": [ @@ -22345,7 +22481,7 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1841", "deps": [] @@ -22360,7 +22496,7 @@ }, "recipe": { "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141105.1226", "deps": [] @@ -22375,7 +22511,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150513.1253", "deps": [ @@ -22393,7 +22529,7 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151002.2249", "deps": [ @@ -22410,7 +22546,7 @@ }, "recipe": { "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.733", "deps": [ @@ -22427,7 +22563,7 @@ }, "recipe": { "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.1712", "deps": [] @@ -22442,7 +22578,7 @@ }, "recipe": { "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150320.826", "deps": [ @@ -22458,7 +22594,7 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120508.1320", "deps": [] @@ -22473,7 +22609,7 @@ }, "recipe": { "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131221.545", "deps": [ @@ -22491,7 +22627,7 @@ }, "recipe": { "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.335", "deps": [] @@ -22506,7 +22642,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150226.1017", "deps": [] @@ -22521,7 +22657,7 @@ }, "recipe": { "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130131.348", "deps": [] @@ -22536,7 +22672,7 @@ }, "recipe": { "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150115.1301", "deps": [ @@ -22549,14 +22685,14 @@ "tag": "fetchFromGitHub", "owner": "marcowahl", "repo": "rope-read-mode", - "sha256": "1mmrk88nlv66f5q7l7wll1ivc0hpcv5rd1wq3my8b2xvhwxlhfqs", - "rev": "8837e18405f96aab34821e890141ecf6b749bb73" + "sha256": "1zcpd2rb35xjv16jrypd0vvsfw8ik72gil8wdzbwq19phjqvccjx", + "rev": "9ea77f9cb6f5e4e97838f05603a1c81834bcde1f" }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151118.1705", + "version": "20151220.1359", "deps": [] }, "desktop+": { @@ -22569,7 +22705,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.1440", "deps": [ @@ -22588,7 +22724,7 @@ }, "recipe": { "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141205.1815", "deps": [] @@ -22603,7 +22739,7 @@ }, "recipe": { "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1812", "deps": [ @@ -22620,7 +22756,7 @@ }, "recipe": { "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140203.1706", "deps": [ @@ -22644,7 +22780,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150514.928", "deps": [] @@ -22659,7 +22795,7 @@ }, "recipe": { "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140920.1611", "deps": [] @@ -22674,7 +22810,7 @@ }, "recipe": { "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130127.524", "deps": [] @@ -22689,7 +22825,7 @@ }, "recipe": { "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.232", "deps": [ @@ -22706,7 +22842,7 @@ }, "recipe": { "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140605.1610", "deps": [ @@ -22726,7 +22862,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1527", "deps": [] @@ -22741,7 +22877,7 @@ }, "recipe": { "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.2213", "deps": [ @@ -22758,7 +22894,7 @@ }, "recipe": { "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.807", "deps": [ @@ -22776,7 +22912,7 @@ }, "recipe": { "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130329.48", "deps": [] @@ -22791,7 +22927,7 @@ }, "recipe": { "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.1139", "deps": [ @@ -22808,7 +22944,7 @@ }, "recipe": { "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140517.918", "deps": [ @@ -22825,7 +22961,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140303.1542", "deps": [ @@ -22844,7 +22980,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150310.353", "deps": [ @@ -22861,7 +22997,7 @@ }, "recipe": { "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140713.131", "deps": [ @@ -22878,7 +23014,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.358", "deps": [] @@ -22893,7 +23029,7 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.1448", "deps": [ @@ -22908,7 +23044,7 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1622", "deps": [] @@ -22923,7 +23059,7 @@ }, "recipe": { "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150307.211", "deps": [ @@ -22940,7 +23076,7 @@ }, "recipe": { "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1018", "deps": [] @@ -22955,7 +23091,7 @@ }, "recipe": { "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150818.2328", "deps": [] @@ -22970,7 +23106,7 @@ }, "recipe": { "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.1828", "deps": [ @@ -22987,7 +23123,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.215", "deps": [] @@ -23002,7 +23138,7 @@ }, "recipe": { "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.154", "deps": [] @@ -23017,7 +23153,7 @@ }, "recipe": { "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140310.430", "deps": [] @@ -23032,7 +23168,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.653", "deps": [] @@ -23047,7 +23183,7 @@ }, "recipe": { "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.2321", "deps": [ @@ -23064,7 +23200,7 @@ }, "recipe": { "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150721.1437", "deps": [] @@ -23079,7 +23215,7 @@ }, "recipe": { "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.812", "deps": [] @@ -23094,7 +23230,7 @@ }, "recipe": { "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.102", "deps": [ @@ -23111,7 +23247,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141231.1558", "deps": [] @@ -23126,7 +23262,7 @@ }, "recipe": { "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.423", "deps": [] @@ -23141,7 +23277,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150826.1609", "deps": [] @@ -23156,7 +23292,7 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.830", "deps": [ @@ -23174,7 +23310,7 @@ }, "recipe": { "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.45", "deps": [ @@ -23191,7 +23327,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.1739", "deps": [] @@ -23206,7 +23342,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130429.1659", "deps": [ @@ -23223,7 +23359,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140619.722", "deps": [] @@ -23238,7 +23374,7 @@ }, "recipe": { "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130113.1700", "deps": [ @@ -23256,7 +23392,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.613", "deps": [ @@ -23269,14 +23405,14 @@ "tag": "fetchFromGitHub", "owner": "politza", "repo": "pdf-tools", - "sha256": "1ik26v8x94myx04wy9vi6bwzvfxbl43fam765g0gy2n8289bhpi8", - "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f" + "sha256": "05b5fn3w2bika21a5sxyjs3yfrcdvn6qdrx9li1jda9jg623bpn3", + "rev": "97b86cd09a411d00a7947da76b4c3f77995ccf44" }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151126.1658", + "version": "20151224.1359", "deps": [ "emacs", "let-alist", @@ -23293,7 +23429,7 @@ }, "recipe": { "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.1203", "deps": [ @@ -23310,7 +23446,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150707.1116", "deps": [ @@ -23327,7 +23463,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1057", "deps": [] @@ -23342,7 +23478,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131209.658", "deps": [] @@ -23357,7 +23493,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1347", "deps": [ @@ -23379,7 +23515,7 @@ }, "recipe": { "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150917.100", "deps": [] @@ -23394,7 +23530,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141217.1934", "deps": [ @@ -23412,7 +23548,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -23433,7 +23569,7 @@ }, "recipe": { "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.135", "deps": [] @@ -23443,14 +23579,14 @@ "tag": "fetchFromGitHub", "owner": "flycheck", "repo": "flycheck-pos-tip", - "sha256": "17xfh8kbf1915mq4wli32nrvk7jcg67kq698cc35g8glkkxjm64v", - "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527" + "sha256": "1aq68lycw3pfzb0bivldfaz8v6lf35jidjgm74hh2pgppvijyi31", + "rev": "32ddd6bf3c1a642a9f7afe25475c4bf2ebc7aae9" }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151130.258", + "version": "20151224.822", "deps": [ "dash", "flycheck", @@ -23467,7 +23603,7 @@ }, "recipe": { "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130620.2110", "deps": [] @@ -23482,7 +23618,7 @@ }, "recipe": { "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150413.1548", "deps": [ @@ -23500,7 +23636,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.924", "deps": [ @@ -23518,7 +23654,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.304", "deps": [ @@ -23536,7 +23672,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.416", "deps": [] @@ -23551,7 +23687,7 @@ }, "recipe": { "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150708.1957", "deps": [ @@ -23568,7 +23704,7 @@ }, "recipe": { "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130902.1248", "deps": [ @@ -23585,7 +23721,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.837", "deps": [ @@ -23601,7 +23737,7 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150710.2151", "deps": [] @@ -23616,7 +23752,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.1107", "deps": [ @@ -23633,7 +23769,7 @@ }, "recipe": { "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140220.1701", "deps": [] @@ -23648,7 +23784,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150318.1013", "deps": [] @@ -23663,7 +23799,7 @@ }, "recipe": { "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.1416", "deps": [] @@ -23678,7 +23814,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.233", "deps": [ @@ -23698,7 +23834,7 @@ }, "recipe": { "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150203.125", "deps": [] @@ -23712,7 +23848,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.1804", "deps": [ @@ -23729,7 +23865,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.1818", "deps": [ @@ -23746,7 +23882,7 @@ }, "recipe": { "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141017.444", "deps": [ @@ -23763,7 +23899,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.753", "deps": [ @@ -23781,7 +23917,7 @@ }, "recipe": { "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.410", "deps": [ @@ -23798,7 +23934,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.507", "deps": [] @@ -23813,7 +23949,7 @@ }, "recipe": { "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130627.1808", "deps": [] @@ -23828,7 +23964,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150423.2322", "deps": [ @@ -23846,7 +23982,7 @@ }, "recipe": { "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130513.1737", "deps": [ @@ -23864,7 +24000,7 @@ }, "recipe": { "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130424.1019", "deps": [ @@ -23882,7 +24018,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130324.551", "deps": [ @@ -23899,7 +24035,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150307.408", "deps": [] @@ -23914,7 +24050,7 @@ }, "recipe": { "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.331", "deps": [] @@ -23929,7 +24065,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141111.307", "deps": [] @@ -23944,7 +24080,7 @@ }, "recipe": { "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.608", "deps": [ @@ -23963,7 +24099,7 @@ }, "recipe": { "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130407.1322", "deps": [ @@ -23981,7 +24117,7 @@ }, "recipe": { "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140205.725", "deps": [ @@ -23998,7 +24134,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.604", "deps": [ @@ -24016,7 +24152,7 @@ }, "recipe": { "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.2040", "deps": [ @@ -24035,7 +24171,7 @@ }, "recipe": { "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1412", "deps": [] @@ -24050,7 +24186,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101016.1022", "deps": [] @@ -24065,7 +24201,7 @@ }, "recipe": { "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150328.959", "deps": [ @@ -24083,7 +24219,7 @@ }, "recipe": { "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150215.1548", "deps": [] @@ -24098,7 +24234,7 @@ }, "recipe": { "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140501.731", "deps": [ @@ -24115,7 +24251,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140610.231", "deps": [ @@ -24133,7 +24269,7 @@ }, "recipe": { "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1021", "deps": [] @@ -24146,7 +24282,7 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120329.1136", "deps": [] @@ -24161,7 +24297,7 @@ }, "recipe": { "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.1956", "deps": [ @@ -24178,7 +24314,7 @@ }, "recipe": { "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150904.1313", "deps": [ @@ -24197,7 +24333,7 @@ }, "recipe": { "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141104.1845", "deps": [ @@ -24214,7 +24350,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.413", "deps": [ @@ -24232,7 +24368,7 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -24247,7 +24383,7 @@ }, "recipe": { "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150302.734", "deps": [ @@ -24264,7 +24400,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.111", "deps": [ @@ -24282,7 +24418,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140310.1632", "deps": [] @@ -24297,7 +24433,7 @@ }, "recipe": { "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150722.726", "deps": [ @@ -24315,7 +24451,7 @@ }, "recipe": { "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141202.1157", "deps": [ @@ -24333,7 +24469,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.1238", "deps": [ @@ -24353,7 +24489,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150304.848", "deps": [ @@ -24372,7 +24508,7 @@ }, "recipe": { "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130718.932", "deps": [ @@ -24389,7 +24525,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150120.2358", "deps": [ @@ -24406,7 +24542,7 @@ }, "recipe": { "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150217.2028", "deps": [ @@ -24424,7 +24560,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1327", "deps": [ @@ -24441,7 +24577,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.1149", "deps": [] @@ -24456,7 +24592,7 @@ }, "recipe": { "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120830.1228", "deps": [] @@ -24471,7 +24607,7 @@ }, "recipe": { "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.304", "deps": [] @@ -24486,13 +24622,28 @@ }, "recipe": { "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120307.425", "deps": [ "anything" ] }, + "c-c-combo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "c-c-combo.el", + "sha256": "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5", + "rev": "a261a833499a7fdc29610863b3aafc74818770ba" + }, + "recipe": { + "sha256": "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.2055", + "deps": [] + }, "auto-auto-indent": { "fetch": { "tag": "fetchFromGitHub", @@ -24503,7 +24654,7 @@ }, "recipe": { "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131106.1303", "deps": [ @@ -24521,7 +24672,7 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150605.406", "deps": [] @@ -24530,15 +24681,15 @@ "fetch": { "tag": "fetchFromGitHub", "owner": "bbatsov", - "repo": "projectile", - "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", - "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" + "repo": "helm-projectile", + "sha256": "1c6pfy3qghpqnng1jsnxnvqnd6sq41f2dm7kkwkgml405asqlcqa", + "rev": "2544343b4214511988fa1b652474d7984008f807" }, "recipe": { - "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.49", + "version": "20151220.421", "deps": [ "cl-lib", "dash", @@ -24556,7 +24707,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.1737", "deps": [ @@ -24574,7 +24725,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.119", "deps": [ @@ -24595,7 +24746,7 @@ }, "recipe": { "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.1601", "deps": [ @@ -24613,7 +24764,7 @@ }, "recipe": { "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.1942", "deps": [] @@ -24628,7 +24779,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140615.120", "deps": [] @@ -24643,7 +24794,7 @@ }, "recipe": { "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.225", "deps": [ @@ -24661,7 +24812,7 @@ }, "recipe": { "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151003.531", "deps": [ @@ -24681,7 +24832,7 @@ }, "recipe": { "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120331.1544", "deps": [] @@ -24696,7 +24847,7 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150917.613", "deps": [ @@ -24713,7 +24864,7 @@ }, "recipe": { "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150818.320", "deps": [] @@ -24728,7 +24879,7 @@ }, "recipe": { "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141229.1919", "deps": [ @@ -24746,7 +24897,7 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130901.935", "deps": [] @@ -24761,7 +24912,7 @@ }, "recipe": { "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.2255", "deps": [ @@ -24778,7 +24929,7 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150119.1906", "deps": [ @@ -24794,7 +24945,7 @@ }, "recipe": { "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120808.2207", "deps": [] @@ -24809,7 +24960,7 @@ }, "recipe": { "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130721.1950", "deps": [] @@ -24824,7 +24975,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141105.2236", "deps": [] @@ -24839,7 +24990,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130209.1940", "deps": [ @@ -24856,7 +25007,7 @@ }, "recipe": { "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140115.424", "deps": [] @@ -24871,7 +25022,7 @@ }, "recipe": { "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130926.10", "deps": [] @@ -24886,7 +25037,7 @@ }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150130.1004", "deps": [ @@ -24903,7 +25054,7 @@ }, "recipe": { "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131004.1759", "deps": [] @@ -24913,14 +25064,14 @@ "tag": "fetchFromGitHub", "owner": "fourier", "repo": "idea-darkula-theme", - "sha256": "0i5cw6wcykirpkgyq5sg8mcpz2pf0fvjscw5n4mqcqgr0mzkxqq1", - "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d" + "sha256": "0famn16syz4d5ln1xiblqm0naxr5cnv9757r03xnzi9l9r67vyrs", + "rev": "509481632d337dc6ad49809225d209eb2fdb243f" }, "recipe": { "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.1310", + "version": "20151223.517", "deps": [ "emacs" ] @@ -24930,14 +25081,14 @@ "tag": "fetchFromGitHub", "owner": "jyp", "repo": "boon", - "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq", - "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" + "sha256": "1qgyfcrk1rs1kbshmcgy67hhpfw7rbkbncm3iyqs51wk076hss7a", + "rev": "b4bb92a5c4ce0367e84137b29625a03ace60da2a" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.1533", + "version": "20151226.1557", "deps": [ "emacs", "expand-region", @@ -24954,7 +25105,7 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121016.357", "deps": [] @@ -24969,7 +25120,7 @@ }, "recipe": { "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150611.1237", "deps": [] @@ -24984,7 +25135,7 @@ }, "recipe": { "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130325.907", "deps": [ @@ -24999,7 +25150,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150112.1454", "deps": [] @@ -25013,7 +25164,7 @@ }, "recipe": { "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120814.312", "deps": [] @@ -25028,7 +25179,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150803.1620", "deps": [] @@ -25043,7 +25194,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140625.2306", "deps": [] @@ -25058,7 +25209,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150307.712", "deps": [] @@ -25073,7 +25224,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.338", "deps": [ @@ -25090,7 +25241,7 @@ }, "recipe": { "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150907.1504", "deps": [] @@ -25105,7 +25256,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.333", "deps": [ @@ -25124,7 +25275,7 @@ }, "recipe": { "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150505.1211", "deps": [] @@ -25134,12 +25285,12 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "autotetris-mode", - "sha256": "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc", - "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa" + "sha256": "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az", + "rev": "dd490d5ad6d84bd964ab349484f6a2d05651ede1" }, "recipe": { "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141114.1046", "deps": [ @@ -25156,7 +25307,7 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.839", "deps": [ @@ -25171,7 +25322,7 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1609", "deps": [] @@ -25186,7 +25337,7 @@ }, "recipe": { "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111002.347", "deps": [] @@ -25201,7 +25352,7 @@ }, "recipe": { "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.1610", "deps": [ @@ -25220,7 +25371,7 @@ }, "recipe": { "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111019.1800", "deps": [] @@ -25235,7 +25386,7 @@ }, "recipe": { "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.233", "deps": [] @@ -25250,7 +25401,7 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141204.1945", "deps": [] @@ -25263,7 +25414,7 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1120", "deps": [] @@ -25278,7 +25429,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1654", "deps": [ @@ -25295,7 +25446,7 @@ }, "recipe": { "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130309.1005", "deps": [] @@ -25310,7 +25461,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150916.658", "deps": [] @@ -25324,7 +25475,7 @@ }, "recipe": { "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.1236", "deps": [] @@ -25339,7 +25490,7 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141111.1230", "deps": [ @@ -25356,7 +25507,7 @@ }, "recipe": { "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140202.1341", "deps": [] @@ -25369,7 +25520,7 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141009.939", "deps": [] @@ -25384,7 +25535,7 @@ }, "recipe": { "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140806.2342", "deps": [] @@ -25399,7 +25550,7 @@ }, "recipe": { "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.838", "deps": [ @@ -25417,7 +25568,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151024.1051", "deps": [] @@ -25432,7 +25583,7 @@ }, "recipe": { "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090715.1703", "deps": [] @@ -25447,7 +25598,7 @@ }, "recipe": { "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.1243", "deps": [] @@ -25462,7 +25613,7 @@ }, "recipe": { "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.101", "deps": [ @@ -25479,7 +25630,7 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.1248", "deps": [] @@ -25494,7 +25645,7 @@ }, "recipe": { "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151015.428", "deps": [ @@ -25512,7 +25663,7 @@ }, "recipe": { "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141218.2114", "deps": [] @@ -25527,7 +25678,7 @@ }, "recipe": { "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131110.519", "deps": [ @@ -25545,7 +25696,7 @@ }, "recipe": { "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130312.1458", "deps": [] @@ -25560,7 +25711,7 @@ }, "recipe": { "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140915.952", "deps": [ @@ -25577,7 +25728,7 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1822", "deps": [] @@ -25592,7 +25743,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131203.751", "deps": [ @@ -25608,7 +25759,7 @@ }, "recipe": { "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150414.22", "deps": [] @@ -25623,7 +25774,7 @@ }, "recipe": { "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.953", "deps": [ @@ -25642,7 +25793,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150227.1019", "deps": [ @@ -25661,7 +25812,7 @@ }, "recipe": { "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1812", "deps": [ @@ -25681,7 +25832,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131021.1329", "deps": [ @@ -25700,7 +25851,7 @@ }, "recipe": { "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131108.527", "deps": [] @@ -25714,7 +25865,7 @@ }, "recipe": { "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150530.1326", "deps": [ @@ -25726,12 +25877,12 @@ "tag": "fetchFromGitHub", "owner": "travisbhartwell", "repo": "nix-emacs", - "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", - "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.1809", "deps": [ @@ -25750,7 +25901,7 @@ }, "recipe": { "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.719", "deps": [] @@ -25763,7 +25914,7 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1558", "deps": [] @@ -25778,7 +25929,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130424.157", "deps": [ @@ -25795,7 +25946,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.2212", "deps": [ @@ -25813,7 +25964,7 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.1130", "deps": [ @@ -25830,7 +25981,7 @@ }, "recipe": { "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.924", "deps": [ @@ -25846,7 +25997,7 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150527.1048", "deps": [] @@ -25861,7 +26012,7 @@ }, "recipe": { "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130321.1912", "deps": [] @@ -25876,7 +26027,7 @@ }, "recipe": { "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150212.924", "deps": [ @@ -25893,7 +26044,7 @@ }, "recipe": { "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150522.533", "deps": [] @@ -25908,7 +26059,7 @@ }, "recipe": { "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130908.1322", "deps": [ @@ -25925,7 +26076,7 @@ }, "recipe": { "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.1029", "deps": [] @@ -25940,7 +26091,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130620.622", "deps": [ @@ -25957,7 +26108,7 @@ }, "recipe": { "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141023.958", "deps": [] @@ -25972,7 +26123,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.29", "deps": [] @@ -25987,7 +26138,7 @@ }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.438", "deps": [ @@ -26004,7 +26155,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.346", "deps": [ @@ -26025,7 +26176,7 @@ }, "recipe": { "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150513.2259", "deps": [] @@ -26038,7 +26189,7 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.1305", "deps": [] @@ -26053,7 +26204,7 @@ }, "recipe": { "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.821", "deps": [ @@ -26071,7 +26222,7 @@ }, "recipe": { "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141229.1634", "deps": [] @@ -26086,7 +26237,7 @@ }, "recipe": { "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140530.433", "deps": [ @@ -26103,7 +26254,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120209.1251", "deps": [] @@ -26118,7 +26269,7 @@ }, "recipe": { "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150428.1359", "deps": [] @@ -26133,7 +26284,7 @@ }, "recipe": { "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150904.332", "deps": [] @@ -26148,7 +26299,7 @@ }, "recipe": { "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150921.905", "deps": [] @@ -26163,7 +26314,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101130.643", "deps": [] @@ -26178,7 +26329,7 @@ }, "recipe": { "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.801", "deps": [] @@ -26193,7 +26344,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.808", "deps": [ @@ -26210,7 +26361,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1539", "deps": [ @@ -26229,7 +26380,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -26247,7 +26398,7 @@ }, "recipe": { "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150424.1916", "deps": [] @@ -26262,7 +26413,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.1024", "deps": [ @@ -26279,7 +26430,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150302.728", "deps": [ @@ -26296,7 +26447,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140202.931", "deps": [ @@ -26313,7 +26464,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131115.550", "deps": [ @@ -26331,7 +26482,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150320.2215", "deps": [ @@ -26350,7 +26501,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.2352", "deps": [ @@ -26367,7 +26518,7 @@ }, "recipe": { "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.600", "deps": [] @@ -26382,7 +26533,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150109.1223", "deps": [] @@ -26397,7 +26548,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121104.1304", "deps": [ @@ -26414,7 +26565,7 @@ }, "recipe": { "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140630.1721", "deps": [ @@ -26431,7 +26582,7 @@ }, "recipe": { "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.301", "deps": [] @@ -26446,7 +26597,7 @@ }, "recipe": { "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150224.2259", "deps": [] @@ -26461,7 +26612,7 @@ }, "recipe": { "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150701.855", "deps": [ @@ -26478,7 +26629,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.1031", "deps": [ @@ -26495,7 +26646,7 @@ }, "recipe": { "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.1706", "deps": [ @@ -26514,7 +26665,7 @@ }, "recipe": { "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140417.614", "deps": [ @@ -26531,7 +26682,7 @@ }, "recipe": { "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150718.2131", "deps": [ @@ -26552,7 +26703,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.915", "deps": [ @@ -26571,7 +26722,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150612.1439", "deps": [ @@ -26588,7 +26739,7 @@ }, "recipe": { "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150822.1336", "deps": [] @@ -26603,7 +26754,7 @@ }, "recipe": { "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091203.1215", "deps": [] @@ -26618,7 +26769,7 @@ }, "recipe": { "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150414.1930", "deps": [] @@ -26633,7 +26784,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151003.1322", "deps": [ @@ -26651,7 +26802,7 @@ }, "recipe": { "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120702.1536", "deps": [] @@ -26661,14 +26812,14 @@ "tag": "fetchFromGitHub", "owner": "xahlee", "repo": "xah-math-input", - "sha256": "118dcxq6ya9ks488az5h7hwbvjw0amamaw52pi2cx6s74zyxvwb8", - "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d" + "sha256": "1j2dca3j71g2g8phzfxjvcwymlr10dq8fbahwslwdhadffjv9m87", + "rev": "f0c98d1271b20334c8af2593fd391af23a6e64b4" }, "recipe": { "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150907.1900", + "version": "20151225.1358", "deps": [] }, "vim-region": { @@ -26681,7 +26832,7 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140329.1124", "deps": [ @@ -26696,7 +26847,7 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -26711,7 +26862,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1349", "deps": [ @@ -26728,7 +26879,7 @@ }, "recipe": { "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150127.1546", "deps": [ @@ -26746,7 +26897,7 @@ }, "recipe": { "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.1111", "deps": [] @@ -26761,7 +26912,7 @@ }, "recipe": { "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.1527", "deps": [ @@ -26779,7 +26930,7 @@ }, "recipe": { "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120809.718", "deps": [] @@ -26794,7 +26945,7 @@ }, "recipe": { "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1250", "deps": [ @@ -26807,15 +26958,17 @@ "tag": "fetchFromGitHub", "owner": "alezost", "repo": "aurel", - "sha256": "1vzjrdzb7wp5ydlwsfxy8jnml7pb16y2dhf85qqv0ckncvwwrs3h", - "rev": "dec8063d243176a176f9d7c117c0bb4be9bd03dc" + "sha256": "0z0wq79ks8251fflk2iwrhd885h5qbki2m19f0jy4a8c00ydmxyz", + "rev": "bcabf49c1410b89d592d8aa78f896428c492879a" }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.1353", - "deps": [] + "version": "20151219.2340", + "deps": [ + "emacs" + ] }, "ob-typescript": { "fetch": { @@ -26827,7 +26980,7 @@ }, "recipe": { "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.730", "deps": [ @@ -26845,7 +26998,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150922.737", "deps": [ @@ -26866,7 +27019,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141027.1750", "deps": [ @@ -26883,7 +27036,7 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150717.732", "deps": [] @@ -26898,7 +27051,7 @@ }, "recipe": { "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150503.237", "deps": [ @@ -26910,11 +27063,11 @@ "tag": "fetchsvn", "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1720849" + "rev": "1721816" }, "recipe": { "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130120.1457", "deps": [] @@ -26929,7 +27082,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150505.1043", "deps": [ @@ -26947,7 +27100,7 @@ }, "recipe": { "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.2336", "deps": [] @@ -26960,7 +27113,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1624", "deps": [] @@ -26975,7 +27128,7 @@ }, "recipe": { "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.1708", "deps": [] @@ -26990,7 +27143,7 @@ }, "recipe": { "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.1435", "deps": [] @@ -27005,7 +27158,7 @@ }, "recipe": { "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.706", "deps": [ @@ -27022,7 +27175,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130104.821", "deps": [] @@ -27037,7 +27190,7 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151129.519", "deps": [] @@ -27050,7 +27203,7 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.707", "deps": [] @@ -27060,14 +27213,14 @@ "tag": "fetchFromGitHub", "owner": "kawabata", "repo": "helm-chrome", - "sha256": "0mc15ymq72l8j7p8v6w99zmhpmqfbyc1w1h2pl5aqn2fmhbmhicy", - "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff" + "sha256": "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb", + "rev": "4591cc760d3e721094c70b913b91138776f0e52e" }, "recipe": { "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151014.2327", + "version": "20151222.1958", "deps": [ "cl-lib", "emacs", @@ -27084,7 +27237,7 @@ }, "recipe": { "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.630", "deps": [] @@ -27099,7 +27252,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.622", "deps": [ @@ -27111,14 +27264,14 @@ "tag": "fetchFromGitHub", "owner": "company-mode", "repo": "company-mode", - "sha256": "0xvrhkh2vdvy0xvwicsmy96bfa46lj89m1gy35lp3dl36nh64kjb", - "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618" + "sha256": "0nd0zxzgaxwncbrrs2cql9kiya8s6kjjq0gls58qgq2vd9mwrrgg", + "rev": "900ae0d7a2270ea1d2ea00567e80a619333fd4e5" }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151208.1541", + "version": "20151225.2110", "deps": [ "cl-lib", "emacs" @@ -27134,7 +27287,7 @@ }, "recipe": { "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130605.343", "deps": [] @@ -27149,7 +27302,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130328.1104", "deps": [] @@ -27164,7 +27317,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140629.1016", "deps": [ @@ -27181,7 +27334,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.1247", "deps": [ @@ -27200,7 +27353,7 @@ }, "recipe": { "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141231.1014", "deps": [] @@ -27213,7 +27366,7 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.707", "deps": [] @@ -27228,7 +27381,7 @@ }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150709.140", "deps": [ @@ -27248,7 +27401,7 @@ }, "recipe": { "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141227.19", "deps": [ @@ -27262,14 +27415,14 @@ "tag": "fetchFromGitHub", "owner": "joodland", "repo": "bm", - "sha256": "0ifiqy3lpqf0v76jzhgi59smrbzph7silrhjw6w9fqw6nvmyg608", - "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b" + "sha256": "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x", + "rev": "b91f87c8f78d2430edc376830d5ba15f45d28637" }, "recipe": { "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151105.1722", + "version": "20151222.1803", "deps": [] }, "ox-textile": { @@ -27282,7 +27435,7 @@ }, "recipe": { "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.2225", "deps": [ @@ -27299,7 +27452,7 @@ }, "recipe": { "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140129.117", "deps": [ @@ -27317,7 +27470,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150826.914", "deps": [ @@ -27336,7 +27489,7 @@ }, "recipe": { "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.635", "deps": [ @@ -27353,7 +27506,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -27369,7 +27522,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140520.1148", "deps": [] @@ -27384,7 +27537,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150827.2329", "deps": [] @@ -27399,7 +27552,7 @@ }, "recipe": { "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.743", "deps": [] @@ -27414,7 +27567,7 @@ }, "recipe": { "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.904", "deps": [ @@ -27431,7 +27584,7 @@ }, "recipe": { "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150522.145", "deps": [ @@ -27449,7 +27602,7 @@ }, "recipe": { "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.1620", "deps": [ @@ -27467,7 +27620,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150928.1643", "deps": [ @@ -27483,7 +27636,7 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150814.949", "deps": [] @@ -27498,7 +27651,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1002", "deps": [ @@ -27516,7 +27669,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150504.1522", "deps": [ @@ -27533,7 +27686,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.620", "deps": [] @@ -27548,7 +27701,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150424.218", "deps": [ @@ -27565,7 +27718,7 @@ }, "recipe": { "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.101", "deps": [ @@ -27582,7 +27735,7 @@ }, "recipe": { "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150919.421", "deps": [ @@ -27600,7 +27753,7 @@ }, "recipe": { "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150611.1104", "deps": [ @@ -27612,14 +27765,14 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-helm-ag", - "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6", - "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" + "sha256": "19ymwdi9ld1myl66a4xsy32ysni8wb5qi80yh5l7v0bmgp6ybdqq", + "rev": "679ce0cc4a36cc377fa9f438705c3c8be9a944f3" }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.218", + "version": "20151222.335", "deps": [ "cl-lib", "helm" @@ -27635,7 +27788,7 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140515.1006", "deps": [ @@ -27650,7 +27803,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090804.1752", "deps": [] @@ -27665,7 +27818,7 @@ }, "recipe": { "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.1423", "deps": [] @@ -27678,7 +27831,7 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1534", "deps": [] @@ -27693,7 +27846,7 @@ }, "recipe": { "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140306.827", "deps": [] @@ -27703,12 +27856,12 @@ "tag": "fetchFromGitHub", "owner": "Kitware", "repo": "CMake", - "sha256": "1fga8yvhna953p8gkx69767ai9lkzrxfisqwlf3mrc4pn40yi74x", - "rev": "f9e3ca46cbeae4fb885398e8f7b90c784078b1d3" + "sha256": "1imzpf467rkmgsifbycc81jqvkpwhdi1ngr39h9i3z2j7nx7f023", + "rev": "1d73f6525c523661e51173829b327acf9de9dfc4" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.926", "deps": [] @@ -27721,7 +27874,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150509.1545", "deps": [ @@ -27738,7 +27891,7 @@ }, "recipe": { "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140430.213", "deps": [ @@ -27750,14 +27903,14 @@ "tag": "fetchFromGitLab", "owner": "franksn", "repo": "majapahit-theme", - "sha256": "0ibw6x0wl257kxfp145ybzcnfgjr997wylxy0m6riv6sklzhx4db", - "rev": "09a038826ef00b82684e569eaca07ceff7228219" + "sha256": "0bn2qllfv0iwssdc17g2vhmkk7i9iygh7wji6nbksv0ssgxbfvc0", + "rev": "3b753a972f716a10f6a4ed1f596ceea348d6b489" }, "recipe": { "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151209.1243", + "version": "20151219.2232", "deps": [] }, "interleave": { @@ -27770,7 +27923,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.835", "deps": [] @@ -27785,7 +27938,7 @@ }, "recipe": { "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141102.1322", "deps": [ @@ -27805,7 +27958,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.816", "deps": [ @@ -27823,7 +27976,7 @@ }, "recipe": { "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150214.648", "deps": [ @@ -27835,14 +27988,14 @@ "tag": "fetchFromGitHub", "owner": "extemporelang", "repo": "extempore-emacs-mode", - "sha256": "1gdvls5gaqiwrc8v335ap9raa25jzjq32h80y0mfq0iyrk1r9glp", - "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919" + "sha256": "0nry653cd3qzsj6asrf9hh4zkzhz8nnwjrg1wp17f5ggzpjyybjw", + "rev": "a08be9f0cec32c2818f93a6f7633c14fc2013e61" }, "recipe": { "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.40", + "version": "20151225.51", "deps": [ "emacs" ] @@ -27857,7 +28010,7 @@ }, "recipe": { "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130127.1951", "deps": [] @@ -27870,7 +28023,7 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.837", "deps": [] @@ -27880,14 +28033,14 @@ "tag": "fetchFromGitHub", "owner": "waymondo", "repo": "apropospriate-theme", - "sha256": "1p9nplbxp57i2m2r1f1ff1xgsb152az9yb4zyapf0cvspqzllrvx", - "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6" + "sha256": "1jw6am5c8szrrlff1qfh0hpyi5p5nqnhs8kywl5s4bpj1gxgq8dh", + "rev": "fdd70f890c2fd25882de011c1327ddab143937ce" }, "recipe": { "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151112.1059", + "version": "20151224.956", "deps": [] }, "speech-tagger": { @@ -27900,7 +28053,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150903.2", "deps": [ @@ -27917,7 +28070,7 @@ }, "recipe": { "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140130.1136", "deps": [] @@ -27932,7 +28085,7 @@ }, "recipe": { "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.1830", "deps": [] @@ -27947,7 +28100,7 @@ }, "recipe": { "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.2326", "deps": [ @@ -27966,7 +28119,7 @@ }, "recipe": { "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150608.411", "deps": [ @@ -27983,7 +28136,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110901.330", "deps": [] @@ -27998,7 +28151,7 @@ }, "recipe": { "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130810.917", "deps": [] @@ -28013,7 +28166,7 @@ }, "recipe": { "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150531.343", "deps": [] @@ -28028,7 +28181,7 @@ }, "recipe": { "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150314.322", "deps": [] @@ -28043,7 +28196,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150927.1225", "deps": [] @@ -28058,7 +28211,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.625", "deps": [] @@ -28073,7 +28226,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1603", "deps": [] @@ -28088,7 +28241,7 @@ }, "recipe": { "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.1323", "deps": [] @@ -28103,7 +28256,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151008.1614", "deps": [ @@ -28123,7 +28276,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130122.1053", "deps": [] @@ -28133,14 +28286,14 @@ "tag": "fetchFromGitHub", "owner": "rmuslimov", "repo": "browse-at-remote", - "sha256": "1djylgajp47mjxgdppm8ihbs4k4gnqn6ryzq3d1wkq5vlmqq25m3", - "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d" + "sha256": "0q71ah62q6acivhxzsw9j1ky54i9hhlnj97sjn8bxrxx7nw01gf7", + "rev": "d7e155e9ea7acfc9dadd334fe41ac57e93f38674" }, "recipe": { "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.1527", + "version": "20151226.1628", "deps": [ "cl-lib", "f", @@ -28157,7 +28310,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150517.643", "deps": [ @@ -28174,7 +28327,7 @@ }, "recipe": { "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.702", "deps": [ @@ -28191,7 +28344,7 @@ }, "recipe": { "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.1311", "deps": [ @@ -28208,7 +28361,7 @@ }, "recipe": { "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140626.1925", "deps": [ @@ -28226,7 +28379,7 @@ }, "recipe": { "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150731.512", "deps": [ @@ -28243,7 +28396,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.628", "deps": [ @@ -28260,7 +28413,7 @@ }, "recipe": { "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140407.20", "deps": [] @@ -28275,7 +28428,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1205", "deps": [] @@ -28290,7 +28443,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150801.1202", "deps": [ @@ -28307,7 +28460,7 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1839", "deps": [] @@ -28322,7 +28475,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150208.2111", "deps": [] @@ -28337,7 +28490,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140807.1054", "deps": [ @@ -28354,7 +28507,7 @@ }, "recipe": { "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130921.2242", "deps": [] @@ -28369,7 +28522,7 @@ }, "recipe": { "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.148", "deps": [] @@ -28379,14 +28532,14 @@ "tag": "fetchFromGitHub", "owner": "lujun9972", "repo": "el-dmenu", - "sha256": "1k9fkydy5rwfnj610fv2k8pallz4w545f4ms0snj63fp01640090", - "rev": "3b8e146f1f2170a7db2a0e45c352e523be25f25e" + "sha256": "0spj80vq6m2kqbdy6y1vh9fzwqyqkij30457d2n39kjn2gzbyar8", + "rev": "b9be62dc33b59fdd34b449699801c1772af84284" }, "recipe": { "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151216.1027", + "version": "20151220.702", "deps": [ "cl-lib" ] @@ -28401,7 +28554,7 @@ }, "recipe": { "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131102.609", "deps": [] @@ -28416,7 +28569,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150620.1943", "deps": [ @@ -28433,7 +28586,7 @@ }, "recipe": { "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100703.741", "deps": [] @@ -28448,7 +28601,7 @@ }, "recipe": { "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140612.2321", "deps": [] @@ -28463,7 +28616,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130204.1653", "deps": [] @@ -28478,7 +28631,7 @@ }, "recipe": { "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150506.1858", "deps": [ @@ -28496,7 +28649,7 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140904.1910", "deps": [ @@ -28511,7 +28664,7 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.657", "deps": [] @@ -28526,7 +28679,7 @@ }, "recipe": { "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.414", "deps": [] @@ -28541,7 +28694,7 @@ }, "recipe": { "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140222.2001", "deps": [ @@ -28558,7 +28711,7 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.156", "deps": [ @@ -28577,7 +28730,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150422.208", "deps": [ @@ -28595,7 +28748,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1857", "deps": [] @@ -28605,14 +28758,14 @@ "tag": "fetchFromGitHub", "owner": "justbur", "repo": "emacs-which-key", - "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", - "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" + "sha256": "0d722q5g05q0kbxlbv0iacv7d7r9dvk15g3i4i66v2p6knd7zqpx", + "rev": "f4a1b4283bf09475e5255a889a34784501ad2fc0" }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.827", + "version": "20151221.1112", "deps": [ "emacs" ] @@ -28627,7 +28780,7 @@ }, "recipe": { "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150806.707", "deps": [] @@ -28642,7 +28795,7 @@ }, "recipe": { "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130610.249", "deps": [] @@ -28657,7 +28810,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.1328", "deps": [ @@ -28674,7 +28827,7 @@ }, "recipe": { "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141001.1413", "deps": [] @@ -28689,7 +28842,7 @@ }, "recipe": { "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150528.800", "deps": [] @@ -28704,7 +28857,7 @@ }, "recipe": { "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131029.1816", "deps": [] @@ -28719,7 +28872,7 @@ }, "recipe": { "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150208.1937", "deps": [ @@ -28736,7 +28889,7 @@ }, "recipe": { "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150927.1317", "deps": [ @@ -28753,7 +28906,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131209.1800", "deps": [] @@ -28768,7 +28921,7 @@ }, "recipe": { "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130323.1225", "deps": [] @@ -28783,7 +28936,7 @@ }, "recipe": { "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150421.2257", "deps": [] @@ -28798,7 +28951,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131230.1119", "deps": [ @@ -28815,7 +28968,7 @@ }, "recipe": { "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150731.845", "deps": [] @@ -28830,7 +28983,7 @@ }, "recipe": { "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.312", "deps": [] @@ -28845,7 +28998,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.1705", "deps": [ @@ -28864,7 +29017,7 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150926.627", "deps": [ @@ -28882,7 +29035,7 @@ }, "recipe": { "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090528.136", "deps": [] @@ -28897,7 +29050,7 @@ }, "recipe": { "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.2138", "deps": [ @@ -28914,7 +29067,7 @@ }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.225", "deps": [ @@ -28935,7 +29088,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130526.1014", "deps": [] @@ -28950,7 +29103,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151022.1225", "deps": [] @@ -28965,7 +29118,7 @@ }, "recipe": { "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.2133", "deps": [ @@ -28984,7 +29137,7 @@ }, "recipe": { "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131217.912", "deps": [ @@ -29001,7 +29154,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131229.441", "deps": [] @@ -29016,7 +29169,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.154", "deps": [] @@ -29031,7 +29184,7 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150522.440", "deps": [ @@ -29046,7 +29199,7 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.859", "deps": [] @@ -29061,7 +29214,7 @@ }, "recipe": { "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150321.2325", "deps": [ @@ -29079,7 +29232,7 @@ }, "recipe": { "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130508.923", "deps": [ @@ -29098,7 +29251,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.332", "deps": [] @@ -29113,7 +29266,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150116.1007", "deps": [ @@ -29131,7 +29284,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150807.457", "deps": [] @@ -29146,7 +29299,7 @@ }, "recipe": { "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.1740", "deps": [ @@ -29163,7 +29316,7 @@ }, "recipe": { "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140129.304", "deps": [ @@ -29181,7 +29334,7 @@ }, "recipe": { "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130217.1605", "deps": [] @@ -29196,7 +29349,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150729.2237", "deps": [] @@ -29211,7 +29364,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.1602", "deps": [ @@ -29228,7 +29381,7 @@ }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.905", "deps": [ @@ -29247,7 +29400,7 @@ }, "recipe": { "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.1125", "deps": [] @@ -29257,14 +29410,14 @@ "tag": "fetchFromGitHub", "owner": "AdrieanKhisbe", "repo": "cask-package-toolset.el", - "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", - "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + "sha256": "12bpf5vk2na428h1fc3qb6nh7hyhxfvmzpcs45ym9ddjvdzwb0gs", + "rev": "e691d8815586bef059de26bedbd2162f64ca0827" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.130", + "version": "20151220.18", "deps": [ "ansi", "cl-lib", @@ -29286,7 +29439,7 @@ }, "recipe": { "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140410.355", "deps": [ @@ -29303,7 +29456,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140829.859", "deps": [] @@ -29318,7 +29471,7 @@ }, "recipe": { "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130903.755", "deps": [] @@ -29332,7 +29485,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110806.158", "deps": [] @@ -29347,7 +29500,7 @@ }, "recipe": { "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150519.1726", "deps": [] @@ -29362,7 +29515,7 @@ }, "recipe": { "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120425.1735", "deps": [] @@ -29377,7 +29530,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150228.1447", "deps": [] @@ -29392,7 +29545,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.1837", "deps": [ @@ -29408,7 +29561,7 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140123.2102", "deps": [] @@ -29423,7 +29576,7 @@ }, "recipe": { "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140924.1000", "deps": [ @@ -29441,7 +29594,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130813.1145", "deps": [] @@ -29456,7 +29609,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141226.1532", "deps": [ @@ -29477,7 +29630,7 @@ }, "recipe": { "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.427", "deps": [ @@ -29495,7 +29648,7 @@ }, "recipe": { "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.910", "deps": [ @@ -29508,14 +29661,14 @@ "tag": "fetchFromGitHub", "owner": "kyleam", "repo": "bog", - "sha256": "15nmcnyj2w5llbznyww3i2ldfifp866qyg4bx1kbylqc3hd3y51w", - "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45" + "sha256": "0p9smhj53xy2flfcf988jq20kgf5jj4w3z8h9lb7378vwai0y70i", + "rev": "ea99bc6b8108bd3b2ff767541fa264db4dbf04a5" }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150918.1730", + "version": "20151213.2151", "deps": [ "cl-lib" ] @@ -29529,7 +29682,7 @@ }, "recipe": { "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110301.234", "deps": [] @@ -29544,7 +29697,7 @@ }, "recipe": { "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130831.1719", "deps": [ @@ -29561,7 +29714,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.755", "deps": [ @@ -29582,7 +29735,7 @@ }, "recipe": { "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131004.342", "deps": [] @@ -29597,7 +29750,7 @@ }, "recipe": { "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.135", "deps": [] @@ -29612,7 +29765,7 @@ }, "recipe": { "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.440", "deps": [ @@ -29628,7 +29781,7 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121125.1337", "deps": [] @@ -29643,7 +29796,7 @@ }, "recipe": { "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150525.619", "deps": [ @@ -29660,7 +29813,7 @@ }, "recipe": { "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150117.1152", "deps": [ @@ -29677,7 +29830,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131029.1634", "deps": [ @@ -29694,7 +29847,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150527.149", "deps": [] @@ -29709,7 +29862,7 @@ }, "recipe": { "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121004.1826", "deps": [] @@ -29724,7 +29877,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140128.441", "deps": [ @@ -29743,7 +29896,7 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150707.123", "deps": [] @@ -29758,7 +29911,7 @@ }, "recipe": { "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150718.2133", "deps": [] @@ -29771,7 +29924,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.1226", "deps": [ @@ -29789,7 +29942,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140731.1422", "deps": [ @@ -29806,7 +29959,7 @@ }, "recipe": { "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141115.901", "deps": [] @@ -29821,7 +29974,7 @@ }, "recipe": { "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130215.1504", "deps": [] @@ -29836,7 +29989,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.938", "deps": [] @@ -29851,7 +30004,7 @@ }, "recipe": { "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130726.1407", "deps": [ @@ -29866,14 +30019,14 @@ "tag": "fetchFromGitHub", "owner": "lokedhs", "repo": "gnu-apl-mode", - "sha256": "1l37447zshk5bl3r8v8nladxrcq252z05z1wch5ywp3h2qkmhkxp", - "rev": "ee7e633c65a36acdf92a34325fc759698614fbfe" + "sha256": "1dfkjzx33wzafj9cfm1bpj99bmnq5a8qrvzmhjykr7mfkca79ymz", + "rev": "fb1686403e4842b6f44eebe80e5acf86a5151d88" }, "recipe": { "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.2305", + "version": "20151224.1059", "deps": [ "emacs" ] @@ -29888,7 +30041,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140920.235", "deps": [ @@ -29902,14 +30055,14 @@ "tag": "fetchFromGitHub", "owner": "ardumont", "repo": "markdown-toc", - "sha256": "0bmd601y2gafydnvzv9nbi5sh7m8hkwxbidim03knl2fh4j5rkyv", - "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd" + "sha256": "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633", + "rev": "c2ac578113015ba7d3377c0756a4d00c61ba2e17" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150715.1114", + "version": "20151223.514", "deps": [ "dash", "markdown-mode", @@ -29926,7 +30079,7 @@ }, "recipe": { "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.1016", "deps": [ @@ -29943,7 +30096,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.231", "deps": [ @@ -29963,7 +30116,7 @@ }, "recipe": { "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140407.2325", "deps": [] @@ -29973,14 +30126,14 @@ "tag": "fetchFromGitHub", "owner": "abo-abo", "repo": "swiper", - "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", - "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" + "sha256": "1262k48ky88m3jgdryyxm9dqzsd2lc17vcra93lp3yrr6iqn55dl", + "rev": "d74fab4a5b98910bd09956d3cb9b3376d6287840" }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.523", + "version": "20151227.300", "deps": [ "emacs" ] @@ -29995,7 +30148,7 @@ }, "recipe": { "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1625", "deps": [] @@ -30010,7 +30163,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150512.706", "deps": [] @@ -30020,14 +30173,14 @@ "tag": "fetchFromGitHub", "owner": "jcollard", "repo": "elm-mode", - "sha256": "1gbb8896fg0kdkdnnhq9zyknq5jifyj25lsigil407y4a4d0s78m", - "rev": "a813a0ab2ac7a255b41f2da230dae5e479a8de5d" + "sha256": "055bnhkw0nvry3n20a980nrq3y2rlihp59pmrm1s4rlb0f5drckc", + "rev": "3462740eb2add23fc294aa5b2b549ee08f5f711e" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.257", + "version": "20151227.556", "deps": [ "emacs", "f", @@ -30044,7 +30197,7 @@ }, "recipe": { "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1509", "deps": [ @@ -30061,7 +30214,7 @@ }, "recipe": { "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150120.2234", "deps": [ @@ -30078,7 +30231,7 @@ }, "recipe": { "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1728", "deps": [ @@ -30091,14 +30244,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm-descbinds", - "sha256": "1f9nfvfsj9m1ha6cyic2l6gq5wlabx3mhnvs0jb111ybm87v4bhz", - "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b" + "sha256": "1f7k0h1g1835fsvx6vc272bk62jf4y1r4qynjy7zbhzk13m6k6z2", + "rev": "f8ef6e195e7b0a9f167d2da4810a97baebbe2228" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.1557", + "version": "20151222.849", "deps": [ "helm" ] @@ -30113,7 +30266,7 @@ }, "recipe": { "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150331.908", "deps": [ @@ -30131,7 +30284,7 @@ }, "recipe": { "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130529.1233", "deps": [ @@ -30149,7 +30302,7 @@ }, "recipe": { "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.1647", "deps": [ @@ -30167,7 +30320,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140103.1632", "deps": [ @@ -30184,7 +30337,7 @@ }, "recipe": { "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.2113", "deps": [ @@ -30206,7 +30359,7 @@ }, "recipe": { "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140129.952", "deps": [ @@ -30224,7 +30377,7 @@ }, "recipe": { "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150114.1033", "deps": [] @@ -30239,7 +30392,7 @@ }, "recipe": { "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130802.611", "deps": [] @@ -30254,7 +30407,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151101.807", "deps": [] @@ -30269,7 +30422,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.1231", "deps": [ @@ -30287,7 +30440,7 @@ }, "recipe": { "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150919.1701", "deps": [ @@ -30305,7 +30458,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [ @@ -30317,14 +30470,14 @@ "tag": "fetchFromGitHub", "owner": "tumashu", "repo": "easy-lentic", - "sha256": "0gk2a1bhxb2fr9mcli3j3mry0gipc407mbwrdip385rrzy7vqv2w", - "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe" + "sha256": "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0", + "rev": "1b59ebe748e80488512034f885ad6540ad037382" }, "recipe": { "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151130.2116", + "version": "20151227.357", "deps": [ "cl-lib", "lentic" @@ -30340,7 +30493,7 @@ }, "recipe": { "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.440", "deps": [ @@ -30353,14 +30506,14 @@ "tag": "fetchFromGitHub", "owner": "osv", "repo": "company-web", - "sha256": "00acy74sgp4r2dxgss66aldc9s59dn0i85ixz9glgamk9411j5qr", - "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365" + "sha256": "1a9qx041w7i1ahg6rmi82hv161k57z4aljzm8wpa9wrfj8a6df2q", + "rev": "2b426fc09b45b0e6bb95bb27d8ef22789c72a1d8" }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151023.1546", + "version": "20151219.517", "deps": [ "cl-lib", "company", @@ -30378,7 +30531,7 @@ }, "recipe": { "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150821.614", "deps": [] @@ -30393,7 +30546,7 @@ }, "recipe": { "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150203.1843", "deps": [] @@ -30403,14 +30556,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm-recoll", - "sha256": "0c9h8n67wxy93rbf6ma7p27hpaj8v562mjnrc9wzgccb9rk4z4fn", - "rev": "e3e010d084697137d0b3cb802b19ab34c488094b" + "sha256": "1nl8acbvkbrgbxc4h2i10gq0bngyk74cfl8hi50cdq6agrsrfa3r", + "rev": "a13c5f372b470e1247a62834021931dcb4e50c96" }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151118.658", + "version": "20151220.854", "deps": [ "helm" ] @@ -30425,7 +30578,7 @@ }, "recipe": { "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140518.943", "deps": [ @@ -30441,7 +30594,7 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.1151", "deps": [] @@ -30456,7 +30609,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140817.1804", "deps": [ @@ -30476,14 +30629,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-eclim", "repo": "emacs-eclim", - "sha256": "1m674w1wskzvi92yjfk7sz4i59kc6bbgnic5z2m806qr1dmdyy0s", - "rev": "c13ad662a5194b292576fba477282263f573bc46" + "sha256": "1hjrnz3z5ac7gcly6jqxsv7v3b84xvyiv1dlbaivgic5rwp2n9mx", + "rev": "de6f6d7be1ba4e2d96cdbd05853f07ebbcd091cc" }, "recipe": { "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.2022", + "version": "20151226.1623", "deps": [ "cl-lib", "dash", @@ -30502,7 +30655,7 @@ }, "recipe": { "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141112.1211", "deps": [ @@ -30519,7 +30672,7 @@ }, "recipe": { "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.250", "deps": [ @@ -30537,7 +30690,7 @@ }, "recipe": { "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150927.1318", "deps": [ @@ -30556,7 +30709,7 @@ }, "recipe": { "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141102.854", "deps": [] @@ -30571,7 +30724,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.843", "deps": [] @@ -30586,7 +30739,7 @@ }, "recipe": { "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130508.439", "deps": [ @@ -30603,7 +30756,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150611.356", "deps": [ @@ -30624,7 +30777,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.804", "deps": [ @@ -30643,7 +30796,7 @@ }, "recipe": { "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150126.2337", "deps": [ @@ -30661,7 +30814,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150324.1740", "deps": [ @@ -30678,7 +30831,7 @@ }, "recipe": { "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140314.817", "deps": [] @@ -30693,7 +30846,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.1806", "deps": [] @@ -30708,7 +30861,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150105.852", "deps": [] @@ -30718,14 +30871,14 @@ "tag": "fetchFromGitHub", "owner": "haskell", "repo": "haskell-mode", - "sha256": "1fi74hk3q8r75k9kyahfnx302kca5p0r04i8hj21cn9fd9q2nfq0", - "rev": "93bfb29b8e49aba39f1de791bcece1b8043a4d32" + "sha256": "1z4yagdzcl66ak0wiiqfxpy1l9j0rh5kb5ir597w2lpahgrxz9p7", + "rev": "8ef95feb969df21905d8b8942a32155fce21b1cd" }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.1822", + "version": "20151226.950", "deps": [ "cl-lib" ] @@ -30738,9 +30891,9 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151015.1751", + "version": "20151225.1201", "deps": [] }, "linum-relative": { @@ -30753,7 +30906,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.1956", "deps": [] @@ -30768,7 +30921,7 @@ }, "recipe": { "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150809.1916", "deps": [] @@ -30783,7 +30936,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130613.402", "deps": [ @@ -30800,7 +30953,7 @@ }, "recipe": { "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.1847", "deps": [ @@ -30818,7 +30971,7 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140918.1337", "deps": [] @@ -30833,7 +30986,7 @@ }, "recipe": { "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.1156", "deps": [] @@ -30848,7 +31001,7 @@ }, "recipe": { "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.1048", "deps": [] @@ -30863,7 +31016,7 @@ }, "recipe": { "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141205.1451", "deps": [] @@ -30876,7 +31029,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1909", "deps": [] @@ -30889,7 +31042,7 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.1143", "deps": [] @@ -30904,7 +31057,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.2356", "deps": [ @@ -30920,7 +31073,7 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1553", "deps": [] @@ -30935,7 +31088,7 @@ }, "recipe": { "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.928", "deps": [ @@ -30948,14 +31101,14 @@ "tag": "fetchFromGitHub", "owner": "dgtized", "repo": "list-environment.el", - "sha256": "1vlli9fmd5fsb19bmylp3yzqnhwk5ldxld0m0q4sai0992lwx897", - "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b" + "sha256": "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4", + "rev": "b7ca30b05905047be2e55199a6475f8d98ce318b" }, "recipe": { "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150620.2218", + "version": "20151226.2056", "deps": [] }, "flyspell-popup": { @@ -30968,7 +31121,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150926.1003", "deps": [ @@ -30985,7 +31138,7 @@ }, "recipe": { "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151017.2319", "deps": [] @@ -31000,7 +31153,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.1719", "deps": [] @@ -31010,14 +31163,14 @@ "tag": "fetchFromGitHub", "owner": "Bad-ptr", "repo": "persp-mode.el", - "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", - "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + "sha256": "11xcaxd0c2jxm8gxhspi5v5y64xz4gx8xzy5qsw81y2gj96byjc5", + "rev": "1f80818462211a8f81b8e352ec28d6a6745e8396" }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151212.207", + "version": "20151222.659", "deps": [] }, "replace-from-region": { @@ -31028,7 +31181,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150406.1930", "deps": [] @@ -31037,12 +31190,12 @@ "fetch": { "tag": "fetchgit", "url": "git://factorcode.org/git/factor.git", - "sha256": "4a92fbfc3f08910d7fb1e351209dc40eb7bd724eebe7bf91bfab31f5faba54ec", - "rev": "216a1234c26d793488bb5a2c397c830b825f8da2" + "sha256": "8f9db8a5dae2ddd9a8a7118c79fe40be3d9c890d112f5858fb98a6ea90a19e56", + "rev": "7e40b6037490f2194f0dcf02e18992e601e28b78" }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.543", "deps": [ @@ -31060,7 +31213,7 @@ }, "recipe": { "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150901.816", "deps": [] @@ -31075,7 +31228,7 @@ }, "recipe": { "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.101", "deps": [ @@ -31092,7 +31245,7 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140714.219", "deps": [] @@ -31102,14 +31255,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm", - "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", - "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" + "sha256": "0l7dzk4xa4nfyj943x4gqcn1brfznfyrdxfwf1v097fp4ix8654q", + "rev": "e6fbd80f9f21e7cdb5d530f7aba138ad1dc527ab" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.217", + "version": "20151224.1331", "deps": [ "async", "cl-lib", @@ -31126,7 +31279,7 @@ }, "recipe": { "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.1754", "deps": [ @@ -31144,7 +31297,7 @@ }, "recipe": { "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130403.942", "deps": [] @@ -31158,7 +31311,7 @@ }, "recipe": { "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120110.1440", "deps": [] @@ -31173,7 +31326,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130912.2019", "deps": [ @@ -31193,7 +31346,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.845", "deps": [ @@ -31210,7 +31363,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.38", "deps": [] @@ -31220,14 +31373,14 @@ "tag": "fetchFromGitHub", "owner": "bburns", "repo": "clipmon", - "sha256": "11q4qdl50ffxm9f8hllipikj28zriy48cbvmvvrr8q199jwzjfwl", - "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43" + "sha256": "1xqszj16yim89pln9aw17lji5knxm3pklaihydagd7a1f99hr51w", + "rev": "a531c3e5d3cf760b00d3f00726a4e60e226aae99" }, "recipe": { "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150306.1423", + "version": "20151224.1147", "deps": [] }, "datomic-snippets": { @@ -31240,7 +31393,7 @@ }, "recipe": { "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130707.1515", "deps": [ @@ -31257,7 +31410,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.1352", "deps": [] @@ -31270,7 +31423,7 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140421.1122", "deps": [] @@ -31285,7 +31438,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.303", "deps": [ @@ -31307,7 +31460,7 @@ }, "recipe": { "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1035", "deps": [ @@ -31325,7 +31478,7 @@ }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.140", "deps": [ @@ -31352,7 +31505,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.1338", "deps": [ @@ -31371,7 +31524,7 @@ }, "recipe": { "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.859", "deps": [ @@ -31383,12 +31536,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", - "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" + "sha256": "5f5c7580539162bd268e6e2703a47aea2a353984fe86158df72594d6105476d7", + "rev": "955bc57ded513be2cf2248a7d7a858c11a1110b3" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140107.719", "deps": [] @@ -31403,24 +31556,42 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.1133", "deps": [] }, + "helm-img": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "l3msh0", + "repo": "helm-img", + "sha256": "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla", + "rev": "aa3f8a5dce8d0413bf07584f07153a39015c2bfc" + }, + "recipe": { + "sha256": "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1721", + "deps": [ + "cl-lib", + "helm" + ] + }, "elfeed-goodies": { "fetch": { "tag": "fetchFromGitHub", "owner": "algernon", "repo": "elfeed-goodies", - "sha256": "1xl76gxjinggg332dib2h6z1gyqfi81r0x5rl8hrfpx8spi4iql0", - "rev": "319d88242c78d6073d25f8bb68336603c35904d0" + "sha256": "1r2liqjww0yscxjpg13dsfhhv3yjahlbas0dabqlh4f9q0jdrgj4", + "rev": "5983e70a3ed5d62d218e1149cfe777b10c3168e5" }, "recipe": { "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151210.801", + "version": "20151224.358", "deps": [ "ace-jump-mode", "cl-lib", @@ -31440,7 +31611,7 @@ }, "recipe": { "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.1102", "deps": [ @@ -31458,7 +31629,7 @@ }, "recipe": { "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150610.1206", "deps": [] @@ -31473,7 +31644,7 @@ }, "recipe": { "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140805.1554", "deps": [ @@ -31492,7 +31663,7 @@ }, "recipe": { "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150519.955", "deps": [ @@ -31511,7 +31682,7 @@ }, "recipe": { "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150114.32", "deps": [ @@ -31529,7 +31700,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.534", "deps": [] @@ -31544,7 +31715,7 @@ }, "recipe": { "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.22", "deps": [ @@ -31563,7 +31734,7 @@ }, "recipe": { "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140224.2210", "deps": [] @@ -31578,7 +31749,7 @@ }, "recipe": { "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120202.2334", "deps": [] @@ -31593,7 +31764,7 @@ }, "recipe": { "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.1125", "deps": [ @@ -31610,7 +31781,7 @@ }, "recipe": { "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.2339", "deps": [] @@ -31625,7 +31796,7 @@ }, "recipe": { "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150818.824", "deps": [ @@ -31642,7 +31813,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1312", "deps": [ @@ -31659,7 +31830,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140827.2056", "deps": [ @@ -31676,7 +31847,7 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.1955", "deps": [] @@ -31689,7 +31860,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.1052", "deps": [] @@ -31704,7 +31875,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150915.1230", "deps": [] @@ -31719,7 +31890,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.434", "deps": [ @@ -31735,7 +31906,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140119.1543", "deps": [] @@ -31750,7 +31921,7 @@ }, "recipe": { "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.1735", "deps": [] @@ -31765,7 +31936,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.627", "deps": [] @@ -31774,12 +31945,12 @@ "fetch": { "tag": "fetchgit", "url": "http://llvm.org/git/llvm", - "sha256": "6def2eb038bf60d3520930449ba109763e1c430c6b4c7fba3f272c3c46311fe6", - "rev": "52707d211b073942a461af811dcc442456a3064b" + "sha256": "31e826259c8497fcbe810bae9a51780766a0b676448746fd8ceeff285369fafc", + "rev": "d3bcf04e8331314fbfec3f0af41e137b6bd242c7" }, "recipe": { "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.844", "deps": [] @@ -31794,7 +31965,7 @@ }, "recipe": { "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141214.743", "deps": [ @@ -31807,12 +31978,12 @@ "tag": "fetchFromGitHub", "owner": "apache", "repo": "thrift", - "sha256": "07wzips127pxd0s75l71jl9jc299v6r8npz7flb391z3lfryvbin", - "rev": "7be41c7ada9692e3c37fb8b4935991f6247320f6" + "sha256": "1rd947vs6md9rdchqrpwm8qq5gxiz547npvph7njlahbpbm4xgyj", + "rev": "6dde7f19254db71cf27df214a59d7156967237fc" }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140312.1548", "deps": [] @@ -31827,7 +31998,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150404.423", "deps": [] @@ -31842,7 +32013,7 @@ }, "recipe": { "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.1010", "deps": [] @@ -31857,7 +32028,7 @@ }, "recipe": { "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150619.1934", "deps": [ @@ -31874,7 +32045,7 @@ }, "recipe": { "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150715.2133", "deps": [ @@ -31894,7 +32065,7 @@ }, "recipe": { "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150413.1515", "deps": [ @@ -31912,7 +32083,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140520.1508", "deps": [ @@ -31930,7 +32101,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131111.1546", "deps": [] @@ -31945,7 +32116,7 @@ }, "recipe": { "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.141", "deps": [ @@ -31962,7 +32133,7 @@ }, "recipe": { "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.47", "deps": [ @@ -31981,7 +32152,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140213.548", "deps": [] @@ -31996,7 +32167,7 @@ }, "recipe": { "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150603.2047", "deps": [] @@ -32006,12 +32177,12 @@ "tag": "fetchFromGitHub", "owner": "skk-dev", "repo": "ddskk", - "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", - "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" }, "recipe": { "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151205.743", "deps": [] @@ -32026,7 +32197,7 @@ }, "recipe": { "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150811.1329", "deps": [ @@ -32039,14 +32210,14 @@ "tag": "fetchFromGitHub", "owner": "osv", "repo": "ac-html-bootstrap", - "sha256": "0c2d5yh0xndna2p1azhhss63q3vbn3lsi2f22nb792gr6al1j8za", - "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" + "sha256": "0v33p6lnsq1nwyxfbgs6vg6fidfyqwxd5wls2yza95yxzl30m9r7", + "rev": "ea9f7e351e1f39e0c2da5f518948db5ee751d15b" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150930.241", + "version": "20151222.1512", "deps": [ "web-completion-data" ] @@ -32061,7 +32232,7 @@ }, "recipe": { "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151010.2057", "deps": [] @@ -32071,12 +32242,12 @@ "tag": "fetchFromGitHub", "owner": "JuliaLang", "repo": "julia", - "sha256": "08rznffmfbfsr1i7bphkxxsadq25rqkidfni7ljxakf0zwl6x7yr", - "rev": "e83b7559df94b3050603847dbd6f3674058027e6" + "sha256": "0ng603klkc56577qcn4gcayrqc38g2fyargjzj0nk7gc8kkd443r", + "rev": "1380bfe231858b49f0395377ee0af1aa383bbf93" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150912.1000", "deps": [] @@ -32091,7 +32262,7 @@ }, "recipe": { "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140211.149", "deps": [ @@ -32109,7 +32280,7 @@ }, "recipe": { "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.2303", "deps": [] @@ -32124,7 +32295,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.1314", "deps": [ @@ -32143,7 +32314,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.238", "deps": [ @@ -32163,7 +32334,7 @@ }, "recipe": { "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140720.2327", "deps": [ @@ -32179,7 +32350,7 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140415.2041", "deps": [] @@ -32194,7 +32365,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.547", "deps": [ @@ -32211,7 +32382,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110120.2218", "deps": [] @@ -32226,7 +32397,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150802.1157", "deps": [] @@ -32241,7 +32412,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151015.1331", "deps": [ @@ -32258,7 +32429,7 @@ }, "recipe": { "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.2055", "deps": [ @@ -32270,12 +32441,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", - "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" + "sha256": "5f5c7580539162bd268e6e2703a47aea2a353984fe86158df72594d6105476d7", + "rev": "955bc57ded513be2cf2248a7d7a858c11a1110b3" }, "recipe": { "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.428", "deps": [] @@ -32290,7 +32461,7 @@ }, "recipe": { "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130610.843", "deps": [] @@ -32305,7 +32476,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.535", "deps": [] @@ -32320,7 +32491,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.830", "deps": [] @@ -32335,7 +32506,7 @@ }, "recipe": { "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150412.1216", "deps": [ @@ -32352,7 +32523,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1128", "deps": [ @@ -32370,7 +32541,7 @@ }, "recipe": { "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141205.2205", "deps": [] @@ -32385,7 +32556,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130303.155", "deps": [] @@ -32399,7 +32570,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1649", "deps": [ @@ -32415,7 +32586,7 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1855", "deps": [] @@ -32430,7 +32601,7 @@ }, "recipe": { "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.539", "deps": [] @@ -32445,7 +32616,7 @@ }, "recipe": { "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131022.402", "deps": [] @@ -32460,7 +32631,7 @@ }, "recipe": { "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150607.1113", "deps": [] @@ -32475,7 +32646,7 @@ }, "recipe": { "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130612.42", "deps": [ @@ -32492,7 +32663,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.1250", "deps": [] @@ -32507,7 +32678,7 @@ }, "recipe": { "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.227", "deps": [ @@ -32525,7 +32696,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150423.902", "deps": [ @@ -32543,7 +32714,7 @@ }, "recipe": { "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140227.1439", "deps": [] @@ -32558,7 +32729,7 @@ }, "recipe": { "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.638", "deps": [ @@ -32579,7 +32750,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1312", "deps": [ @@ -32592,14 +32763,14 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-helm-open-github", - "sha256": "0z20wrrzwbw7d6b1s0grzlc3nj9n7dhmv3yk2wk0m4s8y5gmwjd5", - "rev": "9f275e065dbdcaf10c7573984d1ac97041faddba" + "sha256": "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851", + "rev": "4c5a47003b2efed1c3437e91121a77d082cf64c8" }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.846", + "version": "20151226.842", "deps": [ "cl-lib", "gh", @@ -32616,7 +32787,7 @@ }, "recipe": { "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.1117", "deps": [] @@ -32631,7 +32802,7 @@ }, "recipe": { "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121008.1114", "deps": [] @@ -32646,7 +32817,7 @@ }, "recipe": { "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.202", "deps": [ @@ -32664,7 +32835,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.255", "deps": [ @@ -32684,7 +32855,7 @@ }, "recipe": { "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151028.720", "deps": [] @@ -32699,7 +32870,7 @@ }, "recipe": { "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.1023", "deps": [ @@ -32716,7 +32887,7 @@ }, "recipe": { "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140108.934", "deps": [] @@ -32731,7 +32902,7 @@ }, "recipe": { "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131118.1316", "deps": [ @@ -32749,7 +32920,7 @@ }, "recipe": { "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.1248", "deps": [] @@ -32759,12 +32930,12 @@ "tag": "fetchFromGitHub", "owner": "editorconfig", "repo": "editorconfig-emacs", - "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", - "rev": "301d67b26098d048ff7235c0878252e80becc7e0" + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1035", "deps": [ @@ -32782,7 +32953,7 @@ }, "recipe": { "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150316.1418", "deps": [ @@ -32801,7 +32972,7 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.446", "deps": [ @@ -32816,7 +32987,7 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141226.1420", "deps": [] @@ -32831,7 +33002,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.138", "deps": [ @@ -32843,12 +33014,12 @@ "fetch": { "tag": "fetchgit", "url": "https://go.googlesource.com/tools", - "sha256": "e8768dadb61beb860223d8cc2b9a2e4da8e5ebaeb631f94d1a72aebb9ce1a30a", - "rev": "fa833fdef560f0fe9b40dbb37fd03030ac3d514b" + "sha256": "e9c11949d98b65c9d5f6e282f8bc4c4d85ee988c91f68fba22562a2e620e43d7", + "rev": "d6e83e534da905609e21e4086a0fbaed33f88d07" }, "recipe": { "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.838", "deps": [ @@ -32865,7 +33036,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.216", "deps": [ @@ -32887,7 +33058,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1448", "deps": [ @@ -32905,7 +33076,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.2130", "deps": [ @@ -32922,7 +33093,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.1054", "deps": [] @@ -32937,7 +33108,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.330", "deps": [ @@ -32953,7 +33124,7 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130917.1348", "deps": [] @@ -32968,7 +33139,7 @@ }, "recipe": { "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.1252", "deps": [] @@ -32983,7 +33154,7 @@ }, "recipe": { "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111009.816", "deps": [] @@ -32998,7 +33169,7 @@ }, "recipe": { "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.129", "deps": [] @@ -33012,7 +33183,7 @@ }, "recipe": { "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141104.1037", "deps": [] @@ -33027,7 +33198,7 @@ }, "recipe": { "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1804", "deps": [ @@ -33044,7 +33215,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150808.756", "deps": [ @@ -33064,7 +33235,7 @@ }, "recipe": { "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150414.2032", "deps": [ @@ -33082,7 +33253,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.719", "deps": [ @@ -33099,7 +33270,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140717.2341", "deps": [] @@ -33114,7 +33285,7 @@ }, "recipe": { "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.522", "deps": [ @@ -33131,7 +33302,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151020.801", "deps": [ @@ -33150,7 +33321,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.1224", "deps": [ @@ -33168,7 +33339,7 @@ }, "recipe": { "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121014.2319", "deps": [ @@ -33185,7 +33356,7 @@ }, "recipe": { "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.2027", "deps": [] @@ -33200,7 +33371,7 @@ }, "recipe": { "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150225.146", "deps": [] @@ -33215,7 +33386,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150824.749", "deps": [] @@ -33230,7 +33401,7 @@ }, "recipe": { "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150408.1622", "deps": [ @@ -33247,7 +33418,7 @@ }, "recipe": { "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140114.705", "deps": [] @@ -33262,7 +33433,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150831.358", "deps": [ @@ -33281,7 +33452,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140611.1150", "deps": [] @@ -33296,7 +33467,7 @@ }, "recipe": { "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.6", "deps": [ @@ -33313,7 +33484,7 @@ }, "recipe": { "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141115.630", "deps": [ @@ -33330,7 +33501,7 @@ }, "recipe": { "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.1159", "deps": [ @@ -33347,7 +33518,7 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.1126", "deps": [ @@ -33364,7 +33535,7 @@ }, "recipe": { "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131208.1118", "deps": [] @@ -33377,7 +33548,7 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1610", "deps": [] @@ -33392,7 +33563,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140925.1008", "deps": [] @@ -33407,7 +33578,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.827", "deps": [] @@ -33422,7 +33593,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140825.627", "deps": [ @@ -33439,7 +33610,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150618.2038", "deps": [ @@ -33456,7 +33627,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150907.256", "deps": [ @@ -33468,14 +33639,14 @@ "tag": "fetchFromGitHub", "owner": "kawabata", "repo": "ox-pandoc", - "sha256": "0c8hknfs4wapz2zy2nskv3r8gkmzs1smib9r3nlg6p84bs0wnkhr", - "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b" + "sha256": "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is", + "rev": "2605a0ed8ed3c86b78829589956bedf5eda447cc" }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150706.2009", + "version": "20151222.1753", "deps": [ "dash", "emacs", @@ -33493,7 +33664,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141105.859", "deps": [ @@ -33508,14 +33679,14 @@ "tag": "fetchFromGitHub", "owner": "bbatsov", "repo": "projectile", - "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", - "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" + "sha256": "1b6h07scpg9gvslsdvz996p67vyyhiiy3hnkh7sqm2pyv9zf7wq5", + "rev": "b9e76f90d3846837e53ca75b78917a11b905ab70" }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.1552", + "version": "20151224.1443", "deps": [ "dash", "pkg-info" @@ -33531,7 +33702,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.522", "deps": [] @@ -33546,7 +33717,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151024.313", "deps": [ @@ -33559,14 +33730,14 @@ "tag": "fetchFromGitHub", "owner": "flycheck", "repo": "flycheck", - "sha256": "1szj58qd0wx6lvcb69mb7ccn2b0qsa7b028519137slrwmxipgp8", - "rev": "1404451f226153a06a1e7741fe6a3d10267bb3a4" + "sha256": "0n9bbcbv2ria9x1ysfz714xd04z6cdpcfkyhrscl9rywhccjx6zl", + "rev": "1d0c64869a93f830bd8b53ac3426a6682c0ec563" }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151216.902", + "version": "20151223.902", "deps": [ "dash", "emacs", @@ -33585,7 +33756,7 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.2121", "deps": [] @@ -33600,7 +33771,7 @@ }, "recipe": { "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150224.2037", "deps": [ @@ -33620,7 +33791,7 @@ }, "recipe": { "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140904.1317", "deps": [ @@ -33635,7 +33806,7 @@ }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.854", "deps": [] @@ -33650,7 +33821,7 @@ }, "recipe": { "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.1150", "deps": [ @@ -33667,7 +33838,7 @@ }, "recipe": { "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140125.1819", "deps": [ @@ -33684,7 +33855,7 @@ }, "recipe": { "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.622", "deps": [ @@ -33701,7 +33872,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150916.2054", "deps": [ @@ -33709,6 +33880,23 @@ "el-x" ] }, + "ac-html-angular": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-angular", + "sha256": "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny", + "rev": "6bafe09afe03112ca4183d58461c1a6f6c2b3c67" + }, + "recipe": { + "sha256": "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.119", + "deps": [ + "web-completion-data" + ] + }, "ido-hacks": { "fetch": { "tag": "fetchFromGitHub", @@ -33719,7 +33907,7 @@ }, "recipe": { "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150331.1409", "deps": [] @@ -33734,7 +33922,7 @@ }, "recipe": { "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150704.1009", "deps": [] @@ -33749,7 +33937,7 @@ }, "recipe": { "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150329.1733", "deps": [] @@ -33759,18 +33947,36 @@ "tag": "fetchFromGitHub", "owner": "epost", "repo": "psc-ide-emacs", - "sha256": "0pz5d8xl2bc9k4isk39rbkw9wcmd83a4hpqv04fqcvjnrvawabww", - "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae" + "sha256": "0g2z4dkzwxpzpqwjizjcz3v3rgihxpl1pk3wcmyv0mz05795if4r", + "rev": "c4bfcf3d7414c37e745d95f6e3a3672c0ca99620" }, "recipe": { "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151206.817", + "version": "20151220.1634", "deps": [ "cl-lib", "company", - "dash" + "dash", + "s" + ] + }, + "rand-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "rand-theme", + "sha256": "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl", + "rev": "65a00e5c5150f857aa96803b68f50bc8da0215b7" + }, + "recipe": { + "sha256": "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1735", + "deps": [ + "cl-lib" ] }, "quelpa-use-package": { @@ -33783,7 +33989,7 @@ }, "recipe": { "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.528", "deps": [ @@ -33800,7 +34006,7 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140201.514", "deps": [] @@ -33815,7 +34021,7 @@ }, "recipe": { "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130821.1305", "deps": [] @@ -33830,7 +34036,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150222.646", "deps": [ @@ -33848,7 +34054,7 @@ }, "recipe": { "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150710.904", "deps": [] @@ -33863,7 +34069,7 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150421.1536", "deps": [ @@ -33880,7 +34086,7 @@ }, "recipe": { "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130728.1721", "deps": [] @@ -33895,7 +34101,7 @@ }, "recipe": { "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150915.333", "deps": [ @@ -33912,7 +34118,7 @@ }, "recipe": { "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130720.1016", "deps": [] @@ -33927,7 +34133,7 @@ }, "recipe": { "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110726.1141", "deps": [] @@ -33940,7 +34146,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1532", "deps": [ @@ -33957,7 +34163,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150215.34", "deps": [ @@ -33973,7 +34179,7 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150829.2355", "deps": [] @@ -33988,7 +34194,7 @@ }, "recipe": { "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140929.1637", "deps": [] @@ -34003,7 +34209,7 @@ }, "recipe": { "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.733", "deps": [ @@ -34025,7 +34231,7 @@ }, "recipe": { "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130216.714", "deps": [] @@ -34040,7 +34246,7 @@ }, "recipe": { "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140714.1649", "deps": [] @@ -34055,7 +34261,7 @@ }, "recipe": { "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.406", "deps": [] @@ -34070,7 +34276,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150111.1908", "deps": [ @@ -34087,7 +34293,7 @@ }, "recipe": { "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141222.1835", "deps": [] @@ -34102,7 +34308,7 @@ }, "recipe": { "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150802.406", "deps": [] @@ -34117,7 +34323,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150703.326", "deps": [ @@ -34135,7 +34341,7 @@ }, "recipe": { "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1858", "deps": [ @@ -34148,14 +34354,14 @@ "tag": "fetchFromGitHub", "owner": "danil", "repo": "ido-describe-bindings", - "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", - "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + "sha256": "1xd86jx6j5livsdsplq5yawz1wmkflkvnjmccjjlcy8f5ncl80ax", + "rev": "2076b7e8a418008fb503357df2f0f99de3d9aa1d" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150828.1438", + "version": "20151222.934", "deps": [ "dash", "ido-vertical-mode" @@ -34171,7 +34377,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130419.1629", "deps": [] @@ -34186,7 +34392,7 @@ }, "recipe": { "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130612.852", "deps": [] @@ -34201,7 +34407,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.612", "deps": [ @@ -34219,7 +34425,7 @@ }, "recipe": { "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.954", "deps": [ @@ -34236,7 +34442,7 @@ }, "recipe": { "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120817.1906", "deps": [] @@ -34251,7 +34457,7 @@ }, "recipe": { "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140225.346", "deps": [ @@ -34268,7 +34474,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141216.1609", "deps": [ @@ -34286,7 +34492,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.2150", "deps": [] @@ -34301,7 +34507,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.1825", "deps": [ @@ -34318,7 +34524,7 @@ }, "recipe": { "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1115", "deps": [] @@ -34333,7 +34539,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.2117", "deps": [ @@ -34350,7 +34556,7 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150324.348", "deps": [ @@ -34367,7 +34573,7 @@ }, "recipe": { "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151010.507", "deps": [ @@ -34386,7 +34592,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1832", "deps": [] @@ -34400,7 +34606,7 @@ }, "recipe": { "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130508.1703", "deps": [] @@ -34415,7 +34621,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.36", "deps": [ @@ -34432,7 +34638,7 @@ }, "recipe": { "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.651", "deps": [ @@ -34449,7 +34655,7 @@ }, "recipe": { "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140310.436", "deps": [ @@ -34467,7 +34673,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.805", "deps": [ @@ -34479,14 +34685,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-berlin", "repo": "general-close", - "sha256": "1nz6rlp0d6knx2f8703yjmnyiqy7sdg7y52r6xn5g4904fn4ndf4", - "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f" + "sha256": "1l3ps28a1wdrg2fgvvkdxdadfgpplijs4ig1yqq8yi7k13k046p4", + "rev": "e12d26ffc59f62aeee31ad16a823cb4a390d85c8" }, "recipe": { "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150922.213", + "version": "20151222.343", "deps": [] }, "date-at-point": { @@ -34499,7 +34705,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.618", "deps": [] @@ -34514,7 +34720,7 @@ }, "recipe": { "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.1549", "deps": [ @@ -34535,7 +34741,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140605.1346", "deps": [ @@ -34552,7 +34758,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120808.622", "deps": [] @@ -34567,7 +34773,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150726.356", "deps": [ @@ -34586,7 +34792,7 @@ }, "recipe": { "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150215.1518", "deps": [ @@ -34603,7 +34809,7 @@ }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150619.18", "deps": [ @@ -34620,7 +34826,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150915.2222", "deps": [] @@ -34635,7 +34841,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141121.1405", "deps": [ @@ -34653,7 +34859,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.22", "deps": [] @@ -34667,7 +34873,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1406", "deps": [] @@ -34680,7 +34886,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150616.1522", "deps": [ @@ -34697,7 +34903,7 @@ }, "recipe": { "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141122.842", "deps": [ @@ -34714,7 +34920,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150831.2007", "deps": [ @@ -34732,7 +34938,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130718.435", "deps": [] @@ -34747,7 +34953,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.1547", "deps": [ @@ -34767,7 +34973,7 @@ }, "recipe": { "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.1506", "deps": [] @@ -34782,7 +34988,7 @@ }, "recipe": { "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141028.1727", "deps": [ @@ -34800,7 +35006,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.603", "deps": [] @@ -34815,7 +35021,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151015.605", "deps": [ @@ -34833,7 +35039,7 @@ }, "recipe": { "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150826.1051", "deps": [ @@ -34851,7 +35057,7 @@ }, "recipe": { "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141025.1112", "deps": [] @@ -34866,7 +35072,7 @@ }, "recipe": { "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141231.1401", "deps": [ @@ -34884,7 +35090,7 @@ }, "recipe": { "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150821.2304", "deps": [] @@ -34899,7 +35105,7 @@ }, "recipe": { "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141228.540", "deps": [ @@ -34917,7 +35123,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150422.833", "deps": [] @@ -34932,7 +35138,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150325.1315", "deps": [] @@ -34947,7 +35153,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.1210", "deps": [] @@ -34962,7 +35168,7 @@ }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150512.202", "deps": [ @@ -34982,7 +35188,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.954", "deps": [ @@ -34996,14 +35202,14 @@ "tag": "fetchFromGitHub", "owner": "aaron-em", "repo": "rcirc-styles.el", - "sha256": "18b74bdkly0zqfi7q7b4sn7rpzhhczap4rl5r5i8vrawwc03bswb", - "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75" + "sha256": "0x0nf8qk2fb7p9577456slgszhnh2f2vqaazz20fyaxv1rjfadxw", + "rev": "6a65ad9f910d716a218ee42035fd9e9c93998a79" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150720.2031", + "version": "20151220.1157", "deps": [ "cl-lib" ] @@ -35018,7 +35224,7 @@ }, "recipe": { "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150526.1905", "deps": [] @@ -35031,7 +35237,7 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.304", "deps": [] @@ -35046,7 +35252,7 @@ }, "recipe": { "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120412.803", "deps": [] @@ -35061,7 +35267,7 @@ }, "recipe": { "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141024.1842", "deps": [] @@ -35076,7 +35282,7 @@ }, "recipe": { "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100321.1114", "deps": [] @@ -35091,7 +35297,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.107", "deps": [ @@ -35108,7 +35314,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150824.1611", "deps": [] @@ -35123,7 +35329,7 @@ }, "recipe": { "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130608.2140", "deps": [ @@ -35140,7 +35346,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151107.2247", "deps": [] @@ -35150,14 +35356,14 @@ "tag": "fetchFromGitHub", "owner": "ergoemacs", "repo": "ergoemacs-mode", - "sha256": "0h46k3wjcrizb45j8xcr5chk30lvzn2v9892k4m4xcgp6jdhzycm", - "rev": "6b105ec09b45d8f67549b7c23ecf4cca26e27a40" + "sha256": "0pwky3r2s43iw4gq0cq343fja2795qd8z9qbfi1vdrz18rp57s0j", + "rev": "742b5d39d6cfb0991933c169976cfb7b8e5e7e93" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.930", + "version": "20151221.833", "deps": [ "emacs", "undo-tree" @@ -35173,7 +35379,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.627", "deps": [ @@ -35190,7 +35396,7 @@ }, "recipe": { "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140919.2056", "deps": [ @@ -35208,7 +35414,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140406.2020", "deps": [ @@ -35224,7 +35430,7 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150828.914", "deps": [] @@ -35239,7 +35445,7 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150831.341", "deps": [ @@ -35258,26 +35464,11 @@ }, "recipe": { "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150515.1607", "deps": [] }, - "nemerle": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "rsdn", - "repo": "nemerle", - "sha256": "0sybgk7pbqx6l3q1jk5x562m3rn3lg5i21qw8h522hfp7pk6i7p5", - "rev": "d57f26b57601a8092f0a9c95470931fbdeb0afa5" - }, - "recipe": { - "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "20130328.946", - "deps": [] - }, "tango-plus-theme": { "fetch": { "tag": "fetchFromGitHub", @@ -35288,7 +35479,7 @@ }, "recipe": { "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140425.1711", "deps": [] @@ -35303,7 +35494,7 @@ }, "recipe": { "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140618.58", "deps": [ @@ -35320,7 +35511,7 @@ }, "recipe": { "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150424.1505", "deps": [] @@ -35335,7 +35526,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.1230", "deps": [] @@ -35345,14 +35536,14 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-terraform-mode", - "sha256": "00yvgpw16i6kncxrs4vvky131c8gwmvf43vjkhblai2cag6s6bfq", - "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b" + "sha256": "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7", + "rev": "6157690efce03ff20b16b85e2be6b0964efec2fb" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151006.945", + "version": "20151226.657", "deps": [ "cl-lib", "hcl-mode" @@ -35368,7 +35559,7 @@ }, "recipe": { "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151006.514", "deps": [] @@ -35383,7 +35574,7 @@ }, "recipe": { "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.814", "deps": [ @@ -35399,7 +35590,7 @@ }, "recipe": { "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140913.1458", "deps": [] @@ -35414,7 +35605,7 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141023.831", "deps": [] @@ -35429,7 +35620,7 @@ }, "recipe": { "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150918.1417", "deps": [] @@ -35444,7 +35635,7 @@ }, "recipe": { "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150722.1024", "deps": [ @@ -35464,7 +35655,7 @@ }, "recipe": { "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150928.457", "deps": [] @@ -35477,7 +35668,7 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131210.2131", "deps": [] @@ -35492,7 +35683,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130409.707", "deps": [] @@ -35507,7 +35698,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.936", "deps": [ @@ -35527,7 +35718,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121020.151", "deps": [ @@ -35544,7 +35735,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140227.51", "deps": [ @@ -35563,7 +35754,7 @@ }, "recipe": { "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131104.1634", "deps": [] @@ -35578,7 +35769,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.345", "deps": [ @@ -35595,7 +35786,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20090428.1431", "deps": [] @@ -35610,7 +35801,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140809.524", "deps": [ @@ -35622,14 +35813,14 @@ "tag": "fetchFromGitHub", "owner": "magit", "repo": "magit-svn", - "sha256": "0gzlis72xan2njk0cx0x6dbw1cz883l3lmn2hv117ch7b5v0dfns", - "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf" + "sha256": "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph", + "rev": "9b2f8c14e83ee5851a63bd23b5f19422b00c0ff5" }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151118.257", + "version": "20151219.747", "deps": [ "emacs", "magit" @@ -35645,7 +35836,7 @@ }, "recipe": { "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130315.755", "deps": [] @@ -35658,7 +35849,7 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1620", "deps": [] @@ -35673,7 +35864,7 @@ }, "recipe": { "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150614.326", "deps": [ @@ -35696,7 +35887,7 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150929.11", "deps": [] @@ -35709,7 +35900,7 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.731", "deps": [] @@ -35724,7 +35915,7 @@ }, "recipe": { "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.2048", "deps": [] @@ -35739,7 +35930,7 @@ }, "recipe": { "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1058", "deps": [ @@ -35759,7 +35950,7 @@ }, "recipe": { "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.154", "deps": [ @@ -35776,7 +35967,7 @@ }, "recipe": { "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131017.1632", "deps": [ @@ -35793,7 +35984,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150609.849", "deps": [ @@ -35813,7 +36004,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.450", "deps": [] @@ -35828,7 +36019,7 @@ }, "recipe": { "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140611.37", "deps": [] @@ -35843,7 +36034,7 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131231.925", "deps": [] @@ -35856,7 +36047,7 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.1240", "deps": [] @@ -35871,7 +36062,7 @@ }, "recipe": { "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150513.2129", "deps": [] @@ -35886,7 +36077,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150720.1318", "deps": [ @@ -35904,7 +36095,7 @@ }, "recipe": { "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.2028", "deps": [] @@ -35919,7 +36110,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150902.1235", "deps": [] @@ -35934,7 +36125,7 @@ }, "recipe": { "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150801.1101", "deps": [ @@ -35952,7 +36143,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110816.1646", "deps": [] @@ -35967,7 +36158,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150831.831", "deps": [ @@ -35982,14 +36173,14 @@ "tag": "fetchFromGitHub", "owner": "Malabarba", "repo": "speed-of-thought-clojure", - "sha256": "19zh8gijrvggwqaxxd9w2dbxvysjdyz8zvvnvbdys2xz6xwyq2ik", - "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354" + "sha256": "0s6nfszyk0qprdpd55yfcn6xv1fym43yra0j4ys6wf65lai9kr2p", + "rev": "f2f7ed52dba57752804810992c35f991c9f7dfc4" }, "recipe": { "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150914.1856", + "version": "20151225.1913", "deps": [ "cider", "clojure-mode", @@ -36005,7 +36196,7 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150710.2153", "deps": [] @@ -36020,7 +36211,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120918.817", "deps": [] @@ -36035,7 +36226,7 @@ }, "recipe": { "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141006.748", "deps": [] @@ -36050,7 +36241,7 @@ }, "recipe": { "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131026.1930", "deps": [] @@ -36065,7 +36256,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140818.957", "deps": [] @@ -36080,7 +36271,7 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150714.1059", "deps": [ @@ -36097,7 +36288,7 @@ }, "recipe": { "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151106.28", "deps": [] @@ -36112,7 +36303,7 @@ }, "recipe": { "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.1113", "deps": [] @@ -36125,7 +36316,7 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20080412.955", "deps": [] @@ -36140,7 +36331,7 @@ }, "recipe": { "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140922.2256", "deps": [ @@ -36157,7 +36348,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.859", "deps": [] @@ -36172,7 +36363,7 @@ }, "recipe": { "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150716.959", "deps": [ @@ -36191,7 +36382,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.746", "deps": [] @@ -36206,7 +36397,7 @@ }, "recipe": { "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.2141", "deps": [ @@ -36224,7 +36415,7 @@ }, "recipe": { "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.1607", "deps": [ @@ -36243,7 +36434,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.1045", "deps": [ @@ -36260,7 +36451,7 @@ }, "recipe": { "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1545", "deps": [] @@ -36275,7 +36466,7 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150417.739", "deps": [ @@ -36290,7 +36481,7 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150602.1427", "deps": [] @@ -36305,7 +36496,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150830.1427", "deps": [ @@ -36322,7 +36513,7 @@ }, "recipe": { "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131116.744", "deps": [ @@ -36340,7 +36531,7 @@ }, "recipe": { "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151020.1301", "deps": [ @@ -36359,7 +36550,7 @@ }, "recipe": { "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130729.2050", "deps": [] @@ -36374,7 +36565,7 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.2121", "deps": [ @@ -36393,7 +36584,7 @@ }, "recipe": { "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1050", "deps": [] @@ -36408,7 +36599,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.2135", "deps": [ @@ -36425,7 +36616,7 @@ }, "recipe": { "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140903.1006", "deps": [] @@ -36440,7 +36631,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -36455,7 +36646,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141030.726", "deps": [ @@ -36473,7 +36664,7 @@ }, "recipe": { "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.116", "deps": [ @@ -36490,7 +36681,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.638", "deps": [ @@ -36508,7 +36699,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150108.35", "deps": [ @@ -36527,7 +36718,7 @@ }, "recipe": { "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150918.644", "deps": [ @@ -36545,7 +36736,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150423.1558", "deps": [ @@ -36562,7 +36753,7 @@ }, "recipe": { "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.2259", "deps": [ @@ -36581,7 +36772,7 @@ }, "recipe": { "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.416", "deps": [] @@ -36596,7 +36787,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.729", "deps": [ @@ -36613,7 +36804,7 @@ }, "recipe": { "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.259", "deps": [ @@ -36630,11 +36821,28 @@ }, "recipe": { "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121118.954", "deps": [] }, + "dim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "dim.el", + "sha256": "1nixb8xw7rdrq9da1767jl8xximfdcwav2fs0kwmxjc6vahh7ya1", + "rev": "aee695f4c227e11aa22376667712815aafbb3616" + }, + "recipe": { + "sha256": "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.315", + "deps": [ + "emacs" + ] + }, "zossima": { "fetch": { "tag": "fetchFromGitHub", @@ -36645,7 +36853,7 @@ }, "recipe": { "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121123.1835", "deps": [ @@ -36662,7 +36870,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150713.916", "deps": [ @@ -36674,14 +36882,14 @@ "tag": "fetchFromGitHub", "owner": "flycheck", "repo": "flycheck-rust", - "sha256": "080xvb83mcg5snk3avlhppr13srd2lba73298ygy18ziizpv0zig", - "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1" + "sha256": "08ar85p5llk0lxlm2rd7rfc8s449vrknsrzzxqg8kvakgpd0nx7q", + "rev": "e03c895ef1ce514f7cefcd86f10e6bde97ff1c73" }, "recipe": { "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.346", + "version": "20151225.913", "deps": [ "dash", "emacs", @@ -36698,7 +36906,7 @@ }, "recipe": { "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.730", "deps": [] @@ -36713,7 +36921,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1249", "deps": [ @@ -36730,7 +36938,7 @@ }, "recipe": { "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130527.321", "deps": [] @@ -36745,7 +36953,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131125.2338", "deps": [ @@ -36764,7 +36972,7 @@ }, "recipe": { "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.153", "deps": [ @@ -36781,7 +36989,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130312.1337", "deps": [ @@ -36798,7 +37006,7 @@ }, "recipe": { "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140223.1158", "deps": [ @@ -36816,7 +37024,7 @@ }, "recipe": { "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150824.2110", "deps": [ @@ -36833,7 +37041,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150916.2233", "deps": [ @@ -36850,7 +37058,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121104.1259", "deps": [ @@ -36867,7 +37075,7 @@ }, "recipe": { "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.1441", "deps": [ @@ -36886,7 +37094,7 @@ }, "recipe": { "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141201.1858", "deps": [ @@ -36903,7 +37111,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140120.1252", "deps": [ @@ -36923,7 +37131,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.2129", "deps": [] @@ -36938,7 +37146,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.1349", "deps": [ @@ -36955,7 +37163,7 @@ }, "recipe": { "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131123.931", "deps": [ @@ -36972,7 +37180,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150804.1504", "deps": [ @@ -36994,7 +37202,7 @@ }, "recipe": { "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.1306", "deps": [ @@ -37012,7 +37220,7 @@ }, "recipe": { "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141006.2055", "deps": [ @@ -37029,7 +37237,7 @@ }, "recipe": { "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130617.1515", "deps": [] @@ -37043,7 +37251,7 @@ }, "recipe": { "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120312.1525", "deps": [] @@ -37053,14 +37261,14 @@ "tag": "fetchFromGitHub", "owner": "marsmining", "repo": "ox-twbs", - "sha256": "0pms1xj7kkmk7c6vd9xjc2bggdji3ipbphqrxddarz3pck2ji9vr", - "rev": "20b97120eed058a03312157c6646c4569c0168ac" + "sha256": "026g48sgqwnqs5zmrabhiv3l8052l4c1vsbsf6bdxv4a6yp0l654", + "rev": "cfe67353d148e65a7676f1609d8cc22a4c8fbc78" }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151025.1248", + "version": "20151223.1320", "deps": [] }, "mediawiki": { @@ -37073,7 +37281,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150711.1934", "deps": [] @@ -37088,7 +37296,7 @@ }, "recipe": { "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121006.1525", "deps": [] @@ -37103,7 +37311,7 @@ }, "recipe": { "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150705.800", "deps": [ @@ -37120,7 +37328,7 @@ }, "recipe": { "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.549", "deps": [] @@ -37135,7 +37343,7 @@ }, "recipe": { "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140104.1259", "deps": [ @@ -37152,7 +37360,7 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151008.924", "deps": [ @@ -37170,7 +37378,7 @@ }, "recipe": { "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150411.616", "deps": [ @@ -37187,7 +37395,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.1544", "deps": [ @@ -37205,7 +37413,7 @@ }, "recipe": { "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150525.414", "deps": [ @@ -37225,7 +37433,7 @@ }, "recipe": { "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140723.1346", "deps": [] @@ -37240,7 +37448,7 @@ }, "recipe": { "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140310.817", "deps": [] @@ -37255,7 +37463,7 @@ }, "recipe": { "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.49", "deps": [ @@ -37272,7 +37480,7 @@ }, "recipe": { "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140715.1927", "deps": [ @@ -37291,7 +37499,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140809.732", "deps": [ @@ -37309,7 +37517,7 @@ }, "recipe": { "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110509.1126", "deps": [] @@ -37324,7 +37532,7 @@ }, "recipe": { "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140814.521", "deps": [] @@ -37339,7 +37547,7 @@ }, "recipe": { "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150615.916", "deps": [] @@ -37352,7 +37560,7 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120108.645", "deps": [] @@ -37367,7 +37575,7 @@ }, "recipe": { "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150921.1633", "deps": [ @@ -37386,7 +37594,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141212.1532", "deps": [] @@ -37401,7 +37609,7 @@ }, "recipe": { "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1440", "deps": [ @@ -37420,7 +37628,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130423.1745", "deps": [ @@ -37438,7 +37646,7 @@ }, "recipe": { "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140324.648", "deps": [] @@ -37453,7 +37661,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151101.601", "deps": [ @@ -37474,7 +37682,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.901", "deps": [] @@ -37489,7 +37697,7 @@ }, "recipe": { "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130214.1342", "deps": [] @@ -37504,7 +37712,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1348", "deps": [ @@ -37521,7 +37729,7 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151104.1437", "deps": [] @@ -37535,9 +37743,9 @@ }, "recipe": { "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20140410.1923", + "version": "20130808.2150", "deps": [ "xml-rpc" ] @@ -37552,7 +37760,7 @@ }, "recipe": { "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120331.320", "deps": [] @@ -37567,7 +37775,7 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140717.2229", "deps": [ @@ -37585,7 +37793,7 @@ }, "recipe": { "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151017.1620", "deps": [ @@ -37602,7 +37810,7 @@ }, "recipe": { "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130717.44", "deps": [ @@ -37619,7 +37827,7 @@ }, "recipe": { "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140103.2316", "deps": [] @@ -37632,7 +37840,7 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130704.932", "deps": [] @@ -37647,7 +37855,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140127.1512", "deps": [ @@ -37664,7 +37872,7 @@ }, "recipe": { "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.1441", "deps": [] @@ -37679,7 +37887,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.430", "deps": [ @@ -37697,7 +37905,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150223.754", "deps": [ @@ -37715,7 +37923,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.1208", "deps": [ @@ -37736,7 +37944,7 @@ }, "recipe": { "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140115.415", "deps": [ @@ -37756,7 +37964,7 @@ }, "recipe": { "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.213", "deps": [] @@ -37771,7 +37979,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141108.1411", "deps": [ @@ -37788,7 +37996,7 @@ }, "recipe": { "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131119.1645", "deps": [] @@ -37803,7 +38011,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.1858", "deps": [ @@ -37821,7 +38029,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.2106", "deps": [ @@ -37837,7 +38045,7 @@ }, "recipe": { "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20111208.1222", "deps": [] @@ -37852,7 +38060,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150719.720", "deps": [ @@ -37869,7 +38077,7 @@ }, "recipe": { "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150601.1609", "deps": [] @@ -37884,7 +38092,7 @@ }, "recipe": { "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141127.1204", "deps": [] @@ -37899,7 +38107,7 @@ }, "recipe": { "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140117.337", "deps": [ @@ -37920,7 +38128,7 @@ }, "recipe": { "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140311.431", "deps": [] @@ -37935,7 +38143,7 @@ }, "recipe": { "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150518.900", "deps": [] @@ -37950,7 +38158,7 @@ }, "recipe": { "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.2155", "deps": [ @@ -37963,14 +38171,14 @@ "tag": "fetchFromGitHub", "owner": "abingham", "repo": "emacs-ycmd", - "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", - "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151129.625", + "version": "20151223.906", "deps": [ "dash", "deferred", @@ -37989,7 +38197,7 @@ }, "recipe": { "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150505.1211", "deps": [ @@ -38006,7 +38214,7 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1514", "deps": [ @@ -38021,7 +38229,7 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1539", "deps": [] @@ -38036,7 +38244,7 @@ }, "recipe": { "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141030.1534", "deps": [ @@ -38053,7 +38261,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.1248", "deps": [] @@ -38063,14 +38271,14 @@ "tag": "fetchFromGitHub", "owner": "iqbalansari", "repo": "emacs-emojify", - "sha256": "0zd47b4i03ypbydiaap20vpr79gybmsk26q2xh4krci311n8mmgb", - "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de" + "sha256": "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp", + "rev": "fec788f09ab1c131b89f296ebd3e73df97e96cfe" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.2155", + "version": "20151220.2152", "deps": [ "emacs", "ht", @@ -38087,7 +38295,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.2046", "deps": [ @@ -38108,7 +38316,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150808.1705", "deps": [ @@ -38121,14 +38329,14 @@ "tag": "fetchFromGitHub", "owner": "jschaf", "repo": "esup", - "sha256": "1hvf022ag23rmsk7whz8mnlswk5d89249pmc0p3pnaycykw8imxp", - "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86" + "sha256": "0xfip7awlrd935ijyw4pz0mjg0wyqifp74w4psxm8cy7hymly450", + "rev": "bba1baf15c12e8fdaa36afa20943e311c7fdc12d" }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151203.2111", + "version": "20151225.1946", "deps": [ "cl-lib", "emacs" @@ -38144,7 +38352,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1719", "deps": [ @@ -38161,7 +38369,7 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150726.1112", "deps": [] @@ -38174,7 +38382,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151101.1224", "deps": [ @@ -38192,7 +38400,7 @@ }, "recipe": { "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150904.937", "deps": [ @@ -38209,7 +38417,7 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.719", "deps": [] @@ -38222,7 +38430,7 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150418.1902", "deps": [] @@ -38237,7 +38445,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150504.344", "deps": [ @@ -38254,7 +38462,7 @@ }, "recipe": { "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150408.2202", "deps": [] @@ -38269,7 +38477,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150213.946", "deps": [ @@ -38287,7 +38495,7 @@ }, "recipe": { "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151124.1709", "deps": [] @@ -38302,7 +38510,7 @@ }, "recipe": { "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.1205", "deps": [] @@ -38317,7 +38525,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150611.45", "deps": [ @@ -38337,7 +38545,7 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.211", "deps": [ @@ -38355,7 +38563,7 @@ }, "recipe": { "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.1140", "deps": [ @@ -38372,7 +38580,7 @@ }, "recipe": { "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140716.2132", "deps": [] @@ -38387,7 +38595,7 @@ }, "recipe": { "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150919.1459", "deps": [ @@ -38404,7 +38612,7 @@ }, "recipe": { "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151103.421", "deps": [ @@ -38421,7 +38629,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140611.1100", "deps": [ @@ -38439,7 +38647,7 @@ }, "recipe": { "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.1353", "deps": [ @@ -38456,7 +38664,7 @@ }, "recipe": { "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130419.458", "deps": [] @@ -38471,7 +38679,7 @@ }, "recipe": { "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141108.1357", "deps": [] @@ -38486,7 +38694,7 @@ }, "recipe": { "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150728.1431", "deps": [ @@ -38505,7 +38713,7 @@ }, "recipe": { "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141215.2347", "deps": [ @@ -38522,7 +38730,7 @@ }, "recipe": { "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.1010", "deps": [ @@ -38540,7 +38748,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141109.1006", "deps": [ @@ -38556,7 +38764,7 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1604", "deps": [] @@ -38571,7 +38779,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151117.1120", "deps": [ @@ -38588,8 +38796,8 @@ "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { - "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150903.2140", "deps": [ @@ -38606,7 +38814,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1634", "deps": [ @@ -38623,7 +38831,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.607", "deps": [ @@ -38642,28 +38850,13 @@ }, "recipe": { "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.101", "deps": [ "emacs" ] }, - "mozc": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "google", - "repo": "mozc", - "sha256": "0ijx66xx0nv4xwf91403qc1s8mksnpkl5d5pv8gwck0dr2abz2nd", - "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" - }, - "recipe": { - "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "20150815.503", - "deps": [] - }, "drill-instructor-AZIK-force": { "fetch": { "tag": "fetchFromGitHub", @@ -38674,7 +38867,7 @@ }, "recipe": { "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.2314", "deps": [ @@ -38691,7 +38884,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151125.1333", "deps": [] @@ -38706,7 +38899,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.651", "deps": [] @@ -38721,7 +38914,7 @@ }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.624", "deps": [ @@ -38729,6 +38922,23 @@ "sr-speedbar" ] }, + "clean-buffers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "clean-buffers", + "sha256": "18z3511iyvcw04lhpxfa36gybbw4ply6bbd5l2nfqn7q2lpi95ya", + "rev": "a6902eecef04a39f28a1e44631cfb571ddc5e020" + }, + "recipe": { + "sha256": "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.922", + "deps": [ + "cl-lib" + ] + }, "reveal-next": { "fetch": { "tag": "fetchurl", @@ -38737,7 +38947,7 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1843", "deps": [] @@ -38752,7 +38962,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140221.1753", "deps": [ @@ -38769,7 +38979,7 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120728.913", "deps": [] @@ -38784,7 +38994,7 @@ }, "recipe": { "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.931", "deps": [ @@ -38801,7 +39011,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140510.1206", "deps": [ @@ -38819,7 +39029,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.943", "deps": [ @@ -38837,7 +39047,7 @@ }, "recipe": { "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151115.307", "deps": [ @@ -38858,7 +39068,7 @@ }, "recipe": { "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150319.1407", "deps": [ @@ -38876,7 +39086,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131230.1551", "deps": [ @@ -38893,7 +39103,7 @@ }, "recipe": { "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141017.1823", "deps": [] @@ -38908,7 +39118,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141101.1234", "deps": [ @@ -38927,7 +39137,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.853", "deps": [ @@ -38947,7 +39157,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.2352", "deps": [ @@ -38968,7 +39178,7 @@ }, "recipe": { "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1514", "deps": [] @@ -38983,7 +39193,7 @@ }, "recipe": { "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141027.1257", "deps": [] @@ -38998,7 +39208,7 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150801.1525", "deps": [] @@ -39011,7 +39221,7 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110405.1020", "deps": [] @@ -39026,7 +39236,7 @@ }, "recipe": { "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150419.45", "deps": [ @@ -39039,12 +39249,12 @@ "tag": "fetchFromGitHub", "owner": "editorconfig", "repo": "editorconfig-emacs", - "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", - "rev": "301d67b26098d048ff7235c0878252e80becc7e0" + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1035", "deps": [ @@ -39061,7 +39271,7 @@ }, "recipe": { "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150316.501", "deps": [ @@ -39079,7 +39289,7 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150124.1809", "deps": [ @@ -39097,7 +39307,7 @@ }, "recipe": { "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151007.401", "deps": [ @@ -39114,7 +39324,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150219.731", "deps": [ @@ -39131,7 +39341,7 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.1035", "deps": [] @@ -39144,7 +39354,7 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.707", "deps": [] @@ -39159,7 +39369,7 @@ }, "recipe": { "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141009.524", "deps": [] @@ -39174,7 +39384,7 @@ }, "recipe": { "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150816.2229", "deps": [] @@ -39189,7 +39399,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141201.323", "deps": [ @@ -39206,7 +39416,7 @@ }, "recipe": { "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.2030", "deps": [ @@ -39224,7 +39434,7 @@ }, "recipe": { "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141127.228", "deps": [] @@ -39239,7 +39449,7 @@ }, "recipe": { "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151201.2238", "deps": [ @@ -39260,7 +39470,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.606", "deps": [] @@ -39275,7 +39485,7 @@ }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151207.1116", "deps": [ @@ -39295,7 +39505,7 @@ }, "recipe": { "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150405.216", "deps": [] @@ -39305,14 +39515,14 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "javadoc-lookup", - "sha256": "10x10d0y8lr2a4kxq6pmvl5a1nzkfayg9qlzwh5v5is17wxr7399", - "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f" + "sha256": "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r", + "rev": "0d5316407c9ec183040ca5c6ab71091b9444276f" }, "recipe": { "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150425.1203", + "version": "20151222.1310", "deps": [ "cl-lib" ] @@ -39327,7 +39537,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140311.1708", "deps": [] @@ -39337,14 +39547,14 @@ "tag": "fetchFromGitHub", "owner": "10sr", "repo": "git-ps1-mode-el", - "sha256": "1hbpcsyivvdjf16znbhzykn9hci73jl77n4wrxy4v8vhkdajgkd1", - "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0" + "sha256": "13k11acls6r65gms1hkmnhnbw7hkc1f7ijdb0lwipqdn4h361pjg", + "rev": "c4910224204c94aabd59ab2cf05f309302bcbedd" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150421.2301", + "version": "20151220.1031", "deps": [] }, "evil-textobj-anyblock": { @@ -39357,7 +39567,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151017.1617", "deps": [ @@ -39375,7 +39585,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20101130.648", "deps": [] @@ -39390,7 +39600,7 @@ }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1153", "deps": [] @@ -39405,7 +39615,7 @@ }, "recipe": { "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150921.1744", "deps": [ @@ -39422,7 +39632,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150817.507", "deps": [ @@ -39439,7 +39649,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.2135", "deps": [ @@ -39451,14 +39661,14 @@ "tag": "fetchFromGitHub", "owner": "wasamasa", "repo": "shackle", - "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", - "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + "sha256": "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y", + "rev": "4069e0cbff0d172de2cd7d588de971d8b02915c6" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151213.816", + "version": "20151220.1432", "deps": [ "cl-lib" ] @@ -39473,7 +39683,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1935", "deps": [ @@ -39490,7 +39700,7 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151009.121", "deps": [ @@ -39507,7 +39717,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141231.1537", "deps": [] @@ -39522,7 +39732,7 @@ }, "recipe": { "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150113.242", "deps": [ @@ -39539,7 +39749,7 @@ }, "recipe": { "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140225.344", "deps": [ @@ -39556,7 +39766,7 @@ }, "recipe": { "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1", "deps": [ @@ -39574,7 +39784,7 @@ }, "recipe": { "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131007.2153", "deps": [] @@ -39589,7 +39799,7 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.2121", "deps": [ @@ -39606,7 +39816,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150620.1944", "deps": [] @@ -39621,7 +39831,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130309.345", "deps": [ @@ -39633,12 +39843,12 @@ "tag": "fetchFromGitHub", "owner": "abingham", "repo": "emacs-ycmd", - "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", - "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150727.231", "deps": [ @@ -39658,7 +39868,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150524.1205", "deps": [ @@ -39675,7 +39885,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151003.2033", "deps": [] @@ -39690,7 +39900,7 @@ }, "recipe": { "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130508.1344", "deps": [] @@ -39705,7 +39915,7 @@ }, "recipe": { "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.341", "deps": [] @@ -39715,14 +39925,14 @@ "tag": "fetchFromGitHub", "owner": "stan-dev", "repo": "stan-mode", - "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", - "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + "sha256": "1k0jidh177s9lk4k9vphivq8dapd2qzajim2s835pn72j6k675vg", + "rev": "e981ca7fee98431162b21ec6b79c82100ce4b276" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150728.2254", + "version": "20151222.2258", "deps": [ "stan-mode", "yasnippet" @@ -39738,7 +39948,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151004.915", "deps": [ @@ -39757,7 +39967,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140707.626", "deps": [] @@ -39772,7 +39982,7 @@ }, "recipe": { "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130217.443", "deps": [] @@ -39787,7 +39997,7 @@ }, "recipe": { "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.916", "deps": [ @@ -39804,7 +40014,7 @@ }, "recipe": { "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120715.409", "deps": [] @@ -39819,7 +40029,7 @@ }, "recipe": { "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120505.908", "deps": [] @@ -39834,7 +40044,7 @@ }, "recipe": { "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150121.2324", "deps": [ @@ -39852,7 +40062,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.714", "deps": [ @@ -39871,7 +40081,7 @@ }, "recipe": { "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130809.447", "deps": [] @@ -39886,7 +40096,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151028.28", "deps": [] @@ -39901,7 +40111,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150530.351", "deps": [ @@ -39921,7 +40131,7 @@ }, "recipe": { "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150116.706", "deps": [ @@ -39939,7 +40149,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.1955", "deps": [ @@ -39956,7 +40166,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151212.1609", "deps": [ @@ -39973,7 +40183,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150101.604", "deps": [ @@ -39990,7 +40200,7 @@ }, "recipe": { "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130328.715", "deps": [] @@ -40005,7 +40215,7 @@ }, "recipe": { "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141012.511", "deps": [ @@ -40022,7 +40232,7 @@ }, "recipe": { "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.407", "deps": [ @@ -40040,7 +40250,7 @@ }, "recipe": { "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140311.541", "deps": [ @@ -40059,7 +40269,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.936", "deps": [ @@ -40081,7 +40291,7 @@ }, "recipe": { "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.754", "deps": [ @@ -40093,14 +40303,14 @@ "tag": "fetchFromGitHub", "owner": "for-GET", "repo": "know-your-http-well", - "sha256": "0hkjdmaab50dk07g1825w4x9dpavyqvkm7kp4fvgi3lk2j2a67q7", - "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438" + "sha256": "08q43k4450kgygyvqv18gwcmmb7y9x445401048lbixc4cp6p3cg", + "rev": "e208d856ce1b036d2dc1454813c6fc81f0269def" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151119.1331", + "version": "20151220.813", "deps": [] }, "homebrew-mode": { @@ -40113,7 +40323,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.851", "deps": [ @@ -40132,7 +40342,7 @@ }, "recipe": { "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.704", "deps": [] @@ -40146,9 +40356,9 @@ }, "recipe": { "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151009.1045", + "version": "20150911.658", "deps": [] }, "indent-guide": { @@ -40161,7 +40371,7 @@ }, "recipe": { "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.917", "deps": [] @@ -40170,14 +40380,14 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/deft.git", - "sha256": "3073db99375de84c335c93d44d520c1a2ed471fb1a7c7f1febef014a6e2d16c1", - "rev": "a3e25d94424e2acd516d818e83d74c56e884b0a4" + "sha256": "15c3ec6fcfae63201652394205fee951f3c1db8d3c6fc5f48c306b9b775c8e63", + "rev": "2dd64ddc798a009e62289d65abfa621735461b7a" }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151008.1022", + "version": "20151222.725", "deps": [] }, "autodisass-java-bytecode": { @@ -40190,7 +40400,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151005.1112", "deps": [] @@ -40205,7 +40415,7 @@ }, "recipe": { "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150619.1620", "deps": [ @@ -40223,7 +40433,7 @@ }, "recipe": { "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151110.1310", "deps": [ @@ -40238,14 +40448,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-bundle-show", - "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", - "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + "sha256": "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30", + "rev": "b34523aa8a7f82ed9a1bf3643c35b65866a7877a" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151207.241", + "version": "20151221.630", "deps": [ "helm" ] @@ -40255,12 +40465,12 @@ "tag": "fetchFromGitHub", "owner": "Sarcasm", "repo": "irony-mode", - "sha256": "00zb52qhyfzpn180x6m2ds8gfcxgcn4jiqb2kvdcrsmrv2w40fgc", - "rev": "eb4bf86f5984b399ccc000ad635d1de8915b179d" + "sha256": "0lsi3vzpfh62bh9lknswwsxczvns0j78psk1w5yqdjrnnd1fb6sw", + "rev": "64d16007f3e5066ed3b49adcb291044c01cb42d6" }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.1258", "deps": [ @@ -40278,7 +40488,7 @@ }, "recipe": { "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120120.516", "deps": [] @@ -40293,26 +40503,11 @@ }, "recipe": { "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131112.1052", "deps": [] }, - "elisp-sandbox": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "joelmccracken", - "repo": "elisp-sandbox", - "sha256": "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3", - "rev": "ddd669266ca36d7e4ebba73eb1ab42523787e042" - }, - "recipe": { - "sha256": "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "20131116.1242", - "deps": [] - }, "swiper-helm": { "fetch": { "tag": "fetchFromGitHub", @@ -40323,7 +40518,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.530", "deps": [ @@ -40337,14 +40532,14 @@ "tag": "fetchFromGitHub", "owner": "xwl", "repo": "cal-china-x", - "sha256": "039913cn4xafh533cc6zi2l5260cxvv5iv40l8ydk8zw36vm1gws", - "rev": "b6186a729899ae141c546dd3efde461160d8b172" + "sha256": "0l9izmif064jcz8hrmxjvi09i4kayxnw5az2x6w2w9d11j0zbgma", + "rev": "b8b3f94571ce6f7f53fda45516aa70632c9647ac" }, "recipe": { "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151122.1547", + "version": "20151226.804", "deps": [ "cl-lib" ] @@ -40359,7 +40554,7 @@ }, "recipe": { "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150623.2250", "deps": [] @@ -40374,7 +40569,7 @@ }, "recipe": { "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150713.2131", "deps": [ @@ -40392,7 +40587,7 @@ }, "recipe": { "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140117.413", "deps": [] @@ -40407,7 +40602,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140524.358", "deps": [ @@ -40424,7 +40619,7 @@ }, "recipe": { "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150716.1246", "deps": [] @@ -40438,7 +40633,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150623.1234", "deps": [] @@ -40453,7 +40648,7 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140508.1541", "deps": [] @@ -40466,7 +40661,7 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140417.2134", "deps": [] @@ -40481,7 +40676,7 @@ }, "recipe": { "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.257", "deps": [ @@ -40498,7 +40693,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.2130", "deps": [] @@ -40513,7 +40708,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141109.452", "deps": [ @@ -40533,7 +40728,7 @@ }, "recipe": { "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140710.426", "deps": [] @@ -40548,7 +40743,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150107.1600", "deps": [] @@ -40563,7 +40758,7 @@ }, "recipe": { "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140113.1624", "deps": [] @@ -40573,14 +40768,14 @@ "tag": "fetchFromGitHub", "owner": "jorgenschaefer", "repo": "emacs-buttercup", - "sha256": "03zmxfql9hb31n2qf3vs4kv69kffrazlmzji8hkcf86i2wa4hqrf", - "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60" + "sha256": "02r6n7563yc8gads38pq2yqsfv6p8wi6gi1f36mmz4h2gc872m1b", + "rev": "238bfa84538e95bfeb3430feb5bd9be4f4f4b906" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150927.506", + "version": "20151223.806", "deps": [] }, "jdee": { @@ -40588,12 +40783,12 @@ "tag": "fetchFromGitHub", "owner": "jdee-emacs", "repo": "jdee", - "sha256": "1p8dzsxlm3rd425ahkjdpv1gbxiw8bg22lakgq8lfdv4mxi389ap", - "rev": "f3d1204c448d5406c3c51c01518afcf914d8f1fa" + "sha256": "1vfh2wmn3lbq6lly0g7r1npmghn5idfvy9rx8im2gk04cdmiqkxx", + "rev": "7a4fa853e7d6af835bad236bc7eb0b28408e01f2" }, "recipe": { "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151218.1443", "deps": [ @@ -40609,7 +40804,7 @@ }, "recipe": { "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140212.502", "deps": [] @@ -40624,7 +40819,7 @@ }, "recipe": { "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140115.956", "deps": [ @@ -40639,7 +40834,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -40654,7 +40849,7 @@ }, "recipe": { "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150820.339", "deps": [ @@ -40671,7 +40866,7 @@ }, "recipe": { "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.514", "deps": [] @@ -40684,7 +40879,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150823.1911", "deps": [] @@ -40699,7 +40894,7 @@ }, "recipe": { "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1539", "deps": [] @@ -40712,7 +40907,7 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150801.1120", "deps": [] @@ -40727,7 +40922,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.102", "deps": [ @@ -40744,7 +40939,7 @@ }, "recipe": { "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151204.2249", "deps": [ @@ -40763,7 +40958,7 @@ }, "recipe": { "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.30", "deps": [ @@ -40780,7 +40975,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.1033", "deps": [ @@ -40798,7 +40993,7 @@ }, "recipe": { "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.846", "deps": [ @@ -40816,7 +41011,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.1342", "deps": [ @@ -40833,7 +41028,7 @@ }, "recipe": { "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140204.1354", "deps": [] @@ -40848,7 +41043,7 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150709.1423", "deps": [ @@ -40864,7 +41059,7 @@ }, "recipe": { "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131228.1209", "deps": [] @@ -40879,7 +41074,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150717.848", "deps": [ @@ -40901,7 +41096,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151011.815", "deps": [] @@ -40916,7 +41111,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.1515", "deps": [] @@ -40931,7 +41126,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.2211", "deps": [ @@ -40948,7 +41143,7 @@ }, "recipe": { "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.2346", "deps": [ @@ -40966,7 +41161,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150625.1723", "deps": [ @@ -40984,7 +41179,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.623", "deps": [ @@ -41001,7 +41196,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150330.1542", "deps": [ @@ -41017,7 +41212,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20080905.54", "deps": [] @@ -41031,7 +41226,7 @@ }, "recipe": { "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130418.1439", "deps": [ @@ -41048,7 +41243,7 @@ }, "recipe": { "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150521.1556", "deps": [] @@ -41063,7 +41258,7 @@ }, "recipe": { "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130811.351", "deps": [] @@ -41078,7 +41273,7 @@ }, "recipe": { "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140715.1101", "deps": [] @@ -41093,7 +41288,7 @@ }, "recipe": { "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151216.209", "deps": [ @@ -41111,7 +41306,7 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.42", "deps": [ @@ -41129,7 +41324,7 @@ }, "recipe": { "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140722.15", "deps": [] @@ -41144,7 +41339,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140610.34", "deps": [ @@ -41162,7 +41357,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151129.504", "deps": [] @@ -41177,7 +41372,7 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141031.133", "deps": [] @@ -41190,7 +41385,7 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1605", "deps": [] @@ -41205,7 +41400,7 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120510.1900", "deps": [] @@ -41220,7 +41415,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.912", "deps": [ @@ -41238,7 +41433,7 @@ }, "recipe": { "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150315.742", "deps": [ @@ -41255,7 +41450,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150727.1725", "deps": [] @@ -41270,7 +41465,7 @@ }, "recipe": { "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120928.2054", "deps": [] @@ -41280,14 +41475,14 @@ "tag": "fetchFromGitHub", "owner": "dominikh", "repo": "go-mode.el", - "sha256": "14h5fgh4bksll4h61pkximydddpww1pq7kr9j2f8akr06gmwcdfl", - "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba" + "sha256": "0wsh3rgay1k6ncayhqnnsnl5v2xwl60k6qyanmps0jgyshdv67zj", + "rev": "dccb56c1b1b85c3d7b3184a6606024077d4e1775" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.1129", + "version": "20151226.1424", "deps": [] }, "xtest": { @@ -41300,7 +41495,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141214.1106", "deps": [ @@ -41317,7 +41512,7 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150514.1620", "deps": [] @@ -41330,7 +41525,7 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140901.1335", "deps": [] @@ -41345,7 +41540,7 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130828.919", "deps": [] @@ -41360,7 +41555,7 @@ }, "recipe": { "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.803", "deps": [ @@ -41371,6 +41566,21 @@ "f" ] }, + "latex-math-preview": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "latex-math-preview", + "repo": "latex-math-preview", + "sha256": "1rpf0vkrzchhws1gzz2cpfcvswwfn5557m225qlwf869kqz37m2d", + "rev": "6dd4d18b1b1ce8acc72ae5ef63e6498b859ac029" + }, + "recipe": { + "sha256": "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.20", + "deps": [] + }, "bbdb": { "fetch": { "tag": "fetchgit", @@ -41380,7 +41590,7 @@ }, "recipe": { "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.1741", "deps": [] @@ -41395,7 +41605,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150912.308", "deps": [ @@ -41412,7 +41622,7 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131113.2018", "deps": [] @@ -41427,7 +41637,7 @@ }, "recipe": { "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140619.326", "deps": [] @@ -41437,14 +41647,14 @@ "tag": "fetchFromGitHub", "owner": "magit", "repo": "magit", - "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", - "rev": "6b595ac224f512cf672c56600e136714875a940f" + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151215.1708", + "version": "20151226.639", "deps": [ "async", "dash", @@ -41459,14 +41669,14 @@ "tag": "fetchFromGitHub", "owner": "capitaomorte", "repo": "sly", - "sha256": "0qmayk1691wpa8bczxaarp17q3g1rpkkh12v90814h9kjnd05wx6", - "rev": "247c4125ec42e75cbcf0e680bb3c975302ad266e" + "sha256": "11qdkhpz0h2idm0arrql5r7wh1nf40b34vnvwrwgdaqwq49xfrr4", + "rev": "762b53a1b1eecb0b7a9c8030d529e23e73b18791" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.522", + "version": "20151222.931", "deps": [ "emacs" ] @@ -41481,7 +41691,7 @@ }, "recipe": { "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100517.120", "deps": [] @@ -41496,7 +41706,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151120.1744", "deps": [ @@ -41514,7 +41724,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141227.448", "deps": [] @@ -41529,7 +41739,7 @@ }, "recipe": { "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150116.554", "deps": [ @@ -41547,7 +41757,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150727.424", "deps": [ @@ -41565,7 +41775,7 @@ }, "recipe": { "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140911.1608", "deps": [] @@ -41580,7 +41790,7 @@ }, "recipe": { "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140421.1611", "deps": [ @@ -41597,7 +41807,7 @@ }, "recipe": { "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141124.413", "deps": [ @@ -41609,14 +41819,14 @@ "tag": "fetchFromGitHub", "owner": "jkitchin", "repo": "org-ref", - "sha256": "0clz78kcvibiic3igy0dik5bv0jvmngr7jnq2g93lq0dbxcy1d3f", - "rev": "d7bee0742f4f2807e5a464120cac4ae4d7768aff" + "sha256": "0ggr0ln67gffyl3czcjw1hck7m7wibmbgb7q2kn8ps9cc90ngc1a", + "rev": "fa0e03e8c194c5d2e95fe51a59802a68b7039a86" }, "recipe": { - "sha256": "0sxhq603zq55lfq2z7jdfka7d5jphgnn2xfhw8n6ihzynx0lsjzx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.503", + "version": "20151226.1700", "deps": [ "dash", "emacs", @@ -41636,7 +41846,7 @@ }, "recipe": { "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140319.1700", "deps": [ @@ -41653,7 +41863,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.957", "deps": [ @@ -41671,7 +41881,7 @@ }, "recipe": { "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20100703.658", "deps": [] @@ -41686,7 +41896,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140308.525", "deps": [ @@ -41703,7 +41913,7 @@ }, "recipe": { "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120718.2238", "deps": [] @@ -41718,7 +41928,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130719.456", "deps": [] @@ -41733,7 +41943,7 @@ }, "recipe": { "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.1007", "deps": [ @@ -41751,7 +41961,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151208.1028", "deps": [ @@ -41770,7 +41980,7 @@ }, "recipe": { "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.500", "deps": [] @@ -41785,7 +41995,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.238", "deps": [ @@ -41802,7 +42012,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.859", "deps": [ @@ -41821,7 +42031,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151128.1302", "deps": [ @@ -41839,7 +42049,7 @@ }, "recipe": { "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151122.347", "deps": [ @@ -41857,7 +42067,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141215.623", "deps": [] @@ -41872,7 +42082,7 @@ }, "recipe": { "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130819.427", "deps": [] @@ -41887,7 +42097,7 @@ }, "recipe": { "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141205.2308", "deps": [ @@ -41904,7 +42114,7 @@ }, "recipe": { "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1435", "deps": [ @@ -41922,7 +42132,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151113.323", "deps": [ @@ -41940,7 +42150,7 @@ }, "recipe": { "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150715.1532", "deps": [ @@ -41960,7 +42170,7 @@ }, "recipe": { "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150819.1148", "deps": [ @@ -41978,7 +42188,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151012.508", "deps": [ @@ -41996,7 +42206,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110206.1430", "deps": [] @@ -42011,7 +42221,7 @@ }, "recipe": { "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120629.1313", "deps": [] @@ -42026,7 +42236,7 @@ }, "recipe": { "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121202.1103", "deps": [] @@ -42041,7 +42251,7 @@ }, "recipe": { "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141222.1016", "deps": [] @@ -42054,7 +42264,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.707", "deps": [] @@ -42069,7 +42279,7 @@ }, "recipe": { "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151010.307", "deps": [ @@ -42084,7 +42294,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130607.514", "deps": [ @@ -42101,7 +42311,7 @@ }, "recipe": { "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.1139", "deps": [] @@ -42116,7 +42326,7 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140303.657", "deps": [ @@ -42134,7 +42344,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151114.1306", "deps": [ @@ -42147,14 +42357,14 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "elfeed", - "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", - "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151130.1724", + "version": "20151222.1322", "deps": [ "elfeed", "emacs", @@ -42166,14 +42376,14 @@ "tag": "fetchFromGitHub", "owner": "raghavgautam", "repo": "osx-lib", - "sha256": "1s2bv4sypf910wq62d5nfzdlmp54y1igqx8l7gzm1c6fnaz4fway", - "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671" + "sha256": "1rha3qcv8k1y91w9p70fw0jfwyssiwxn85xz4jq1gd3nha126zw1", + "rev": "18ad53b6a3f9895f25dc2413bf448ded0fb6fdff" }, "recipe": { "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.1857", + "version": "20151221.2148", "deps": [ "emacs" ] @@ -42188,7 +42398,7 @@ }, "recipe": { "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140510.1731", "deps": [ @@ -42205,7 +42415,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150425.1507", "deps": [ @@ -42223,7 +42433,7 @@ }, "recipe": { "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130804.610", "deps": [] @@ -42238,7 +42448,7 @@ }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1953", "deps": [ @@ -42256,7 +42466,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150621.2341", "deps": [] @@ -42271,7 +42481,7 @@ }, "recipe": { "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141124.1119", "deps": [] @@ -42286,7 +42496,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.1845", "deps": [ @@ -42304,7 +42514,7 @@ }, "recipe": { "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.226", "deps": [] @@ -42319,7 +42529,7 @@ }, "recipe": { "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20110508.231", "deps": [] @@ -42334,7 +42544,7 @@ }, "recipe": { "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.430", "deps": [] @@ -42349,7 +42559,7 @@ }, "recipe": { "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150630.338", "deps": [] @@ -42359,12 +42569,12 @@ "tag": "fetchFromGitHub", "owner": "magit", "repo": "magit", - "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", - "rev": "6b595ac224f512cf672c56600e136714875a940f" + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.618", "deps": [ @@ -42383,7 +42593,7 @@ }, "recipe": { "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150106.851", "deps": [ @@ -42401,7 +42611,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.2200", "deps": [ @@ -42419,7 +42629,7 @@ }, "recipe": { "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140224.959", "deps": [ @@ -42438,7 +42648,7 @@ }, "recipe": { "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150421.703", "deps": [ @@ -42455,7 +42665,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.2321", "deps": [ @@ -42473,7 +42683,7 @@ }, "recipe": { "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150920.758", "deps": [] @@ -42488,7 +42698,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140616.315", "deps": [] @@ -42503,7 +42713,7 @@ }, "recipe": { "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131004.1830", "deps": [] @@ -42518,7 +42728,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130718.929", "deps": [ @@ -42536,7 +42746,7 @@ }, "recipe": { "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141107.1006", "deps": [ @@ -42545,14 +42755,15 @@ }, "meacupla-theme": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/jtecca/meacupla-theme.git", - "sha256": "fb8399ef9c3975b9c536e6b458d5cd151da9a1d355bfd0b2219d4f05d380d48c", + "tag": "fetchFromGitLab", + "owner": "jtecca", + "repo": "meacupla-theme", + "sha256": "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv", "rev": "f57542222a3a43af9aae665e05a84a61637ab22a" }, "recipe": { "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151027.1717", "deps": [] @@ -42567,7 +42778,7 @@ }, "recipe": { "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140908.1552", "deps": [ @@ -42585,7 +42796,7 @@ }, "recipe": { "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151102.1155", "deps": [ @@ -42602,7 +42813,7 @@ }, "recipe": { "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140812.1913", "deps": [] @@ -42617,7 +42828,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150227.1156", "deps": [] @@ -42632,7 +42843,7 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.133", "deps": [] @@ -42645,7 +42856,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150805.1752", "deps": [] @@ -42660,7 +42871,7 @@ }, "recipe": { "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.518", "deps": [ @@ -42678,7 +42889,7 @@ }, "recipe": { "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151028.2236", "deps": [] @@ -42693,7 +42904,7 @@ }, "recipe": { "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130623.1833", "deps": [] @@ -42706,7 +42917,7 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141029.1049", "deps": [] @@ -42721,7 +42932,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150331.2339", "deps": [ @@ -42741,7 +42952,7 @@ }, "recipe": { "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151213.150", "deps": [ @@ -42758,7 +42969,7 @@ }, "recipe": { "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151016.1045", "deps": [] @@ -42772,7 +42983,7 @@ }, "recipe": { "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1353", "deps": [] @@ -42787,7 +42998,7 @@ }, "recipe": { "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141014.1857", "deps": [] @@ -42802,7 +43013,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141222.852", "deps": [] @@ -42817,7 +43028,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141119.627", "deps": [] @@ -42832,7 +43043,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140316.1837", "deps": [ @@ -42849,7 +43060,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150420.621", "deps": [] @@ -42863,7 +43074,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150415.1426", "deps": [] @@ -42878,7 +43089,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.35", "deps": [] @@ -42893,7 +43104,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150629.1312", "deps": [ @@ -42910,7 +43121,7 @@ }, "recipe": { "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150131.1557", "deps": [] @@ -42925,7 +43136,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140225.1144", "deps": [] @@ -42940,7 +43151,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130407.848", "deps": [] @@ -42955,7 +43166,7 @@ }, "recipe": { "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140317.2318", "deps": [ @@ -42972,7 +43183,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150914.747", "deps": [] @@ -42987,7 +43198,7 @@ }, "recipe": { "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151020.1340", "deps": [ @@ -43004,7 +43215,7 @@ }, "recipe": { "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1551", "deps": [] @@ -43019,7 +43230,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140422.1055", "deps": [] @@ -43034,7 +43245,7 @@ }, "recipe": { "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141027.941", "deps": [ @@ -43051,7 +43262,7 @@ }, "recipe": { "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.946", "deps": [ @@ -43070,7 +43281,7 @@ }, "recipe": { "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.745", "deps": [] @@ -43085,7 +43296,7 @@ }, "recipe": { "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150129.446", "deps": [] @@ -43100,7 +43311,7 @@ }, "recipe": { "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150603.804", "deps": [ @@ -43119,7 +43330,7 @@ }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150702.1137", "deps": [ @@ -43139,7 +43350,7 @@ }, "recipe": { "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151121.744", "deps": [] @@ -43154,7 +43365,7 @@ }, "recipe": { "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.1723", "deps": [ @@ -43171,7 +43382,7 @@ }, "recipe": { "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.940", "deps": [] @@ -43186,7 +43397,7 @@ }, "recipe": { "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.300", "deps": [] @@ -43201,7 +43412,7 @@ }, "recipe": { "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150115.1301", "deps": [ @@ -43220,7 +43431,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140331.1829", "deps": [] @@ -43235,7 +43446,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.318", "deps": [ @@ -43258,7 +43469,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.730", "deps": [] @@ -43273,7 +43484,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150803.1037", "deps": [ @@ -43290,7 +43501,7 @@ }, "recipe": { "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150822.650", "deps": [ @@ -43309,7 +43520,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150910.727", "deps": [ @@ -43328,7 +43539,7 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151206.2305", "deps": [] @@ -43343,7 +43554,7 @@ }, "recipe": { "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140101.1754", "deps": [] @@ -43358,7 +43569,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141124.1332", "deps": [ @@ -43375,7 +43586,7 @@ }, "recipe": { "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131202.1308", "deps": [ @@ -43392,7 +43603,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.20", "deps": [ @@ -43410,7 +43621,7 @@ }, "recipe": { "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150429.1314", "deps": [ @@ -43426,7 +43637,7 @@ }, "recipe": { "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150123.1800", "deps": [] @@ -43441,7 +43652,7 @@ }, "recipe": { "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150729.1715", "deps": [ @@ -43459,7 +43670,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.400", "deps": [] @@ -43474,7 +43685,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141009.808", "deps": [ @@ -43491,7 +43702,7 @@ }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.858", "deps": [] @@ -43506,7 +43717,7 @@ }, "recipe": { "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150119.1021", "deps": [ @@ -43523,7 +43734,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.732", "deps": [ @@ -43541,7 +43752,7 @@ }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151215.1125", "deps": [ @@ -43558,7 +43769,7 @@ }, "recipe": { "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131207.1132", "deps": [ @@ -43575,7 +43786,7 @@ }, "recipe": { "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.814", "deps": [ @@ -43592,7 +43803,7 @@ }, "recipe": { "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150911.2110", "deps": [] @@ -43607,7 +43818,7 @@ }, "recipe": { "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140407.1714", "deps": [] @@ -43622,7 +43833,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.2046", "deps": [ @@ -43640,7 +43851,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151210.1216", "deps": [ @@ -43657,7 +43868,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150226.811", "deps": [] @@ -43672,7 +43883,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141123.1520", "deps": [] @@ -43687,7 +43898,7 @@ }, "recipe": { "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151023.2031", "deps": [] @@ -43702,7 +43913,7 @@ }, "recipe": { "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150301.1828", "deps": [ @@ -43719,7 +43930,7 @@ }, "recipe": { "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150604.1257", "deps": [ @@ -43737,7 +43948,7 @@ }, "recipe": { "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141226.1336", "deps": [ @@ -43754,7 +43965,7 @@ }, "recipe": { "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140409.252", "deps": [ @@ -43771,7 +43982,7 @@ }, "recipe": { "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150530.1137", "deps": [] @@ -43786,7 +43997,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140729.1345", "deps": [ @@ -43803,7 +44014,7 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130906.634", "deps": [] @@ -43813,11 +44024,11 @@ "tag": "fetchsvn", "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "256039" + "rev": "256472" }, "recipe": { "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151116.638", "deps": [ @@ -43834,7 +44045,7 @@ }, "recipe": { "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150130.425", "deps": [] @@ -43849,7 +44060,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150425.751", "deps": [ @@ -43866,7 +44077,7 @@ }, "recipe": { "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150923.340", "deps": [ @@ -43885,7 +44096,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140916.954", "deps": [] @@ -43900,7 +44111,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150810.439", "deps": [ @@ -43920,7 +44131,7 @@ }, "recipe": { "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140906.1225", "deps": [] @@ -43935,7 +44146,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151031.29", "deps": [ @@ -43953,7 +44164,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140109.1010", "deps": [] @@ -43968,7 +44179,7 @@ }, "recipe": { "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150918.1541", "deps": [] @@ -43983,7 +44194,7 @@ }, "recipe": { "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091203.1213", "deps": [] @@ -43993,12 +44204,12 @@ "tag": "fetchFromGitHub", "owner": "NixOS", "repo": "nix", - "sha256": "0nfwz0p5jakf0nfxmvnqwny38cfh92nx0n7l42bj22m8hcr1gb5d", - "rev": "a9faa7bbce963ddb894699a7cc6ea8a3876e4d9f" + "sha256": "067dpzww3w3q065bqpzywgfxq09zn0fk56v917aanb6va2rddq0r", + "rev": "52120123a5505199c342afb42f1a48b9cb2628ed" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151026.515", "deps": [] @@ -44013,7 +44224,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140514.23", "deps": [ @@ -44031,7 +44242,7 @@ }, "recipe": { "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130711.2011", "deps": [ @@ -44048,7 +44259,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140331.1330", "deps": [ @@ -44065,7 +44276,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141202.2256", "deps": [] @@ -44080,7 +44291,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141114.1514", "deps": [] @@ -44090,14 +44301,14 @@ "tag": "fetchFromGitHub", "owner": "10sr", "repo": "shell-split-string-el", - "sha256": "00c06y5c9iscgddrqgd1fh0y53xvjz07ylwzaaa9x0dbvx386ihl", - "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe" + "sha256": "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l", + "rev": "19f6f999c33cc66a4c91bacdcc3697c25d97bf5a" }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20150202.2236", + "version": "20151224.408", "deps": [] }, "evil-visual-mark-mode": { @@ -44110,7 +44321,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150202.1200", "deps": [ @@ -44128,7 +44339,7 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150319.1655", "deps": [] @@ -44143,13 +44354,30 @@ }, "recipe": { "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151013.148", "deps": [ "helm" ] }, + "import-js": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "trotzig", + "repo": "import-js", + "sha256": "07q610m35v59nxzzzqmjlgmbwziq8nzriy18h3y6ajmk4pwiwkqp", + "rev": "905f81b31e049fc49337b76aca4dd92ed7033dcb" + }, + "recipe": { + "sha256": "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.609", + "deps": [ + "emacs" + ] + }, "xterm-frobs": { "fetch": { "tag": "fetchFromGitHub", @@ -44160,7 +44388,7 @@ }, "recipe": { "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20091211.1755", "deps": [] @@ -44173,7 +44401,7 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1600", "deps": [] @@ -44188,7 +44416,7 @@ }, "recipe": { "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141014.2129", "deps": [ @@ -44205,7 +44433,7 @@ }, "recipe": { "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150908.1233", "deps": [ @@ -44223,7 +44451,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150402.942", "deps": [] @@ -44238,7 +44466,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150414.436", "deps": [] @@ -44253,7 +44481,7 @@ }, "recipe": { "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150531.1448", "deps": [ @@ -44271,7 +44499,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151018.120", "deps": [ @@ -44288,7 +44516,7 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.1649", "deps": [ @@ -44303,7 +44531,7 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150816.2153", "deps": [] @@ -44318,7 +44546,7 @@ }, "recipe": { "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.957", "deps": [] @@ -44333,7 +44561,7 @@ }, "recipe": { "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140907.1549", "deps": [] @@ -44348,7 +44576,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150722.1406", "deps": [ @@ -44360,14 +44588,14 @@ "tag": "fetchFromGitHub", "owner": "xahlee", "repo": "xah-elisp-mode", - "sha256": "0h46wdi6kijp8q9n7q0dvv1p9bya396pk3ywy2bkkhv20j9zsd1b", - "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3" + "sha256": "05a29y4mds2vhgkvlnyjby240pmnq4yq9cx92iqbvhdi984dcm28", + "rev": "c05ab4d78d1eb37ec7635e79f8c49a14c61b69b0" }, "recipe": { "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151116.1612", + "version": "20151219.1522", "deps": [] }, "epl": { @@ -44380,7 +44608,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150517.633", "deps": [ @@ -44397,7 +44625,7 @@ }, "recipe": { "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140218.807", "deps": [] @@ -44412,7 +44640,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151211.1517", "deps": [ @@ -44435,7 +44663,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131027.1129", "deps": [ @@ -44452,7 +44680,7 @@ }, "recipe": { "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.406", "deps": [] @@ -44462,14 +44690,14 @@ "tag": "fetchFromGitHub", "owner": "edvorg", "repo": "req-package", - "sha256": "13hglddg4x0l5kmqplxb1ygqa4k4vxgabvjk8q8zjvkm8rwylwjh", - "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a" + "sha256": "05a88r2jp169x99abz9wrr1i8ch0bg3dlmaalxwqfmlzci0lksx2", + "rev": "e52f0b0a8cfc28ae1d13c83fdcf3998a9973e7e5" }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151205.1042", + "version": "20151220.254", "deps": [ "dash", "ht", @@ -44487,7 +44715,7 @@ }, "recipe": { "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140107.418", "deps": [] @@ -44501,7 +44729,7 @@ }, "recipe": { "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121025.601", "deps": [] @@ -44516,7 +44744,7 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150720.1559", "deps": [] @@ -44530,7 +44758,7 @@ }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141227.1244", "deps": [] @@ -44545,7 +44773,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151111.201", "deps": [ @@ -44563,7 +44791,7 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151021.533", "deps": [] @@ -44578,7 +44806,7 @@ }, "recipe": { "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130422.811", "deps": [] @@ -44593,7 +44821,7 @@ }, "recipe": { "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141116.1802", "deps": [] @@ -44606,7 +44834,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140129.232", "deps": [ @@ -44624,7 +44852,7 @@ }, "recipe": { "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150205.1511", "deps": [] @@ -44639,7 +44867,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130525.934", "deps": [ @@ -44656,7 +44884,7 @@ }, "recipe": { "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140531.417", "deps": [ @@ -44674,7 +44902,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140724.145", "deps": [ @@ -44692,7 +44920,7 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140306.1233", "deps": [] @@ -44705,7 +44933,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.1745", "deps": [] @@ -44720,7 +44948,7 @@ }, "recipe": { "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150222.1440", "deps": [] @@ -44733,7 +44961,7 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151029.855", "deps": [] @@ -44748,7 +44976,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151127.1135", "deps": [ @@ -44765,7 +44993,7 @@ }, "recipe": { "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140129.204", "deps": [ @@ -44783,7 +45011,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.714", "deps": [ @@ -44804,7 +45032,7 @@ }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150220.505", "deps": [ @@ -44822,7 +45050,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140525.547", "deps": [ @@ -44840,7 +45068,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140314.1308", "deps": [ @@ -44857,7 +45085,7 @@ }, "recipe": { "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130220.603", "deps": [] @@ -44872,7 +45100,7 @@ }, "recipe": { "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120622.937", "deps": [] @@ -44887,7 +45115,7 @@ }, "recipe": { "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140128.1601", "deps": [] @@ -44902,7 +45130,7 @@ }, "recipe": { "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150515.947", "deps": [] @@ -44917,7 +45145,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150428.1621", "deps": [] @@ -44932,7 +45160,7 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131117.1802", "deps": [] @@ -44945,7 +45173,7 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20121128.243", "deps": [] @@ -44955,14 +45183,14 @@ "tag": "fetchFromGitHub", "owner": "magit", "repo": "magit", - "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", - "rev": "6b595ac224f512cf672c56600e136714875a940f" + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151214.705", + "version": "20151223.1541", "deps": [ "async", "dash", @@ -44979,7 +45207,7 @@ }, "recipe": { "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140123.316", "deps": [] @@ -44994,7 +45222,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150713.1550", "deps": [ @@ -45006,14 +45234,14 @@ "tag": "fetchFromGitHub", "owner": "milkypostman", "repo": "melpa", - "sha256": "0mcxx69bspym4i9ky2ms9alj3a2015853s8qg86gwzyr49v0xfvz", - "rev": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1linipac2qg8905qmgyr8lgjgv30mlwyib52r0k3kjpha6wcmniq", + "rev": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "recipe": { "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151211.1644", + "version": "20151224.1137", "deps": [ "cl-lib" ] @@ -45028,7 +45256,7 @@ }, "recipe": { "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150508.1757", "deps": [] @@ -45043,7 +45271,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151014.151", "deps": [ @@ -45062,7 +45290,7 @@ }, "recipe": { "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131015.725", "deps": [ @@ -45079,7 +45307,7 @@ }, "recipe": { "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150827.2151", "deps": [ @@ -45094,7 +45322,7 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.707", "deps": [] @@ -45109,7 +45337,7 @@ }, "recipe": { "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140126.301", "deps": [] @@ -45124,7 +45352,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140112.559", "deps": [] @@ -45139,7 +45367,7 @@ }, "recipe": { "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130419.2254", "deps": [] @@ -45153,7 +45381,7 @@ }, "recipe": { "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150314.944", "deps": [] @@ -45168,7 +45396,7 @@ }, "recipe": { "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151118.1500", "deps": [] @@ -45183,7 +45411,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151203.147", "deps": [ @@ -45202,7 +45430,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150924.1111", "deps": [ @@ -45219,7 +45447,7 @@ }, "recipe": { "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150421.1522", "deps": [ @@ -45238,7 +45466,7 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130122.1522", "deps": [] @@ -45253,7 +45481,7 @@ }, "recipe": { "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151001.221", "deps": [] @@ -45263,14 +45491,14 @@ "tag": "fetchFromGitHub", "owner": "tmalsburg", "repo": "helm-bibtex", - "sha256": "1nvc4ha9wj5j47qg7hdbv1xpjy8a8idc9vc2myl3xa33ywllwdwi", - "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0" + "sha256": "1z38lssfjxan65p6y4lw1yyrnv41da2rmhmr43rnqv9rl1k68x8d", + "rev": "0475ffd145e2de5ee78691a364d2a0361c6483e2" }, "recipe": { "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151125.1758", + "version": "20151223.52", "deps": [ "cl-lib", "dash", @@ -45290,7 +45518,7 @@ }, "recipe": { "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141219.1046", "deps": [] @@ -45303,7 +45531,7 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150104.1748", "deps": [] @@ -45318,7 +45546,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150218.55", "deps": [ @@ -45336,7 +45564,7 @@ }, "recipe": { "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150405.214", "deps": [ @@ -45353,7 +45581,7 @@ }, "recipe": { "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151130.958", "deps": [] @@ -45368,7 +45596,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150328.1928", "deps": [] @@ -45383,7 +45611,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151105.240", "deps": [ @@ -45400,7 +45628,7 @@ }, "recipe": { "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150516.1633", "deps": [] @@ -45415,7 +45643,7 @@ }, "recipe": { "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140401.203", "deps": [] @@ -45430,7 +45658,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151202.2204", "deps": [ @@ -45447,7 +45675,7 @@ }, "recipe": { "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141203.932", "deps": [ @@ -45465,7 +45693,7 @@ }, "recipe": { "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141204.1156", "deps": [] @@ -45479,7 +45707,7 @@ }, "recipe": { "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150930.1117", "deps": [] @@ -45494,7 +45722,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140827.32", "deps": [ @@ -45512,7 +45740,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151209.1400", "deps": [ @@ -45531,7 +45759,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141128.1611", "deps": [ @@ -45547,7 +45775,7 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130328.527", "deps": [] @@ -45562,7 +45790,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151101.56", "deps": [ @@ -45579,7 +45807,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025.1420", "deps": [] @@ -45589,12 +45817,12 @@ "tag": "fetchFromGitHub", "owner": "cython", "repo": "cython", - "sha256": "1kz96n6p4kspzhgaa30l3hzv5b37vf32ww715r30g68188ngcjmg", - "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0" + "sha256": "1s26yr506b4v9bfrmqp2wyjdhxkc63nhis5azi9yhd0hg56nlyaq", + "rev": "20f028eb00b6b52083975aaa6738852b8840b497" }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140705.1429", "deps": [] @@ -45609,7 +45837,7 @@ }, "recipe": { "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140330.1056", "deps": [] @@ -45624,7 +45852,7 @@ }, "recipe": { "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150921.1950", "deps": [ @@ -45642,7 +45870,7 @@ }, "recipe": { "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140723.37", "deps": [] @@ -45652,14 +45880,14 @@ "tag": "fetchFromGitHub", "owner": "clojure-emacs", "repo": "cider", - "sha256": "0gm9pqxi9jz615ws6vic58fq0620pa1zr3xgvx6mh7k1y2jfbljz", - "rev": "a80215f160c2243722039a2b484823042dfab63d" + "sha256": "16f17jl94g5zvjayigkbr70mslg1mrk666aqjwiwqc8mg71h05h7", + "rev": "d191f8b364558cafec147d96d3e0415e18ad28bd" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151217.1352", + "version": "20151227.936", "deps": [ "clojure-mode", "emacs", @@ -45677,7 +45905,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130130.1551", "deps": [] @@ -45690,7 +45918,7 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20051013.1256", "deps": [] @@ -45705,7 +45933,7 @@ }, "recipe": { "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150124.1116", "deps": [ @@ -45722,7 +45950,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150729.2235", "deps": [ @@ -45741,7 +45969,7 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20120211.857", "deps": [] @@ -45754,7 +45982,7 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.700", "deps": [] @@ -45769,7 +45997,7 @@ }, "recipe": { "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150427.547", "deps": [ @@ -45777,24 +46005,6 @@ "emacs" ] }, - "traad-autocomplete": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "abingham", - "repo": "traad", - "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", - "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" - }, - "recipe": { - "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "20140817.611", - "deps": [ - "auto-complete", - "traad" - ] - }, "xah-find": { "fetch": { "tag": "fetchFromGitHub", @@ -45805,7 +46015,7 @@ }, "recipe": { "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151214.1257", "deps": [] @@ -45820,7 +46030,7 @@ }, "recipe": { "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150905.1024", "deps": [ @@ -45829,6 +46039,24 @@ "tabulated-list" ] }, + "verify-url": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "verify-url", + "sha256": "199pab06cwym59110z3kcgikmp8m3y81bd3slr0n3ky40mh5rbh3", + "rev": "67a8c27ab331859ca5c1b4d757440a8d7a070696" + }, + "recipe": { + "sha256": "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.652", + "deps": [ + "cl-lib", + "url" + ] + }, "paredit-menu": { "fetch": { "tag": "fetchFromGitHub", @@ -45839,7 +46067,7 @@ }, "recipe": { "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130923.1454", "deps": [] @@ -45854,7 +46082,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150303.228", "deps": [ @@ -45876,7 +46104,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150906.1154", "deps": [ @@ -45889,12 +46117,12 @@ "tag": "fetchFromGitHub", "owner": "clojure-emacs", "repo": "clojure-mode", - "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", - "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + "sha256": "130s55mwzmi1almjajfl5bv3jra9ccafsiv240ls4agqkq2702vv", + "rev": "22b6709a651cc9c38a0c2a4c42df500ec3e46f1b" }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150110.705", "deps": [ @@ -45911,7 +46139,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130524.643", "deps": [] @@ -45926,7 +46154,7 @@ }, "recipe": { "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151217.757", "deps": [ @@ -45943,7 +46171,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151112.717", "deps": [ @@ -45961,7 +46189,7 @@ }, "recipe": { "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130822.48", "deps": [] @@ -45976,7 +46204,7 @@ }, "recipe": { "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150728.1204", "deps": [] @@ -45991,7 +46219,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150614.957", "deps": [ @@ -46010,7 +46238,7 @@ }, "recipe": { "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140928.713", "deps": [] @@ -46025,7 +46253,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151108.2352", "deps": [ @@ -46042,7 +46270,7 @@ }, "recipe": { "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150406.2202", "deps": [] @@ -46057,7 +46285,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151030.232", "deps": [ @@ -46076,7 +46304,7 @@ }, "recipe": { "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20131112.214", "deps": [] @@ -46091,7 +46319,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151109.603", "deps": [ @@ -46110,7 +46338,7 @@ }, "recipe": { "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130413.419", "deps": [] @@ -46125,7 +46353,7 @@ }, "recipe": { "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140326.550", "deps": [] @@ -46140,7 +46368,7 @@ }, "recipe": { "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140810.717", "deps": [ @@ -46157,7 +46385,7 @@ }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140316.617", "deps": [] @@ -46166,14 +46394,14 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/markdown-mode.git", - "sha256": "b74db7308411036038e060cca7dbf6e1a6b839cc81b40dc439cfee54540f9c67", - "rev": "1c76d45ae30bba1e8d68b2500d0531c69dd1472d" + "sha256": "715de106b5be4b78b091ab76d70961e9232ee35f88673f55f5bfd01da6102e17", + "rev": "5a83366cc8e33f4a50f6283fb2cd0c3519d8577a" }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "20151218.1349", + "version": "20151224.1008", "deps": [] }, "sphinx-doc": { @@ -46186,7 +46414,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150616.1350", "deps": [ @@ -46205,7 +46433,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151126.324", "deps": [ @@ -46224,7 +46452,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151119.1038", "deps": [ @@ -46241,7 +46469,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150410.2025", "deps": [] @@ -46256,7 +46484,7 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150418.900", "deps": [ @@ -46274,7 +46502,7 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150511.2247", "deps": [ @@ -46289,7 +46517,7 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130824.658", "deps": [] @@ -46304,7 +46532,7 @@ }, "recipe": { "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151123.1327", "deps": [ @@ -46321,7 +46549,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140405.1827", "deps": [ @@ -46338,7 +46566,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140426.1204", "deps": [] @@ -46348,12 +46576,12 @@ "tag": "fetchFromGitHub", "owner": "abingham", "repo": "emacs-ycmd", - "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", - "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151022.1210", "deps": [ @@ -46374,7 +46602,7 @@ }, "recipe": { "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150204.508", "deps": [] @@ -46389,7 +46617,7 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20141216.1719", "deps": [ From 74a1b201080d98f427318765d09955ad684c0ca2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 27 Dec 2015 10:35:34 -0600 Subject: [PATCH 637/707] melpa-stable-packages 2015-12-27 --- .../emacs-modes/melpa-stable-packages.json | 5925 +++++------------ 1 file changed, 1502 insertions(+), 4423 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index bc8c2fd0b0d..ca70c6e6b37 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -9,7 +9,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -24,25 +24,11 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] }, - "cg": { - "fetch": { - "tag": "fetchsvn", - "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", - "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11156" - }, - "recipe": { - "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-ls-hg": { "fetch": { "tag": "fetchFromGitHub", @@ -53,7 +39,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7.8", "deps": [ @@ -70,7 +56,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.16", "deps": [] @@ -85,7 +71,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -103,7 +89,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.2", "deps": [] @@ -118,7 +104,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -138,7 +124,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [ @@ -147,19 +133,6 @@ "finalize" ] }, - "help-fns+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", - "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w" - }, - "recipe": { - "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "cmake-ide": { "fetch": { "tag": "fetchFromGitHub", @@ -170,7 +143,7 @@ }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -187,26 +160,11 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] }, - "dired-sort-menu+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el", - "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday" - }, - "recipe": { - "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "dired-sort-menu" - ] - }, "go-eldoc": { "fetch": { "tag": "fetchFromGitHub", @@ -217,7 +175,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.26", "deps": [ @@ -225,19 +183,6 @@ "go-mode" ] }, - "w32browser-dlgopen": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el", - "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq" - }, - "recipe": { - "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "cerbere": { "fetch": { "tag": "fetchFromGitHub", @@ -248,7 +193,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -268,24 +213,11 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "lacarte": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/lacarte.el", - "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" - }, - "recipe": { - "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "mmt": { "fetch": { "tag": "fetchFromGitHub", @@ -296,7 +228,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -314,7 +246,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -333,7 +265,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.5", "deps": [ @@ -350,7 +282,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -365,7 +297,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.1", "deps": [ @@ -383,7 +315,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [ @@ -400,7 +332,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -415,7 +347,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.9", "deps": [ @@ -434,7 +366,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -449,7 +381,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.41", "deps": [ @@ -469,7 +401,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [ @@ -488,7 +420,7 @@ }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.0", "deps": [ @@ -506,7 +438,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -523,7 +455,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.63", "deps": [ @@ -540,7 +472,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [] @@ -555,7 +487,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [ @@ -572,7 +504,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -589,7 +521,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [] @@ -604,7 +536,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -622,7 +554,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -642,7 +574,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -659,7 +591,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -677,7 +609,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [ @@ -687,19 +619,6 @@ "s" ] }, - "lib-requires": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/lib-requires.el", - "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk" - }, - "recipe": { - "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "charmap": { "fetch": { "tag": "fetchFromGitHub", @@ -710,7 +629,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -725,7 +644,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.5", "deps": [ @@ -742,7 +661,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.4.3", "deps": [ @@ -759,7 +678,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -774,7 +693,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.2", "deps": [ @@ -791,7 +710,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.3", "deps": [ @@ -810,7 +729,7 @@ }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ @@ -830,7 +749,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.1", "deps": [ @@ -851,9 +770,9 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "2_24", + "version": "2.24", "deps": [] }, "quickrun": { @@ -866,7 +785,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.6", "deps": [ @@ -884,7 +803,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -899,7 +818,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -916,7 +835,7 @@ }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.7", "deps": [ @@ -936,24 +855,11 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.4", "deps": [] }, - "sentence-highlight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el", - "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k" - }, - "recipe": { - "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "pkgbuild-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -964,7 +870,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.14", "deps": [] @@ -979,9 +885,9 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0Alpha", + "version": "0alpha", "deps": [ "erc" ] @@ -996,9 +902,9 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.1.0", + "version": "0.1", "deps": [ "popup" ] @@ -1013,7 +919,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -1032,7 +938,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.16", "deps": [ @@ -1050,7 +956,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.5", "deps": [ @@ -1058,19 +964,6 @@ "s" ] }, - "help-mode+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/help-mode+.el", - "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j" - }, - "recipe": { - "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "discover-my-major": { "fetch": { "tag": "fetchFromGitHub", @@ -1081,7 +974,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -1093,14 +986,14 @@ "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm", - "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", - "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + "sha256": "0awr4nvzgp1kckxqli1xw4pk16gc22i8hchin63fqvk0gllcy454", + "rev": "fe96a398aa09ed0d25f6782efa5833085aa63791" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.9.0", + "version": "1.9.1", "deps": [ "async", "cl-lib", @@ -1118,7 +1011,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -1135,7 +1028,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -1150,26 +1043,13 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ "flycheck" ] }, - "blank-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/blank-mode.el", - "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv" - }, - "recipe": { - "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "sly-company": { "fetch": { "tag": "fetchFromGitHub", @@ -1179,8 +1059,8 @@ "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" }, "recipe": { - "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -1199,7 +1079,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -1214,7 +1094,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -1231,7 +1111,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7", "deps": [] @@ -1246,7 +1126,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -1261,26 +1141,13 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ "evil" ] }, - "framemove": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/framemove.el", - "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" - }, - "recipe": { - "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "real-auto-save": { "fetch": { "tag": "fetchFromGitHub", @@ -1291,7 +1158,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -1306,7 +1173,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.5.2", "deps": [ @@ -1325,7 +1192,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.0", "deps": [] @@ -1340,7 +1207,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.0", "deps": [ @@ -1350,19 +1217,6 @@ "yaxception" ] }, - "isearch+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/isearch+.el", - "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6" - }, - "recipe": { - "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "espuds": { "fetch": { "tag": "fetchFromGitHub", @@ -1373,7 +1227,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.3", "deps": [ @@ -1392,30 +1246,11 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] }, - "persp-projectile": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "bbatsov", - "repo": "projectile", - "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", - "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" - }, - "recipe": { - "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "0.13.0", - "deps": [ - "cl-lib", - "perspective", - "projectile" - ] - }, "osx-location": { "fetch": { "tag": "fetchFromGitHub", @@ -1426,7 +1261,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -1441,7 +1276,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -1458,7 +1293,7 @@ }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.4.0.0", "deps": [ @@ -1475,7 +1310,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.0", "deps": [ @@ -1492,7 +1327,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [] @@ -1507,24 +1342,11 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.9.1", "deps": [] }, - "screenshot": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/screenshot.el", - "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw" - }, - "recipe": { - "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "easy-repeat": { "fetch": { "tag": "fetchFromGitHub", @@ -1535,31 +1357,13 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ "emacs" ] }, - "doremi-frm": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el", - "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc" - }, - "recipe": { - "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "doremi", - "faces+", - "frame-fns", - "hexrgb" - ] - }, "weblogger": { "fetch": { "tag": "fetchbzr", @@ -1568,10 +1372,10 @@ "rev": "38" }, "recipe": { - "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "nil", + "version": "1.4.5", "deps": [ "xml-rpc" ] @@ -1586,7 +1390,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.3", "deps": [ @@ -1595,32 +1399,6 @@ "yaxception" ] }, - "shell-command": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/shell-command.el", - "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l" - }, - "recipe": { - "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "filesets+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/filesets+.el", - "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" - }, - "recipe": { - "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "find-file-in-project": { "fetch": { "tag": "fetchFromGitHub", @@ -1631,7 +1409,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "4.5", "deps": [ @@ -1649,7 +1427,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -1664,7 +1442,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1", "deps": [ @@ -1682,7 +1460,7 @@ }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [ @@ -1700,7 +1478,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.5", "deps": [ @@ -1717,7 +1495,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.9", "deps": [] @@ -1732,26 +1510,11 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.79", "deps": [] }, - "autofit-frame": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el", - "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s" - }, - "recipe": { - "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "fit-frame" - ] - }, "narrowed-page-navigation": { "fetch": { "tag": "fetchFromGitHub", @@ -1762,7 +1525,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -1780,7 +1543,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.2", "deps": [] @@ -1795,7 +1558,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -1803,45 +1566,6 @@ "helm" ] }, - "bookmark+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", - "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" - }, - "recipe": { - "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "ert-expectations": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el", - "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7" - }, - "recipe": { - "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "multi-eshell": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el", - "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl" - }, - "recipe": { - "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "emoji-cheat-sheet-plus": { "fetch": { "tag": "fetchFromGitHub", @@ -1852,7 +1576,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.1", "deps": [ @@ -1870,7 +1594,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -1887,7 +1611,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "7.1", "deps": [ @@ -1906,7 +1630,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -1921,7 +1645,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] @@ -1935,7 +1659,7 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "24", "deps": [] @@ -1950,7 +1674,7 @@ }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.2", "deps": [ @@ -1969,7 +1693,7 @@ }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.26.0", "deps": [ @@ -1991,24 +1715,11 @@ }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] }, - "second-sel": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/second-sel.el", - "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd" - }, - "recipe": { - "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ace-flyspell": { "fetch": { "tag": "fetchFromGitHub", @@ -2019,7 +1730,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -2036,7 +1747,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -2053,9 +1764,9 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.09", + "version": "0.9", "deps": [ "cl-lib", "popwin" @@ -2071,7 +1782,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -2093,24 +1804,11 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] }, - "w32-browser": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", - "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" - }, - "recipe": { - "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "miniedit": { "fetch": { "tag": "fetchFromGitHub", @@ -2121,7 +1819,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -2136,7 +1834,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [ @@ -2147,32 +1845,6 @@ "s" ] }, - "highlight-current-line": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el", - "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c" - }, - "recipe": { - "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "window+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/window+.el", - "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz" - }, - "recipe": { - "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "firestarter": { "fetch": { "tag": "fetchFromGitHub", @@ -2183,7 +1855,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [] @@ -2198,7 +1870,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.4", "deps": [ @@ -2215,7 +1887,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -2235,7 +1907,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -2250,7 +1922,7 @@ }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.1", "deps": [] @@ -2265,7 +1937,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [] @@ -2280,24 +1952,11 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] }, - "replace+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/replace+.el", - "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" - }, - "recipe": { - "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "zotelo": { "fetch": { "tag": "fetchFromGitHub", @@ -2308,7 +1967,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -2323,7 +1982,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [ @@ -2341,7 +2000,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [] @@ -2356,37 +2015,11 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.10", "deps": [] }, - "tool-bar+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el", - "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9" - }, - "recipe": { - "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "auto-async-byte-compile": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el", - "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17" - }, - "recipe": { - "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "gradle-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -2397,26 +2030,13 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.5", "deps": [ "s" ] }, - "redo+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/redo+.el", - "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" - }, - "recipe": { - "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ess-R-data-view": { "fetch": { "tag": "fetchFromGitHub", @@ -2427,7 +2047,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -2446,7 +2066,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7", "deps": [] @@ -2461,26 +2081,13 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [ "request" ] }, - "archive-region": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/archive-region.el", - "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52" - }, - "recipe": { - "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "kaesar": { "fetch": { "tag": "fetchFromGitHub", @@ -2491,7 +2098,7 @@ }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -2508,7 +2115,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.2", "deps": [ @@ -2525,7 +2132,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -2544,7 +2151,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [] @@ -2559,7 +2166,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -2580,7 +2187,7 @@ }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7.0", "deps": [ @@ -2601,14 +2208,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-ghq", - "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", - "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + "sha256": "0rlk9016rxj292kpxrnqgrm4xsjs4m4gk2fwh8z3fcihi013lxaw", + "rev": "2997646b2fb5421ab435b772dd2dbaeb92d70166" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.5.0", + "version": "1.5.1", "deps": [ "helm" ] @@ -2622,7 +2229,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -2637,7 +2244,7 @@ }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.1", "deps": [ @@ -2655,7 +2262,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -2674,7 +2281,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.3", "deps": [] @@ -2689,7 +2296,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.16", "deps": [ @@ -2706,7 +2313,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.6", "deps": [ @@ -2723,7 +2330,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "7.2.2", "deps": [] @@ -2738,7 +2345,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -2755,7 +2362,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -2772,24 +2379,11 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] }, - "better-registers": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/better-registers.el", - "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh" - }, - "recipe": { - "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "calfw": { "fetch": { "tag": "fetchFromGitHub", @@ -2800,7 +2394,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5", "deps": [ @@ -2817,7 +2411,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.45", "deps": [ @@ -2834,7 +2428,7 @@ }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [] @@ -2849,7 +2443,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ @@ -2867,7 +2461,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "6.7", "deps": [] @@ -2882,7 +2476,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -2902,7 +2496,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -2917,7 +2511,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [] @@ -2927,14 +2521,14 @@ "tag": "fetchFromGitHub", "owner": "DarwinAwardWinner", "repo": "ido-ubiquitous", - "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", - "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "3.9", + "version": "3.10", "deps": [ "cl-lib", "emacs" @@ -2950,7 +2544,7 @@ }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.4", "deps": [ @@ -2969,7 +2563,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.7", "deps": [ @@ -2986,7 +2580,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -3001,7 +2595,7 @@ }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -3019,7 +2613,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -3036,7 +2630,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -3049,14 +2643,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-hatena-bookmark", - "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", - "rev": "497d33632f195354eaa24670db0804c846b7261b" + "sha256": "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f", + "rev": "1ba352b858869a32323d4e6f9ca4b3eae055809e" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "2.0.4", + "version": "2.1.0", "deps": [ "helm" ] @@ -3071,7 +2665,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [ @@ -3091,7 +2685,7 @@ }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.12", "deps": [] @@ -3106,9 +2700,9 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.99a", + "version": "0.99.1", "deps": [ "emacs" ] @@ -3123,29 +2717,14 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.04", + "version": "0.4", "deps": [ "cl-lib", "direx" ] }, - "doremi-cmd": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el", - "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2" - }, - "recipe": { - "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "doremi" - ] - }, "shampoo": { "fetch": { "tag": "fetchFromGitHub", @@ -3156,7 +2735,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -3171,7 +2750,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [ @@ -3191,24 +2770,11 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.22", "deps": [] }, - "sticky": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sticky.el", - "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" - }, - "recipe": { - "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ein": { "fetch": { "tag": "fetchFromGitHub", @@ -3219,7 +2785,7 @@ }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -3237,7 +2803,7 @@ }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -3255,7 +2821,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -3270,24 +2836,11 @@ }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] }, - "hexrgb": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", - "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" - }, - "recipe": { - "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "finalize": { "fetch": { "tag": "fetchFromGitHub", @@ -3298,7 +2851,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -3317,7 +2870,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -3334,7 +2887,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -3352,9 +2905,9 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.07", + "version": "0.7", "deps": [ "cl-lib", "deferred", @@ -3371,7 +2924,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7.5", "deps": [ @@ -3388,7 +2941,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [] @@ -3403,7 +2956,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.4", "deps": [] @@ -3418,26 +2971,13 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ "flymake-easy" ] }, - "misc-fns": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/misc-fns.el", - "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86" - }, - "recipe": { - "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flycheck-cask": { "fetch": { "tag": "fetchFromGitHub", @@ -3448,7 +2988,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -3467,7 +3007,7 @@ }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.1", "deps": [] @@ -3482,7 +3022,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -3499,39 +3039,11 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] }, - "dired-details+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-details+.el", - "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y" - }, - "recipe": { - "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "dired-details" - ] - }, - "mouse3": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/mouse3.el", - "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi" - }, - "recipe": { - "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "unkillable-scratch": { "fetch": { "tag": "fetchFromGitHub", @@ -3542,7 +3054,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -3557,7 +3069,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -3572,7 +3084,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -3589,37 +3101,11 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] }, - "wc-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/wc-mode.el", - "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d" - }, - "recipe": { - "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "csv-nav": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/csv-nav.el", - "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva" - }, - "recipe": { - "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "grass-mode": { "fetch": { "tag": "fetchhg", @@ -3629,7 +3115,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -3647,7 +3133,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -3664,7 +3150,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [] @@ -3679,7 +3165,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3", "deps": [ @@ -3697,7 +3183,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -3715,7 +3201,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -3732,7 +3218,7 @@ }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -3756,7 +3242,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.13", "deps": [] @@ -3771,7 +3257,7 @@ }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.12", "deps": [ @@ -3790,7 +3276,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -3809,7 +3295,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -3824,26 +3310,11 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] }, - "traad": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "abingham", - "repo": "traad", - "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", - "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" - }, - "recipe": { - "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "0.4", - "deps": [] - }, "save-sexp": { "fetch": { "tag": "fetchFromGitHub", @@ -3854,7 +3325,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -3869,7 +3340,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [] @@ -3884,24 +3355,11 @@ }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] }, - "plsql": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/plsql.el", - "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" - }, - "recipe": { - "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ebal": { "fetch": { "tag": "fetchFromGitHub", @@ -3912,7 +3370,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -3931,7 +3389,7 @@ }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.2", "deps": [ @@ -3939,19 +3397,6 @@ "emacs" ] }, - "usage-memo": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/usage-memo.el", - "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i" - }, - "recipe": { - "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "smartparens": { "fetch": { "tag": "fetchFromGitHub", @@ -3962,7 +3407,7 @@ }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.3", "deps": [ @@ -3980,7 +3425,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.2", "deps": [ @@ -3998,7 +3443,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -4013,7 +3458,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -4031,7 +3476,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -4048,7 +3493,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -4063,24 +3508,11 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [] }, - "multi-term": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/multi-term.el", - "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim" - }, - "recipe": { - "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "hardcore-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -4091,7 +3523,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -4106,7 +3538,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -4123,7 +3555,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [] @@ -4138,7 +3570,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.8", "deps": [] @@ -4153,7 +3585,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.0", "deps": [] @@ -4168,7 +3600,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3", "deps": [] @@ -4183,7 +3615,7 @@ }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.85", "deps": [ @@ -4191,19 +3623,6 @@ "emacs" ] }, - "highlight-cl": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el", - "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw" - }, - "recipe": { - "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "stylus-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -4214,7 +3633,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -4231,7 +3650,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [] @@ -4246,7 +3665,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.4", "deps": [ @@ -4269,7 +3688,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.3", "deps": [ @@ -4287,7 +3706,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.4", "deps": [] @@ -4302,26 +3721,13 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.7", "deps": [ "web-completion-data" ] }, - "viewer": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/viewer.el", - "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb" - }, - "recipe": { - "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "gmail2bbdb": { "fetch": { "tag": "fetchFromGitHub", @@ -4332,7 +3738,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [] @@ -4347,7 +3753,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [] @@ -4362,7 +3768,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [] @@ -4376,7 +3782,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.9", "deps": [] @@ -4391,7 +3797,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.8", "deps": [ @@ -4408,7 +3814,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "4.4.0", "deps": [] @@ -4422,8 +3828,8 @@ "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { - "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150303", "deps": [ @@ -4440,24 +3846,11 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.11.2", "deps": [] }, - "batch-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/batch-mode.el", - "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p" - }, - "recipe": { - "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "puppet-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -4468,7 +3861,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -4487,7 +3880,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -4506,7 +3899,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.8", "deps": [ @@ -4527,7 +3920,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -4542,7 +3935,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -4560,7 +3953,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [ @@ -4572,14 +3965,14 @@ "tag": "fetchFromGitHub", "owner": "swannodette", "repo": "ob-sml", - "sha256": "0h3flg8plrjxlv57c8nknggj349l4xqfrbwzxa9yx46v2zxggn5b", - "rev": "09b503201be6e06a5ed8d6b52345dc886c202028" + "sha256": "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk", + "rev": "5dc966acbe65e9e158bfa90018035bf52d4dafd4" }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "sml-mode" ] @@ -4594,7 +3987,7 @@ }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -4613,7 +4006,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [ @@ -4621,19 +4014,6 @@ "markdown-mode" ] }, - "modeline-posn": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el", - "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i" - }, - "recipe": { - "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "e2wm-direx": { "fetch": { "tag": "fetchFromGitHub", @@ -4644,7 +4024,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -4652,33 +4032,6 @@ "e2wm" ] }, - "macros+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/macros+.el", - "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q" - }, - "recipe": { - "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "ruby-electric": { - "fetch": { - "tag": "fetchsvn", - "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", - "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53195" - }, - "recipe": { - "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "multi-web-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -4689,7 +4042,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [] @@ -4703,7 +4056,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [] @@ -4718,7 +4071,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -4735,7 +4088,7 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -4750,7 +4103,7 @@ }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [] @@ -4765,7 +4118,7 @@ }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.3", "deps": [ @@ -4782,7 +4135,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.1", "deps": [ @@ -4799,7 +4152,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [ @@ -4817,7 +4170,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [ @@ -4835,7 +4188,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -4852,24 +4205,11 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] }, - "bs-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/bs-ext.el", - "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw" - }, - "recipe": { - "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-migemo": { "fetch": { "tag": "fetchFromGitHub", @@ -4880,7 +4220,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.22", "deps": [ @@ -4899,7 +4239,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] @@ -4914,7 +4254,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -4929,7 +4269,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.7", "deps": [ @@ -4941,6 +4281,21 @@ "rake" ] }, + "super-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "super-save", + "sha256": "1pq71simdb4pcbzzavlxdfbgh548m15f493h821k04n67ydzlmj3", + "rev": "4eb8aef705237d706b30cf722c5ad4909ea3acf1" + }, + "recipe": { + "sha256": "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, "tabulated-list": { "fetch": { "tag": "fetchFromGitHub", @@ -4951,7 +4306,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0", "deps": [] @@ -4966,7 +4321,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -4981,7 +4336,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -4996,7 +4351,7 @@ }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -5014,26 +4369,13 @@ }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ "cl-lib" ] }, - "smart-compile": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/smart-compile.el", - "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd" - }, - "recipe": { - "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "git-gutter-fringe+": { "fetch": { "tag": "fetchFromGitHub", @@ -5044,9 +4386,9 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "fringe-helper", "git-gutter+" @@ -5062,26 +4404,11 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] }, - "palette": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/palette.el", - "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" - }, - "recipe": { - "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "hexrgb" - ] - }, "egg": { "fetch": { "tag": "fetchFromGitHub", @@ -5092,24 +4419,11 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.9", "deps": [] }, - "aok": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/aok.el", - "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" - }, - "recipe": { - "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "tern": { "fetch": { "tag": "fetchFromGitHub", @@ -5120,7 +4434,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.16.0", "deps": [ @@ -5139,7 +4453,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.1", "deps": [ @@ -5152,14 +4466,14 @@ "tag": "fetchFromGitHub", "owner": "chrisbarrett", "repo": "skeletor.el", - "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", - "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + "sha256": "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q", + "rev": "d986806559628623b591542143707de8d76347d0" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.5.2", + "version": "1.6.1", "deps": [ "cl-lib", "dash", @@ -5179,7 +4493,7 @@ }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -5197,13 +4511,32 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5", "deps": [ "emacs" ] }, + "popup-imenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "popup-imenu", + "sha256": "0pkaic2l0xk2nsqcvxgxqbk152hd42h21j3z1ldgmpy1162viw7z", + "rev": "2a03162d9439d80f2eeca1fac14215af0d1b77e2" + }, + "recipe": { + "sha256": "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "dash", + "flx-ido", + "popup" + ] + }, "android-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -5214,7 +4547,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [] @@ -5229,7 +4562,7 @@ }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ @@ -5248,7 +4581,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -5266,7 +4599,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -5281,7 +4614,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150909", "deps": [ @@ -5289,19 +4622,6 @@ "emacs" ] }, - "zones": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/zones.el", - "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd" - }, - "recipe": { - "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "window-end-visible": { "fetch": { "tag": "fetchFromGitHub", @@ -5312,28 +4632,11 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] }, - "dic-lookup-w3m": { - "fetch": { - "tag": "fetchsvn", - "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/", - "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc", - "rev": "79" - }, - "recipe": { - "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "stem", - "w3m" - ] - }, "rbenv": { "fetch": { "tag": "fetchFromGitHub", @@ -5344,7 +4647,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [] @@ -5359,7 +4662,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [ @@ -5376,7 +4679,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.14", "deps": [ @@ -5385,19 +4688,6 @@ "flycheck" ] }, - "disk": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/disk.el", - "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" - }, - "recipe": { - "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "navorski": { "fetch": { "tag": "fetchFromGitHub", @@ -5408,7 +4698,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.7", "deps": [ @@ -5417,19 +4707,6 @@ "s" ] }, - "info+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/info+.el", - "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g" - }, - "recipe": { - "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "yasnippet": { "fetch": { "tag": "fetchFromGitHub", @@ -5440,9 +4717,9 @@ }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.9.0-a", + "version": "0.9.0.1", "deps": [] }, "erc-crypt": { @@ -5455,7 +4732,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -5470,7 +4747,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [] @@ -5485,7 +4762,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -5500,7 +4777,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -5518,28 +4795,13 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ "s" ] }, - "col-highlight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/col-highlight.el", - "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n" - }, - "recipe": { - "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "vline" - ] - }, "paxedit": { "fetch": { "tag": "fetchFromGitHub", @@ -5550,7 +4812,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.6", "deps": [ @@ -5568,7 +4830,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -5583,7 +4845,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [] @@ -5598,7 +4860,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -5617,7 +4879,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.9", "deps": [ @@ -5631,32 +4893,6 @@ "s" ] }, - "project-local-variables": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el", - "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw" - }, - "recipe": { - "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "top-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/top-mode.el", - "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn" - }, - "recipe": { - "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "highlight-numbers": { "fetch": { "tag": "fetchFromGitHub", @@ -5667,7 +4903,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -5685,7 +4921,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.0", "deps": [] @@ -5700,7 +4936,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -5717,7 +4953,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -5734,26 +4970,11 @@ }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.11", "deps": [] }, - "all-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/all-ext.el", - "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m" - }, - "recipe": { - "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "all" - ] - }, "mallard-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -5764,7 +4985,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [] @@ -5779,7 +5000,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -5797,7 +5018,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.2", "deps": [ @@ -5814,7 +5035,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -5831,7 +5052,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130322.926", "deps": [ @@ -5851,7 +5072,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.8", "deps": [ @@ -5870,7 +5091,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [] @@ -5885,24 +5106,11 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [] }, - "typing": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/typing.el", - "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31" - }, - "recipe": { - "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ess": { "fetch": { "tag": "fetchFromGitHub", @@ -5913,9 +5121,9 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "15.09", + "version": "15.9", "deps": [ "julia-mode" ] @@ -5930,7 +5138,7 @@ }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.2", "deps": [] @@ -5945,7 +5153,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -5953,19 +5161,6 @@ "names" ] }, - "eldoc-extension": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el", - "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch" - }, - "recipe": { - "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-w32-launcher": { "fetch": { "tag": "fetchFromGitHub", @@ -5976,7 +5171,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.6", "deps": [ @@ -5995,9 +5190,9 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.07", + "version": "0.7", "deps": [ "auto-complete", "cl-lib" @@ -6013,26 +5208,13 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [ "emacs" ] }, - "jira": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/jira.el", - "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" - }, - "recipe": { - "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "dired-k": { "fetch": { "tag": "fetchFromGitHub", @@ -6043,7 +5225,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.16", "deps": [ @@ -6051,19 +5233,6 @@ "emacs" ] }, - "legalese": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/legalese.el", - "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" - }, - "recipe": { - "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "project-persist-drawer": { "fetch": { "tag": "fetchFromGitHub", @@ -6074,26 +5243,13 @@ }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ "project-persist" ] }, - "dos": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dos.el", - "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp" - }, - "recipe": { - "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "image-archive": { "fetch": { "tag": "fetchFromGitHub", @@ -6104,7 +5260,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.7", "deps": [ @@ -6122,7 +5278,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [ @@ -6139,43 +5295,13 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ "epl" ] }, - "ruby-additional": { - "fetch": { - "tag": "fetchsvn", - "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", - "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53195" - }, - "recipe": { - "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "emacs", - "ruby-mode" - ] - }, - "open-junk-file": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el", - "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj" - }, - "recipe": { - "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "beginend": { "fetch": { "tag": "fetchFromGitHub", @@ -6186,7 +5312,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -6203,24 +5329,11 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] }, - "tidy": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/tidy.el", - "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" - }, - "recipe": { - "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "vimgolf": { "fetch": { "tag": "fetchFromGitHub", @@ -6231,7 +5344,7 @@ }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10.0", "deps": [] @@ -6246,7 +5359,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -6254,19 +5367,6 @@ "geiser" ] }, - "git-dwim": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/git-dwim.el", - "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv" - }, - "recipe": { - "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "tuareg": { "fetch": { "tag": "fetchFromGitHub", @@ -6277,7 +5377,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.9", "deps": [ @@ -6294,7 +5394,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [] @@ -6309,9 +5409,9 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "cl-lib" ] @@ -6326,7 +5426,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -6341,7 +5441,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6", "deps": [] @@ -6356,7 +5456,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -6371,28 +5471,13 @@ }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.11", "deps": [ "inf-ruby" ] }, - "thing-cmds": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el", - "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m" - }, - "recipe": { - "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "hide-comnt" - ] - }, "alchemist": { "fetch": { "tag": "fetchFromGitHub", @@ -6403,7 +5488,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.0", "deps": [ @@ -6424,11 +5509,28 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.3", "deps": [] }, + "function-args": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "function-args", + "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8", + "rev": "25e447d8a8930a8c515077de57a7693c6a642514" + }, + "recipe": { + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.1", + "deps": [ + "swiper" + ] + }, "splitjoin": { "fetch": { "tag": "fetchFromGitHub", @@ -6439,9 +5541,9 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "cl-lib" ] @@ -6456,7 +5558,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [ @@ -6473,24 +5575,11 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [] }, - "narrow-indirect": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el", - "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8" - }, - "recipe": { - "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "button-lock": { "fetch": { "tag": "fetchFromGitHub", @@ -6501,7 +5590,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.2", "deps": [] @@ -6516,7 +5605,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.81", "deps": [] @@ -6531,7 +5620,7 @@ }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.7", "deps": [ @@ -6551,7 +5640,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [ @@ -6570,7 +5659,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -6585,7 +5674,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -6600,7 +5689,7 @@ }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -6615,7 +5704,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] @@ -6630,7 +5719,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -6645,7 +5734,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [ @@ -6665,7 +5754,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -6680,7 +5769,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -6695,7 +5784,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.4", "deps": [ @@ -6713,8 +5802,8 @@ "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { - "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [ @@ -6731,7 +5820,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [] @@ -6746,7 +5835,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.12", "deps": [ @@ -6764,7 +5853,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.3", "deps": [ @@ -6782,35 +5871,22 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [] }, - "elisp-depend": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el", - "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02" - }, - "recipe": { - "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "scala-mode2": { "fetch": { "tag": "fetchFromGitHub", - "owner": "hvesalai", - "repo": "scala-mode2", + "owner": "ensime", + "repo": "emacs-scala-mode", "sha256": "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89", "rev": "34888c094990bc669347f106dbd516f487e55ae3" }, "recipe": { - "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.22", "deps": [] @@ -6825,7 +5901,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -6842,7 +5918,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.0", "deps": [] @@ -6857,7 +5933,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3", "deps": [] @@ -6872,7 +5948,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [ @@ -6889,24 +5965,11 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "doremi": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/doremi.el", - "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" - }, - "recipe": { - "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "grizzl": { "fetch": { "tag": "fetchFromGitHub", @@ -6917,7 +5980,7 @@ }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -6932,24 +5995,11 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] }, - "wid-edit+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el", - "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k" - }, - "recipe": { - "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "pabbrev": { "fetch": { "tag": "fetchFromGitHub", @@ -6960,7 +6010,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "4.1", "deps": [] @@ -6975,29 +6025,11 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.126", "deps": [] }, - "helm-ls-svn": { - "fetch": { - "tag": "fetchsvn", - "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", - "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143722" - }, - "recipe": { - "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "cl-lib", - "emacs", - "helm" - ] - }, "evil-leader": { "fetch": { "tag": "fetchFromGitHub", @@ -7008,26 +6040,13 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.3", "deps": [ "evil" ] }, - "highlight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/highlight.el", - "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" - }, - "recipe": { - "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "darktooth-theme": { "fetch": { "tag": "fetchFromGitHub", @@ -7038,7 +6057,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.37", "deps": [] @@ -7053,7 +6072,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -7068,7 +6087,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -7083,7 +6102,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.3", "deps": [] @@ -7098,7 +6117,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -7110,14 +6129,14 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "elfeed", - "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", - "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.3.0", + "version": "1.4.0", "deps": [ "emacs" ] @@ -7132,7 +6151,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -7149,7 +6168,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.9", "deps": [ @@ -7166,7 +6185,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -7181,27 +6200,13 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ "emacs" ] }, - "geben": { - "fetch": { - "tag": "fetchsvn", - "url": "http://geben-on-emacs.googlecode.com/svn/trunk/", - "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4", - "rev": "124" - }, - "recipe": { - "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "date-field": { "fetch": { "tag": "fetchFromGitHub", @@ -7212,7 +6217,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -7231,7 +6236,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.4", "deps": [] @@ -7246,7 +6251,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -7261,7 +6266,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -7276,9 +6281,9 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "helm" ] @@ -7293,9 +6298,9 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "auto-complete", "cl-lib" @@ -7311,7 +6316,7 @@ }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -7326,22 +6331,9 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", - "deps": [] - }, - "echo-bell": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/echo-bell.el", - "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v" - }, - "recipe": { - "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", + "version": "0.3", "deps": [] }, "dedicated": { @@ -7354,7 +6346,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -7369,7 +6361,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [] @@ -7384,13 +6376,28 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ "emacs" ] }, + "fireplace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johanvts", + "repo": "emacs-fireplace", + "sha256": "0p4b4j4s3r91b691j2330lywz16mmmwfx8s4w98498agxl2vjdnx", + "rev": "5bafff73664854519aa36108f9b0e7add3bf8b8d" + }, + "recipe": { + "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, "morlock": { "fetch": { "tag": "fetchFromGitHub", @@ -7401,7 +6408,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [] @@ -7416,7 +6423,7 @@ }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.0", "deps": [ @@ -7434,7 +6441,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.11.2", "deps": [ @@ -7451,7 +6458,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10.0", "deps": [] @@ -7466,7 +6473,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.0", "deps": [ @@ -7485,7 +6492,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.22", "deps": [ @@ -7503,37 +6510,11 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.28", "deps": [] }, - "buffer-stack": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el", - "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r" - }, - "recipe": { - "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "frame-fns": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/frame-fns.el", - "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7" - }, - "recipe": { - "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "search-web": { "fetch": { "tag": "fetchFromGitHub", @@ -7544,7 +6525,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -7559,7 +6540,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [] @@ -7574,7 +6555,7 @@ }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.9.0", "deps": [] @@ -7589,7 +6570,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -7600,17 +6581,19 @@ "org" ] }, - "apropos-fn+var": { + "erlang": { "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el", - "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf" + "tag": "fetchFromGitHub", + "owner": "erlang", + "repo": "otp", + "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk", + "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" }, "recipe": { - "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "nil", + "version": "18.2.1", "deps": [] }, "concurrent": { @@ -7623,26 +6606,13 @@ }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [ "deferred" ] }, - "grep+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/grep+.el", - "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" - }, - "recipe": { - "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-zhihu-daily": { "fetch": { "tag": "fetchFromGitHub", @@ -7653,7 +6623,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -7672,7 +6642,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [] @@ -7687,24 +6657,11 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "ac-dabbrev": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el", - "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh" - }, - "recipe": { - "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "caskxy": { "fetch": { "tag": "fetchFromGitHub", @@ -7715,7 +6672,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -7733,7 +6690,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [] @@ -7748,7 +6705,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.0.0", "deps": [] @@ -7763,7 +6720,7 @@ }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -7778,7 +6735,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.2", "deps": [ @@ -7797,7 +6754,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -7816,7 +6773,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.11", "deps": [ @@ -7824,19 +6781,6 @@ "cl-lib" ] }, - "transpose-frame": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el", - "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4" - }, - "recipe": { - "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "travis": { "fetch": { "tag": "fetchFromGitHub", @@ -7847,7 +6791,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.0", "deps": [ @@ -7867,7 +6811,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.14.3", "deps": [ @@ -7877,19 +6821,6 @@ "es-windows" ] }, - "sequential-command": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sequential-command.el", - "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk" - }, - "recipe": { - "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-helm": { "fetch": { "tag": "fetchFromGitHub", @@ -7900,7 +6831,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [ @@ -7919,24 +6850,11 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.1", "deps": [] }, - "pp+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/pp+.el", - "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" - }, - "recipe": { - "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "genrnc": { "fetch": { "tag": "fetchFromGitHub", @@ -7947,7 +6865,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -7967,7 +6885,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.4", "deps": [ @@ -7987,7 +6905,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -8002,7 +6920,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -8023,7 +6941,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -8038,7 +6956,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -8055,7 +6973,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -8072,7 +6990,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -8089,7 +7007,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [ @@ -8106,7 +7024,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -8124,7 +7042,7 @@ }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -8143,7 +7061,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -8158,7 +7076,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -8173,7 +7091,7 @@ }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [] @@ -8188,7 +7106,7 @@ }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [] @@ -8203,7 +7121,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -8222,7 +7140,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [ @@ -8240,7 +7158,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -8248,20 +7166,6 @@ "emacs" ] }, - "swbuff": { - "fetch": { - "tag": "fetchcvs", - "module": "emhacks/swbuff.el", - "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", - "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" - }, - "recipe": { - "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "bbcode-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -8272,7 +7176,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [] @@ -8287,7 +7191,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [] @@ -8302,7 +7206,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [ @@ -8319,24 +7223,11 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "13.10", "deps": [] }, - "centered-cursor-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el", - "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl" - }, - "recipe": { - "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "rectangle-utils": { "fetch": { "tag": "fetchFromGitHub", @@ -8347,7 +7238,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -8365,7 +7256,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.8", "deps": [] @@ -8373,14 +7264,14 @@ "sbt-mode": { "fetch": { "tag": "fetchFromGitHub", - "owner": "hvesalai", - "repo": "sbt-mode", + "owner": "ensime", + "repo": "emacs-sbt-mode", "sha256": "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q", "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" }, "recipe": { - "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -8397,7 +7288,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -8412,26 +7303,13 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.2", "deps": [ "anything" ] }, - "novice+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/novice+.el", - "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" - }, - "recipe": { - "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "discover": { "fetch": { "tag": "fetchFromGitHub", @@ -8442,7 +7320,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -8459,7 +7337,7 @@ }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1", "deps": [] @@ -8474,7 +7352,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -8489,7 +7367,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -8510,7 +7388,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -8518,17 +7396,19 @@ "cake" ] }, - "el-swank-fuzzy": { + "org-tree-slide": { "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el", - "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn" + "tag": "fetchFromGitHub", + "owner": "takaxp", + "repo": "org-tree-slide", + "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45", + "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" }, "recipe": { - "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "nil", + "version": "2.8.4", "deps": [] }, "org-transform-tree-table": { @@ -8541,7 +7421,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -8559,7 +7439,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -8567,19 +7447,6 @@ "emacs" ] }, - "icomplete+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/icomplete+.el", - "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky" - }, - "recipe": { - "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-package": { "fetch": { "tag": "fetchFromGitHub", @@ -8590,9 +7457,9 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", + "version": "0.3", "deps": [ "cl-lib", "helm" @@ -8608,7 +7475,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.4", "deps": [] @@ -8623,7 +7490,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -8640,24 +7507,11 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "dummy-h-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el", - "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v" - }, - "recipe": { - "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "highlight-quoted": { "fetch": { "tag": "fetchFromGitHub", @@ -8668,7 +7522,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -8685,7 +7539,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -8700,7 +7554,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -8716,7 +7570,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.8", "deps": [] @@ -8731,7 +7585,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [ @@ -8747,8 +7601,8 @@ "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" }, "recipe": { - "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [] @@ -8763,7 +7617,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [ @@ -8781,7 +7635,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -8803,7 +7657,7 @@ }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2", "deps": [] @@ -8818,7 +7672,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "13", "deps": [] @@ -8833,7 +7687,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [] @@ -8848,7 +7702,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -8863,7 +7717,7 @@ }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [ @@ -8880,26 +7734,13 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ "cl-lib" ] }, - "character-fold+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/character-fold+.el", - "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy" - }, - "recipe": { - "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "notmuch": { "fetch": { "tag": "fetchgit", @@ -8909,7 +7750,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.21", "deps": [] @@ -8924,7 +7765,7 @@ }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -8942,7 +7783,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -8953,19 +7794,6 @@ "s" ] }, - "auto-capitalize": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el", - "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi" - }, - "recipe": { - "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "emms-mode-line-cycle": { "fetch": { "tag": "fetchFromGitHub", @@ -8976,7 +7804,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [ @@ -8994,7 +7822,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [] @@ -9009,7 +7837,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.2", "deps": [] @@ -9024,9 +7852,9 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "popup" ] @@ -9041,7 +7869,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.0", "deps": [ @@ -9065,7 +7893,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6", "deps": [ @@ -9083,7 +7911,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -9098,14 +7926,14 @@ "tag": "fetchFromGitHub", "owner": "Floobits", "repo": "floobits-emacs", - "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", - "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + "sha256": "1b9zxyv5bn1ja0gcv5p3dk3lq3gp3g1dhbnizx7ifgpzc36sp374", + "rev": "c75af788d089b701dc71fd79c2baefe82d0d17eb" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.6.1", + "version": "1.6.2", "deps": [ "highlight", "json" @@ -9121,7 +7949,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -9135,7 +7963,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -9150,7 +7978,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -9160,14 +7988,14 @@ "tag": "fetchFromGitHub", "owner": "stan-dev", "repo": "stan-mode", - "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", - "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + "sha256": "0s633nnaprqq0svs0v4zfk9p47izbvjwx1x2xa9b9rid69bpx54s", + "rev": "60e31cd0dedc36ee6d5ddde01c5b8cb121c2e844" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "7.1.0", + "version": "8.0.0", "deps": [] }, "edts": { @@ -9180,7 +8008,7 @@ }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -9195,7 +8023,7 @@ }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -9213,7 +8041,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -9229,7 +8057,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [ @@ -9246,7 +8074,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -9263,7 +8091,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [] @@ -9278,7 +8106,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.2", "deps": [ @@ -9295,7 +8123,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -9310,7 +8138,7 @@ }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.0.1", "deps": [ @@ -9327,7 +8155,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.18.1", "deps": [ @@ -9344,7 +8172,7 @@ }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [ @@ -9363,7 +8191,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -9380,7 +8208,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -9395,7 +8223,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -9413,7 +8241,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -9430,7 +8258,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -9450,7 +8278,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.25.1", "deps": [] @@ -9465,7 +8293,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.13.3", "deps": [ @@ -9482,7 +8310,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [] @@ -9497,7 +8325,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.2", "deps": [ @@ -9515,7 +8343,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -9533,7 +8361,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140303.946", "deps": [ @@ -9550,7 +8378,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -9567,37 +8395,11 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "6.3", "deps": [] }, - "highlight-chars": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el", - "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf" - }, - "recipe": { - "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "flymake-cursor": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el", - "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr" - }, - "recipe": { - "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "comment-dwim-2": { "fetch": { "tag": "fetchFromGitHub", @@ -9608,7 +8410,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.2", "deps": [] @@ -9623,7 +8425,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -9638,7 +8440,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.6", "deps": [] @@ -9653,7 +8455,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -9661,19 +8463,6 @@ "helm" ] }, - "chm-view": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/chm-view.el", - "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" - }, - "recipe": { - "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "company-quickhelp": { "fetch": { "tag": "fetchFromGitHub", @@ -9684,7 +8473,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [ @@ -9703,7 +8492,7 @@ }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -9720,7 +8509,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [ @@ -9737,7 +8526,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [ @@ -9754,7 +8543,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -9769,7 +8558,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10.2", "deps": [] @@ -9784,7 +8573,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -9799,7 +8588,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [ @@ -9816,7 +8605,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.2", "deps": [ @@ -9834,7 +8623,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.8", "deps": [ @@ -9851,7 +8640,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.17.0", "deps": [] @@ -9866,7 +8655,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.1", "deps": [ @@ -9883,7 +8672,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -9901,7 +8690,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -9918,7 +8707,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -9926,19 +8715,6 @@ "emacs" ] }, - "showtip": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/showtip.el", - "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql" - }, - "recipe": { - "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "electric-operator": { "fetch": { "tag": "fetchFromGitHub", @@ -9949,7 +8725,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -9968,7 +8744,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [ @@ -9977,19 +8753,6 @@ "yaxception" ] }, - "message-x": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/message-x.el", - "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf" - }, - "recipe": { - "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "spotify": { "fetch": { "tag": "fetchFromGitHub", @@ -10000,24 +8763,11 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [] }, - "http-post-simple": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el", - "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my" - }, - "recipe": { - "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "mustache-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -10028,7 +8778,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -10043,7 +8793,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.10", "deps": [ @@ -10061,7 +8811,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6", "deps": [] @@ -10076,7 +8826,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -10094,7 +8844,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -10109,7 +8859,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -10118,19 +8868,6 @@ "s" ] }, - "pastebin": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/pastebin.el", - "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn" - }, - "recipe": { - "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "org-gcal": { "fetch": { "tag": "fetchFromGitHub", @@ -10141,7 +8878,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -10162,7 +8899,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -10181,7 +8918,7 @@ }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.46", "deps": [ @@ -10200,7 +8937,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -10215,7 +8952,7 @@ }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -10234,7 +8971,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ @@ -10252,7 +8989,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.0", "deps": [] @@ -10267,54 +9004,13 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ "key-chord" ] }, - "point-undo": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/point-undo.el", - "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz" - }, - "recipe": { - "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "frame-cmds": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el", - "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a" - }, - "recipe": { - "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "frame-fns" - ] - }, - "yaoddmuse": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el", - "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4" - }, - "recipe": { - "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "tern-django": { "fetch": { "tag": "fetchFromGitHub", @@ -10325,7 +9021,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -10334,36 +9030,24 @@ "tern" ] }, - "shell-history": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/shell-history.el", - "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r" - }, - "recipe": { - "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ido-ubiquitous": { "fetch": { "tag": "fetchFromGitHub", "owner": "DarwinAwardWinner", "repo": "ido-ubiquitous", - "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", - "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "3.9", + "version": "3.10", "deps": [ "cl-lib", "emacs", - "ido-completing-read+" + "ido-completing-read+", + "s" ] }, "merlin": { @@ -10376,7 +9060,7 @@ }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [] @@ -10391,7 +9075,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -10410,7 +9094,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [] @@ -10425,24 +9109,11 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] }, - "unbound": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/unbound.el", - "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" - }, - "recipe": { - "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "anti-zenburn-theme": { "fetch": { "tag": "fetchFromGitHub", @@ -10453,7 +9124,7 @@ }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3", "deps": [] @@ -10468,7 +9139,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -10483,7 +9154,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -10500,7 +9171,7 @@ }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [ @@ -10521,9 +9192,9 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "04b", + "version": "4.2", "deps": [] }, "lfe-mode": { @@ -10536,38 +9207,11 @@ }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10.1", "deps": [] }, - "color-theme": { - "fetch": { - "tag": "fetchbzr", - "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk", - "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz", - "rev": "57" - }, - "recipe": { - "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "ascii": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/ascii.el", - "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" - }, - "recipe": { - "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "nyan-prompt": { "fetch": { "tag": "fetchFromGitHub", @@ -10578,7 +9222,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -10593,7 +9237,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [ @@ -10610,7 +9254,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -10625,7 +9269,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [ @@ -10645,7 +9289,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [ @@ -10666,7 +9310,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -10674,19 +9318,6 @@ "go-mode" ] }, - "finder+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/finder+.el", - "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn" - }, - "recipe": { - "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "plenv": { "fetch": { "tag": "fetchFromGitHub", @@ -10697,7 +9328,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.32", "deps": [] @@ -10712,7 +9343,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -10729,7 +9360,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.3", "deps": [ @@ -10746,7 +9377,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [] @@ -10761,7 +9392,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.6", "deps": [] @@ -10776,7 +9407,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -10791,7 +9422,7 @@ }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.6.1", "deps": [] @@ -10806,7 +9437,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -10823,7 +9454,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -10840,52 +9471,13 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [ "emacs" ] }, - "list-processes+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/list-processes+.el", - "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a" - }, - "recipe": { - "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "hippie-exp-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el", - "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl" - }, - "recipe": { - "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "recentf-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el", - "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l" - }, - "recipe": { - "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ov": { "fetch": { "tag": "fetchFromGitHub", @@ -10896,27 +9488,13 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.6", "deps": [ "emacs" ] }, - "applescript-mode": { - "fetch": { - "tag": "fetchsvn", - "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk", - "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml", - "rev": "584" - }, - "recipe": { - "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ibuffer-vc": { "fetch": { "tag": "fetchFromGitHub", @@ -10927,7 +9505,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [ @@ -10944,7 +9522,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -10968,7 +9546,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -10985,7 +9563,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] @@ -11000,7 +9578,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [] @@ -11015,26 +9593,13 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ "auto-complete" ] }, - "time-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/time-ext.el", - "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv" - }, - "recipe": { - "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ws-butler": { "fetch": { "tag": "fetchFromGitHub", @@ -11045,7 +9610,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -11060,7 +9625,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.44", "deps": [] @@ -11075,7 +9640,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] @@ -11090,7 +9655,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.20", "deps": [] @@ -11105,7 +9670,7 @@ }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -11123,7 +9688,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -11138,7 +9703,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.8", "deps": [ @@ -11156,7 +9721,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -11169,23 +9734,10 @@ "rev": "5b49aea3810d" }, "recipe": { - "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0", - "deps": [] - }, - "dired-sort": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-sort.el", - "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z" - }, - "recipe": { - "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", + "version": "1.78", "deps": [] }, "pandoc-mode": { @@ -11198,7 +9750,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.13.3", "deps": [ @@ -11216,7 +9768,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] @@ -11231,7 +9783,7 @@ }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10.0", "deps": [ @@ -11248,7 +9800,7 @@ }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -11266,7 +9818,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -11283,7 +9835,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2", "deps": [ @@ -11300,7 +9852,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -11319,26 +9871,13 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ "skewer-mode" ] }, - "eimp": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/eimp.el", - "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir" - }, - "recipe": { - "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flymake-perlcritic": { "fetch": { "tag": "fetchFromGitHub", @@ -11349,41 +9888,13 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.3", "deps": [ "flymake" ] }, - "dired-single": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-single.el", - "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx" - }, - "recipe": { - "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "oneonone": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/oneonone.el", - "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" - }, - "recipe": { - "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "hexrgb" - ] - }, "emamux": { "fetch": { "tag": "fetchFromGitHub", @@ -11394,7 +9905,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.13", "deps": [ @@ -11412,7 +9923,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -11430,7 +9941,7 @@ }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.11", "deps": [ @@ -11438,19 +9949,6 @@ "emacs" ] }, - "move-text": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/move-text.el", - "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2" - }, - "recipe": { - "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-cake2": { "fetch": { "tag": "fetchFromGitHub", @@ -11461,7 +9959,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -11479,9 +9977,9 @@ }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "3.8.0b1", + "version": "3.8.0.2.1", "deps": [] }, "corral": { @@ -11494,24 +9992,11 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] }, - "look-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/look-mode.el", - "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp" - }, - "recipe": { - "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "cacoo": { "fetch": { "tag": "fetchFromGitHub", @@ -11522,7 +10007,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.2", "deps": [ @@ -11539,7 +10024,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -11556,7 +10041,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.1", "deps": [ @@ -11573,7 +10058,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [] @@ -11588,7 +10073,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [ @@ -11607,26 +10092,13 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ "cl-lib" ] }, - "pretty-lambdada": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el", - "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin" - }, - "recipe": { - "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "omni-tags": { "fetch": { "tag": "fetchFromGitHub", @@ -11637,7 +10109,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -11655,26 +10127,13 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "cl-lib" ] }, - "tfs": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/tfs.el", - "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v" - }, - "recipe": { - "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "page-break-lines": { "fetch": { "tag": "fetchFromGitHub", @@ -11685,7 +10144,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10", "deps": [] @@ -11700,7 +10159,7 @@ }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [] @@ -11715,7 +10174,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -11730,7 +10189,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [] @@ -11745,7 +10204,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -11760,7 +10219,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -11779,7 +10238,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -11796,7 +10255,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.5", "deps": [] @@ -11811,26 +10270,13 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [ "evil" ] }, - "hl-line+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hl-line+.el", - "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889" - }, - "recipe": { - "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "xbm-life": { "fetch": { "tag": "fetchFromGitHub", @@ -11841,7 +10287,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [] @@ -11856,7 +10302,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.1", "deps": [] @@ -11871,7 +10317,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.13", "deps": [] @@ -11886,7 +10332,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [] @@ -11901,9 +10347,9 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", + "version": "0.3", "deps": [ "cl-lib", "helm-core" @@ -11919,7 +10365,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -11934,7 +10380,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -11949,7 +10395,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.0", "deps": [] @@ -11964,7 +10410,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.12.1", "deps": [ @@ -11982,7 +10428,7 @@ }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.70", "deps": [ @@ -12001,7 +10447,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.2", "deps": [ @@ -12018,7 +10464,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [] @@ -12033,7 +10479,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -12048,7 +10494,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.2", "deps": [ @@ -12069,7 +10515,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -12087,7 +10533,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -12107,7 +10553,7 @@ }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -12126,7 +10572,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -12144,7 +10590,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -12162,7 +10608,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [] @@ -12177,7 +10623,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.9", "deps": [ @@ -12185,19 +10631,6 @@ "rich-minority" ] }, - "apu": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/apu.el", - "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4" - }, - "recipe": { - "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "live-py-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -12208,7 +10641,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.8.1", "deps": [] @@ -12223,7 +10656,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.6", "deps": [] @@ -12238,7 +10671,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -12257,7 +10690,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.92", "deps": [] @@ -12272,7 +10705,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -12289,7 +10722,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.3", "deps": [ @@ -12307,7 +10740,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -12322,7 +10755,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.2", "deps": [ @@ -12340,7 +10773,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -12357,7 +10790,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [] @@ -12372,7 +10805,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -12387,7 +10820,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150723.0", "deps": [ @@ -12405,7 +10838,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -12420,7 +10853,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -12428,19 +10861,6 @@ "yaxception" ] }, - "dropdown-list": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el", - "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a" - }, - "recipe": { - "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "docker": { "fetch": { "tag": "fetchFromGitHub", @@ -12451,7 +10871,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -12461,19 +10881,6 @@ "s" ] }, - "fuzzy-format": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el", - "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7" - }, - "recipe": { - "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "auto-package-update": { "fetch": { "tag": "fetchFromGitHub", @@ -12484,7 +10891,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.1", "deps": [ @@ -12502,7 +10909,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [] @@ -12517,7 +10924,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -12537,7 +10944,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -12556,7 +10963,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -12571,7 +10978,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -12588,7 +10995,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] @@ -12603,31 +11010,11 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] }, - "helm-projectile": { - "fetch": { - "tag": "fetchFromGitHub", - "owner": "bbatsov", - "repo": "projectile", - "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", - "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" - }, - "recipe": { - "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "0.13.0", - "deps": [ - "cl-lib", - "dash", - "helm", - "projectile" - ] - }, "ahk-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -12638,7 +11025,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.5", "deps": [] @@ -12653,7 +11040,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -12673,7 +11060,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [] @@ -12688,26 +11075,13 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.0", "deps": [ "cl-lib" ] }, - "gnus-spotlight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el", - "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4" - }, - "recipe": { - "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "uzumaki": { "fetch": { "tag": "fetchFromGitHub", @@ -12718,27 +11092,13 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ "cl-lib" ] }, - "eredis": { - "fetch": { - "tag": "fetchsvn", - "url": "http://eredis.googlecode.com/svn/trunk/", - "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49", - "rev": "28" - }, - "recipe": { - "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "fvwm-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -12749,7 +11109,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.4", "deps": [] @@ -12764,7 +11124,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -12779,7 +11139,7 @@ }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -12791,17 +11151,18 @@ "tag": "fetchFromGitHub", "owner": "jyp", "repo": "boon", - "sha256": "0alxz27pyf669mkw5wvkidrvwm11iwbkl9k7v8lzq05kgy59bwkq", - "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf" + "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq", + "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.2", + "version": "0.3", "deps": [ "emacs", - "expand-region" + "expand-region", + "multiple-cursors" ] }, "inflections": { @@ -12814,24 +11175,11 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3", "deps": [] }, - "todochiku": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/todochiku.el", - "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" - }, - "recipe": { - "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "color-theme-sanityinc-solarized": { "fetch": { "tag": "fetchFromGitHub", @@ -12842,7 +11190,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.29", "deps": [] @@ -12857,7 +11205,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [] @@ -12872,7 +11220,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.2", "deps": [] @@ -12887,7 +11235,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -12904,7 +11252,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -12921,26 +11269,13 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [ "eieio" ] }, - "fuzzy-match": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el", - "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq" - }, - "recipe": { - "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "reverse-theme": { "fetch": { "tag": "fetchFromGitHub", @@ -12951,22 +11286,9 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", - "deps": [] - }, - "menu-bar+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el", - "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7" - }, - "recipe": { - "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", + "version": "0.3", "deps": [] }, "perspective": { @@ -12979,7 +11301,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.12", "deps": [ @@ -12996,7 +11318,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1", "deps": [] @@ -13011,26 +11333,13 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ "cl-lib" ] }, - "sqlplus": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", - "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" - }, - "recipe": { - "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "pt": { "fetch": { "tag": "fetchFromGitHub", @@ -13041,7 +11350,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [] @@ -13056,24 +11365,11 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [] }, - "mb-depth+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el", - "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q" - }, - "recipe": { - "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "fold-dwim-org": { "fetch": { "tag": "fetchFromGitHub", @@ -13084,7 +11380,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [ @@ -13101,7 +11397,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -13120,7 +11416,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -13135,7 +11431,7 @@ }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -13144,19 +11440,6 @@ "nixos-options" ] }, - "face-remap+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/face-remap+.el", - "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi" - }, - "recipe": { - "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flymake-json": { "fetch": { "tag": "fetchFromGitHub", @@ -13167,7 +11450,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -13184,7 +11467,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.0.18", "deps": [ @@ -13201,26 +11484,13 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ "dash" ] }, - "showkey": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/showkey.el", - "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r" - }, - "recipe": { - "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flymake-haskell-multi": { "fetch": { "tag": "fetchFromGitHub", @@ -13231,7 +11501,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -13248,7 +11518,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.7", "deps": [] @@ -13263,7 +11533,7 @@ }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.8", "deps": [ @@ -13280,7 +11550,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [ @@ -13291,19 +11561,6 @@ "s" ] }, - "isearch-prop": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el", - "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09" - }, - "recipe": { - "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "org-table-comment": { "fetch": { "tag": "fetchFromGitHub", @@ -13314,7 +11571,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -13329,7 +11586,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -13344,7 +11601,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.11", "deps": [ @@ -13353,23 +11610,6 @@ "migemo" ] }, - "crosshairs": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/crosshairs.el", - "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b" - }, - "recipe": { - "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "col-highlight", - "hl-line+", - "vline" - ] - }, "osx-browse": { "fetch": { "tag": "fetchFromGitHub", @@ -13380,7 +11620,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.8", "deps": [ @@ -13398,7 +11638,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -13415,7 +11655,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.2", "deps": [ @@ -13432,7 +11672,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [] @@ -13447,7 +11687,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -13465,7 +11705,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -13484,7 +11724,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [ @@ -13501,7 +11741,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.1", "deps": [] @@ -13516,7 +11756,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -13533,7 +11773,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -13550,7 +11790,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [] @@ -13565,7 +11805,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -13582,7 +11822,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -13600,26 +11840,13 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ "expand-region" ] }, - "hideshowvis": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el", - "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6" - }, - "recipe": { - "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "tumble": { "fetch": { "tag": "fetchFromGitHub", @@ -13630,7 +11857,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5", "deps": [] @@ -13645,7 +11872,7 @@ }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [] @@ -13660,7 +11887,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -13681,7 +11908,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [ @@ -13698,25 +11925,11 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] }, - "dsvn": { - "fetch": { - "tag": "fetchsvn", - "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", - "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1720849" - }, - "recipe": { - "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "clocker": { "fetch": { "tag": "fetchFromGitHub", @@ -13727,7 +11940,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.10", "deps": [ @@ -13735,19 +11948,6 @@ "projectile" ] }, - "hl-spotlight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el", - "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh" - }, - "recipe": { - "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "instapaper": { "fetch": { "tag": "fetchhg", @@ -13757,7 +11957,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.5", "deps": [] @@ -13772,24 +11972,11 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [] }, - "findr": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/findr.el", - "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" - }, - "recipe": { - "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "whitaker": { "fetch": { "tag": "fetchFromGitHub", @@ -13800,7 +11987,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -13817,7 +12004,7 @@ }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.12", "deps": [ @@ -13835,7 +12022,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -13850,7 +12037,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -13867,7 +12054,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -13876,19 +12063,6 @@ "s" ] }, - "dired-sort-menu": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el", - "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi" - }, - "recipe": { - "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "rinari": { "fetch": { "tag": "fetchFromGitHub", @@ -13899,7 +12073,7 @@ }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.11", "deps": [ @@ -13919,7 +12093,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.4", "deps": [ @@ -13938,7 +12112,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.2", "deps": [ @@ -13954,7 +12128,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -13969,7 +12143,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.5.10", "deps": [] @@ -13984,7 +12158,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -13992,19 +12166,6 @@ "ido-vertical-mode" ] }, - "cus-edit+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el", - "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s" - }, - "recipe": { - "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "outshine": { "fetch": { "tag": "fetchFromGitHub", @@ -14015,7 +12176,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -14030,7 +12191,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [] @@ -14045,7 +12206,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -14060,7 +12221,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.4", "deps": [ @@ -14077,7 +12238,7 @@ }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.48", "deps": [ @@ -14095,39 +12256,13 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ "direx" ] }, - "muttrc-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el", - "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis" - }, - "recipe": { - "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "cmds-menu": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el", - "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5" - }, - "recipe": { - "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "cmake-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -14138,26 +12273,11 @@ }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.4.1", "deps": [] }, - "eyedropper": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", - "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" - }, - "recipe": { - "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "hexrgb" - ] - }, "interleave": { "fetch": { "tag": "fetchFromGitHub", @@ -14168,7 +12288,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -14183,7 +12303,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.9", "deps": [ @@ -14191,19 +12311,6 @@ "emacs" ] }, - "delight": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/delight.el", - "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" - }, - "recipe": { - "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "speech-tagger": { "fetch": { "tag": "fetchFromGitHub", @@ -14214,7 +12321,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.0", "deps": [] @@ -14229,7 +12336,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [] @@ -14244,7 +12351,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [] @@ -14259,7 +12366,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2", "deps": [] @@ -14274,7 +12381,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] @@ -14289,7 +12396,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -14309,7 +12416,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -14324,7 +12431,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [ @@ -14341,7 +12448,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [ @@ -14358,7 +12465,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2015.11.29", "deps": [] @@ -14373,7 +12480,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -14382,19 +12489,6 @@ "pkg-info" ] }, - "pp-c-l": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el", - "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd" - }, - "recipe": { - "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "win-switch": { "fetch": { "tag": "fetchFromGitHub", @@ -14405,7 +12499,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -14420,7 +12514,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -14437,7 +12531,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -14454,7 +12548,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [] @@ -14469,24 +12563,11 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] }, - "etags-table": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/etags-table.el", - "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf" - }, - "recipe": { - "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-alchemist": { "fetch": { "tag": "fetchFromGitHub", @@ -14497,9 +12578,9 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "alchemist", "auto-complete", @@ -14516,7 +12597,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -14534,7 +12615,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -14549,7 +12630,7 @@ }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -14566,7 +12647,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -14583,7 +12664,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [] @@ -14598,7 +12679,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -14615,7 +12696,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.7", "deps": [ @@ -14634,9 +12715,9 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", + "version": "0.3", "deps": [ "cl-lib", "emacs" @@ -14652,7 +12733,7 @@ }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.2", "deps": [ @@ -14673,7 +12754,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [] @@ -14688,7 +12769,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [] @@ -14703,7 +12784,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -14718,7 +12799,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.6", "deps": [] @@ -14733,26 +12814,13 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [ "emacs" ] }, - "goto-chg": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/goto-chg.el", - "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij" - }, - "recipe": { - "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "dired-fdclone": { "fetch": { "tag": "fetchFromGitHub", @@ -14763,7 +12831,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.2", "deps": [] @@ -14778,7 +12846,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.7", "deps": [ @@ -14796,7 +12864,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.20131027", "deps": [] @@ -14811,7 +12879,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -14826,7 +12894,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -14841,7 +12909,7 @@ }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.7", "deps": [ @@ -14855,14 +12923,14 @@ "tag": "fetchFromGitHub", "owner": "AdrieanKhisbe", "repo": "cask-package-toolset.el", - "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", - "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + "sha256": "0a2cyx80w2ijp6v6jngahqc0df5vjaf71wm6kq55p0ws511h7184", + "rev": "22f0c0bbc89d68004af5c6fcb5a6bda2591ed187" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.8.1", + "version": "0.9.0", "deps": [ "ansi", "cl-lib", @@ -14884,7 +12952,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1", "deps": [] @@ -14898,7 +12966,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -14913,7 +12981,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [] @@ -14928,7 +12996,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -14936,19 +13004,6 @@ "math-symbol-lists" ] }, - "window-number": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/window-number.el", - "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6" - }, - "recipe": { - "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "minibuffer-complete-cycle": { "fetch": { "tag": "fetchFromGitHub", @@ -14959,7 +13014,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.25.20130814", "deps": [] @@ -14974,7 +13029,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -14995,7 +13050,7 @@ }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -15012,7 +13067,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.6", "deps": [ @@ -15024,19 +13079,6 @@ "tabulated-list" ] }, - "thesaurus": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/thesaurus.el", - "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq" - }, - "recipe": { - "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "relax": { "fetch": { "tag": "fetchFromGitHub", @@ -15047,7 +13089,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -15064,7 +13106,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [] @@ -15079,7 +13121,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -15098,27 +13140,11 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] }, - "thumb-frm": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el", - "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i" - }, - "recipe": { - "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "frame-cmds", - "frame-fns" - ] - }, "browse-url-dwim": { "fetch": { "tag": "fetchFromGitHub", @@ -15129,7 +13155,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.8", "deps": [ @@ -15146,7 +13172,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.8", "deps": [] @@ -15161,7 +13187,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -15175,14 +13201,14 @@ "tag": "fetchFromGitHub", "owner": "ardumont", "repo": "markdown-toc", - "sha256": "1syvz866xb0b0c3qkf786qzin4r27yppx0vmm9vx7rr0nfz7prz0", - "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4" + "sha256": "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633", + "rev": "c2ac578113015ba7d3377c0756a4d00c61ba2e17" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.0.8", + "version": "0.0.9", "deps": [ "dash", "markdown-mode", @@ -15199,7 +13225,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.31", "deps": [ @@ -15217,7 +13243,7 @@ }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -15234,7 +13260,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -15244,14 +13270,14 @@ "tag": "fetchFromGitHub", "owner": "jcollard", "repo": "elm-mode", - "sha256": "0asry7b5s1mj0hpvwhazrn7l1ipyzm0sv4jp6jxshsjvmy6mgxwd", - "rev": "51f0dabb23b924725744f36501468b2017972f56" + "sha256": "055bnhkw0nvry3n20a980nrq3y2rlihp59pmrm1s4rlb0f5drckc", + "rev": "3462740eb2add23fc294aa5b2b549ee08f5f711e" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.5.0", + "version": "0.5.3", "deps": [ "emacs", "f", @@ -15269,9 +13295,9 @@ }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.08", + "version": "1.8", "deps": [ "helm" ] @@ -15286,7 +13312,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -15303,7 +13329,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [] @@ -15318,7 +13344,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.1", "deps": [ @@ -15336,7 +13362,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.0", "deps": [ @@ -15353,7 +13379,7 @@ }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -15373,26 +13399,13 @@ }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ "helm" ] }, - "sr-speedbar": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el", - "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i" - }, - "recipe": { - "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "emr": { "fetch": { "tag": "fetchFromGitHub", @@ -15403,7 +13416,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.6", "deps": [ @@ -15428,7 +13441,7 @@ }, "recipe": { "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -15448,7 +13461,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -15463,7 +13476,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -15484,7 +13497,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -15503,7 +13516,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [] @@ -15518,7 +13531,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -15533,7 +13546,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.3", "deps": [] @@ -15548,26 +13561,13 @@ }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "13.16", "deps": [ "cl-lib" ] }, - "icicles": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/icicles.el", - "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" - }, - "recipe": { - "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "linum-relative": { "fetch": { "tag": "fetchFromGitHub", @@ -15578,7 +13578,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -15593,7 +13593,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.23", "deps": [] @@ -15608,37 +13608,11 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [] }, - "wimpy-del": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el", - "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z" - }, - "recipe": { - "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "help+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/help+.el", - "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" - }, - "recipe": { - "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "org-projectile": { "fetch": { "tag": "fetchFromGitHub", @@ -15649,7 +13623,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -15657,19 +13631,6 @@ "projectile" ] }, - "doremi-mac": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el", - "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx" - }, - "recipe": { - "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flyspell-popup": { "fetch": { "tag": "fetchFromGitHub", @@ -15680,7 +13641,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -15697,7 +13658,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.9", "deps": [] @@ -15712,24 +13673,11 @@ }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.7", "deps": [] }, - "replace-from-region": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", - "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" - }, - "recipe": { - "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "fuel": { "fetch": { "tag": "fetchgit", @@ -15739,57 +13687,30 @@ }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.96", "deps": [] }, - "mic-paren": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/mic-paren.el", - "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5" - }, - "recipe": { - "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-core": { "fetch": { "tag": "fetchFromGitHub", "owner": "emacs-helm", "repo": "helm", - "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", - "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + "sha256": "0awr4nvzgp1kckxqli1xw4pk16gc22i8hchin63fqvk0gllcy454", + "rev": "fe96a398aa09ed0d25f6782efa5833085aa63791" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.9.0", + "version": "1.9.1", "deps": [ "async", "cl-lib", "emacs" ] }, - "sml-modeline": { - "fetch": { - "tag": "fetchbzr", - "url": "lp:~nxhtml/nxhtml/main", - "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", - "rev": "835" - }, - "recipe": { - "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "wonderland": { "fetch": { "tag": "fetchFromGitHub", @@ -15800,7 +13721,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -15820,7 +13741,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.7", "deps": [ @@ -15829,45 +13750,6 @@ "yaxception" ] }, - "synonyms": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/synonyms.el", - "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20" - }, - "recipe": { - "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "save-load-path": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/save-load-path.el", - "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z" - }, - "recipe": { - "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "fic-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/fic-mode.el", - "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s" - }, - "recipe": { - "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "dionysos": { "fetch": { "tag": "fetchFromGitHub", @@ -15878,7 +13760,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -15898,7 +13780,7 @@ }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.5", "deps": [ @@ -15925,7 +13807,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -15943,9 +13825,9 @@ }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "7.9.3e", + "version": "7.9.3.5", "deps": [] }, "annotate": { @@ -15958,7 +13840,7 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.4", "deps": [] @@ -15973,7 +13855,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -15988,7 +13870,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -16005,7 +13887,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.4", "deps": [ @@ -16022,24 +13904,11 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] }, - "mouse+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/mouse+.el", - "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" - }, - "recipe": { - "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "sexp-move": { "fetch": { "tag": "fetchFromGitLab", @@ -16050,7 +13919,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.6", "deps": [] @@ -16065,7 +13934,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.1", "deps": [ @@ -16081,7 +13950,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [] @@ -16096,7 +13965,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [] @@ -16111,7 +13980,7 @@ }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.3", "deps": [] @@ -16126,7 +13995,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [] @@ -16141,7 +14010,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -16151,19 +14020,6 @@ "yaxception" ] }, - "cygwin-mount": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el", - "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw" - }, - "recipe": { - "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "stgit": { "fetch": { "tag": "fetchgit", @@ -16173,7 +14029,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.17.1", "deps": [] @@ -16188,7 +14044,7 @@ }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.3", "deps": [ @@ -16205,7 +14061,7 @@ }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.2", "deps": [] @@ -16220,7 +14076,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -16239,7 +14095,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -16249,19 +14105,6 @@ "s" ] }, - "highlight-tail": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el", - "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg" - }, - "recipe": { - "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "common-lisp-snippets": { "fetch": { "tag": "fetchFromGitHub", @@ -16272,7 +14115,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -16289,7 +14132,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [] @@ -16304,7 +14147,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.3", "deps": [] @@ -16319,7 +14162,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.0", "deps": [ @@ -16336,7 +14179,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.2", "deps": [] @@ -16351,7 +14194,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.3", "deps": [] @@ -16366,7 +14209,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -16384,7 +14227,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [] @@ -16398,7 +14241,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.5", "deps": [ @@ -16407,19 +14250,6 @@ "s" ] }, - "subr+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/subr+.el", - "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk" - }, - "recipe": { - "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "extend-dnd": { "fetch": { "tag": "fetchFromGitHub", @@ -16430,7 +14260,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [] @@ -16445,7 +14275,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [ @@ -16463,7 +14293,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -16481,7 +14311,7 @@ }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.14", "deps": [ @@ -16500,7 +14330,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -16520,7 +14350,7 @@ }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -16538,26 +14368,13 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ "cl-lib" ] }, - "minor-mode-hack": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el", - "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0" - }, - "recipe": { - "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "flymake-less": { "fetch": { "tag": "fetchFromGitHub", @@ -16568,7 +14385,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -16585,7 +14402,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -16607,7 +14424,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.2", "deps": [ @@ -16625,7 +14442,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -16642,7 +14459,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -16657,7 +14474,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.0", "deps": [ @@ -16665,19 +14482,6 @@ "magit" ] }, - "awk-it": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/awk-it.el", - "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw" - }, - "recipe": { - "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ace-isearch": { "fetch": { "tag": "fetchFromGitHub", @@ -16688,7 +14492,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -16708,7 +14512,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.2", "deps": [ @@ -16725,7 +14529,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -16740,7 +14544,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -16759,7 +14563,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5", "deps": [ @@ -16777,7 +14581,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [] @@ -16792,7 +14596,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [ @@ -16811,7 +14615,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -16826,24 +14630,11 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] }, - "header2": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/header2.el", - "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" - }, - "recipe": { - "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "move-dup": { "fetch": { "tag": "fetchFromGitHub", @@ -16854,7 +14645,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [] @@ -16869,7 +14660,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.1", "deps": [] @@ -16884,7 +14675,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -16901,7 +14692,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [ @@ -16918,7 +14709,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -16935,7 +14726,7 @@ }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.150707", "deps": [ @@ -16955,7 +14746,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -16975,7 +14766,7 @@ }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.13.0", "deps": [ @@ -16993,7 +14784,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -17008,7 +14799,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.8.9", "deps": [ @@ -17026,7 +14817,7 @@ }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.25.1", "deps": [ @@ -17048,24 +14839,11 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] }, - "dired+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired+.el", - "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" - }, - "recipe": { - "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "mocker": { "fetch": { "tag": "fetchFromGitHub", @@ -17076,7 +14854,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -17084,19 +14862,6 @@ "el-x" ] }, - "hide-region": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hide-region.el", - "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval" - }, - "recipe": { - "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "pungi": { "fetch": { "tag": "fetchFromGitHub", @@ -17107,7 +14872,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -17125,28 +14890,13 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.20", "deps": [ "emacs" ] }, - "browse-kill-ring+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el", - "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca" - }, - "recipe": { - "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "browse-kill-ring" - ] - }, "ace-jump-buffer": { "fetch": { "tag": "fetchFromGitHub", @@ -17157,7 +14907,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -17165,19 +14915,6 @@ "dash" ] }, - "find-dired+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/find-dired+.el", - "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2" - }, - "recipe": { - "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-octave": { "fetch": { "tag": "fetchFromGitHub", @@ -17188,7 +14925,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -17205,7 +14942,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.1", "deps": [ @@ -17218,14 +14955,14 @@ "tag": "fetchFromGitHub", "owner": "danil", "repo": "ido-describe-bindings", - "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", - "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + "sha256": "1xd86jx6j5livsdsplq5yawz1wmkflkvnjmccjjlcy8f5ncl80ax", + "rev": "2076b7e8a418008fb503357df2f0f99de3d9aa1d" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.0.5", + "version": "0.0.6", "deps": [ "dash", "ido-vertical-mode" @@ -17241,7 +14978,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] @@ -17256,7 +14993,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.8", "deps": [ @@ -17274,7 +15011,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -17292,7 +15029,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -17307,7 +15044,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ @@ -17324,7 +15061,7 @@ }, "recipe": { "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.45", "deps": [] @@ -17339,7 +15076,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.4", "deps": [ @@ -17356,26 +15093,13 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ "emacs" ] }, - "naked": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/naked.el", - "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi" - }, - "recipe": { - "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ranger": { "fetch": { "tag": "fetchFromGitHub", @@ -17386,7 +15110,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.7", "deps": [ @@ -17403,7 +15127,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -17418,7 +15142,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -17433,7 +15157,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -17450,7 +15174,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [] @@ -17465,7 +15189,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ @@ -17484,7 +15208,7 @@ }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.70", "deps": [ @@ -17501,7 +15225,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.9", "deps": [] @@ -17516,7 +15240,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -17534,7 +15258,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -17548,26 +15272,11 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.1", "deps": [] }, - "simple+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/simple+.el", - "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" - }, - "recipe": { - "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "strings" - ] - }, "weather-metno": { "fetch": { "tag": "fetchFromGitHub", @@ -17578,7 +15287,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -17596,7 +15305,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -17611,7 +15320,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.3", "deps": [ @@ -17631,7 +15340,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [] @@ -17646,7 +15355,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.59", "deps": [ @@ -17664,7 +15373,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -17679,7 +15388,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.2", "deps": [] @@ -17694,7 +15403,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -17709,7 +15418,7 @@ }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.2", "deps": [ @@ -17729,7 +15438,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -17743,31 +15452,18 @@ "tag": "fetchFromGitHub", "owner": "aaron-em", "repo": "rcirc-styles.el", - "sha256": "1y4gmrayw9aq1w8c98mpl3zlr9mc2wr2mmcs2pyhcrkncfazmxvn", - "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e" + "sha256": "1f4jy4mndf1m1j9y23mvsvlp732zd2f17khr82lbbfmsxnwzjyq5", + "rev": "47b4b289acf4c5839fa463207223a52649a3f574" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.1", + "version": "1.2", "deps": [ "cl-lib" ] }, - "key-chord": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/key-chord.el", - "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg" - }, - "recipe": { - "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "yatemplate": { "fetch": { "tag": "fetchFromGitHub", @@ -17778,7 +15474,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -17795,7 +15491,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.4", "deps": [] @@ -17810,7 +15506,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -17825,7 +15521,7 @@ }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.14.7.3.1", "deps": [ @@ -17843,7 +15539,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -17860,7 +15556,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -17868,19 +15564,6 @@ "pos-tip" ] }, - "apache-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/apache-mode.el", - "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik" - }, - "recipe": { - "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-racer": { "fetch": { "tag": "fetchFromGitHub", @@ -17891,9 +15574,9 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "auto-complete", "cl-lib", @@ -17910,7 +15593,7 @@ }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [] @@ -17925,7 +15608,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1.2", "deps": [] @@ -17935,16 +15618,17 @@ "tag": "fetchFromGitHub", "owner": "syohex", "repo": "emacs-terraform-mode", - "sha256": "0jv047dhvbfjyw6ca73gjdrqb1rf2vykvdyrp9581als8n8xyy0y", - "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140" + "sha256": "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7", + "rev": "6157690efce03ff20b16b85e2be6b0964efec2fb" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", + "version": "0.4", "deps": [ - "cl-lib" + "cl-lib", + "hcl-mode" ] }, "elpa-audit": { @@ -17957,24 +15641,11 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] }, - "ruby-block": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/ruby-block.el", - "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq" - }, - "recipe": { - "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "inline-crypt": { "fetch": { "tag": "fetchFromGitHub", @@ -17985,7 +15656,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [] @@ -18000,7 +15671,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.7.1", "deps": [ @@ -18020,7 +15691,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -18037,7 +15708,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -18056,7 +15727,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [] @@ -18071,7 +15742,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.15", "deps": [] @@ -18086,7 +15757,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.12", "deps": [ @@ -18103,7 +15774,7 @@ }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.1", "deps": [ @@ -18111,19 +15782,6 @@ "magit" ] }, - "hl-defined": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hl-defined.el", - "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y" - }, - "recipe": { - "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "diffview": { "fetch": { "tag": "fetchFromGitHub", @@ -18134,24 +15792,11 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "tree-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/tree-mode.el", - "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx" - }, - "recipe": { - "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-cscope": { "fetch": { "tag": "fetchFromGitHub", @@ -18162,7 +15807,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -18182,7 +15827,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -18197,24 +15842,11 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [] }, - "hide-lines": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hide-lines.el", - "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2" - }, - "recipe": { - "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-firefox": { "fetch": { "tag": "fetchFromGitHub", @@ -18225,7 +15857,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -18244,7 +15876,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -18259,7 +15891,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1", "deps": [] @@ -18274,7 +15906,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [ @@ -18284,19 +15916,6 @@ "let-alist" ] }, - "modeline-char": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/modeline-char.el", - "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi" - }, - "recipe": { - "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "el-autoyas": { "fetch": { "tag": "fetchFromGitHub", @@ -18307,7 +15926,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [] @@ -18322,7 +15941,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -18337,26 +15956,13 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1.2", "deps": [ "haskell-emacs" ] }, - "windata": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/windata.el", - "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" - }, - "recipe": { - "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ert-async": { "fetch": { "tag": "fetchFromGitHub", @@ -18367,7 +15973,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [] @@ -18382,7 +15988,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.21", "deps": [] @@ -18397,7 +16003,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [ @@ -18414,26 +16020,13 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ "yasnippet" ] }, - "misc-cmds": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el", - "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq" - }, - "recipe": { - "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "drupal-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -18444,7 +16037,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -18461,9 +16054,9 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.04", + "version": "0.4", "deps": [ "cl-lib", "company", @@ -18481,7 +16074,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -18498,7 +16091,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.2", "deps": [] @@ -18513,7 +16106,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.13", "deps": [ @@ -18531,7 +16124,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [ @@ -18549,7 +16142,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.5", "deps": [ @@ -18566,7 +16159,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -18583,7 +16176,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -18600,7 +16193,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1.2", "deps": [ @@ -18617,7 +16210,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -18634,7 +16227,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -18653,7 +16246,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -18670,7 +16263,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "4.0.0", "deps": [] @@ -18685,7 +16278,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -18702,7 +16295,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [ @@ -18722,7 +16315,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.0", "deps": [] @@ -18737,7 +16330,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -18752,7 +16345,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.6", "deps": [ @@ -18773,7 +16366,7 @@ }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.3", "deps": [] @@ -18788,7 +16381,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.5", "deps": [] @@ -18803,9 +16396,9 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.07", + "version": "0.7", "deps": [ "cl-lib", "helm-core" @@ -18821,7 +16414,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -18839,7 +16432,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.2", "deps": [ @@ -18847,19 +16440,6 @@ "json" ] }, - "vline": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/vline.el", - "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" - }, - "recipe": { - "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "artbollocks-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -18870,7 +16450,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.2", "deps": [] @@ -18885,7 +16465,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -18903,7 +16483,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10.0", "deps": [ @@ -18924,7 +16504,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -18939,7 +16519,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -18956,27 +16536,11 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.4.0", "deps": [] }, - "confluence": { - "fetch": { - "tag": "fetchsvn", - "url": "http://confluence-el.googlecode.com/svn/trunk/", - "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", - "rev": "170" - }, - "recipe": { - "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "xml-rpc" - ] - }, "dictionary": { "fetch": { "tag": "fetchFromGitHub", @@ -18987,24 +16551,11 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [] }, - "backup-each-save": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el", - "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7" - }, - "recipe": { - "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "cl-lib-highlight": { "fetch": { "tag": "fetchFromGitHub", @@ -19015,7 +16566,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -19032,7 +16583,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [ @@ -19050,7 +16601,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.2", "deps": [ @@ -19068,7 +16619,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.0", "deps": [ @@ -19089,7 +16640,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.15", "deps": [ @@ -19106,7 +16657,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -19124,7 +16675,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -19141,7 +16692,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -19158,7 +16709,7 @@ }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -19179,26 +16730,13 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.2", "deps": [ "esxml" ] }, - "cursor-chg": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el", - "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7" - }, - "recipe": { - "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "gitattributes-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -19209,7 +16747,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [] @@ -19219,14 +16757,14 @@ "tag": "fetchFromGitHub", "owner": "iqbalansari", "repo": "emacs-emojify", - "sha256": "03hc2c8cyn0saasw63vv75iswcxxj8xd8ni78xnccpni1i16lgwj", - "rev": "e3c269838277db29560352365b7b9ceb3db9593e" + "sha256": "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp", + "rev": "fec788f09ab1c131b89f296ebd3e73df97e96cfe" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.2", + "version": "0.3", "deps": [ "emacs", "ht", @@ -19243,7 +16781,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [ @@ -19264,7 +16802,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -19282,7 +16820,7 @@ }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -19297,7 +16835,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [ @@ -19314,27 +16852,11 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] }, - "zoom-frm": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el", - "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y" - }, - "recipe": { - "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "frame-cmds", - "frame-fns" - ] - }, "find-file-in-repository": { "fetch": { "tag": "fetchFromGitHub", @@ -19345,24 +16867,11 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [] }, - "auto-install": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/auto-install.el", - "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d" - }, - "recipe": { - "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "clojure-snippets": { "fetch": { "tag": "fetchFromGitHub", @@ -19373,7 +16882,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -19390,7 +16899,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -19405,7 +16914,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -19425,9 +16934,9 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "auto-complete", "cl-lib" @@ -19443,7 +16952,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -19461,7 +16970,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -19470,19 +16979,6 @@ "s" ] }, - "fit-frame": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/fit-frame.el", - "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1" - }, - "recipe": { - "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-make": { "fetch": { "tag": "fetchFromGitHub", @@ -19493,7 +16989,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -19510,8 +17006,8 @@ "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { - "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20150303", "deps": [ @@ -19528,7 +17024,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -19543,7 +17039,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.19", "deps": [ @@ -19562,7 +17058,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [] @@ -19577,7 +17073,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -19592,7 +17088,7 @@ }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6", "deps": [ @@ -19600,19 +17096,6 @@ "sr-speedbar" ] }, - "reveal-next": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", - "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" - }, - "recipe": { - "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "vbasense": { "fetch": { "tag": "fetchFromGitHub", @@ -19623,7 +17106,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -19632,19 +17115,6 @@ "yaxception" ] }, - "lively": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/lively.el", - "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76" - }, - "recipe": { - "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "creds": { "fetch": { "tag": "fetchFromGitHub", @@ -19655,7 +17125,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.6.1", "deps": [ @@ -19673,7 +17143,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -19691,7 +17161,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [] @@ -19706,7 +17176,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -19725,7 +17195,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.16.0", "deps": [ @@ -19745,7 +17215,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -19765,24 +17235,11 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] }, - "rfringe": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/rfringe.el", - "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" - }, - "recipe": { - "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "editorconfig": { "fetch": { "tag": "fetchFromGitHub", @@ -19793,7 +17250,7 @@ }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.1", "deps": [ @@ -19810,9 +17267,9 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.03", + "version": "0.3", "deps": [ "anzu", "evil" @@ -19828,7 +17285,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.9", "deps": [ @@ -19845,24 +17302,11 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [] }, - "lispxmp": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", - "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" - }, - "recipe": { - "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "passthword": { "fetch": { "tag": "fetchFromGitHub", @@ -19873,7 +17317,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4", "deps": [ @@ -19890,7 +17334,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10.0", "deps": [] @@ -19905,7 +17349,7 @@ }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [ @@ -19915,6 +17359,23 @@ "request" ] }, + "javadoc-lookup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "javadoc-lookup", + "sha256": "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r", + "rev": "0d5316407c9ec183040ca5c6ab71091b9444276f" + }, + "recipe": { + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, "immutant-server": { "fetch": { "tag": "fetchFromGitHub", @@ -19925,7 +17386,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.0", "deps": [] @@ -19935,14 +17396,14 @@ "tag": "fetchFromGitHub", "owner": "10sr", "repo": "git-ps1-mode-el", - "sha256": "0pkzpihn94z2xy28nwaiv7883hq604xbmhrpxz2xh8cjix81h8ha", - "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf" + "sha256": "073c7b64nv0623mcf7ipajkdxkgp5ff70zrndxr3830s1swk0nfk", + "rev": "fb86e89dc106e87d87ad2ae4d5ae0e52df528321" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.1.1", + "version": "0.2.0", "deps": [] }, "evil-textobj-anyblock": { @@ -19955,7 +17416,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [ @@ -19973,7 +17434,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -19988,7 +17449,7 @@ }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.16", "deps": [] @@ -20003,7 +17464,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -20020,7 +17481,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ @@ -20032,14 +17493,14 @@ "tag": "fetchFromGitHub", "owner": "wasamasa", "repo": "shackle", - "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", - "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + "sha256": "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y", + "rev": "4069e0cbff0d172de2cd7d588de971d8b02915c6" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.8.1", + "version": "0.9.0", "deps": [ "cl-lib" ] @@ -20054,7 +17515,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.5", "deps": [ @@ -20071,9 +17532,9 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.05", + "version": "0.5", "deps": [ "helm" ] @@ -20088,7 +17549,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [] @@ -20103,9 +17564,9 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.06", + "version": "0.6", "deps": [ "auto-complete" ] @@ -20120,7 +17581,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.10", "deps": [] @@ -20135,7 +17596,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -20152,7 +17613,7 @@ }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -20172,7 +17633,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -20189,7 +17650,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.6", "deps": [] @@ -20199,14 +17660,14 @@ "tag": "fetchFromGitHub", "owner": "stan-dev", "repo": "stan-mode", - "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", - "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + "sha256": "0s633nnaprqq0svs0v4zfk9p47izbvjwx1x2xa9b9rid69bpx54s", + "rev": "60e31cd0dedc36ee6d5ddde01c5b8cb121c2e844" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "7.1.0", + "version": "8.0.0", "deps": [ "stan-mode", "yasnippet" @@ -20222,7 +17683,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0.0", "deps": [ @@ -20241,7 +17702,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "4.7", "deps": [] @@ -20256,7 +17717,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -20275,7 +17736,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -20290,7 +17751,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.2", "deps": [ @@ -20310,7 +17771,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.1", "deps": [ @@ -20327,7 +17788,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.0", "deps": [] @@ -20342,7 +17803,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -20359,7 +17820,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.5", "deps": [ @@ -20376,14 +17837,14 @@ "tag": "fetchFromGitHub", "owner": "for-GET", "repo": "know-your-http-well", - "sha256": "077hidc464kpmgd1vz50j0pygl956llhbqy1c9mwl3r0jh86q0rg", - "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0" + "sha256": "08q43k4450kgygyvqv18gwcmmb7y9x445401048lbixc4cp6p3cg", + "rev": "e208d856ce1b036d2dc1454813c6fc81f0269def" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.2.0", + "version": "0.4.0", "deps": [] }, "homebrew-mode": { @@ -20396,7 +17857,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.2", "deps": [ @@ -20405,32 +17866,18 @@ "inf-ruby" ] }, - "caml": { - "fetch": { - "tag": "fetchsvn", - "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/", - "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw", - "rev": "16548" - }, - "recipe": { - "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "deft": { "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/deft.git", - "sha256": "2b6d9dbc07fb68c99fe36c9f0663c67f3e9d0c245c2d226d297641246396b724", - "rev": "f2735d28f50962eb8db717d231e7779bd99bf873" + "sha256": "eb5c178337c0bd6a001114aac685bb0d23167050970274203d93c1c0caece1e8", + "rev": "4001a55cf5f79cdbfa00f1405e8a4645af4acd40" }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.6", + "version": "0.7", "deps": [] }, "autodisass-java-bytecode": { @@ -20443,7 +17890,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3", "deps": [] @@ -20453,14 +17900,14 @@ "tag": "fetchFromGitHub", "owner": "masutaka", "repo": "emacs-helm-bundle-show", - "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", - "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + "sha256": "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30", + "rev": "b34523aa8a7f82ed9a1bf3643c35b65866a7877a" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.1.4", + "version": "1.1.5", "deps": [ "helm" ] @@ -20475,7 +17922,7 @@ }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -20492,7 +17939,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -20511,7 +17958,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -20527,7 +17974,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [] @@ -20542,24 +17989,11 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.4", "deps": [] }, - "savekill": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/savekill.el", - "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" - }, - "recipe": { - "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "smartrep": { "fetch": { "tag": "fetchFromGitHub", @@ -20570,7 +18004,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -20585,7 +18019,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.0", "deps": [ @@ -20605,7 +18039,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [] @@ -20615,67 +18049,14 @@ "tag": "fetchFromGitHub", "owner": "jorgenschaefer", "repo": "emacs-buttercup", - "sha256": "1xmzvl9l87adw7kqznnzhnh8l3iplbf82vmqax38bd8ykbw92jlf", - "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5" + "sha256": "1qqy8rmx7d62hf6a8j9d5gc49mvhllgyi7rfpilqiwnfpxs8gxgl", + "rev": "d7ab5923f26bb4d2af4d2489ae3e4fb27fd08dc1" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.1", - "deps": [] - }, - "maude-mode": { - "fetch": { - "tag": "fetchsvn", - "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk", - "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy", - "rev": "63" - }, - "recipe": { - "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "list-register": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/list-register.el", - "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l" - }, - "recipe": { - "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "thingatpt+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", - "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" - }, - "recipe": { - "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "hide-comnt": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el", - "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn" - }, - "recipe": { - "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", + "version": "1.2", "deps": [] }, "emms-player-mpv": { @@ -20688,7 +18069,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.7", "deps": [ @@ -20705,7 +18086,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -20723,7 +18104,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.15", "deps": [ @@ -20740,27 +18121,13 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ "emacs" ] }, - "zeitgeist": { - "fetch": { - "tag": "fetchbzr", - "url": "lp:zeitgeist-datasources", - "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", - "rev": "181" - }, - "recipe": { - "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ecukes": { "fetch": { "tag": "fetchFromGitHub", @@ -20771,7 +18138,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.15", "deps": [ @@ -20793,7 +18160,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [] @@ -20808,7 +18175,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.12.1", "deps": [] @@ -20823,7 +18190,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "3.1.9", "deps": [ @@ -20840,7 +18207,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.2", "deps": [ @@ -20858,7 +18225,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -20873,7 +18240,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -20881,19 +18248,6 @@ "dash" ] }, - "anchored-transpose": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el", - "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651" - }, - "recipe": { - "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "smeargle": { "fetch": { "tag": "fetchFromGitHub", @@ -20904,9 +18258,9 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "cl-lib", "emacs" @@ -20922,7 +18276,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -20940,7 +18294,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2015.11.29", "deps": [] @@ -20955,22 +18309,9 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", - "deps": [] - }, - "font-lock+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/font-lock+.el", - "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4" - }, - "recipe": { - "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", + "version": "0.2", "deps": [] }, "session": { @@ -20983,9 +18324,9 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "2.3a", + "version": "2.3.1", "deps": [] }, "bundler": { @@ -20998,7 +18339,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -21015,7 +18356,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [] @@ -21030,7 +18371,7 @@ }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [] @@ -21045,7 +18386,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -21062,24 +18403,11 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] }, - "speck": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/speck.el", - "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" - }, - "recipe": { - "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "lispyscript-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -21090,11 +18418,26 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.5", "deps": [] }, + "latex-math-preview": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "latex-math-preview", + "repo": "latex-math-preview", + "sha256": "0pa6b7r0671zz3gp3fp8zjjk6s590fj5rkgbg34czd82w60rd91b", + "rev": "863e68481e76121ca4653aba50e97e48fe11a052" + }, + "recipe": { + "sha256": "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.1", + "deps": [] + }, "ac-anaconda": { "fetch": { "tag": "fetchFromGitHub", @@ -21105,7 +18448,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -21114,19 +18457,6 @@ "dash" ] }, - "fliptext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/fliptext.el", - "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw" - }, - "recipe": { - "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "magit": { "fetch": { "tag": "fetchFromGitHub", @@ -21137,7 +18467,7 @@ }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [ @@ -21159,7 +18489,7 @@ }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.14", "deps": [] @@ -21174,7 +18504,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.1.2", "deps": [ @@ -21192,7 +18522,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -21207,7 +18537,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.0", "deps": [ @@ -21225,7 +18555,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -21240,7 +18570,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6", "deps": [ @@ -21257,7 +18587,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.2", "deps": [] @@ -21272,7 +18602,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.2", "deps": [ @@ -21291,7 +18621,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.1", "deps": [ @@ -21308,7 +18638,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [ @@ -21327,7 +18657,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2.8", "deps": [ @@ -21345,7 +18675,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.1", "deps": [] @@ -21360,7 +18690,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.18.0", "deps": [ @@ -21378,7 +18708,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -21396,39 +18726,11 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [] }, - "irfc": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/irfc.el", - "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" - }, - "recipe": { - "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "swbuff-x": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el", - "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5" - }, - "recipe": { - "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "swbuff" - ] - }, "sound-wav": { "fetch": { "tag": "fetchFromGitHub", @@ -21439,9 +18741,9 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.01", + "version": "0.1", "deps": [ "cl-lib", "deferred" @@ -21457,7 +18759,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -21470,14 +18772,14 @@ "tag": "fetchFromGitHub", "owner": "skeeto", "repo": "elfeed", - "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", - "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "1.3.0", + "version": "1.4.0", "deps": [ "elfeed", "emacs", @@ -21494,7 +18796,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [ @@ -21512,7 +18814,7 @@ }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -21530,7 +18832,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.1", "deps": [] @@ -21545,7 +18847,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -21560,7 +18862,7 @@ }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [ @@ -21579,7 +18881,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.6.0", "deps": [ @@ -21597,7 +18899,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.0", "deps": [ @@ -21614,7 +18916,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -21629,7 +18931,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -21647,7 +18949,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -21662,37 +18964,11 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.20", "deps": [] }, - "strings": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/strings.el", - "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" - }, - "recipe": { - "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "iy-go-to-char": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el", - "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi" - }, - "recipe": { - "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "git-gutter-fringe": { "fetch": { "tag": "fetchFromGitHub", @@ -21703,7 +18979,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.22", "deps": [ @@ -21723,7 +18999,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.6.10", "deps": [] @@ -21738,7 +19014,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.4", "deps": [] @@ -21753,7 +19029,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -21770,7 +19046,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7.0", "deps": [] @@ -21784,7 +19060,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -21799,7 +19075,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] @@ -21814,7 +19090,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [ @@ -21831,7 +19107,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20140225.944", "deps": [] @@ -21846,7 +19122,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.3", "deps": [] @@ -21861,7 +19137,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.11", "deps": [] @@ -21876,7 +19152,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -21886,16 +19162,17 @@ "tag": "fetchFromGitHub", "owner": "ancane", "repo": "scala-outline-popup", - "sha256": "1sq0p0na0yxkipv6fv4wcrfpl1k9sb8nyqmwg0ql2i7gwlpiqrx9", - "rev": "f950e026ffbf471046f02edea56f0d329cca0e01" + "sha256": "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik", + "rev": "c79a06fb99cbf6f29d94da77a8a22cfafb15a1b6" }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.3.4", + "version": "0.4", "deps": [ "dash", + "flx-ido", "popup", "scala-mode2" ] @@ -21910,7 +19187,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -21925,7 +19202,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -21948,7 +19225,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20151025", "deps": [] @@ -21963,7 +19240,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -21980,7 +19257,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -21999,9 +19276,9 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [] }, "ghc-imported-from": { @@ -22014,7 +19291,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.2", "deps": [ @@ -22031,7 +19308,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.0", "deps": [ @@ -22049,7 +19326,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [] @@ -22064,7 +19341,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -22073,19 +19350,6 @@ "yaxception" ] }, - "files+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/files+.el", - "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v" - }, - "recipe": { - "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "x86-lookup": { "fetch": { "tag": "fetchFromGitHub", @@ -22096,7 +19360,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -22114,7 +19378,7 @@ }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ @@ -22131,7 +19395,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.11", "deps": [ @@ -22149,7 +19413,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [ @@ -22166,7 +19430,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [] @@ -22181,7 +19445,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -22196,7 +19460,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.2", "deps": [ @@ -22213,27 +19477,11 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] }, - "clang-format": { - "fetch": { - "tag": "fetchsvn", - "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", - "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "256039" - }, - "recipe": { - "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "cl-lib" - ] - }, "yagist": { "fetch": { "tag": "fetchFromGitHub", @@ -22244,7 +19492,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8.12", "deps": [ @@ -22261,7 +19509,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [] @@ -22276,7 +19524,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -22296,7 +19544,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.3", "deps": [ @@ -22314,7 +19562,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5.0", "deps": [] @@ -22329,7 +19577,7 @@ }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.10", "deps": [] @@ -22344,7 +19592,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.3", "deps": [ @@ -22362,7 +19610,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ @@ -22379,7 +19627,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [] @@ -22394,7 +19642,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [] @@ -22409,7 +19657,7 @@ }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -22424,7 +19672,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.3", "deps": [ @@ -22442,23 +19690,27 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] }, - "faces+": { + "import-js": { "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/faces+.el", - "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + "tag": "fetchFromGitHub", + "owner": "trotzig", + "repo": "import-js", + "sha256": "029dsxll790f76mdjwjgx4ccsh08hq2haq6l7xj2y0rzi81a51an", + "rev": "92f298873e1c2a6d79c6aa936173db36b39029b7" }, "recipe": { - "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "sha256": "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "nil", - "deps": [] + "version": "0.0.3", + "deps": [ + "emacs" + ] }, "rvm": { "fetch": { @@ -22470,7 +19722,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.0", "deps": [] @@ -22485,7 +19737,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -22500,7 +19752,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -22517,26 +19769,13 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.2", "deps": [ "emacs" ] }, - "facemenu+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", - "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" - }, - "recipe": { - "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "narrow-reindent": { "fetch": { "tag": "fetchFromGitHub", @@ -22547,7 +19786,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.0", "deps": [ @@ -22564,7 +19803,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -22581,7 +19820,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.6", "deps": [ @@ -22604,7 +19843,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [ @@ -22621,7 +19860,7 @@ }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -22640,25 +19879,11 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.7", "deps": [] }, - "matlab-mode": { - "fetch": { - "tag": "fetchcvs", - "module": "matlab-emacs", - "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", - "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" - }, - "recipe": { - "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "org-time-budgets": { "fetch": { "tag": "fetchFromGitHub", @@ -22669,7 +19894,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.1", "deps": [ @@ -22687,27 +19912,11 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.4", "deps": [] }, - "dirtree": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dirtree.el", - "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" - }, - "recipe": { - "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [ - "tree-mode", - "windata" - ] - }, "test-case-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -22718,7 +19927,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0", "deps": [ @@ -22735,7 +19944,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.4", "deps": [ @@ -22752,37 +19961,11 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [] }, - "ucs-cmds": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el", - "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4" - }, - "recipe": { - "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "dot-mode": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dot-mode.el", - "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk" - }, - "recipe": { - "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ido-grid-mode": { "fetch": { "tag": "fetchFromGitHub", @@ -22793,7 +19976,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.5", "deps": [ @@ -22810,7 +19993,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.4", "deps": [ @@ -22831,7 +20014,7 @@ }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9.0", "deps": [ @@ -22849,7 +20032,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -22867,7 +20050,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.2", "deps": [ @@ -22885,7 +20068,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -22900,24 +20083,11 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1.0", "deps": [] }, - "column-marker": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/column-marker.el", - "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9" - }, - "recipe": { - "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "magit-popup": { "fetch": { "tag": "fetchFromGitHub", @@ -22928,7 +20098,7 @@ }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [ @@ -22947,7 +20117,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [] @@ -22962,7 +20132,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.5", "deps": [ @@ -22971,19 +20141,6 @@ "json" ] }, - "igrep": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/igrep.el", - "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" - }, - "recipe": { - "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "gnome-calendar": { "fetch": { "tag": "fetchFromGitHub", @@ -22994,7 +20151,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2", "deps": [] @@ -23009,7 +20166,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -23027,7 +20184,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -23044,24 +20201,11 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] }, - "imenu+": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/imenu+.el", - "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" - }, - "recipe": { - "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "phi-search-mc": { "fetch": { "tag": "fetchFromGitHub", @@ -23072,7 +20216,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.2.1", "deps": [ @@ -23090,7 +20234,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -23105,7 +20249,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.5.1", "deps": [] @@ -23120,7 +20264,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.5", "deps": [ @@ -23137,7 +20281,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.2", "deps": [ @@ -23155,7 +20299,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.1", "deps": [ @@ -23174,7 +20318,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.3.1", "deps": [ @@ -23182,19 +20326,6 @@ "yasnippet" ] }, - "summarye": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/summarye.el", - "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py" - }, - "recipe": { - "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "helm-ls-git": { "fetch": { "tag": "fetchFromGitHub", @@ -23205,7 +20336,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.8.0", "deps": [ @@ -23222,7 +20353,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.4.5", "deps": [] @@ -23237,7 +20368,7 @@ }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.23.4", "deps": [] @@ -23252,7 +20383,7 @@ }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.10.0", "deps": [ @@ -23264,32 +20395,6 @@ "spinner" ] }, - "sudo-ext": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el", - "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2" - }, - "recipe": { - "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, - "levenshtein": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", - "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" - }, - "recipe": { - "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "ac-slime": { "fetch": { "tag": "fetchFromGitHub", @@ -23300,7 +20405,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.8", "deps": [ @@ -23319,24 +20424,11 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.7", "deps": [] }, - "etags-select": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/etags-select.el", - "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb" - }, - "recipe": { - "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "traad-autocomplete": { "fetch": { "tag": "fetchFromGitHub", @@ -23347,7 +20439,7 @@ }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4", "deps": [] @@ -23362,7 +20454,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -23384,7 +20476,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.3.1", "deps": [ @@ -23402,7 +20494,7 @@ }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "5.0.1", "deps": [ @@ -23419,7 +20511,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "20130521", "deps": [] @@ -23434,7 +20526,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.4.0", "deps": [ @@ -23452,7 +20544,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3", "deps": [ @@ -23471,7 +20563,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.2.1", "deps": [ @@ -23489,7 +20581,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -23508,7 +20600,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [ @@ -23527,7 +20619,7 @@ }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -23541,7 +20633,7 @@ }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "2.0", "deps": [] @@ -23556,7 +20648,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [ @@ -23574,7 +20666,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.3.0", "deps": [ @@ -23594,7 +20686,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1", "deps": [] @@ -23609,7 +20701,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.1", "deps": [] @@ -23624,9 +20716,9 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.02", + "version": "0.2", "deps": [ "cl-lib", "emacs" @@ -23642,26 +20734,13 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "1.0.0", "deps": [ "emacs" ] }, - "dired-details": { - "fetch": { - "tag": "fetchurl", - "url": "http://www.emacswiki.org/emacs/download/dired-details.el", - "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza" - }, - "recipe": { - "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" - }, - "version": "nil", - "deps": [] - }, "org-link-travis": { "fetch": { "tag": "fetchFromGitHub", @@ -23672,7 +20751,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.0.1", "deps": [ @@ -23689,7 +20768,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.1.0", "deps": [] @@ -23704,7 +20783,7 @@ }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, "version": "0.9", "deps": [ @@ -23724,9 +20803,9 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" }, - "version": "0.04", + "version": "0.4", "deps": [ "coffee-mode" ] From 688c005608146110bb0ad45c5d7d0734a82d4f07 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 27 Dec 2015 10:37:02 -0600 Subject: [PATCH 638/707] melpaBuild: update package-build.el --- pkgs/build-support/emacs/melpa.nix | 4 ++-- pkgs/build-support/emacs/melpa2nix.el | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/emacs/melpa.nix b/pkgs/build-support/emacs/melpa.nix index 5eaa995b412..a1f10ad3143 100644 --- a/pkgs/build-support/emacs/melpa.nix +++ b/pkgs/build-support/emacs/melpa.nix @@ -22,8 +22,8 @@ with lib; let packageBuild = fetchurl { - url = https://raw.githubusercontent.com/milkypostman/melpa/12a862e5c5c62ce627dab83d7cf2cca6e8b56c47/package-build.el; - sha256 = "1nviyyprypz7nmam9rwli4yv3kxh170glfbznryrp4czxkrjjdhk"; + url = https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/package-build.el; + sha256 = "1biwg2pqmmdz5iwqbjdszljazqymvgyyjcnc255nr6qz8mhnx67j"; }; fname = "${pname}-${version}"; diff --git a/pkgs/build-support/emacs/melpa2nix.el b/pkgs/build-support/emacs/melpa2nix.el index d54e9d21e25..858ffd7593b 100644 --- a/pkgs/build-support/emacs/melpa2nix.el +++ b/pkgs/build-support/emacs/melpa2nix.el @@ -23,14 +23,14 @@ (defun melpa2nix-package-build-archive (name version files) "Build a package archive for package NAME." - (pb/message "\n;;; %s\n" name) + (package-build--message "\n;;; %s\n" name) (let* ((start-time (current-time)) (archive-entry (package-build-package name version files package-build-working-dir package-build-archive-dir))) - - (pb/message "Built in %.3fs, finished at %s" - (time-to-seconds (time-since start-time)) - (current-time-string)))) + + (package-build--message "Built in %.3fs, finished at %s" + (time-to-seconds (time-since start-time)) + (current-time-string)))) From 00aac09d24343b7beb8a07cbd5affdb110199c67 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 27 Dec 2015 11:05:53 -0600 Subject: [PATCH 639/707] melpaPackages: actually build latest packages --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index d7e894c672a..891bb5df567 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -18,7 +18,7 @@ let inherit (lib) makeScope mapAttrs; - json = builtins.readFile ./melpa-stable-packages.json; + json = builtins.readFile ./melpa-packages.json; manifest = builtins.fromJSON json; mkPackage = self: name: recipe: From 3570bc30affa9b72c67e2f56d5de1cf9d9c42b7e Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 27 Dec 2015 18:42:27 +0100 Subject: [PATCH 640/707] lilypond: add a workaround for fontforge version detection A part of Fontforge store path was taken as a part of the version by configure script leading to a version check failure. --- pkgs/misc/lilypond/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 21df615d661..8b2be0914e3 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -25,6 +25,11 @@ stdenv.mkDerivation rec{ preConfigure='' sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl + + # At some point our fontforge had path 2n…-fontforge-2015… and it + # confused the version detection… + sed -re 's%("[$]exe" --version .*)([|\\] *$)%\1 | sed -re "s@/nix/store/[a-z0-9]{32}-@@" \2%' \ + -i configure ''; postInstall = '' From b88abaaf5e6fbf525e29357732b1f28648b5bad2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 18:59:07 +0100 Subject: [PATCH 641/707] wireless-regdb: init at 2015-12-14 --- pkgs/data/misc/wireless-regdb/default.nix | 28 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/data/misc/wireless-regdb/default.nix diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix new file mode 100644 index 00000000000..58328e9289c --- /dev/null +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchgit }: + +let version = "2015-12-14"; in +stdenv.mkDerivation { + name = "wireless-regdb-${version}"; + + src = fetchgit { + sha256 = "1ldfcxn3mdb104czy78b7nj1clsbfp8fc6mshix98zq0bg4k7rsm"; + url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git; + rev = "refs/tags/master-${version}"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=" + ]; + + meta = with stdenv.lib; { + inherit version; + description = "Wireless regulatory database for CRDA"; + homepage = https://git.kernel.org/cgit/linux/kernel/git/sforshee/wireless-regdb.git/; + license = licenses.free; + platforms = platforms.all; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 88dc7faced3..eac8799e021 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10934,6 +10934,8 @@ let vistafonts = callPackage ../data/fonts/vista-fonts { }; + wireless-regdb = callPackage ../data/misc/wireless-regdb { }; + wqy_microhei = callPackage ../data/fonts/wqy-microhei { }; wqy_zenhei = callPackage ../data/fonts/wqy-zenhei { }; From ee0fae473cea2ded7d3ea59967d3c751605e9939 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 18:53:01 +0100 Subject: [PATCH 642/707] crda: init at 3.18 --- pkgs/os-specific/linux/crda/default.nix | 50 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 52 insertions(+) create mode 100644 pkgs/os-specific/linux/crda/default.nix diff --git a/pkgs/os-specific/linux/crda/default.nix b/pkgs/os-specific/linux/crda/default.nix new file mode 100644 index 00000000000..542fcae562d --- /dev/null +++ b/pkgs/os-specific/linux/crda/default.nix @@ -0,0 +1,50 @@ +{ stdenv, fetchurl, libgcrypt, libnl, pkgconfig, pythonPackages, wireless-regdb }: + +let version = "3.18"; in +stdenv.mkDerivation { + name = "crda-${version}"; + + src = fetchurl { + sha256 = "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"; + url = "http://kernel.org/pub/software/network/crda/crda-${version}.tar.xz"; + }; + + buildInputs = [ libgcrypt libnl ]; + nativeBuildInputs = [ + pkgconfig pythonPackages.m2crypto pythonPackages.python + ]; + + postPatch = '' + patchShebangs utils/ + substituteInPlace Makefile --replace ldconfig true + sed -i crda.c \ + -e "/\/usr\/.*\/regulatory.bin/d" \ + -e "s|/lib/crda|${wireless-regdb}/lib/crda|g" + ''; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=" + "REG_BIN=${wireless-regdb}/lib/crda/regulatory.bin" + ]; + + buildFlags = [ "all_noverify" ]; + enableParallelBuilding = true; + + doCheck = true; + checkTarget = "verify"; + + meta = with stdenv.lib; { + inherit version; + description = "Linux wireless Central Regulatory Domain Agent"; + longDescription = '' + CRDA acts as the udev helper for communication between the kernel and + userspace for regulatory compliance. It relies on nl80211 for communication. + CRDA is intended to be run only through udev communication from the kernel. + ''; + homepage = http://drvbp1.linux-foundation.org/~mcgrof/rel-html/crda/; + license = licenses.free; # "copyleft-next 0.3.0", as yet without a web site + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index eac8799e021..092f03d777e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9717,6 +9717,8 @@ let cramfsswap = callPackage ../os-specific/linux/cramfsswap { }; + crda = callPackage ../os-specific/linux/crda { }; + darwin = let cmdline = callPackage ../os-specific/darwin/command-line-tools {}; apple-source-releases = callPackage ../os-specific/darwin/apple-source-releases { }; From 7c173028485f6edea118d3d1c16a31e5bec3fa7c Mon Sep 17 00:00:00 2001 From: Arda Xi Date: Sun, 27 Dec 2015 20:56:52 +0100 Subject: [PATCH 643/707] Make gpgkey2ssh use absolute path to gpg2, fixes #11912 --- pkgs/tools/security/gnupg/20.nix | 6 +++++- pkgs/tools/security/gnupg/21.nix | 4 ++++ pkgs/tools/security/gnupg/gpgkey2ssh-20.patch | 14 ++++++++++++++ pkgs/tools/security/gnupg/gpgkey2ssh-21.patch | 13 +++++++++++++ 4 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/security/gnupg/gpgkey2ssh-20.patch create mode 100644 pkgs/tools/security/gnupg/gpgkey2ssh-21.patch diff --git a/pkgs/tools/security/gnupg/20.nix b/pkgs/tools/security/gnupg/20.nix index 36c877620f1..117fc41c1ab 100644 --- a/pkgs/tools/security/gnupg/20.nix +++ b/pkgs/tools/security/gnupg/20.nix @@ -23,7 +23,9 @@ stdenv.mkDerivation rec { = [ readline zlib libgpgerror libgcrypt libassuan libksba pth openldap bzip2 libusb curl libiconv ]; - patchPhase = '' + patches = [ ./gpgkey2ssh-20.patch ]; + + prePatch = '' find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i '' + stdenv.lib.optionalString stdenv.isLinux '' sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c @@ -35,6 +37,8 @@ stdenv.mkDerivation rec { configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry"; + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check"; doCheck = true; diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index 9390207e14a..bafcd88f1b9 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -20,10 +20,14 @@ stdenv.mkDerivation rec { sha256 = "1ybcsazjm21i2ys1wh49cz4azmqz7ghx5rb6hm4gm93i2zc5igck"; }; + patches = [ ./gpgkey2ssh-21.patch ]; + postPatch = stdenv.lib.optionalString stdenv.isLinux '' sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c ''; #" fix Emacs syntax highlighting :-( + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + buildInputs = [ pkgconfig libgcrypt libassuan libksba libiconv npth autoreconfHook gettext texinfo diff --git a/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch new file mode 100644 index 00000000000..b536a4fe50e --- /dev/null +++ b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch @@ -0,0 +1,14 @@ +diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c +index 903fb5b..d5611dc 100644 +--- a/tools/gpgkey2ssh.c ++++ b/tools/gpgkey2ssh.c +@@ -266,7 +266,7 @@ main (int argc, char **argv) + keyid = argv[1]; + + ret = asprintf (&command, +- "gpg --list-keys --with-colons --with-key-data '%s'", ++ "@out@/bin/gpg2 --list-keys --with-colons --with-key-data '%s'", + keyid); + assert (ret > 0); + + diff --git a/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch b/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch new file mode 100644 index 00000000000..198869423e5 --- /dev/null +++ b/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch @@ -0,0 +1,13 @@ +diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c +index f12c5f4..2e3f2ac 100644 +--- a/tools/gpgkey2ssh.c ++++ b/tools/gpgkey2ssh.c +@@ -281,7 +281,7 @@ main (int argc, char **argv) + keyid = argv[1]; + + asprintf (&command, +- "gpg2 --list-keys --with-colons --with-key-data '%s'", ++ "@out@/bin/gpg2 --list-keys --with-colons --with-key-data '%s'", + keyid); + if (! command) + { From 0cfa4fdbd4eb2330f18cd10723d2c5e6a5f8eac5 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 27 Dec 2015 19:55:44 +0000 Subject: [PATCH 644/707] strace: 4.10 -> 4.11 --- pkgs/development/tools/misc/strace/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index 461e3c25a36..0232342bf84 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, perl, libunwind }: stdenv.mkDerivation rec { - name = "strace-4.10"; + name = "strace-4.11"; src = fetchurl { url = "mirror://sourceforge/strace/${name}.tar.xz"; - sha256 = "1qhfwijxvblwdvvm70f8bhzs4fpbzqmwwbkfp636brzrds30s676"; + sha256 = "0ll1rpjs441jac2689nga74qb49x1zkg8a2b7rzzchgrv1n5ysp8"; }; nativeBuildInputs = [ perl ]; @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { description = "A system call tracer for Linux"; license = licenses.bsd3; platforms = platforms.linux; - maintainers = with maintainers; [ mornfall jgeerds ]; + maintainers = with maintainers; [ mornfall jgeerds globin ]; }; } From f50a719a4d163991dcac200a38ef16d07f0b6318 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 19:04:17 +0100 Subject: [PATCH 645/707] wireless-regdb: licenses.{free -> isc}, apparently --- pkgs/data/misc/wireless-regdb/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix index 58328e9289c..e8afb25b8b3 100644 --- a/pkgs/data/misc/wireless-regdb/default.nix +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { inherit version; description = "Wireless regulatory database for CRDA"; homepage = https://git.kernel.org/cgit/linux/kernel/git/sforshee/wireless-regdb.git/; - license = licenses.free; + license = licenses.isc; platforms = platforms.all; maintainers = with maintainers; [ nckx ]; }; From 330b89c68b17f24cbe1f1f4a4b53e2e687715bbd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 20:03:47 +0100 Subject: [PATCH 646/707] crda: use PREFIX instead of DESTDIR Otherwise, `$out/lib/udev/rules.d/85-regulatory.rules` will still refer to a non-existent `/sbin/crda`. --- pkgs/os-specific/linux/crda/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/crda/default.nix b/pkgs/os-specific/linux/crda/default.nix index 542fcae562d..488a6ce1a0f 100644 --- a/pkgs/os-specific/linux/crda/default.nix +++ b/pkgs/os-specific/linux/crda/default.nix @@ -23,8 +23,9 @@ stdenv.mkDerivation { ''; makeFlags = [ - "DESTDIR=$(out)" - "PREFIX=" + "PREFIX=$(out)" + "SBINDIR=$(out)/bin/" + "UDEV_RULE_DIR=$(out)/lib/udev/rules.d/" "REG_BIN=${wireless-regdb}/lib/crda/regulatory.bin" ]; From 566c06c5a77b20a22745f23917511eef7a600901 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 27 Dec 2015 21:30:11 +0000 Subject: [PATCH 647/707] apacheHttpd: 2.4.17 -> 2.4.18 --- pkgs/servers/http/apache-httpd/2.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index aa8dfdd45f5..ddb1ec443a0 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -14,12 +14,12 @@ assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; stdenv.mkDerivation rec { - version = "2.4.17"; + version = "2.4.18"; name = "apache-httpd-${version}"; src = fetchurl { url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; - sha256 = "165p5qgwyk1dwjypgcx5vb47xadiszs3dw28n2axplw1xifh67ik"; + sha256 = "0k7xm6ldzvakzq39nw6b39190ihlkc28all2gkvckxa1vr8b0i06"; }; buildInputs = [perl] ++ From a219778acc53783411306cdcb9e2cd0d4cbcecc9 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 27 Dec 2015 21:39:19 +0000 Subject: [PATCH 648/707] dhcpcd: 6.9.3 -> 6.9.4 --- pkgs/tools/networking/dhcpcd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/dhcpcd/default.nix b/pkgs/tools/networking/dhcpcd/default.nix index dfe2de9b96d..856f75f0633 100644 --- a/pkgs/tools/networking/dhcpcd/default.nix +++ b/pkgs/tools/networking/dhcpcd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, udev }: stdenv.mkDerivation rec { - name = "dhcpcd-6.9.3"; + name = "dhcpcd-6.9.4"; src = fetchurl { url = "mirror://roy/dhcpcd/${name}.tar.xz"; - sha256 = "0lxfis066ijjlqha2mf49v8mydmnnjb6nijihfn65ylmsqg4g2b0"; + sha256 = "184vpid8m5175xa2nkh6mmvk8b6z4isfm6nvf4g8l5ggfdsgzwy3"; }; buildInputs = [ pkgconfig udev ]; From 4ef9b7558f9f61910c9b39073cbef8883aa5ede1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 27 Dec 2015 22:56:42 +0100 Subject: [PATCH 649/707] saneBackendsGit: 2015-12-20 -> 2015-12-27 --- pkgs/applications/graphics/sane/backends/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index 7a76d8804d6..6c6838daef1 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2015-12-20"; + version = "2015-12-27"; src = fetchgit { - sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed"; - rev = "5136e664b8608604f54a2cc1d466019922b311e6"; + sha256 = "4bf6e8815d2edbbc75255928d0fb030639a9fea9a5aa953dcf1f00e167eff527"; + rev = "cadb4b0fff00540159625320416e5601c4704627"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) From bb223bc3ad0b25ed53854e2131b56460d5fba9b9 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 27 Dec 2015 22:11:59 +0000 Subject: [PATCH 650/707] libressl_2_2: 2.2.4 -> 2.2.5 --- pkgs/development/libraries/libressl/2.2.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index fd18c7f5652..89e7e6507e4 100644 --- a/pkgs/development/libraries/libressl/2.2.nix +++ b/pkgs/development/libraries/libressl/2.2.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.2.4"; + version = "2.2.5"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0zlsxw366n438dc14zqnim6fc5vh1574jj95hv1sym46prcrhh3b"; + sha256 = "0jwidi7fafcdh5qml72dx0ad0kfsk94qxzm29i7wd3cx8v8dxjp3"; }; enableParallelBuilding = true; @@ -15,6 +15,6 @@ stdenv.mkDerivation rec { description = "Free TLS/SSL implementation"; homepage = "http://www.libressl.org"; platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice wkennington fpletz ]; + maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; }; } From c0aada1e1fc8ae2f7e0fe51f7e4938a03a055d52 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 27 Sep 2015 07:02:10 +0300 Subject: [PATCH 651/707] rpm: Hack fix finding libpython when compiling for Python 3 Currently, building RPM with `python = python3` causes this: checking for a Python interpreter with version >= 2.6... python3 checking for python3... /nix/store/dykqxnrwiz9drlcv2wy8lpvl3xvklx0g-python3-3.4.3/bin/python3 checking for python3 version... 3.4 checking for Python.h... yes checking for library containing Py_Main... no configure: error: missing python library That comes from this snippet in configure.ac: AC_SEARCH_LIBS([Py_Main],[python${PYTHON_VERSION} python],[ WITH_PYTHON_LIB="$ac_res" ],[AC_MSG_ERROR([missing python library]) ]) So it's looking for (e.g) `libpython3.4.so` wheras we have `libpython3.4m.so`. Patching the configure script to match seems to make that work (although I don't really understand what the heck is this 'm' business about). --- pkgs/tools/package-management/rpm/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index ef7b9995296..7b5281220fa 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -16,6 +16,11 @@ stdenv.mkDerivation rec { NIX_CFLAGS_LINK = "-L${elfutils}/lib"; + postPatch = '' + # For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here + substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} + ''; + configureFlags = "--with-external-db --without-lua --enable-python"; meta = with stdenv.lib; { From f5b6ced7ec77303acadc85dbe3f112dec665c4ea Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 27 Sep 2015 07:05:27 +0300 Subject: [PATCH 652/707] pythonPackages.tlsh: init at 3.4.1 This C extension is a bit funky since it needs cmake to be run to generate some header file before it can be built. --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 45b8aec62fd..62e820c782b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21111,6 +21111,29 @@ in modules // { }; }; + tlsh = buildPythonPackage rec { + name = "tlsh-3.4.1"; + src = pkgs.fetchFromGitHub { + owner = "trendmicro"; + repo = "tlsh"; + rev = "b319aed6a270cc765347296b442820c495018833"; + sha256 = "08ysniihvidcyvh9zip64wwvj7mvxvsqs60ci8cxj28f1ip0n8wg"; + }; + buildInputs = with pkgs; [ cmake ]; + preConfigure = '' + mkdir build + cd build + cmake .. + cd ../py_ext + ''; + meta = with stdenv.lib; { + description = "Trend Micro Locality Sensitive Hash"; + homepage = https://github.com/trendmicro/tlsh; + license = licenses.asl20; + platforms = platforms.linux; + }; + }; + toposort = buildPythonPackage rec { name = "toposort-${version}"; version = "1.1"; From 7e85fdc6df8bd280bb01a50285ae35e3afa9bc85 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 27 Sep 2015 07:10:25 +0300 Subject: [PATCH 653/707] diffoscope: 29 -> 44 Relevant changes: - Python version switched to Python 3 - ssdeep library got replaced with tlsh - the 'magic' Python package got replaced with a different one - Minor build system improvements == less work for us --- pkgs/tools/misc/diffoscope/default.nix | 15 ++++++--------- pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index e6c672d8344..f91cd143633 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -5,33 +5,30 @@ pythonPackages.buildPythonPackage rec { name = "diffoscope-${version}"; - version = "29"; + version = "44"; namePrefix = ""; src = fetchgit { url = "git://anonscm.debian.org/reproducible/diffoscope.git"; rev = "refs/tags/${version}"; - sha256 = "0q7hx2wm9gvzl1f7iilr9pjwpv8i2anscqan7cgk80v90s2pakrf"; + sha256 = "1sisdmh1bl62b16yfjy9mxxdfzhskrabp0l3pl1kxn7db0c4vpac"; }; postPatch = '' - # Different pkg name in debian - sed -i setup.py -e "s@'magic'@'Magic-file-extensions'@" - # Upstream doesn't provide a PKG-INFO file - sed -i setup.py -e "/'rpm',/d" + sed -i setup.py -e "/'rpm-python',/d" ''; - # Still missing these tools: ghc javap showttf sng - propagatedBuildInputs = (with pythonPackages; [ debian libarchive-c magic ssdeep ]) ++ + # Still missing these tools: enjarify ghc img2txt javap otool(maybe OS X only) ppudump showttf sng + # Also these libraries: python3-guestfs + propagatedBuildInputs = (with pythonPackages; [ debian libarchive-c python_magic tlsh ]) ++ [ acl binutils bzip2 cdrkit cpio diffutils e2fsprogs file gettext gnupg gzip pdftk poppler_utils rpm sqlite squashfsTools unzip vim xz ]; doCheck = false; # Calls 'mknod' in squashfs tests, which needs root postInstall = '' - mv $out/bin/diffoscope.py $out/bin/diffoscope mkdir -p $out/share/man/man1 ${docutils}/bin/rst2man.py debian/diffoscope.1.rst $out/share/man/man1/diffoscope.1 ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..03709f72803 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1285,7 +1285,10 @@ let di = callPackage ../tools/system/di { }; - diffoscope = callPackage ../tools/misc/diffoscope { }; + diffoscope = callPackage ../tools/misc/diffoscope { + pythonPackages = python3Packages; + rpm = rpm.override { python = python3; }; + }; diffstat = callPackage ../tools/text/diffstat { }; From eae60d2f40cc561c83fe30da221fa7964aa9969f Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 23 Dec 2015 23:40:59 +0200 Subject: [PATCH 654/707] diffoscope: Add more tools to the runtime path --- pkgs/tools/misc/diffoscope/default.nix | 10 +++++----- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index f91cd143633..7fe21e8b347 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, pythonPackages, docutils -, acl, binutils, bzip2, cdrkit, cpio, diffutils, e2fsprogs, file, gettext -, gnupg, gzip, pdftk, poppler_utils, rpm, sqlite, squashfsTools, unzip, vim, xz +, acl, binutils, bzip2, cbfstool, cdrkit, cpio, diffutils, e2fsprogs, file, fpc, gettext, ghc, gnupg1 +, gzip, jdk, libcaca, mono, pdftk, poppler_utils, rpm, sng, sqlite, squashfsTools, unzip, vim, xz }: pythonPackages.buildPythonPackage rec { @@ -20,11 +20,11 @@ pythonPackages.buildPythonPackage rec { sed -i setup.py -e "/'rpm-python',/d" ''; - # Still missing these tools: enjarify ghc img2txt javap otool(maybe OS X only) ppudump showttf sng + # Still missing these tools: enjarify otool(maybe OS X only) showttf # Also these libraries: python3-guestfs propagatedBuildInputs = (with pythonPackages; [ debian libarchive-c python_magic tlsh ]) ++ - [ acl binutils bzip2 cdrkit cpio diffutils e2fsprogs file gettext gnupg - gzip pdftk poppler_utils rpm sqlite squashfsTools unzip vim xz ]; + [ acl binutils bzip2 cbfstool cdrkit cpio diffutils e2fsprogs file fpc gettext ghc gnupg1 + gzip jdk libcaca mono pdftk poppler_utils rpm sng sqlite squashfsTools unzip vim xz ]; doCheck = false; # Calls 'mknod' in squashfs tests, which needs root diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03709f72803..3dd1d8e74bf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1286,6 +1286,7 @@ let di = callPackage ../tools/system/di { }; diffoscope = callPackage ../tools/misc/diffoscope { + jdk = jdk7; pythonPackages = python3Packages; rpm = rpm.override { python = python3; }; }; From 7195e6e14f406b1de378d015a40911a2b195b8c0 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sun, 27 Dec 2015 22:43:12 -0500 Subject: [PATCH 655/707] goPackages.hugo: init at 0.15 Also had to add tons of other packages used as dependencies --- pkgs/top-level/go-packages.nix | 194 +++++++++++++++++++++++++++++++-- 1 file changed, 183 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8357971d0f9..e1825ace20d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -166,6 +166,14 @@ let ## THIRD PARTY + ace = buildFromGitHub { + rev = "899eede6af0d99400b2c8886d86fd8d351074d37"; + owner = "yosssi"; + repo = "ace"; + sha256 = "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5"; + buildInputs = [ gohtml ]; + }; + adapted = buildFromGitHub { rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; date = "2015-06-03"; @@ -175,6 +183,14 @@ let propagatedBuildInputs = [ sys ]; }; + afero = buildFromGitHub { + rev = "90b5a9bd18a72dbf3e27160fc47acfaac6c08389"; + owner = "spf13"; + repo = "afero"; + sha256 = "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k"; + propagatedBuildInputs = [ text ]; + }; + airbrake-go = buildFromGitHub { rev = "5b5e269e1bc398d43f67e43dafff3414a59cd5a2"; owner = "tobi"; @@ -182,6 +198,13 @@ let sha256 = "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz"; }; + amber = buildFromGitHub { + rev = "144da19a9994994c069f0693294a66dd310e14a4"; + owner = "eknkc"; + repo = "amber"; + sha256 = "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk"; + }; + ansicolor = buildFromGitHub { rev = "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b"; owner = "shiena"; @@ -269,6 +292,14 @@ let sha256 = "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3"; }; + blackfriday = buildFromGitHub { + rev = "d18b67ae0afd61dae240896eae1785f00709aa31"; + owner = "russross"; + repo = "blackfriday"; + sha256 = "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf"; + propagatedBuildInputs = [ sanitized_anchor_name ]; + }; + bolt = buildFromGitHub { rev = "957d850b5158a4eebf915476058e720f43459584"; owner = "boltdb"; @@ -315,6 +346,14 @@ let }; }; + cast = buildFromGitHub { + rev = "ee815aaf958c707ad07547cd62150d973710f747"; + owner = "spf13"; + repo = "cast"; + sha256 = "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i"; + buildInputs = [ jwalterweatherman ]; + }; + check-v1 = buildGoPackage rec { rev = "871360013c92e1c715c2de6d06b54899468a8a2d"; name = "check-v1-${stdenv.lib.strings.substring 0 7 rev}"; @@ -348,17 +387,12 @@ let sha256 = "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c"; }; - cobra = buildGoPackage rec { - date = "20140617"; - rev = "10a8494a87448bf5003222d9974f166437e7f042"; - name = "cobra-${date}-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/spf13/cobra"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "1ydcccx0zdswca4v9hfmrn8ck42h485hy3wrd9k7y6mra3r6c08j"; - }; - propagatedBuildInputs = [ pflag ]; + cobra = buildFromGitHub { + rev = "ee6224d01f6a83f543ae90f881b703cf195782ba"; + owner = "spf13"; + repo = "cobra"; + sha256 = "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij"; + propagatedBuildInputs = [ pflag-spf13 mousetrap go-md2man viper ]; }; cli-go = buildFromGitHub { @@ -504,6 +538,26 @@ let sha256 = "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1"; }; + crypt = buildFromGitHub { + rev = "749e360c8f236773f28fc6d3ddfce4a470795227"; + owner = "xordataexchange"; + repo = "crypt"; + sha256 = "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig"; + preBuild = '' + substituteInPlace go/src/github.com/xordataexchange/crypt/backend/consul/consul.go \ + --replace 'github.com/armon/consul-api' 'github.com/hashicorp/consul/api' \ + --replace 'consulapi' 'api' + ''; + propagatedBuildInputs = [ go-etcd consul-api crypto ]; + }; + + cssmin = buildFromGitHub { + rev = "fb8d9b44afdc258bfff6052d3667521babcb2239"; + owner = "dchest"; + repo = "cssmin"; + sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; + }; + dbus = buildGoPackage rec { rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; @@ -685,6 +739,14 @@ let }; }; + fsync = buildFromGitHub { + rev = "c2544e79b93fda5653255f907a30fba1c2ac2638"; + owner = "spf13"; + repo = "fsync"; + sha256 = "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz"; + buildInputs = [ afero ]; + }; + fzf = buildFromGitHub { rev = "0.11.1"; owner = "junegunn"; @@ -907,6 +969,14 @@ let doCheck = false; # please check again }; + gohtml = buildFromGitHub { + rev = "ccf383eafddde21dfe37c6191343813822b30e6b"; + owner = "yosssi"; + repo = "gohtml"; + sha256 = "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f"; + propagatedBuildInputs = [ net ]; + }; + gomdb = buildFromGitHub { rev = "151f2e08ef45cb0e57d694b2562f351955dff572"; owner = "armon"; @@ -1361,6 +1431,14 @@ let propagatedBuildInputs = [ prometheus.client_golang ]; }; + go-md2man = buildFromGitHub { + rev = "71acacd42f85e5e82f70a55327789582a5200a90"; + owner = "cpuguy83"; + repo = "go-md2man"; + sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; + propagatedBuildInputs = [ blackfriday ]; + }; + go-multierror = buildFromGitHub { rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; owner = "hashicorp"; @@ -1645,6 +1723,18 @@ let sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; }; + hugo = buildFromGitHub { + rev = "v0.15"; + owner = "spf13"; + repo = "hugo"; + sha256 = "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5"; + buildInputs = [ + mapstructure text websocket cobra osext fsnotify.v1 afero + jwalterweatherman cast viper yaml-v2 ace purell mmark blackfriday amber + cssmin nitro inflect fsync + ]; + }; + inf = buildFromGitHub { rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; owner = "go-inf"; @@ -1654,6 +1744,17 @@ let goPackageAliases = [ "github.com/go-inf/inf" ]; }; + inflect = buildGoPackage { + name = "inflect"; + goPackagePath = "bitbucket.org/pkg/inflect"; + src = fetchFromBitbucket { + rev = "8961c3750a47b8c0b3e118d52513b97adf85a7e8"; + owner = "pkg"; + repo = "inflect"; + sha256 = "04iln5b9iyvr6bcn5cj2zq6vqk3a2b4vsy48y2kylhk7qnakip99"; + }; + }; + influxdb8-client = buildFromGitHub{ rev = "v0.8.8"; owner = "influxdb"; @@ -1703,6 +1804,13 @@ let sha256 = "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn"; }; + jwalterweatherman = buildFromGitHub { + rev = "c2aa07df593850a04644d77bb757d002e517a296"; + owner = "spf13"; + repo = "jwalterweatherman"; + sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; + }; + ldap = buildGoPackage rec { rev = "83e65426fd1c06626e88aa8a085e5bfed0208e29"; name = "ldap-${stdenv.lib.strings.substring 0 7 rev}"; @@ -1935,6 +2043,14 @@ let buildInputs = [ pkgs.cyrus_sasl tomb ]; }; + mmark = buildFromGitHub { + rev = "eacb2132c31a489033ebb068432892ba791a2f1b"; + owner = "miekg"; + repo = "mmark"; + sha256 = "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a"; + buildInputs = [ toml ]; + }; + mongo-tools = buildFromGitHub { rev = "4fcfd3e57415de95c0c016def07b95bca63cccb4"; owner = "mongodb"; @@ -2048,6 +2164,13 @@ let buildFlags = [ "-tags release" ]; }; + nitro = buildFromGitHub { + rev = "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8"; + owner = "spf13"; + repo = "nitro"; + sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; + }; + nsq = buildFromGitHub { rev = "v0.3.5"; owner = "bitly"; @@ -2237,6 +2360,13 @@ let doCheck = false; # bad import path in tests }; + pflag-spf13 = buildFromGitHub rec { + rev = "08b1a584251b5b62f458943640fc8ebd4d50aaa5"; + owner = "spf13"; + repo = "pflag"; + sha256 = "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq"; + }; + pond = let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; gui = true; # Might be implemented with nixpkgs config. @@ -2629,6 +2759,13 @@ let }; }; + properties = buildFromGitHub { + rev = "v1.5.6"; + owner = "magiconair"; + repo = "properties"; + sha256 = "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl"; + }; + gogo.protobuf = buildFromGitHub { rev = "932b70afa8b0bf4a8e167fdf0c3367cebba45903"; owner = "gogo"; @@ -2647,6 +2784,14 @@ let sha256 = "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d"; }; + purell = buildFromGitHub { + rev = "d69616f51cdfcd7514d6a380847a152dfc2a749d"; + owner = "PuerkitoBio"; + repo = "purell"; + sha256 = "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0"; + propagatedBuildInputs = [ urlesc ]; + }; + pushover = buildFromGitHub { rev = "a8420a1935479cc266bda685cee558e86dad4b9f"; owner = "thorduri"; @@ -2799,6 +2944,15 @@ let buildInputs = [ net text ]; }; + # This is the upstream package name, underscores and all. I don't like it + # but it seems wrong to change their name when packaging it. + sanitized_anchor_name = buildFromGitHub { + rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; + owner = "shurcooL"; + repo = "sanitized_anchor_name"; + sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; + }; + scada-client = buildGoPackage rec { rev = "c26580cfe35393f6f4bf1b9ba55e6afe33176bae"; name = "scada-client-${stdenv.lib.strings.substring 0 7 rev}"; @@ -3072,6 +3226,13 @@ let sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; }; + urlesc = buildFromGitHub { + rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; + owner = "opennota"; + repo = "urlesc"; + sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; + }; + usb = buildFromGitHub rec { rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; date = "2014-12-17"; @@ -3121,6 +3282,17 @@ let sha256 = "1qav4lf4ln5gs81714876q2cy9gfaxblbvawg3hxznbwakd9zmd8"; }; + viper = buildFromGitHub { + rev = "e37b56e207dda4d79b9defe0548e960658ee8b6b"; + owner = "spf13"; + repo = "viper"; + sha256 = "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl"; + propagatedBuildInputs = [ + mapstructure yaml-v2 jwalterweatherman crypt fsnotify.v1 cast properties + pretty toml pflag-spf13 + ]; + }; + vulcand = buildGoPackage rec { rev = "v0.8.0-beta.3"; name = "vulcand-${rev}"; From 5120601c28977ac8681df1192b2008e681e21a05 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 21 Nov 2015 23:44:32 +0200 Subject: [PATCH 656/707] yle-dl: init at 2.9.1 --- pkgs/tools/misc/yle-dl/default.nix | 36 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/misc/yle-dl/default.nix diff --git a/pkgs/tools/misc/yle-dl/default.nix b/pkgs/tools/misc/yle-dl/default.nix new file mode 100644 index 00000000000..c6efac3ffe6 --- /dev/null +++ b/pkgs/tools/misc/yle-dl/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, rtmpdump, php, pythonPackages }: + +stdenv.mkDerivation rec { + name = "yle-dl-${version}"; + version = "2.9.1"; + + src = fetchFromGitHub { + owner = "aajanki"; + repo = "yle-dl"; + rev = version; + sha256 = "1irpcp9iw2cw85sj1kzndmrw8350p9q7cfghjx2xkh2czk9k7whq"; + }; + + patchPhase = '' + substituteInPlace yle-dl --replace '/usr/local/share/' "$out/share/" + + # HACK: work around https://github.com/NixOS/nixpkgs/issues/9593 + substituteInPlace yle-dl --replace '/usr/bin/env python2' '/usr/bin/env python' + ''; + + buildInputs = [ pythonPackages.wrapPython ]; + pythonPath = [ rtmpdump php ] ++ (with pythonPackages; [ pycrypto ]); + + installPhase = '' + make install prefix=$out + wrapPythonPrograms + ''; + + meta = with stdenv.lib; { + description = "Downloads videos from Yle (Finnish Broadcasting Company) servers"; + homepage = https://aajanki.github.io/yle-dl/; + license = licenses.gpl3; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..5af13ae3e7c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3645,6 +3645,8 @@ let # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; + yle-dl = callPackage ../tools/misc/yle-dl {}; + zbackup = callPackage ../tools/backup/zbackup {}; zbar = callPackage ../tools/graphics/zbar { From 0fa8f6b36ba5f816e4ac31d68e370858007a57b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Dec 2015 12:16:22 +0100 Subject: [PATCH 657/707] nodePackages_0_5: don't recurseIntoAttrs Two reasons for this change: - most of 5.0 packages don't build yet - node packages are memory intensive and block Hydra evaluation (Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS) PS: Removing node packages from evaluation goes from 7.5G down to 4.6G for whole nixos release job. See #3594 and #11865 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 467e4667a95..05a1525fd4b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2099,7 +2099,7 @@ let else nodejs-4_x; - nodePackages_5_x = recurseIntoAttrs (callPackage ./node-packages.nix { self = nodePackages_5_x; nodejs = nodejs-5_x; }); + nodePackages_5_x = callPackage ./node-packages.nix { self = nodePackages_5_x; nodejs = nodejs-5_x; }; nodePackages_4_x = recurseIntoAttrs (callPackage ./node-packages.nix { self = nodePackages_4_x; nodejs = nodejs-4_x; }); From 3af72cf6a3a330b1dbc1fe598dc7a0b03c426690 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 22 Dec 2015 13:30:52 +0100 Subject: [PATCH 658/707] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-3-gd4ae18a using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/236677809b56730af48b37057a05f1bb01cc076c - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/62b6b580fb6fa4d2ef029febe46dcc6c738ea926 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/d3e5ae70f97caffd4362b1511f3a2edfdc8a493d - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/ef03f60b53b318a4e78e3854942c1c224d9601c1 --- .../haskell-modules/configuration-lts-0.0.nix | 21 + .../haskell-modules/configuration-lts-0.1.nix | 21 + .../haskell-modules/configuration-lts-0.2.nix | 21 + .../haskell-modules/configuration-lts-0.3.nix | 21 + .../haskell-modules/configuration-lts-0.4.nix | 22 + .../haskell-modules/configuration-lts-0.5.nix | 22 + .../haskell-modules/configuration-lts-0.6.nix | 22 + .../haskell-modules/configuration-lts-0.7.nix | 22 + .../haskell-modules/configuration-lts-1.0.nix | 22 + .../haskell-modules/configuration-lts-1.1.nix | 22 + .../configuration-lts-1.10.nix | 22 + .../configuration-lts-1.11.nix | 22 + .../configuration-lts-1.12.nix | 22 + .../configuration-lts-1.13.nix | 22 + .../configuration-lts-1.14.nix | 22 + .../configuration-lts-1.15.nix | 22 + .../haskell-modules/configuration-lts-1.2.nix | 22 + .../haskell-modules/configuration-lts-1.4.nix | 22 + .../haskell-modules/configuration-lts-1.5.nix | 22 + .../haskell-modules/configuration-lts-1.7.nix | 22 + .../haskell-modules/configuration-lts-1.8.nix | 22 + .../haskell-modules/configuration-lts-1.9.nix | 22 + .../haskell-modules/configuration-lts-2.0.nix | 23 + .../haskell-modules/configuration-lts-2.1.nix | 23 + .../configuration-lts-2.10.nix | 23 + .../configuration-lts-2.11.nix | 23 + .../configuration-lts-2.12.nix | 23 + .../configuration-lts-2.13.nix | 23 + .../configuration-lts-2.14.nix | 23 + .../configuration-lts-2.15.nix | 23 + .../configuration-lts-2.16.nix | 23 + .../configuration-lts-2.17.nix | 24 + .../configuration-lts-2.18.nix | 24 + .../configuration-lts-2.19.nix | 24 + .../haskell-modules/configuration-lts-2.2.nix | 23 + .../configuration-lts-2.20.nix | 24 + .../configuration-lts-2.21.nix | 24 + .../configuration-lts-2.22.nix | 25 + .../haskell-modules/configuration-lts-2.3.nix | 23 + .../haskell-modules/configuration-lts-2.4.nix | 23 + .../haskell-modules/configuration-lts-2.5.nix | 23 + .../haskell-modules/configuration-lts-2.6.nix | 23 + .../haskell-modules/configuration-lts-2.7.nix | 23 + .../haskell-modules/configuration-lts-2.8.nix | 23 + .../haskell-modules/configuration-lts-2.9.nix | 23 + .../haskell-modules/configuration-lts-3.0.nix | 30 + .../haskell-modules/configuration-lts-3.1.nix | 30 + .../configuration-lts-3.10.nix | 33 + .../configuration-lts-3.11.nix | 34 + .../configuration-lts-3.12.nix | 35 + .../configuration-lts-3.13.nix | 35 + .../configuration-lts-3.14.nix | 35 + .../configuration-lts-3.15.nix | 35 + .../configuration-lts-3.16.nix | 35 + .../configuration-lts-3.17.nix | 35 + .../configuration-lts-3.18.nix | 36 + .../configuration-lts-3.19.nix | 38 + .../haskell-modules/configuration-lts-3.2.nix | 30 + .../configuration-lts-3.20.nix | 8091 +++++++++++++++++ .../haskell-modules/configuration-lts-3.3.nix | 30 + .../haskell-modules/configuration-lts-3.4.nix | 30 + .../haskell-modules/configuration-lts-3.5.nix | 30 + .../haskell-modules/configuration-lts-3.6.nix | 30 + .../haskell-modules/configuration-lts-3.7.nix | 30 + .../haskell-modules/configuration-lts-3.8.nix | 32 + .../haskell-modules/configuration-lts-3.9.nix | 32 + .../haskell-modules/hackage-packages.nix | 1489 ++- 67 files changed, 10941 insertions(+), 310 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-3.20.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 3bc140253cf..accd8619305 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2998,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3463,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3531,6 +3538,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3681,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5239,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5657,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5680,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7369,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7565,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -8011,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8456,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8477,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 42253251403..0b7f7deb05b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2998,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3463,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3531,6 +3538,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3681,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5239,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5657,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5680,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7369,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7565,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -8011,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8456,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8477,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 96915c87e0b..71c04aad38d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2998,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3463,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3531,6 +3538,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3681,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5239,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5657,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5680,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7369,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7565,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -8011,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8456,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8477,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 9309f74d421..d9e9ce495cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2998,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3463,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3531,6 +3538,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3681,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5239,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5657,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5680,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7369,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7565,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -8011,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8456,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8477,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index ce701dfe722..cdfbcb1943a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2997,6 +3002,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3462,6 +3468,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3530,6 +3537,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3680,6 +3691,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5236,6 +5248,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5654,6 +5668,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5677,6 +5692,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7365,6 +7381,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7561,6 +7578,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7614,6 +7632,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -8006,6 +8025,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8451,6 +8471,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8472,6 +8493,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 5ddb85c629c..f03d3e17a39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1161,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1590,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1774,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1814,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2054,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2997,6 +3002,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3462,6 +3468,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3530,6 +3537,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3680,6 +3691,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5236,6 +5248,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5654,6 +5668,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5677,6 +5692,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7365,6 +7381,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7561,6 +7578,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7614,6 +7632,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -8006,6 +8025,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8451,6 +8471,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8472,6 +8493,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 17b887b8689..de83b28d2fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1160,6 +1160,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1587,6 +1588,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1771,6 +1773,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1811,6 +1814,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2051,6 +2055,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2994,6 +2999,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3459,6 +3465,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3527,6 +3534,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3677,6 +3688,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5232,6 +5244,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5650,6 +5664,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5673,6 +5688,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7359,6 +7375,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7555,6 +7572,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7608,6 +7626,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -8000,6 +8019,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8445,6 +8465,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8466,6 +8487,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index e9d3b12d37f..e01b0bc09a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1160,6 +1160,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1587,6 +1588,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1771,6 +1773,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1811,6 +1814,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2051,6 +2055,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2994,6 +2999,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3459,6 +3465,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3527,6 +3534,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3677,6 +3688,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5232,6 +5244,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5650,6 +5664,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5673,6 +5688,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7359,6 +7375,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7555,6 +7572,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7608,6 +7626,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -8000,6 +8019,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8445,6 +8465,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8466,6 +8487,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index ceddbc9f890..42db9c816da 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1156,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1583,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1766,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1805,6 +1808,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2043,6 +2047,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2984,6 +2989,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3448,6 +3454,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3516,6 +3523,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3666,6 +3677,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5220,6 +5232,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5638,6 +5652,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5661,6 +5676,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7345,6 +7361,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7540,6 +7557,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7593,6 +7611,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7985,6 +8004,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8429,6 +8449,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8450,6 +8471,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 32288e9a7f7..fb68011ba87 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1156,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1583,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1766,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1804,6 +1807,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2041,6 +2045,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2980,6 +2985,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3444,6 +3450,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3512,6 +3519,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3662,6 +3673,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5213,6 +5225,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5630,6 +5644,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5653,6 +5668,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7336,6 +7352,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7531,6 +7548,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7584,6 +7602,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7972,6 +7991,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8415,6 +8435,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8436,6 +8457,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 044678daee3..9c20fbc7982 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1764,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1802,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2037,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2975,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3434,6 +3440,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3502,6 +3509,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3652,6 +3663,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5194,6 +5206,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5610,6 +5624,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5633,6 +5648,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7310,6 +7326,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7505,6 +7522,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7558,6 +7576,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7943,6 +7962,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8383,6 +8403,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8404,6 +8425,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index dd03c8ce211..e1402193eb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1764,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1802,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2037,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2975,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3433,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3501,6 +3508,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3651,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5190,6 +5202,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5606,6 +5620,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5629,6 +5644,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7306,6 +7322,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7501,6 +7518,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7554,6 +7572,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7939,6 +7958,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8379,6 +8399,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8400,6 +8421,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 04da2509ad2..4c5eaef6814 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1764,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1802,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2037,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2975,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3433,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3501,6 +3508,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3651,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5189,6 +5201,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5605,6 +5619,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5628,6 +5643,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7305,6 +7321,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7499,6 +7516,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7552,6 +7570,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7936,6 +7955,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8376,6 +8396,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8397,6 +8418,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index fe75d3a8e93..656be295da0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1764,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1802,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2037,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2975,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3433,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3501,6 +3508,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3651,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5188,6 +5200,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5604,6 +5618,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5627,6 +5642,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7304,6 +7320,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7498,6 +7515,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7551,6 +7569,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7934,6 +7953,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8374,6 +8394,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8395,6 +8416,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 88880efcca4..341459f7405 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1154,6 +1154,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1580,6 +1581,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1762,6 +1764,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1800,6 +1803,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2035,6 +2039,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2972,6 +2977,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3430,6 +3436,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3498,6 +3505,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3648,6 +3659,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5183,6 +5195,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5598,6 +5612,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5621,6 +5636,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7296,6 +7312,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7490,6 +7507,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7543,6 +7561,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7926,6 +7945,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8366,6 +8386,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8387,6 +8408,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 34f6cc66200..57889762d0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1153,6 +1153,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1579,6 +1580,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1761,6 +1763,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1799,6 +1802,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2033,6 +2037,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2967,6 +2972,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3425,6 +3431,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3493,6 +3500,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3643,6 +3654,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5178,6 +5190,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5593,6 +5607,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5616,6 +5631,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7287,6 +7303,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7481,6 +7498,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7533,6 +7551,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7915,6 +7934,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8355,6 +8375,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8376,6 +8397,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 3f6a8c35c12..5f53f69d70c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1156,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1583,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1766,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1804,6 +1807,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2040,6 +2044,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2978,6 +2983,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3441,6 +3447,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3509,6 +3516,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3659,6 +3670,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5210,6 +5222,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5627,6 +5641,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5650,6 +5665,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7330,6 +7346,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7525,6 +7542,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7578,6 +7596,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7966,6 +7985,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8409,6 +8429,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8430,6 +8451,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 60ac68fa6af..6939da3619d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1765,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1803,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2039,6 +2043,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2977,6 +2982,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3439,6 +3445,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3507,6 +3514,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3657,6 +3668,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5207,6 +5219,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5624,6 +5638,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5647,6 +5662,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7326,6 +7342,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7521,6 +7538,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7574,6 +7592,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7961,6 +7980,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8404,6 +8424,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8425,6 +8446,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index d78bac500e3..a53cb354aba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1765,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1803,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2038,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2976,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3438,6 +3444,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3506,6 +3513,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3656,6 +3667,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5205,6 +5217,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5622,6 +5636,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5645,6 +5660,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7324,6 +7340,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7519,6 +7536,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7572,6 +7590,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7959,6 +7978,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8400,6 +8420,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8421,6 +8442,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 11e6d050e97..d4405a6ea7b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1765,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1803,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2038,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2976,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3438,6 +3444,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3506,6 +3513,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3656,6 +3667,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5199,6 +5211,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5616,6 +5630,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5639,6 +5654,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7318,6 +7334,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7513,6 +7530,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7566,6 +7584,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7953,6 +7972,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8394,6 +8414,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8415,6 +8436,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 140cb1f9f71..6a0e8545c28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1765,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1803,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2038,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2976,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3436,6 +3442,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3504,6 +3511,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3654,6 +3665,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5196,6 +5208,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5612,6 +5626,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5635,6 +5650,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7314,6 +7330,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7509,6 +7526,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7562,6 +7580,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7949,6 +7968,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8389,6 +8409,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8410,6 +8431,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index cd3ac17033e..93ff9524400 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1155,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1582,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1765,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1803,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2038,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2976,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3435,6 +3441,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3503,6 +3510,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3653,6 +3664,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5195,6 +5207,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5611,6 +5625,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5634,6 +5649,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7313,6 +7329,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7508,6 +7525,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7561,6 +7579,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7948,6 +7967,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8388,6 +8408,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8409,6 +8430,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 29e118c18a3..6e14e24c7ac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1144,6 +1145,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1568,6 +1570,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1748,6 +1751,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1786,6 +1790,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2020,6 +2025,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2948,6 +2954,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3404,6 +3411,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3471,6 +3479,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3618,6 +3630,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5137,6 +5150,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5549,6 +5564,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5570,6 +5586,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7228,6 +7245,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7419,6 +7437,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7471,6 +7490,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7850,6 +7870,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8288,6 +8309,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8309,6 +8331,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index c470c638e01..24a931f7d92 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1144,6 +1145,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1568,6 +1570,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1748,6 +1751,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1786,6 +1790,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2019,6 +2024,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2947,6 +2953,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3403,6 +3410,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3470,6 +3478,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3617,6 +3629,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5135,6 +5148,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5547,6 +5562,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5568,6 +5584,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7226,6 +7243,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7417,6 +7435,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7469,6 +7488,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7848,6 +7868,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8285,6 +8306,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8306,6 +8328,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 78b5b034374..462a8aee2f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1560,6 +1562,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1739,6 +1742,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1777,6 +1781,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2007,6 +2012,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2930,6 +2936,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3384,6 +3391,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3450,6 +3458,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3597,6 +3609,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5104,6 +5117,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5509,6 +5524,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5530,6 +5546,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7179,6 +7196,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7369,6 +7387,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7415,6 +7434,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7792,6 +7812,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8227,6 +8248,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8248,6 +8270,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 3f14883bb14..4353c8d898c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1559,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1738,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1776,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2006,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2929,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3382,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3448,6 +3456,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3595,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5099,6 +5112,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5504,6 +5519,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5525,6 +5541,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7171,6 +7188,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7361,6 +7379,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7407,6 +7426,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7782,6 +7802,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8217,6 +8238,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8238,6 +8260,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 9f79732a018..4f4ce4b86e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1559,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1738,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1776,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2006,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2929,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3382,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3448,6 +3456,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3595,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5099,6 +5112,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5504,6 +5519,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5525,6 +5541,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7170,6 +7187,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7360,6 +7378,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7406,6 +7425,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7781,6 +7801,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8216,6 +8237,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8237,6 +8259,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 813898be750..c9464238e84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1559,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1738,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1776,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2006,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2929,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3382,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3448,6 +3456,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3595,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5097,6 +5110,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5502,6 +5517,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5523,6 +5539,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7167,6 +7184,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7357,6 +7375,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7403,6 +7422,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7778,6 +7798,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8213,6 +8234,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8234,6 +8256,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 6ffc4a6b531..e2a9927cabf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1558,6 +1560,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1737,6 +1740,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1775,6 +1779,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2005,6 +2010,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2928,6 +2934,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3380,6 +3387,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3446,6 +3454,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3593,6 +3605,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5094,6 +5107,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5499,6 +5514,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5520,6 +5536,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7162,6 +7179,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7352,6 +7370,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7398,6 +7417,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7773,6 +7793,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8208,6 +8229,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8229,6 +8251,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index c129a3ed578..53c0e3d69bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1558,6 +1560,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1737,6 +1740,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1775,6 +1779,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2005,6 +2010,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2927,6 +2933,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3379,6 +3386,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3445,6 +3453,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3592,6 +3604,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5093,6 +5106,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5498,6 +5513,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5519,6 +5535,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7158,6 +7175,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7347,6 +7365,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7393,6 +7412,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7768,6 +7788,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8203,6 +8224,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8224,6 +8246,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index dcd5a1cc4c5..14116331de7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1557,6 +1559,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1736,6 +1739,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1774,6 +1778,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2003,6 +2008,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2923,6 +2929,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3373,6 +3380,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3439,6 +3447,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3586,6 +3598,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5085,6 +5098,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5490,6 +5505,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5511,6 +5527,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -7150,6 +7167,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7339,6 +7357,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7385,6 +7404,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7760,6 +7780,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8195,6 +8216,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8216,6 +8238,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index cd7bd1d5b4e..e1a2bbbc968 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1556,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1734,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1772,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2001,6 +2006,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2920,6 +2926,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3368,6 +3375,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3434,6 +3442,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3581,6 +3593,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5080,6 +5093,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5485,6 +5500,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5506,6 +5522,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -6620,6 +6637,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7143,6 +7161,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7332,6 +7351,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7378,6 +7398,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7753,6 +7774,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8188,6 +8210,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8209,6 +8232,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index ce2067384fe..28058c94292 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1556,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1734,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1772,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2000,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2918,6 +2924,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3366,6 +3373,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3432,6 +3440,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3579,6 +3591,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5077,6 +5090,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5482,6 +5497,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5503,6 +5519,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6615,6 +6632,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7138,6 +7156,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7327,6 +7346,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7373,6 +7393,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7747,6 +7768,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8182,6 +8204,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8203,6 +8226,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 7496f0ff744..26cb22600e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1556,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1734,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1772,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2000,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2918,6 +2924,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3365,6 +3372,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3431,6 +3439,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3578,6 +3590,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5076,6 +5089,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5480,6 +5495,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5501,6 +5517,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6612,6 +6629,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7135,6 +7153,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7322,6 +7341,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7368,6 +7388,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7742,6 +7763,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8177,6 +8199,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8198,6 +8221,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index c8c572b01e5..86dc3b2988a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1143,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1567,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1747,6 +1750,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1785,6 +1789,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2016,6 +2021,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2944,6 +2950,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3400,6 +3407,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3467,6 +3475,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3614,6 +3626,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5132,6 +5145,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5544,6 +5559,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5565,6 +5581,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7223,6 +7240,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7414,6 +7432,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7466,6 +7485,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7845,6 +7865,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8282,6 +8303,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8303,6 +8325,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 1e5174692ee..b931af0d41a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1556,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1734,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1772,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2000,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2917,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3364,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3430,6 +3438,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3577,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5074,6 +5087,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5478,6 +5493,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_0"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5499,6 +5515,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6609,6 +6626,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7131,6 +7149,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7318,6 +7337,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7364,6 +7384,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7738,6 +7759,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8173,6 +8195,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8194,6 +8217,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 3304e26b9e5..d9d7c49b0a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1138,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1556,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1734,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1772,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2000,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2917,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3364,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3430,6 +3438,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3577,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5073,6 +5086,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5477,6 +5492,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_0"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5498,6 +5514,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6607,6 +6624,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7129,6 +7147,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7316,6 +7335,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7362,6 +7382,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7736,6 +7757,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8169,6 +8191,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8190,6 +8213,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 4a2314c6157..032fc30dfae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -724,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -906,6 +907,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1137,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1555,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1733,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1771,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1999,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2916,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3363,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3429,6 +3438,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3576,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5071,6 +5085,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5474,6 +5490,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5495,6 +5512,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6604,6 +6622,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -7126,6 +7145,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7313,6 +7333,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7359,6 +7380,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7733,6 +7755,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8166,6 +8189,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8187,6 +8211,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 484e836b508..a73b8c61ac7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1143,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1567,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1747,6 +1750,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1785,6 +1789,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2016,6 +2021,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2944,6 +2950,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3399,6 +3406,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3466,6 +3474,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3613,6 +3625,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5130,6 +5143,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5542,6 +5557,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5563,6 +5579,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7220,6 +7237,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7411,6 +7429,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7463,6 +7482,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7842,6 +7862,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8279,6 +8300,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8300,6 +8322,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index b5cef3ba643..027b53e251f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1143,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1567,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1746,6 +1749,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1784,6 +1788,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2015,6 +2020,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2943,6 +2949,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3398,6 +3405,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3465,6 +3473,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3612,6 +3624,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5129,6 +5142,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5540,6 +5555,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5561,6 +5577,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7215,6 +7232,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7406,6 +7424,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7458,6 +7477,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7837,6 +7857,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8274,6 +8295,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8295,6 +8317,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index d3360cbfc4f..d23b46cfd4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1143,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1567,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1746,6 +1749,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1784,6 +1788,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2015,6 +2020,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2942,6 +2948,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3397,6 +3404,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3464,6 +3472,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3611,6 +3623,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5128,6 +5141,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5538,6 +5553,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5559,6 +5575,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7213,6 +7230,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7404,6 +7422,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7455,6 +7474,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7834,6 +7854,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8271,6 +8292,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8292,6 +8314,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 335af123c93..079c34dca60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -727,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1141,6 +1142,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1564,6 +1566,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1746,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1781,6 +1785,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2012,6 +2017,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2939,6 +2945,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3394,6 +3401,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3461,6 +3469,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3608,6 +3620,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5123,6 +5136,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5533,6 +5548,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5554,6 +5570,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7207,6 +7224,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7398,6 +7416,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7449,6 +7468,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7828,6 +7848,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8263,6 +8284,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8284,6 +8306,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index c8cb9b91e07..992831b11e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -726,6 +726,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1140,6 +1141,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1563,6 +1565,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1742,6 +1745,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1780,6 +1784,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2011,6 +2016,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2938,6 +2944,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3393,6 +3400,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3460,6 +3468,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3607,6 +3619,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5122,6 +5135,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5532,6 +5547,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5553,6 +5569,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7206,6 +7223,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7397,6 +7415,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7448,6 +7467,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7827,6 +7847,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8262,6 +8283,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8283,6 +8305,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 0683bd2553a..0ba988c6a2d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1562,6 +1564,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1741,6 +1744,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1779,6 +1783,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2010,6 +2015,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2937,6 +2943,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3391,6 +3398,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3458,6 +3466,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3605,6 +3617,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5118,6 +5131,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5528,6 +5543,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5549,6 +5565,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7201,6 +7218,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7391,6 +7409,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7440,6 +7459,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7819,6 +7839,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8254,6 +8275,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8275,6 +8297,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 11080ff4358..122ffd8e54b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -725,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -1139,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1560,6 +1562,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1739,6 +1742,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1777,6 +1781,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -2007,6 +2012,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2932,6 +2938,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3386,6 +3393,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3452,6 +3460,10 @@ self: super: { "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3599,6 +3611,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -5110,6 +5123,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5518,6 +5533,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5539,6 +5555,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -7190,6 +7207,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7380,6 +7398,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7427,6 +7446,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7804,6 +7824,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -8239,6 +8260,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8260,6 +8282,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index b60af8284b0..0ddbfe9d767 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -438,6 +438,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -886,6 +887,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1112,6 +1114,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1507,6 +1510,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1676,6 +1680,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1711,6 +1716,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1753,6 +1759,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1931,6 +1938,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -2820,6 +2828,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3255,6 +3264,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3318,6 +3328,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3464,6 +3478,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4908,6 +4923,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5296,6 +5313,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5316,6 +5334,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6392,6 +6411,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6635,6 +6655,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6901,6 +6922,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7088,6 +7110,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7128,6 +7151,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7403,6 +7427,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7494,6 +7519,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7720,6 +7746,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7907,6 +7934,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7928,6 +7956,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8084,6 +8113,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index d238767cf9a..7ee9850aed0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -438,6 +438,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -886,6 +887,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1112,6 +1114,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1506,6 +1509,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1675,6 +1679,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1710,6 +1715,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1752,6 +1758,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1930,6 +1937,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -2819,6 +2827,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3251,6 +3260,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3314,6 +3324,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3460,6 +3474,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4903,6 +4918,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5290,6 +5307,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5310,6 +5328,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6384,6 +6403,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6626,6 +6646,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6892,6 +6913,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7079,6 +7101,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7119,6 +7142,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7394,6 +7418,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7485,6 +7510,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7711,6 +7737,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7897,6 +7924,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7918,6 +7946,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8074,6 +8103,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 75e701cd9a0..fef41afa423 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -434,6 +434,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -879,6 +880,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1104,6 +1106,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1491,6 +1494,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1508,6 +1512,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1656,6 +1661,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1691,6 +1697,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1733,6 +1740,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1906,6 +1914,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2190,6 +2199,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2774,6 +2784,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3196,6 +3207,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3257,6 +3269,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3403,6 +3419,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4745,6 +4762,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4826,6 +4844,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5209,6 +5229,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5229,6 +5250,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -6281,6 +6303,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6521,6 +6544,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6777,6 +6801,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6959,6 +6984,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6998,6 +7024,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7267,6 +7294,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7358,6 +7386,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7582,6 +7611,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7765,6 +7795,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7785,6 +7816,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7935,6 +7967,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 4440a97361f..bf8a60ac2a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -434,6 +434,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -879,6 +880,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1104,6 +1106,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1491,6 +1494,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1508,6 +1512,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1655,6 +1660,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1690,6 +1696,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1731,6 +1738,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1904,6 +1912,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2188,6 +2197,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2771,6 +2781,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3192,6 +3203,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3253,6 +3265,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3399,6 +3415,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4741,6 +4758,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4822,6 +4840,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5205,6 +5225,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5225,6 +5246,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -5801,6 +5823,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6275,6 +6298,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6514,6 +6538,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6769,6 +6794,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6951,6 +6977,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6990,6 +7017,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7258,6 +7286,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7349,6 +7378,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7573,6 +7603,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7756,6 +7787,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7776,6 +7808,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7926,6 +7959,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 563ad632c51..1cb9c893f80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -878,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1103,6 +1105,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1490,6 +1493,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1507,6 +1511,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1654,6 +1659,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1689,6 +1695,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1730,6 +1737,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1902,6 +1910,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2183,6 +2192,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2766,6 +2776,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3187,6 +3198,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3247,6 +3259,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3393,6 +3409,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4735,6 +4752,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4816,6 +4834,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5199,6 +5219,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5219,6 +5240,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5794,6 +5816,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6268,6 +6291,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6507,6 +6531,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6762,6 +6787,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6944,6 +6970,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6983,6 +7010,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7158,6 +7186,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7249,6 +7278,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7339,6 +7369,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7563,6 +7594,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7746,6 +7778,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7766,6 +7799,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7916,6 +7950,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index bfd7fcfa430..271da896c6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -878,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1103,6 +1105,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1490,6 +1493,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1507,6 +1511,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1654,6 +1659,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1689,6 +1695,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1730,6 +1737,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1902,6 +1910,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2183,6 +2192,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2766,6 +2776,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3187,6 +3198,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3247,6 +3259,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3393,6 +3409,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4734,6 +4751,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4814,6 +4832,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5197,6 +5217,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5217,6 +5238,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5790,6 +5812,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6264,6 +6287,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6503,6 +6527,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6758,6 +6783,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6940,6 +6966,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6979,6 +7006,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7153,6 +7181,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7244,6 +7273,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7334,6 +7364,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7558,6 +7589,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7741,6 +7773,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7761,6 +7794,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7910,6 +7944,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3c09a095fa5..99ac875508e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -878,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1101,6 +1103,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1488,6 +1491,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1505,6 +1509,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1652,6 +1657,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1686,6 +1692,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1727,6 +1734,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1899,6 +1907,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2179,6 +2188,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2758,6 +2768,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3179,6 +3190,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3239,6 +3251,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3385,6 +3401,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4725,6 +4742,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4805,6 +4823,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5187,6 +5207,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5207,6 +5228,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5779,6 +5801,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6252,6 +6275,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6491,6 +6515,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6746,6 +6771,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6928,6 +6954,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6967,6 +6994,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7141,6 +7169,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7231,6 +7260,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7321,6 +7351,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7545,6 +7576,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7728,6 +7760,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7748,6 +7781,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_2"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7895,6 +7929,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 95baf86efab..2096bbe0e0f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -877,6 +878,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1100,6 +1102,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1487,6 +1490,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1504,6 +1508,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1651,6 +1656,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1685,6 +1691,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1726,6 +1733,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1898,6 +1906,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2178,6 +2187,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2757,6 +2767,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3177,6 +3188,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3237,6 +3249,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3383,6 +3399,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4720,6 +4737,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4800,6 +4818,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5182,6 +5202,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5202,6 +5223,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5773,6 +5795,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6245,6 +6268,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6484,6 +6508,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6738,6 +6763,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6920,6 +6946,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6959,6 +6986,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7133,6 +7161,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7223,6 +7252,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7312,6 +7342,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7536,6 +7567,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7719,6 +7751,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7739,6 +7772,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7885,6 +7919,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index ec3c7dae2a8..985b46e2af4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -876,6 +877,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1099,6 +1101,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1485,6 +1488,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1502,6 +1506,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1649,6 +1654,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1683,6 +1689,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1724,6 +1731,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1896,6 +1904,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2176,6 +2185,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2754,6 +2764,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3174,6 +3185,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3234,6 +3246,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3380,6 +3396,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4716,6 +4733,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4795,6 +4813,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5175,6 +5195,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5195,6 +5216,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5765,6 +5787,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6235,6 +6258,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6473,6 +6497,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6726,6 +6751,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6908,6 +6934,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6947,6 +6974,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7120,6 +7148,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7208,6 +7237,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7296,6 +7326,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7520,6 +7551,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7703,6 +7735,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7723,6 +7756,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7869,6 +7903,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 9c402b10e5b..0793e3e1cae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -874,6 +875,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1097,6 +1099,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1481,6 +1484,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1498,6 +1502,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1645,6 +1650,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1679,6 +1685,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1719,6 +1726,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1890,6 +1898,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2168,6 +2177,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2745,6 +2755,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3165,6 +3176,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3225,6 +3237,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3371,6 +3387,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4704,6 +4721,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4783,6 +4801,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5162,6 +5182,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5182,6 +5203,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; @@ -5750,6 +5772,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6219,6 +6242,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6456,6 +6480,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6709,6 +6734,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6891,6 +6917,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6930,6 +6957,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7103,6 +7131,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7191,6 +7220,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7279,6 +7309,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7503,6 +7534,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7685,6 +7717,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7705,6 +7738,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7850,6 +7884,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index dca96a944ae..de54f3f85ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -433,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -874,6 +875,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1097,7 +1099,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1481,6 +1485,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1498,6 +1503,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1645,6 +1651,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1679,6 +1686,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1719,6 +1727,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1889,6 +1898,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2167,6 +2177,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2744,6 +2755,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3163,6 +3175,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3222,6 +3235,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3368,6 +3385,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4694,6 +4712,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4773,6 +4792,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5152,6 +5173,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5172,6 +5194,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5738,6 +5761,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6205,6 +6229,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6442,6 +6467,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6694,6 +6720,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6876,6 +6903,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6915,6 +6943,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7088,6 +7117,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7175,6 +7205,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7263,6 +7294,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7487,6 +7519,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7668,6 +7701,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7687,6 +7721,7 @@ self: super: { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7831,6 +7866,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index f49e3fc7214..9a3e399043a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -432,6 +432,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -873,6 +874,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1096,7 +1098,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1476,6 +1480,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1493,6 +1498,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1639,6 +1645,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1672,6 +1679,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1712,6 +1720,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1882,6 +1891,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2159,6 +2169,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2736,6 +2747,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3155,6 +3167,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3214,6 +3227,10 @@ self: super: { "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3360,6 +3377,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4232,6 +4250,7 @@ self: super: { "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_26_1"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4680,6 +4699,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4759,6 +4779,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5137,6 +5159,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5157,6 +5180,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5721,6 +5745,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6186,6 +6211,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6422,6 +6448,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6674,6 +6701,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6852,8 +6880,10 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6893,6 +6923,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7066,6 +7097,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7153,6 +7185,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7241,6 +7274,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7464,6 +7498,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7645,6 +7680,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7664,6 +7700,7 @@ self: super: { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; @@ -7807,6 +7844,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 29e012e9069..4461c0812ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1110,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1503,6 +1506,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1672,6 +1676,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1707,6 +1712,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1749,6 +1755,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1927,6 +1934,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -2815,6 +2823,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3246,6 +3255,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3309,6 +3319,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3455,6 +3469,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4896,6 +4911,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5283,6 +5300,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5303,6 +5321,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6375,6 +6394,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6616,6 +6636,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6880,6 +6901,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7066,6 +7088,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7106,6 +7129,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7380,6 +7404,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7471,6 +7496,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7697,6 +7723,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7883,6 +7910,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7904,6 +7932,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8059,6 +8088,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix new file mode 100644 index 00000000000..407b9840cdd --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -0,0 +1,8091 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.20 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_4_5"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "ad" = doDistribute super."ad_4_2_4"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex" = doDistribute super."alex_3_1_4"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apply-refact" = dontDistribute super."apply-refact"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = dontDistribute super."async-dejafu"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_12_1"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = dontDistribute super."binary-parser"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blake2" = dontDistribute super."blake2"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraints" = doDistribute super."constraints_0_4_1_3"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consul-haskell" = doDistribute super."consul-haskell_0_2_1"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = dontDistribute super."contravariant-extras"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional" = doDistribute super."dimensional_0_13_0_2"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exact-real" = dontDistribute super."exact-real"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extract-dependencies" = dontDistribute super."extract-dependencies"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = dontDistribute super."file-modules"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_8_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_5_20150727"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-fmt" = dontDistribute super."git-fmt"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_5_5"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger" = doDistribute super."hledger_0_26"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_26"; + "hledger-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hledger-web" = doDistribute super."hledger-web_0_26"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = dontDistribute super."htaglib"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = dontDistribute super."hunit-dejafu"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ical" = dontDistribute super."ical"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; + "latex-formulae-image" = dontDistribute super."latex-formulae-image"; + "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_12_3"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_19_1_3"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memoization-utils" = dontDistribute super."memoization-utils"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "omnifmt" = dontDistribute super."omnifmt"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-description-remote" = dontDistribute super."package-description-remote"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parseargs" = doDistribute super."parseargs_0_1_5_2"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = dontDistribute super."pinch"; + "pinchot" = dontDistribute super."pinchot"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_6"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rose-trie" = dontDistribute super."rose-trie"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_16_2_2"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-yaml" = dontDistribute super."servant-yaml"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_10_1"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = dontDistribute super."stack-run-auto"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "success" = dontDistribute super."success"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-dejafu" = dontDistribute super."tasty-dejafu"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_12_2"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "tracy" = dontDistribute super."tracy"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 5b7a20c9342..ebe29e181a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1110,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1502,6 +1505,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1671,6 +1675,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1706,6 +1711,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1748,6 +1754,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1926,6 +1933,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -2811,6 +2819,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3241,6 +3250,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3304,6 +3314,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3450,6 +3464,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4889,6 +4904,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5276,6 +5293,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5296,6 +5314,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6368,6 +6387,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6608,6 +6628,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6872,6 +6893,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7057,6 +7079,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7097,6 +7120,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7370,6 +7394,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7461,6 +7486,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7687,6 +7713,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7872,6 +7899,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7893,6 +7921,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8048,6 +8077,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 9f50937f4f6..8a8faeb8829 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1110,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1502,6 +1505,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1671,6 +1675,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1706,6 +1711,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1748,6 +1754,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1925,6 +1932,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -2810,6 +2818,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3240,6 +3249,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3303,6 +3313,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3449,6 +3463,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4888,6 +4903,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5275,6 +5292,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5295,6 +5313,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6367,6 +6386,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6607,6 +6627,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6870,6 +6891,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7055,6 +7077,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7094,6 +7117,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7367,6 +7391,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7458,6 +7483,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7684,6 +7710,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7869,6 +7896,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7890,6 +7918,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8044,6 +8073,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 386c865253d..b4746be3310 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1110,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1501,6 +1504,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1670,6 +1674,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1705,6 +1710,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1747,6 +1753,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1923,6 +1930,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_13"; "clash-lib" = doDistribute super."clash-lib_0_5_11"; @@ -2807,6 +2815,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3235,6 +3244,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3298,6 +3308,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3444,6 +3458,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4877,6 +4892,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5264,6 +5281,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5284,6 +5302,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6351,6 +6370,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6591,6 +6611,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6853,6 +6874,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7038,6 +7060,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7077,6 +7100,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7347,6 +7371,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7438,6 +7463,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7664,6 +7690,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7849,6 +7876,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7870,6 +7898,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8024,6 +8053,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 8b9e2b4b2d5..83635b005ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1109,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1500,6 +1503,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1669,6 +1673,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1704,6 +1709,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1746,6 +1752,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1921,6 +1928,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_14"; "clash-lib" = doDistribute super."clash-lib_0_5_12"; @@ -2804,6 +2812,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3230,6 +3239,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3291,6 +3301,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3437,6 +3451,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4866,6 +4881,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5253,6 +5270,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5273,6 +5291,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6338,6 +6357,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6578,6 +6598,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6840,6 +6861,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7025,6 +7047,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7064,6 +7087,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7334,6 +7358,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7425,6 +7450,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7650,6 +7676,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7835,6 +7862,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7855,6 +7883,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -8008,6 +8037,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 9078c3be23c..706ac59c44b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1109,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1497,6 +1500,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1666,6 +1670,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1701,6 +1706,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1743,6 +1749,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1918,6 +1925,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2799,6 +2807,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3223,6 +3232,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3284,6 +3294,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3430,6 +3444,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4856,6 +4871,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5241,6 +5258,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5261,6 +5279,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -6321,6 +6340,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6561,6 +6581,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6823,6 +6844,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7006,6 +7028,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7045,6 +7068,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7315,6 +7339,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7406,6 +7431,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7630,6 +7656,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7815,6 +7842,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7835,6 +7863,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7988,6 +8017,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 3a476ae5983..50f10a62620 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -884,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1109,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1497,6 +1500,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1514,6 +1518,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1663,6 +1668,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1698,6 +1704,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1740,6 +1747,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1914,6 +1922,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2198,6 +2207,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2788,6 +2798,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3212,6 +3223,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3273,6 +3285,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3419,6 +3435,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4845,6 +4862,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5228,6 +5247,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5248,6 +5268,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -6305,6 +6326,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6545,6 +6567,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6807,6 +6830,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6990,6 +7014,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7029,6 +7054,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7298,6 +7324,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7389,6 +7416,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7613,6 +7641,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7798,6 +7827,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7818,6 +7848,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7971,6 +8002,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index f3f2fec1982..a05341eb8b4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -437,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -882,6 +883,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1107,6 +1109,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1495,6 +1498,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1512,6 +1516,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1660,6 +1665,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1695,6 +1701,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1737,6 +1744,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1910,6 +1918,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -2194,6 +2203,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2781,6 +2791,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3204,6 +3215,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3265,6 +3277,10 @@ self: super: { "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3411,6 +3427,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -4837,6 +4854,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5220,6 +5239,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5240,6 +5260,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -6296,6 +6317,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6536,6 +6558,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6798,6 +6821,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6981,6 +7005,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7020,6 +7045,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; @@ -7289,6 +7315,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7380,6 +7407,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7604,6 +7632,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7789,6 +7818,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7809,6 +7839,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7962,6 +7993,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index ddbc2109dd5..26288e13884 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2495,6 +2495,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Cabal_1_22_6_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , deepseq, directory, extensible-exceptions, filepath, HUnit + , old-time, pretty, process, QuickCheck, regex-posix + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , time, unix + }: + mkDerivation { + pname = "Cabal"; + version = "1.22.6.0"; + sha256 = "e6a58714bd33ea107b5e99c7f149b48ddd3fbfa72e6105abbab4478bcf4f2433"; + libraryHaskellDepends = [ + array base binary bytestring containers deepseq directory filepath + pretty process time unix + ]; + testHaskellDepends = [ + base bytestring containers directory extensible-exceptions filepath + HUnit old-time process QuickCheck regex-posix test-framework + test-framework-hunit test-framework-quickcheck2 unix + ]; + doCheck = false; + homepage = "http://www.haskell.org/cabal/"; + description = "A framework for packaging Haskell software"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Cabal-ide-backend" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , deepseq, directory, extensible-exceptions, filepath, HUnit @@ -6303,20 +6330,6 @@ self: { }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLURaw" = callPackage - ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: - mkDerivation { - pname = "GLURaw"; - version = "1.5.0.2"; - sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ freeglut mesa ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; - - "GLURaw_1_5_0_3" = callPackage ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: mkDerivation { pname = "GLURaw"; @@ -6327,7 +6340,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -6387,24 +6400,6 @@ self: { }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT" = callPackage - ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL - , OpenGLRaw, StateVar, transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.3"; - sha256 = "6292074f55c781f98468a526b09b70e6c08a3c108c10abac3aa44a10d8a5d1e1"; - libraryHaskellDepends = [ - array base containers OpenGL OpenGLRaw StateVar transformers - ]; - librarySystemDepends = [ freeglut mesa ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; - - "GLUT_2_7_0_4" = callPackage ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL , OpenGLRaw, StateVar, transformers }: @@ -6419,7 +6414,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUtil" = callPackage @@ -8150,7 +8145,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HList" = callPackage + "HList_0_4_1_0" = callPackage ({ mkDerivation, array, base, cmdargs, directory, doctest, filepath , ghc-prim, hspec, lens, mtl, process, profunctors, QuickCheck, syb , tagged, template-haskell @@ -8169,6 +8164,29 @@ self: { doCheck = false; description = "Heterogeneous lists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HList" = callPackage + ({ mkDerivation, array, base, base-orphans, cmdargs, directory + , doctest, filepath, ghc-prim, hspec, lens, mtl, process + , profunctors, QuickCheck, syb, tagged, template-haskell + }: + mkDerivation { + pname = "HList"; + version = "0.4.2.0"; + sha256 = "cd99545a1dc4df7ceca09a93e4c4d391654a337882a25791f1c48e21317d7795"; + libraryHaskellDepends = [ + array base base-orphans ghc-prim mtl profunctors tagged + template-haskell + ]; + testHaskellDepends = [ + array base cmdargs directory doctest filepath hspec lens mtl + process QuickCheck syb template-haskell + ]; + doCheck = false; + description = "Heterogeneous lists"; + license = stdenv.lib.licenses.mit; }) {}; "HListPP" = callPackage @@ -13987,7 +14005,7 @@ self: { kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; - "ObjectName" = callPackage + "ObjectName_1_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "ObjectName"; @@ -13997,9 +14015,10 @@ self: { homepage = "https://github.com/svenpanne/ObjectName"; description = "Explicitly handled object names"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ObjectName_1_1_0_1" = callPackage + "ObjectName" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "ObjectName"; @@ -14009,7 +14028,6 @@ self: { homepage = "https://github.com/svenpanne/ObjectName"; description = "Explicitly handled object names"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Obsidian" = callPackage @@ -14276,24 +14294,6 @@ self: { }) {}; "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "2.13.2.0"; - sha256 = "512573572b89242ecf834ca7669c18a689d6a694594ca94bb725ef1db37f46f2"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; - - "OpenGL_2_13_2_1" = callPackage ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName , OpenGLRaw, StateVar, text, transformers }: @@ -14308,7 +14308,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "OpenGLCheck" = callPackage @@ -14368,23 +14368,6 @@ self: { }) {inherit (pkgs) mesa;}; "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, half, mesa, text - , transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "2.6.1.0"; - sha256 = "3d41249d8feb456889d79939a59e3f2a7b1c771b514fbdcc352ae4f676aa9db0"; - libraryHaskellDepends = [ - base bytestring containers half text transformers - ]; - librarySystemDepends = [ mesa ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mesa;}; - - "OpenGLRaw_2_6_1_1" = callPackage ({ mkDerivation, base, bytestring, containers, half, mesa, text , transformers }: @@ -14399,7 +14382,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -17784,7 +17766,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "StateVar" = callPackage + "StateVar_1_1_0_1" = callPackage ({ mkDerivation, base, stm, transformers }: mkDerivation { pname = "StateVar"; @@ -17794,9 +17776,10 @@ self: { homepage = "https://github.com/haskell-opengl/StateVar"; description = "State variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "StateVar_1_1_0_2" = callPackage + "StateVar" = callPackage ({ mkDerivation, base, stm, transformers }: mkDerivation { pname = "StateVar"; @@ -17806,7 +17789,6 @@ self: { homepage = "https://github.com/haskell-opengl/StateVar"; description = "State variables"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "StateVar-transformer" = callPackage @@ -20785,6 +20767,8 @@ self: { pname = "acid-state"; version = "0.14.0"; sha256 = "db7cc0fdfe0af9757f448a4184c88d5a8f2ac5e014bea1623a6272821a510621"; + revision = "2"; + editedCabalFile = "8aa8c1e14d8dcfec861e9ef4198a9084b54c64719b77e9b505c53024a6ad7f51"; libraryHaskellDepends = [ array base bytestring cereal containers directory extensible-exceptions filepath mtl network safecopy stm @@ -21640,20 +21624,20 @@ self: { }) {}; "adblock2privoxy" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , http-conduit, MissingH, mtl, network, network-uri, old-locale - , parsec, parsec-permutation, strict, text, time + ({ mkDerivation, base, case-insensitive, containers, directory + , filepath, http-conduit, MissingH, mtl, network, network-uri + , old-locale, parsec, parsec-permutation, strict, text, time }: mkDerivation { pname = "adblock2privoxy"; - version = "1.3.3"; - sha256 = "b47dd438b54d2fdcf5bb329f4978f8b052158a0da453cc087edb22c2556dc0c7"; + version = "1.4.0"; + sha256 = "2503df4fb073fd03d2f66467b5a14eb31cf5a6a315823cbef09dd96db7c7e1cb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers directory filepath http-conduit MissingH mtl - network network-uri old-locale parsec parsec-permutation strict - text time + base case-insensitive containers directory filepath http-conduit + MissingH mtl network network-uri old-locale parsec + parsec-permutation strict text time ]; homepage = "https://projects.zubr.me/wiki/adblock2privoxy"; description = "Convert adblock config files to privoxy format"; @@ -21978,8 +21962,8 @@ self: { }: mkDerivation { pname = "aeson-casing"; - version = "0.1.0.4"; - sha256 = "706139db4d17cae7a770802b3103584b3fa1c0d7db5ae2d463cfbaa99549bb5b"; + version = "0.1.0.5"; + sha256 = "cfec563dc6822f035858a7190153d8818c200be565806b43b70f198bf5410577"; libraryHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base tasty tasty-hunit tasty-quickcheck tasty-th @@ -21988,6 +21972,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers + , exceptions, hashable, quickcheck-instances, scientific, tasty + , tasty-hunit, tasty-quickcheck, text, time, unordered-containers + , vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.0.0"; + sha256 = "697b2f86628bd6665db153b84ef40c699d372b4b429a7c4ef28719313b9c97ef"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring containers exceptions hashable + scientific text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring containers exceptions hashable + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + text time unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-diff" = callPackage ({ mkDerivation, aeson, base, bytestring, edit-distance-vector , hashable, mtl, optparse-applicative, QuickCheck @@ -22069,7 +22077,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_2_3_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , exceptions, hashable, quickcheck-instances, scientific, tasty , tasty-hunit, tasty-quickcheck, template-haskell, text, time @@ -22091,6 +22099,34 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-extra" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring + , containers, exceptions, hashable, parsec, quickcheck-instances + , scientific, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, text, time, time-parsers, unordered-containers + , vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.0.0"; + sha256 = "b9e54cf293c25bbd5646a777cf71a23c4158b708dd358fe3e705add326d5870f"; + libraryHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec scientific template-haskell text time + time-parsers unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text time + time-parsers unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; }) {}; "aeson-filthy" = callPackage @@ -30204,15 +30240,16 @@ self: { }) {}; "atp-haskell" = callPackage - ({ mkDerivation, base, containers, HUnit, mtl, parsec, pretty - , template-haskell, time + ({ mkDerivation, applicative-extras, base, containers, HUnit, mtl + , parsec, pretty, template-haskell, time }: mkDerivation { pname = "atp-haskell"; - version = "1.7"; - sha256 = "d746df532106f4237d23a1f191ea6dcc0211b5f810b923f7556466bb081f860e"; + version = "1.8"; + sha256 = "4bac41afc35571b2ad1a711d08e6f0cb223bb165615e511f2fc22ff9397fb467"; libraryHaskellDepends = [ - base containers HUnit mtl parsec pretty template-haskell time + applicative-extras base containers HUnit mtl parsec pretty + template-haskell time ]; testHaskellDepends = [ base containers HUnit time ]; homepage = "https://github.com/seereason/atp-haskell"; @@ -33822,6 +33859,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bighugethesaurus" = callPackage + ({ mkDerivation, base, HTTP, split }: + mkDerivation { + pname = "bighugethesaurus"; + version = "0.1.0.0"; + sha256 = "3af008b07f35f4a83f53d5c119956195e2cc897396b63f3415cfa0f7561f13c8"; + libraryHaskellDepends = [ base HTTP split ]; + description = "API wrapper for Big Huge Thesaurus"; + license = "GPL"; + }) {}; + "billboard-parser" = callPackage ({ mkDerivation, base, directory, filepath, HarmTrace-Base, HUnit , ListLike, mtl, parseargs, uu-parsinglib @@ -34247,7 +34295,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-orphans" = callPackage + "binary-orphans_0_1_2_0" = callPackage ({ mkDerivation, aeson, base, binary, hashable , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck , text, text-binary, time, unordered-containers, vector @@ -34270,6 +34318,32 @@ self: { homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-orphans" = callPackage + ({ mkDerivation, aeson, base, binary, hashable + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-quickcheck, text, text-binary, time, unordered-containers + , vector, vector-binary-instances + }: + mkDerivation { + pname = "binary-orphans"; + version = "0.1.3.0"; + sha256 = "a42edfe603aea009310a0139acda6a7c385f5b65dfbc084dd17323bd786366cb"; + libraryHaskellDepends = [ + aeson base binary hashable scientific semigroups tagged text + text-binary time unordered-containers vector + vector-binary-instances + ]; + testHaskellDepends = [ + aeson base binary hashable quickcheck-instances scientific + semigroups tagged tasty tasty-quickcheck text time + unordered-containers vector + ]; + homepage = "https://github.com/phadej/binary-orphans#readme"; + description = "Orphan instances for binary"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-parser" = callPackage @@ -36487,6 +36561,7 @@ self: { base blaze-builder bytestring bytestring-builder enumerator streaming-commons transformers ]; + doHaddock = false; homepage = "https://github.com/meiersi/blaze-builder-enumerator"; description = "Enumeratees for the incremental conversion of builders to bytestrings"; license = stdenv.lib.licenses.bsd3; @@ -37687,6 +37762,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "bowntz" = callPackage + ({ mkDerivation, base, containers, GLUT, hosc, hsc3, random }: + mkDerivation { + pname = "bowntz"; + version = "0"; + sha256 = "771d0f4b4fccefd96e58d6c6ddf71d111aaa0c49180f1e0cab6ad61ec0d9b378"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base containers GLUT hosc hsc3 random + ]; + homepage = "http://code.mathr.co.uk/bowntz"; + description = "audio-visual pseudo-physical simulation of colliding circles"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "boxes" = callPackage ({ mkDerivation, base, QuickCheck, split }: mkDerivation { @@ -37979,6 +38070,7 @@ self: { base binary bytestring cryptohash data-binary-ieee754 mtl network QuickCheck test-framework test-framework-quickcheck2 text time ]; + doHaddock = false; doCheck = false; homepage = "http://github.com/mongodb-haskell/bson"; description = "BSON documents are JSON-like objects with a standard binary encoding"; @@ -38471,6 +38563,26 @@ self: { license = "unknown"; }) {}; + "butterflies" = callPackage + ({ mkDerivation, base, bytestring, gl-capture, GLUT, OpenGLRaw + , OpenGLRaw21, repa, repa-devil + }: + mkDerivation { + pname = "butterflies"; + version = "0.3.0.1"; + sha256 = "631cdc6b4e299c14f2687cb6ed7baab5b0ae353aa34fb6f09e46594a9a93f235"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base bytestring gl-capture GLUT OpenGLRaw OpenGLRaw21 repa + repa-devil + ]; + homepage = "http://code.mathr.co.uk/butterflies"; + description = "butterfly tilings"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "bv" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -39910,7 +40022,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install" = callPackage + "cabal-install_1_22_6_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -39942,6 +40054,41 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "cabal-install" = callPackage + ({ mkDerivation, array, base, bytestring, Cabal, containers + , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl + , network, network-uri, pretty, process, QuickCheck, random + , regex-posix, stm, test-framework, test-framework-hunit + , test-framework-quickcheck2, time, unix, zlib + }: + mkDerivation { + pname = "cabal-install"; + version = "1.22.7.0"; + sha256 = "b30fd14f20fdd11b028cba68fefeed7eeadcacf919e7c29bc4d7289a656d19f3"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bytestring Cabal containers directory filepath HTTP mtl + network network-uri pretty process random stm time unix zlib + ]; + testHaskellDepends = [ + array base bytestring Cabal containers directory + extensible-exceptions filepath HTTP HUnit mtl network network-uri + pretty process QuickCheck regex-posix stm test-framework + test-framework-hunit test-framework-quickcheck2 time unix zlib + ]; + doCheck = false; + postInstall = '' + mkdir $out/etc + mv bash-completion $out/etc/bash_completion.d + ''; + homepage = "http://www.haskell.org/cabal/"; + description = "The command-line interface for Cabal and Hackage"; + license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -40026,13 +40173,14 @@ self: { }) {}; "cabal-macosx" = callPackage - ({ mkDerivation, base, Cabal, directory, fgl, filepath, parsec - , process, text + ({ mkDerivation, base, Cabal, directory, fgl, filepath, HUnit + , parsec, process, temporary, test-framework, test-framework-hunit + , text }: mkDerivation { pname = "cabal-macosx"; - version = "0.2.3.1"; - sha256 = "7fcb0d9483896a8a99a2fd4fd56451c3579b0caf413e47e2a44eff8fd1b2b032"; + version = "0.2.3.2"; + sha256 = "054f891068c9ce0161610e929716e8fa2022ef0bc093fb42bcb30733c38026b7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -40041,6 +40189,9 @@ self: { executableHaskellDepends = [ base Cabal directory fgl filepath parsec process text ]; + testHaskellDepends = [ + base HUnit temporary test-framework test-framework-hunit + ]; homepage = "http://github.com/danfran/cabal-macosx"; description = "Cabal support for creating Mac OSX application bundles"; license = stdenv.lib.licenses.bsd3; @@ -41466,8 +41617,8 @@ self: { }: mkDerivation { pname = "carray"; - version = "0.1.6.1"; - sha256 = "256aa21d8c39f4e737769e0e6635eae664a65f37f950cedabad7b9d4677b9e4f"; + version = "0.1.6.2"; + sha256 = "7e71c800472376631cf6933243a0a0190376afab77593ac86825cc2d52b21588"; libraryHaskellDepends = [ array base binary bytestring ix-shapable QuickCheck syb ]; @@ -44046,8 +44197,8 @@ self: { }: mkDerivation { pname = "clafer"; - version = "0.4.2.1"; - sha256 = "35bd00e22e143755b6c66026f1266ec046990ed998f9f89c0198b973909069dd"; + version = "0.4.3"; + sha256 = "0be4dd9ab5551e247e69bf9b8863de4f6615a38e26e4c51d3f0bf214478585e4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -44081,8 +44232,8 @@ self: { }: mkDerivation { pname = "claferIG"; - version = "0.4.2.1"; - sha256 = "519cbe18e8f2519d878f1aa3ca2b77ad19d099f0fc54d5144d1c4cc8690c5bdc"; + version = "0.4.3"; + sha256 = "e3afbf8d5a057a54bf0e41a0ad19259f284ab2b7c33f208b08426f1436c52fc3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -44112,8 +44263,8 @@ self: { }: mkDerivation { pname = "claferwiki"; - version = "0.4.2.1"; - sha256 = "04c7ed51e92e27e3dfe2b7fdfa9bc02fcf698b78cfc33d8241673fb0a361b7b1"; + version = "0.4.3"; + sha256 = "7a582f4e59757ea00346f01ced2ef917ea8640941c45c3a407fe7760a5aa483c"; libraryHaskellDepends = [ base clafer containers directory gitit MissingH mtl network network-uri process SHA split time transformers transformers-compat @@ -44157,6 +44308,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "clarifai" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, easy-file + , HTTP, http-client, lens, lens-aeson, scientific, text + , unordered-containers, vector, wreq + }: + mkDerivation { + pname = "clarifai"; + version = "0.1.1.0"; + sha256 = "40ef0baf628d4569138192128dd5f6f07a38b2963ec54e4968646f5953caf718"; + libraryHaskellDepends = [ + aeson base bytestring containers easy-file HTTP http-client lens + lens-aeson scientific text unordered-containers vector wreq + ]; + description = "API Client for the Clarifai API"; + license = stdenv.lib.licenses.mit; + }) {}; + "clash" = callPackage ({ mkDerivation, base, containers, data-accessor , data-accessor-template, directory, filepath, ghc, haskell98 @@ -44338,6 +44506,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -44361,6 +44530,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -44384,6 +44554,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -44407,6 +44578,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -49237,18 +49409,19 @@ self: { }) {}; "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, exceptions, hlint, parsers - , resourcet, tasty, tasty-hunit, text, transformers + ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl + , parsers, resourcet, tasty, tasty-hunit, text, transformers }: mkDerivation { pname = "conduit-parse"; - version = "0.1.0.0"; - sha256 = "63eb07881e50c146701e0a1934d3a8978189beede4ba15d48f1fd96c05627824"; + version = "0.1.1.0"; + sha256 = "94c279c5065f996dd4ad6e4fdb1514ce072c69cdf6dddf6835a20424790b5950"; libraryHaskellDepends = [ - base conduit exceptions parsers text transformers + base conduit dlist exceptions mtl parsers text transformers ]; testHaskellDepends = [ - base conduit exceptions hlint parsers resourcet tasty tasty-hunit + base conduit exceptions hlint mtl parsers resourcet tasty + tasty-hunit ]; homepage = "https://github.com/k0ral/conduit-parse"; description = "Parsing framework based on conduit"; @@ -50842,7 +51015,6 @@ self: { libraryHaskellDepends = [ base containers copilot-core directory filepath pretty sbv ]; - jailbreak = true; description = "A compiler for CoPilot targeting SBV"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -52858,7 +53030,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptol" = callPackage + "cryptol_2_2_5" = callPackage ({ mkDerivation, alex, ansi-terminal, array, async, base , containers, deepseq, directory, filepath, gitrev, GraphSCC, happy , haskeline, heredoc, monadLib, old-time, presburger, pretty @@ -52882,6 +53054,37 @@ self: { ansi-terminal base containers deepseq directory filepath haskeline monadLib process random sbv tf-random transformers ]; + jailbreak = true; + homepage = "http://www.cryptol.net/"; + description = "Cryptol: The Language of Cryptography"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cryptol" = callPackage + ({ mkDerivation, alex, ansi-terminal, array, async, base + , base-compat, containers, deepseq, directory, filepath, gitrev + , GraphSCC, happy, haskeline, heredoc, monadLib, old-time + , presburger, pretty, process, QuickCheck, random, sbv, smtLib, syb + , template-haskell, text, tf-random, transformers, utf8-string + }: + mkDerivation { + pname = "cryptol"; + version = "2.2.6"; + sha256 = "8fb05368e34f78b5c3872ff7b495bd3d4c21e9de7a0d72fc07cc79f93dc18cf3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base base-compat containers deepseq directory filepath + gitrev GraphSCC heredoc monadLib old-time presburger pretty process + QuickCheck random sbv smtLib syb template-haskell text tf-random + transformers utf8-string + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + ansi-terminal base containers deepseq directory filepath haskeline + monadLib process random sbv tf-random transformers + ]; homepage = "http://www.cryptol.net/"; description = "Cryptol: The Language of Cryptography"; license = stdenv.lib.licenses.bsd3; @@ -52916,8 +53119,8 @@ self: { }: mkDerivation { pname = "cryptonite"; - version = "0.9"; - sha256 = "9f50dc254c20e535d0d490dd004765ab080a6a0745966d0a81a80a4c85e842c0"; + version = "0.10"; + sha256 = "55343f018f78de480ea1e7f09dd72307ce0b5eb5e82331512370d5b01ac9735b"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim integer-gmp memory ]; @@ -56539,6 +56742,8 @@ self: { pname = "deeplearning-hs"; version = "0.1.0.2"; sha256 = "0da58dd777b5a9d097cef43dede6f72cca18d56577cab131106bfaa7634f82b3"; + revision = "1"; + editedCabalFile = "eca23efe079b6311afd52bf1a70f8b9617c2b943e13b2ddb0ac2be5249622afa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -59375,8 +59580,8 @@ self: { }: mkDerivation { pname = "diagrams-svg"; - version = "1.3.1.9"; - sha256 = "c344798fc057123229a7c3ba679297398b82fe872c6798fdcb30279bd00a67c7"; + version = "1.3.1.10"; + sha256 = "a8293856f359d7d9656bb0b5ca5c97cc13b6ab18eaa71ed30112038cfe0a39a7"; libraryHaskellDepends = [ base base64-bytestring bytestring colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels lens lucid-svg @@ -67013,17 +67218,17 @@ self: { }) {}; "eventstore" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal - , containers, network, protobuf, random, stm, tasty, tasty-hunit - , text, time, unordered-containers, uuid + ({ mkDerivation, aeson, async, base, bytestring, cereal, containers + , network, protobuf, random, stm, tasty, tasty-hunit, text, time + , unordered-containers, uuid }: mkDerivation { pname = "eventstore"; - version = "0.9.1.3"; - sha256 = "b69dd264dfc8ed432b9ce22d99e19a99eaface579150fadc8593ffa3dc1b856c"; + version = "0.10.0.0"; + sha256 = "1800b181c0228090597d63db7fd99dc0ba434d34d5da290b1b0e22aa39510f99"; libraryHaskellDepends = [ - aeson async attoparsec base bytestring cereal containers network - protobuf random stm text time unordered-containers uuid + aeson async base bytestring cereal containers network protobuf + random stm text time unordered-containers uuid ]; testHaskellDepends = [ aeson base stm tasty tasty-hunit text time @@ -67548,6 +67753,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "exp-extended" = callPackage + ({ mkDerivation, base, compensated, log-domain }: + mkDerivation { + pname = "exp-extended"; + version = "0.1.0.1"; + sha256 = "a78427101de6fb57975be3310a3c59ba5504c3b5edef6da2b9c89fd0730b0f6d"; + libraryHaskellDepends = [ base compensated log-domain ]; + homepage = "http://code.mathr.co.uk/exp-extended"; + description = "floating point with extended exponent range"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "exp-pairs" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, matrix, memoize , QuickCheck, random, smallcheck, tasty, tasty-hunit @@ -68297,11 +68514,10 @@ self: { ({ mkDerivation, base, bytestring, hspec, QuickCheck }: mkDerivation { pname = "farmhash"; - version = "0.1.0.3"; - sha256 = "c6bde8e127af0dbb2b6e426ef34eb3fafe32ccb32358b8482774e6fc4ab91e7f"; + version = "0.1.0.4"; + sha256 = "71e43616fe48c0454db551110229bd50ca4b4625f255478cb45f4a6480e113d7"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ base bytestring hspec QuickCheck ]; - jailbreak = true; homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; @@ -69899,19 +70115,20 @@ self: { "ffmpeg-light" = callPackage ({ mkDerivation, base, either, exceptions, ffmpeg, JuicyPixels - , libavcodec, libavformat, libswscale, mtl, transformers, vector + , libavcodec, libavdevice, libavformat, libswscale, mtl + , transformers, vector }: mkDerivation { pname = "ffmpeg-light"; - version = "0.8.2"; - sha256 = "dcc6f0988458c47738505a1fb16e1e5206c483a75c8a7b997e0606aea56ef38e"; + version = "0.9.0"; + sha256 = "309ce75c56dfef61ad0e08ef34324873b24cdeb32ae2ace406caf0e9ca788897"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base either exceptions JuicyPixels mtl transformers vector ]; libraryPkgconfigDepends = [ - ffmpeg libavcodec libavformat libswscale + ffmpeg libavcodec libavdevice libavformat libswscale ]; executableHaskellDepends = [ base JuicyPixels mtl transformers vector @@ -69919,8 +70136,8 @@ self: { description = "Minimal bindings to the FFmpeg library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) ffmpeg; libavcodec = null; libavformat = null; - libswscale = null;}; + }) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null; + libavformat = null; libswscale = null;}; "ffmpeg-tutorials" = callPackage ({ mkDerivation, base, bytestring, haskell98, hs-ffmpeg, SDL, stm @@ -74763,8 +74980,8 @@ self: { ({ mkDerivation, base, GLUT, OpenGLRaw, Vec }: mkDerivation { pname = "gearbox"; - version = "1.0.0.3"; - sha256 = "fd1b71bfc2ec9c3bb2bb7185fdb0c1a86fb09d0ab1e001a9864c770756dec8c8"; + version = "1.0.0.4"; + sha256 = "fdebdad6326aaa5202e1aece1049c06d5c5c91acd57070c5953bf141019723df"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base GLUT OpenGLRaw Vec ]; @@ -76311,6 +76528,7 @@ self: { libraryHaskellDepends = [ base exceptions extensible-exceptions ghc mtl ]; + doHaddock = false; homepage = "http://hub.darcs.net/jcpetruzza/ghc-mtl"; description = "An mtl compatible version of the Ghc-Api monads and monad-transformers"; license = stdenv.lib.licenses.bsd3; @@ -76873,8 +77091,8 @@ self: { }: mkDerivation { pname = "ghcjs-dom"; - version = "0.2.3.0"; - sha256 = "9ffc3bf9255196a5fbddf2ffc6320547a2a2f641d8682a4d89a51fd680f93c52"; + version = "0.2.3.1"; + sha256 = "dfdee3dcd46ad5707a09488ccf0d2c69dbb47d2044212aeadec0a44f3facee39"; libraryHaskellDepends = [ base glib gtk3 text transformers webkitgtk3 ]; @@ -77885,6 +78103,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "gitHUD" = callPackage + ({ mkDerivation, base, mtl, parsec, process, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck + }: + mkDerivation { + pname = "gitHUD"; + version = "1.0.0.0"; + sha256 = "27f85577fa0826470927652a783ad8364c8cda2070a1905d3efecc5aa0e1941d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl parsec process ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base tasty tasty-hunit tasty-quickcheck tasty-smallcheck + ]; + homepage = "http://github.com/gbataille/gitHUD#readme"; + description = "More efficient replacement to the great git-radar"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gitcache" = callPackage ({ mkDerivation, base, cryptohash, directory, filepath, process , utf8-string @@ -78031,8 +78269,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler"; - version = "0.0.5"; - sha256 = "52f1bcbf4a39205f81c940342e2de45b0ac0d8d0b89942b19a9431f1fc782271"; + version = "0.0.7"; + sha256 = "b80ff37df283fe72e9b933b05aa4159adba8aac4ae242bbd78e40ddd45f8cce0"; libraryHaskellDepends = [ aeson base bytestring cryptohash github-types text transformers uuid vector @@ -78047,8 +78285,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler-snap"; - version = "0.0.5"; - sha256 = "65806df9708c909a9daf5beceb9e3db4bd4258755c8e8b31b181f29a21e1b267"; + version = "0.0.6"; + sha256 = "ec62b61aeb429492b347ed327b14a4c1bcf44d3791ac61ee6989f8a0a608a80e"; libraryHaskellDepends = [ base bytestring case-insensitive github-types github-webhook-handler snap-core uuid @@ -79556,6 +79794,81 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "goal-core" = callPackage + ({ mkDerivation, base, cairo, Chart, Chart-cairo, Chart-gtk, colour + , containers, data-default-class, gtk, lens + }: + mkDerivation { + pname = "goal-core"; + version = "0.1"; + sha256 = "84b932f82d35eeb3908f5c0c63c7f801de0307439794a1f2049d26bf8e346686"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base cairo Chart Chart-cairo Chart-gtk colour containers + data-default-class gtk lens + ]; + executableHaskellDepends = [ base ]; + description = "Core imports for Geometric Optimization Libraries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-geometry" = callPackage + ({ mkDerivation, base, goal-core, hmatrix, vector }: + mkDerivation { + pname = "goal-geometry"; + version = "0.1"; + sha256 = "e0bf529b38ea7fa1ed9405db3386bd5206cced8fcc33761cfcbb220d373edc74"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base goal-core hmatrix vector ]; + executableHaskellDepends = [ base goal-core ]; + description = "Scientific computing on geometric objects"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-probability" = callPackage + ({ mkDerivation, base, goal-core, goal-geometry, hmatrix + , math-functions, mwc-random, mwc-random-monad, statistics, vector + }: + mkDerivation { + pname = "goal-probability"; + version = "0.1"; + sha256 = "d48a3518ef4de905dc0cf402dc1b658151e4394af5fc6cd23b39b3831915902d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base goal-core goal-geometry hmatrix math-functions mwc-random + mwc-random-monad statistics vector + ]; + executableHaskellDepends = [ base goal-core goal-geometry vector ]; + description = "Manifolds of probability distributions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-simulation" = callPackage + ({ mkDerivation, base, cairo, clock, directory, goal-core + , goal-geometry, goal-probability, gtk, hmatrix, machines, mtl + , vector + }: + mkDerivation { + pname = "goal-simulation"; + version = "0.1"; + sha256 = "5787cc79ee00478faa9e89ac39c04b8589834c1635f31ba184f70df349678201"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base cairo clock goal-core goal-geometry goal-probability gtk + hmatrix machines vector + ]; + executableHaskellDepends = [ + base directory goal-core goal-geometry goal-probability hmatrix mtl + vector + ]; + description = "Mealy based simulation tools"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "goatee" = callPackage ({ mkDerivation, base, containers, HUnit, mtl, parsec , template-haskell @@ -81836,6 +82149,29 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gremlin-haskell" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, containers, hspec, lens + , lens-aeson, mtl, stm, text, unordered-containers, uuid + , websockets + }: + mkDerivation { + pname = "gremlin-haskell"; + version = "0.1.0.1"; + sha256 = "e73f628ffd27098147e51e301ab531ae01b964ddeaf4fa1104a508300cc15f8f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-qq base containers lens mtl stm text uuid websockets + ]; + executableHaskellDepends = [ + aeson base lens lens-aeson mtl text unordered-containers + ]; + testHaskellDepends = [ aeson-qq base hspec lens lens-aeson mtl ]; + homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; + description = "Graph database client for TinkerPop3 Gremlin Server"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "grid" = callPackage ({ mkDerivation, base, cereal, containers, QuickCheck , test-framework, test-framework-quickcheck2 @@ -86207,15 +86543,15 @@ self: { "handa-opengl" = callPackage ({ mkDerivation, aeson, array, base, binary, data-default, GLUT - , OpenGL, opengl-dlp-stereo, vector-space + , OpenGL, opengl-dlp-stereo, split, vector-space }: mkDerivation { pname = "handa-opengl"; - version = "0.1.11.2"; - sha256 = "ccf110aae686a4a0aef749c0b05c05b8edd372f84f4cafa86f4ff6dc7dd5084d"; + version = "0.1.13.0"; + sha256 = "b6b357f2795366758cec289a64109e7c6b9c9a54b53f8b24ea8c73dcfe0bbbd5"; libraryHaskellDepends = [ aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo - vector-space + split vector-space ]; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; @@ -88569,6 +88905,8 @@ self: { pname = "haskell-names"; version = "0.4.1"; sha256 = "88ba49cdaf96d4e194e7ff816ffde28de3ba0883d07daccf7927d8a349c16efe"; + revision = "1"; + editedCabalFile = "d4674b37ad9690fec8dffd7311c6f27d6785a09914fbe1ceaa4103d05e73f741"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -88579,6 +88917,7 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -88596,6 +88935,8 @@ self: { pname = "haskell-names"; version = "0.5.2"; sha256 = "eea76fb3c979cf2f5afb87beb8a4b1df6d5536ef7da8d48df79d4ea6dc18bb37"; + revision = "1"; + editedCabalFile = "4f45a86d9e262be3e9d08172072d57ddbcd6d6512923d0dfab26091811737c01"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -88606,6 +88947,7 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -88623,6 +88965,8 @@ self: { pname = "haskell-names"; version = "0.5.3"; sha256 = "5517fc1e5d1c78a004b3b9d6f4ef8485c3f64b3227551bafb60836fa3081d518"; + revision = "1"; + editedCabalFile = "43a54712a54882de18c56c15e1a10a4d28ddf7d5269f194c214d322c976e4851"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -88633,6 +88977,7 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -89231,6 +89576,7 @@ self: { pretty-hex QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 time x509 ]; + jailbreak = true; homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; @@ -89757,8 +90103,8 @@ self: { }: mkDerivation { pname = "haskellscrabble"; - version = "1.2.1"; - sha256 = "d96c922eed1c4d008d02a4cf4ce6c4d9402dbea1e4c776f6f6e6833bb3189a92"; + version = "1.2.2"; + sha256 = "ceba6d9f16a052ff8164fdfafd6ce3f01c17e951794d3e5bf727531a750152e4"; libraryHaskellDepends = [ array arrows base containers errors listsafe mtl parsec QuickCheck random safe semigroups split transformers unordered-containers @@ -90692,6 +91038,37 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hasql_0_15_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring + , contravariant, contravariant-extras, data-default-class, dlist + , either, hashable, hashtables, loch-th, placeholders + , postgresql-binary, postgresql-libpq, profunctors, QuickCheck + , quickcheck-instances, scientific, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text, time, transformers + , uuid, vector + }: + mkDerivation { + pname = "hasql"; + version = "0.15.1"; + sha256 = "8eefdfca21975e215708126b805ee8ba1803e3e3ce32e5c29a1b3e5912ededf8"; + libraryHaskellDepends = [ + aeson attoparsec base base-prelude bytestring contravariant + contravariant-extras data-default-class dlist either hashable + hashtables loch-th placeholders postgresql-binary postgresql-libpq + profunctors scientific text time transformers uuid vector + ]; + testHaskellDepends = [ + base base-prelude bytestring contravariant contravariant-extras + data-default-class dlist either hashable profunctors QuickCheck + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + tasty-smallcheck text time transformers uuid vector + ]; + homepage = "https://github.com/nikita-volkov/hasql"; + description = "A very efficient PostgreSQL driver and a flexible mapping API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hasql-backend_0_2_1" = callPackage ({ mkDerivation, base, base-prelude, bytestring, list-t, text , vector @@ -92783,6 +93160,7 @@ self: { testHaskellDepends = [ base bytestring HUnit mtl test-framework test-framework-hunit time ]; + doHaddock = false; jailbreak = true; doCheck = false; homepage = "https://github.com/informatikr/hedis"; @@ -93946,8 +94324,8 @@ self: { }: mkDerivation { pname = "hfmt"; - version = "0.0.1.0"; - sha256 = "78bd30bd0990c0145799a7abbd5e0ad66dfd62757bff898077b9e8adcab8661d"; + version = "0.0.2.1"; + sha256 = "1bf5c1e5b686af47739f8589134889812fd7313049777001acf74bae38011373"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99093,25 +99471,25 @@ self: { ({ mkDerivation, aeson, ansi-terminal, attoparsec, base, bytestring , conduit, conduit-extra, containers, deepseq, directory, filepath , http-conduit, http-types, optparse-applicative, parallel, process - , QuickCheck, resourcet, text, transformers, vector + , QuickCheck, resourcet, scientific, text, transformers, vector }: mkDerivation { pname = "hops"; - version = "0.2.1"; - sha256 = "00d23e9c1c536575cc3dff5eb9c0606e914f8914fec101f5b0bd6303a301fe9d"; + version = "0.4.0"; + sha256 = "7683f48ef77af14236a5a4f65f5292504cd1db333f76df91aab84a18925287d6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bytestring conduit conduit-extra containers deepseq directory filepath http-conduit - http-types optparse-applicative parallel resourcet text + http-types optparse-applicative parallel resourcet scientific text transformers vector ]; testHaskellDepends = [ aeson attoparsec base bytestring containers deepseq process - QuickCheck text vector + QuickCheck scientific text vector ]; - homepage = "http://github.com/akc/hops"; + homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -104509,14 +104887,14 @@ self: { }) {com_err = null; zephyr = null;}; "htaglib" = callPackage - ({ mkDerivation, base, directory, filepath, HUnit, taglib - , test-framework, test-framework-hunit + ({ mkDerivation, base, bytestring, directory, filepath, HUnit + , taglib, test-framework, test-framework-hunit, text }: mkDerivation { pname = "htaglib"; - version = "0.1.1"; - sha256 = "8e0a2a4e7074fec8b2dd5b48c39abe95ffbab50b56b1dd7443ed4f7cd43d28e4"; - libraryHaskellDepends = [ base ]; + version = "1.0.0"; + sha256 = "4d544ad9ca86b1e400393f3173d5416839440d5fefcde2b16ba2e50dd065d1fe"; + libraryHaskellDepends = [ base bytestring text ]; librarySystemDepends = [ taglib ]; testHaskellDepends = [ base directory filepath HUnit test-framework test-framework-hunit @@ -105751,6 +106129,41 @@ self: { pname = "http-client"; version = "0.4.25"; sha256 = "2aaefe7d75a0052b32a14cd3749c2a94602a64d87195722cebe75ebde014ec6d"; + revision = "1"; + editedCabalFile = "18bfde86302131a8378a0289610f8f860a0f2d1b3f58d8d450e62a79a0410c98"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client_0_4_26_1" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.26.1"; + sha256 = "38c264cdc0ad0dcc1f0fbd11a2fa638b55f65476ebcee0bdd9309c38fb5f1047"; + revision = "1"; + editedCabalFile = "8b6aa0fc4dba313afe69bc926a29a98638402f82b54fee6a9798b9bf90e83a62"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -105780,8 +106193,8 @@ self: { }: mkDerivation { pname = "http-client"; - version = "0.4.26.1"; - sha256 = "38c264cdc0ad0dcc1f0fbd11a2fa638b55f65476ebcee0bdd9309c38fb5f1047"; + version = "0.4.26.2"; + sha256 = "5c06c7944da2489d0abb91f8807418e013e77610d2fd3245641f1235371e8c6d"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -106758,6 +107171,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http2_1_4_0" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring + , bytestring-builder, containers, directory, doctest, filepath + , Glob, hex, hspec, mwc-random, psqueues, stm, text + , unordered-containers, vector, word8 + }: + mkDerivation { + pname = "http2"; + version = "1.4.0"; + sha256 = "26ffd2cb8ec5f44da3ca1c14640a356d55177ecb4e463fa6defef788902c409f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring bytestring-builder containers psqueues stm + unordered-containers + ]; + executableHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + containers directory filepath hex text unordered-containers vector + word8 + ]; + testHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + containers directory doctest filepath Glob hex hspec mwc-random + psqueues stm text unordered-containers vector word8 + ]; + description = "HTTP/2.0 library including frames and HPACK"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "httpd-shed" = callPackage ({ mkDerivation, base, network, network-uri }: mkDerivation { @@ -117772,17 +118216,19 @@ self: { }) {}; "lambdatex" = callPackage - ({ mkDerivation, base, containers, directory, HaTeX, hspec, mtl - , QuickCheck, text, transformers + ({ mkDerivation, async, base, containers, directory, HaTeX, hspec + , mtl, QuickCheck, quickcheck-text, text, transformers }: mkDerivation { pname = "lambdatex"; - version = "0.1.0.1"; - sha256 = "c071927242a209cbcd404cd5d803da91ced655565178c8e72b438cd47a66320c"; + version = "0.1.0.3"; + sha256 = "d233ed18d1a6383544146832b45c0e56cbf1a95ececbb6b12963ccb27bcd4bc9"; libraryHaskellDepends = [ - base containers directory HaTeX mtl text transformers + async base containers directory HaTeX mtl text transformers + ]; + testHaskellDepends = [ + base hspec QuickCheck quickcheck-text text ]; - testHaskellDepends = [ base hspec QuickCheck ]; homepage = "http://github.com/NorfairKing/lambdatex"; description = "Type-Safe LaTeX EDSL"; license = "GPL"; @@ -118175,7 +118621,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_3" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -118199,6 +118645,33 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.4"; + sha256 = "5794da453deb5dbe4f875e2c16af0514f39c809895061c5bb96c7b1dd1732a89"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + doCheck = false; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; }) {}; "language-cil" = callPackage @@ -118989,18 +119462,19 @@ self: { }) {}; "language-thrift" = callPackage - ({ mkDerivation, base, hspec, hspec-discover, mtl, parsers - , QuickCheck, text, trifecta, wl-pprint + ({ mkDerivation, base, hspec, hspec-discover, lens, parsers + , QuickCheck, text, transformers, trifecta, wl-pprint }: mkDerivation { pname = "language-thrift"; - version = "0.4.0.0"; - sha256 = "5cc8e2d464065a9e388a79db912dd8fd73c2a94f150ceefc448a72986452862a"; + version = "0.5.0.0"; + sha256 = "3163d87531b108f0f85f3e1335cf7b755243722b9ac2e0b57f6e328dffcfca99"; libraryHaskellDepends = [ - base mtl parsers text trifecta wl-pprint + base lens parsers text transformers trifecta wl-pprint ]; testHaskellDepends = [ - base hspec hspec-discover QuickCheck text trifecta wl-pprint + base hspec hspec-discover parsers QuickCheck text trifecta + wl-pprint ]; homepage = "https://github.com/abhinav/language-thrift"; description = "Parser and pretty printer for the Thrift IDL format"; @@ -120336,6 +120810,32 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "lenz" = callPackage + ({ mkDerivation, base, base-unicode-symbols, transformers }: + mkDerivation { + pname = "lenz"; + version = "0.1"; + sha256 = "98b3aef14ca16218ecd6643812e9df5dde5c60af6e2f56f98ec523ecc0917397"; + libraryHaskellDepends = [ base base-unicode-symbols transformers ]; + description = "Van Laarhoven lenses"; + license = "unknown"; + }) {}; + + "lenz-template" = callPackage + ({ mkDerivation, base, base-unicode-symbols, containers, lenz + , template-haskell + }: + mkDerivation { + pname = "lenz-template"; + version = "0.1"; + sha256 = "f03ca02d69c19f34c191f7cc41a15f167cba9e60c0791069eac7cd302a5877b1"; + libraryHaskellDepends = [ + base base-unicode-symbols containers lenz template-haskell + ]; + description = "Van Laarhoven lens templates"; + license = "unknown"; + }) {}; + "level-monad" = callPackage ({ mkDerivation, base, fmlist }: mkDerivation { @@ -125222,8 +125722,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "3.0.0"; - sha256 = "5930f7c4d8e0c539f93595b661ecb700506d7e03043d85cfee8ce32768ff2fa0"; + version = "3.0.1"; + sha256 = "a018aa83f998b5c94daf1886269fe442566039c26060e4705095b40fa3639236"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -128393,8 +128893,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "microlens"; - version = "0.3.4.1"; - sha256 = "95725872270774d20e85e12639e3d0636f6ed6ede977dae67da168ba67baa1f9"; + version = "0.3.5.0"; + sha256 = "5bb84795005ae4a8f828c78127044858c9d83cb8adcd373a337b3ac4588d2d2c"; libraryHaskellDepends = [ base ]; homepage = "http://github.com/aelve/microlens"; description = "A tiny part of the lens library with no dependencies"; @@ -128434,8 +128934,8 @@ self: { ({ mkDerivation, array, base, bytestring, containers, microlens }: mkDerivation { pname = "microlens-ghc"; - version = "0.3.0.0"; - sha256 = "d9bd1660bbfe8b988779c409e8fb770ebd57d0149a5b49002225033971dee67a"; + version = "0.3.1.0"; + sha256 = "cf9e78ca5abb459d4402a279c80ef07198d56ee4b0d51d7792dc0840e7217ef9"; libraryHaskellDepends = [ array base bytestring containers microlens ]; @@ -128501,8 +129001,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.1.6.0"; - sha256 = "7ddec415baac4a9f44d6cd1c14976990b5e9e5bc34cb399c29d2a0361b311194"; + version = "0.1.7.0"; + sha256 = "db74b98d8a8a0486c9f93e48ca7d9252b8f806a9bbbe9737457eeb91bb9555cd"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -128547,8 +129047,8 @@ self: { ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { pname = "microlens-th"; - version = "0.2.1.3"; - sha256 = "5701a5775e5204729d619dcedd81666dbd94c76574930beebb81cc943805d9a5"; + version = "0.2.2.0"; + sha256 = "bf52318c0898294ab356ba75f72b880b9453cbc9df809b71aeac8081105596f9"; libraryHaskellDepends = [ base containers microlens template-haskell ]; @@ -128747,8 +129247,8 @@ self: { }: mkDerivation { pname = "mighttpd2"; - version = "3.2.9"; - sha256 = "b7c8857b9384a3355b5716e2dc671a90855e24d5013786566384073e7b72ad3f"; + version = "3.2.10"; + sha256 = "b5d8b8a310598d952f3b4329808ef8211a6a0b224d66fcc18cef4f0a737d25f1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -129705,6 +130205,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "modify-fasta" = callPackage + ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative + , pipes, pipes-text, regex-tdfa, regex-tdfa-text, split, text + , text-show + }: + mkDerivation { + pname = "modify-fasta"; + version = "0.8.0.4"; + sha256 = "bab0205c7075337179b098b9445735033ec7b3d3e9a36730a2a085798c2eb543"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers fasta regex-tdfa regex-tdfa-text split text + text-show + ]; + executableHaskellDepends = [ + base containers fasta mtl optparse-applicative pipes pipes-text + split text + ]; + homepage = "https://github.com/GregorySchwartz/modify-fasta"; + description = "Modify fasta (and CLIP) files in several optional ways"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "modsplit" = callPackage ({ mkDerivation, base, directory, filepath, haskell98, mtl , utf8-string @@ -130195,6 +130719,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "monad-http" = callPackage + ({ mkDerivation, base, base-compat, bytestring, exceptions + , http-client, http-client-tls, http-types, monad-logger + , monadcryptorandom, MonadRandom, mtl, text, transformers + , transformers-compat + }: + mkDerivation { + pname = "monad-http"; + version = "0.1.0.0"; + sha256 = "a333b087835aa4902d0814e76fe4f32a523092fd7b13526aad415160a8317192"; + libraryHaskellDepends = [ + base base-compat bytestring exceptions http-client http-client-tls + http-types monad-logger monadcryptorandom MonadRandom mtl text + transformers transformers-compat + ]; + homepage = "https://github.com/futurice/haskell-monad-http#readme"; + description = "A class of monads which can do http requests"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "monad-interleave" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -131447,6 +131991,7 @@ self: { transformers-base ]; testHaskellDepends = [ base hspec mtl old-locale text time ]; + doHaddock = false; homepage = "https://github.com/mongodb-haskell/mongodb"; description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; license = "unknown"; @@ -139077,15 +139622,15 @@ self: { }) {}; "open-typerep" = callPackage - ({ mkDerivation, base, base-orphans, constraints, mtl, syntactic - , tagged, template-haskell + ({ mkDerivation, base, constraints, mtl, syntactic, tagged + , template-haskell }: mkDerivation { pname = "open-typerep"; - version = "0.4"; - sha256 = "d849bf8302ba7dab351a2e1a4df679fdf4938e17cc1f81c455eb163836839caa"; + version = "0.5"; + sha256 = "8060a300cc6a3f72a0b3aba74574399c112362f74bbc69498203e82dd0986d22"; libraryHaskellDepends = [ - base base-orphans constraints mtl syntactic tagged template-haskell + base constraints mtl syntactic tagged template-haskell ]; testHaskellDepends = [ base syntactic ]; homepage = "https://github.com/emilaxelsson/open-typerep"; @@ -139227,8 +139772,8 @@ self: { ({ mkDerivation, base, binary, data-default, GLUT, OpenGL }: mkDerivation { pname = "opengl-spacenavigator"; - version = "0.1.5.2"; - sha256 = "5a170fb876359fde525cb11b8dc2df4465275df3a091d75e663b4b45177df5e7"; + version = "0.1.5.4"; + sha256 = "a6b1d313e0dce09ad4134b69df197acec6cc75ff5f3c2db9ca18cf384db64a54"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary data-default GLUT OpenGL ]; @@ -141531,8 +142076,8 @@ self: { ({ mkDerivation, base, containers, lens, pandoc-types }: mkDerivation { pname = "pandoc-lens"; - version = "0.3.3"; - sha256 = "69502fc2630bb482ed4211b9966a0446403af59ee4cab78dd89cebe11b236cdc"; + version = "0.4.1"; + sha256 = "bd319f64abf3ebaac915e20135aadb06ab1f77ab562f7bac87580ceda37fc12d"; libraryHaskellDepends = [ base containers lens pandoc-types ]; homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; @@ -145516,6 +146061,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -145523,7 +146069,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_4" = callPackage ({ mkDerivation, aeson, aeson-extra, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -145543,6 +146089,32 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.5"; + sha256 = "d732a0e8114dae29874f3536592effc1626aea15ebef47f3355a4b426020acd1"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -145852,6 +146424,8 @@ self: { pname = "pgstream"; version = "0.1.0.3"; sha256 = "8f694b3f0e537fe61ae4d9904d4200f0c4e0c4010583b6e25157a481e2d66a7d"; + revision = "1"; + editedCabalFile = "6b08ae7064272e58cb3d6cd8df606d3d376de019febcffd042f8bbded7300426"; libraryHaskellDepends = [ async attoparsec base blaze-builder bytestring conduit conduit-extra deepseq mtl parallel postgresql-binary @@ -145860,7 +146434,7 @@ self: { uuid vector ]; jailbreak = true; - description = "Elsen Accelerated Computing Engine"; + description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -145937,10 +146511,8 @@ self: { }: mkDerivation { pname = "phoityne"; - version = "0.0.1.0"; - sha256 = "c95571f5da2e8bf383f473a3750a4d1538bb543b3ad46e26d62218a56604f5fe"; - revision = "1"; - editedCabalFile = "a65bbf3246f27cbf6bff03bbb436b87e6ab05185b458d47159836a1e5815c621"; + version = "0.0.1.1"; + sha256 = "ccd94c94aa1c9b2bc435d49ba8c6049f8e747edd2c766c748b794081771f0b29"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -145948,7 +146520,6 @@ self: { containers directory filepath gtk3 hslogger HStringTemplate MissingH mtl parsec process resourcet safe text transformers ]; - homepage = "under construction"; description = "ghci debug viewer with simple editor"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -146322,10 +146893,8 @@ self: { }: mkDerivation { pname = "pinch"; - version = "0.1.0.1"; - sha256 = "ed3ddee8deb594279d6759170144d23a445a49e93c5562da13322d6005ef58c7"; - revision = "1"; - editedCabalFile = "59a14772df78b19d44944e872c557184b631b29dcd60c478fceb33a7bc8e9696"; + version = "0.1.0.2"; + sha256 = "39add08af0cea1f818708fc69ecab07112b04aed575ab2724ced55e13ddf02ea"; libraryHaskellDepends = [ array base bytestring containers deepseq hashable text unordered-containers vector @@ -146334,12 +146903,34 @@ self: { base bytestring containers hspec hspec-discover QuickCheck text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/abhinav/pinch"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; + "pinch_0_2_0_0" = callPackage + ({ mkDerivation, array, base, bytestring, containers, deepseq + , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text + , unordered-containers, vector + }: + mkDerivation { + pname = "pinch"; + version = "0.2.0.0"; + sha256 = "6f37594c6df1fb0539c3d44413db57869b5d450a201655141784c01c177dc5aa"; + libraryHaskellDepends = [ + array base bytestring containers deepseq ghc-prim hashable text + unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers hspec hspec-discover QuickCheck text + unordered-containers vector + ]; + homepage = "https://github.com/abhinav/pinch"; + description = "An alternative implementation of Thrift for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pinchot" = callPackage ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers @@ -148172,8 +148763,8 @@ self: { }: mkDerivation { pname = "pointfree"; - version = "1.1"; - sha256 = "8e153171438680bb87b32283233eea2b1ba69406b15dc7c5a1d2a0b891557c52"; + version = "1.1.1.1"; + sha256 = "b7c12470eab0a9390f2de69f8860296cb7260ce57a40cb868aec717720479e7a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -148186,7 +148777,6 @@ self: { array base containers haskell-src-exts HUnit QuickCheck transformers ]; - jailbreak = true; description = "Tool for refactoring expressions into pointfree form"; license = "unknown"; }) {}; @@ -148197,8 +148787,8 @@ self: { }: mkDerivation { pname = "pointful"; - version = "1.0.6"; - sha256 = "13f3e2a07a6ee08265607149918ae8436e7537dbeb32de56a1cc3c2286f72c94"; + version = "1.0.7"; + sha256 = "4a884725d0e4e5771ae1d653fd1b4948ccd8d290910a22a1318bb32a53fcef15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155115,8 +155705,8 @@ self: { }: mkDerivation { pname = "rdf4h"; - version = "1.3.5"; - sha256 = "dfbe6dd5f6e26e7af696981bd2a9b51a601ba86779cbeb9da67552d923160f7e"; + version = "1.3.6"; + sha256 = "59b3f7a1893b1ec2c4ce967dd98d1dd1541e57ce1a697810d3b8fec27d21b1da"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155315,8 +155905,8 @@ self: { }: mkDerivation { pname = "reactive-banana"; - version = "1.0.0.0"; - sha256 = "8fd90599b197d6df46c16bdcc308b6577a6a677fb77274f88401cb383b5016ec"; + version = "1.0.0.1"; + sha256 = "a2f50eff5ddce60303fa365a9d24c9062877e59c0f98bdfd84c2f5d71e16340b"; libraryHaskellDepends = [ base containers hashable pqueue transformers unordered-containers vault @@ -156021,20 +156611,19 @@ self: { ({ mkDerivation, base, bytestring, bytestring-mmap, clock , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl , optparse-applicative, primitive, profunctors, QuickCheck, random - , reedsolomon, statistics, tasty, tasty-ant-xml, tasty-hunit - , tasty-quickcheck, vector + , statistics, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck + , vector }: mkDerivation { pname = "reedsolomon"; - version = "0.0.2.0"; - sha256 = "f1e61e07374a43ba48d2e8a152a451328ea343432009681c80a87cce8cd85d1c"; + version = "0.0.3.0"; + sha256 = "553b52e35c3d8890673ec7053dde4d2187b121ac6191019a47477a38b72b902e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring exceptions gitrev loop mtl primitive profunctors vector ]; - librarySystemDepends = [ reedsolomon ]; executableHaskellDepends = [ base bytestring bytestring-mmap clock criterion deepseq filepath optparse-applicative random statistics vector @@ -156044,12 +156633,11 @@ self: { QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; - jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {reedsolomon = null;}; + }) {}; "reenact" = callPackage ({ mkDerivation, base, hamid, HCodecs, stm, time, vector-space }: @@ -156095,6 +156683,7 @@ self: { version = "0.4"; sha256 = "26c9d963f1ff3bb28840465d16a390ba13f0a3ded8f473d7c890a174b6910ce5"; libraryHaskellDepends = [ base stm transformers ]; + doHaddock = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "A type class for monads with references using functional dependencies"; license = stdenv.lib.licenses.bsd3; @@ -156511,6 +157100,8 @@ self: { pname = "reform-blaze"; version = "0.2.4.1"; sha256 = "d4acf094d75cef125e9d587646b9bbb66ce927b43ed16c99738f11e80569678b"; + revision = "1"; + editedCabalFile = "abe598582e2e9627ce899e3fe47c1d495da157d0059115aca220beecee6a05f1"; libraryHaskellDepends = [ base blaze-html blaze-markup reform text ]; @@ -156599,7 +157190,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "regex-applicative" = callPackage + "regex-applicative_0_3_2_1" = callPackage ({ mkDerivation, base, containers, smallcheck, tasty, tasty-hunit , tasty-smallcheck, transformers }: @@ -156615,6 +157206,25 @@ self: { homepage = "https://github.com/feuerbach/regex-applicative"; description = "Regex-based parsing with applicative interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "regex-applicative" = callPackage + ({ mkDerivation, base, containers, smallcheck, tasty, tasty-hunit + , tasty-smallcheck, transformers + }: + mkDerivation { + pname = "regex-applicative"; + version = "0.3.3"; + sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; + libraryHaskellDepends = [ base containers transformers ]; + testHaskellDepends = [ + base containers smallcheck tasty tasty-hunit tasty-smallcheck + transformers + ]; + homepage = "https://github.com/feuerbach/regex-applicative"; + description = "Regex-based parsing with applicative interface"; + license = stdenv.lib.licenses.mit; }) {}; "regex-applicative-text" = callPackage @@ -156729,7 +157339,6 @@ self: { base containers logict mtl regex-tdfa sbv stream-monad text ]; executableHaskellDepends = [ base containers mtl regex-tdfa sbv ]; - jailbreak = true; homepage = "https://github.com/audreyt/regex-genex"; description = "From a regex, generate all possible strings it can match"; license = "unknown"; @@ -158347,17 +158956,17 @@ self: { "resolve-trivial-conflicts" = callPackage ({ mkDerivation, ansi-terminal, base, base-compat, Diff, directory - , filepath, mtl, process, unix + , filepath, mtl, optparse-applicative, process, unix }: mkDerivation { pname = "resolve-trivial-conflicts"; - version = "0.3.1.2"; - sha256 = "067c40b2d83a5804285065443659606a1188542d80615c009dc228d68a55dee1"; + version = "0.3.2.1"; + sha256 = "692b81bf392cadaa29c2257e272071e79a58f010b0e947db85620e3321ba0865"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - ansi-terminal base base-compat Diff directory filepath mtl process - unix + ansi-terminal base base-compat Diff directory filepath mtl + optparse-applicative process unix ]; homepage = "https://github.com/ElastiLotem/resolve-trivial-conflicts"; description = "Remove trivial conflict markers in a git repository"; @@ -160236,6 +160845,7 @@ self: { base bytestring containers HUnit QuickCheck tasty tasty-hunit tasty-quickcheck text ]; + doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; @@ -162517,7 +163127,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sbv" = callPackage + "sbv_4_4" = callPackage ({ mkDerivation, array, async, base, containers, crackNum , data-binary-ieee754, deepseq, directory, filepath, HUnit, mtl , old-time, pretty, process, QuickCheck, random, syb @@ -162540,9 +163150,10 @@ self: { homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sbv_5_7" = callPackage + "sbv" = callPackage ({ mkDerivation, array, async, base, base-compat, containers , crackNum, data-binary-ieee754, deepseq, directory, filepath , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb @@ -162567,7 +163178,6 @@ self: { homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbvPlugin" = callPackage @@ -162577,17 +163187,16 @@ self: { }: mkDerivation { pname = "sbvPlugin"; - version = "0.3"; - sha256 = "095f50de108abc82047d13404a30990aaa71c66f5f71238fee7e909ccfe52a71"; + version = "0.5"; + sha256 = "7675dfa9a1d1fc8030f04b2eb595601b39090f04c89f5b9b9d5e297588d0b85d"; libraryHaskellDepends = [ base containers ghc ghc-prim mtl sbv template-haskell ]; testHaskellDepends = [ base directory filepath process tasty tasty-golden ]; - jailbreak = true; homepage = "http://github.com/LeventErkok/sbvPlugin"; - description = "Analyze Haskell expressions using SBV/SMT"; + description = "Formally prove properties of Haskell programs using SBV/SMT"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -166605,6 +167214,8 @@ self: { pname = "sets"; version = "0.0.5"; sha256 = "78772618d3a85cbf91a20f0289eb833c4304d6a93c78bb266c38b60e85d2717b"; + revision = "1"; + editedCabalFile = "6a3f99b425c6a4ed373e1f1d2836a40b09e462f4e2744b76227f27a133acb34e"; libraryHaskellDepends = [ base commutative composition containers contravariant hashable invariant keys mtl QuickCheck semigroupoids semigroups transformers @@ -169215,10 +169826,8 @@ self: { ({ mkDerivation, base, bytestring, simpleirc }: mkDerivation { pname = "simpleirc-lens"; - version = "0.1.0.0"; - sha256 = "c53316ceaa2a17ad21b086c2c2dda7fb0ef8e7c45cd9af3f7aaf1f886efe2453"; - revision = "2"; - editedCabalFile = "618750d5b230316747d59d784bd40481a4404443316fc9c3a73e1349e3d10975"; + version = "0.2.0.0"; + sha256 = "7c09809b424c5cbee69d38d516d88eb21dcfb11ae31a06c2673a284f87a5bfb2"; libraryHaskellDepends = [ base bytestring simpleirc ]; homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; @@ -170058,8 +170667,8 @@ self: { }: mkDerivation { pname = "sloane"; - version = "4.1.2"; - sha256 = "3b02c1a095e23ba872bd8757bf0ef91362ce342f83e873496fe9166b639a09cc"; + version = "4.2.0"; + sha256 = "cd2bf21a9ea502ded331780b074991e4b5e06e7b276a6874c9b921bc70ba3595"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -170068,7 +170677,7 @@ self: { optparse-applicative resourcet stringsearch terminal-size text transformers ]; - homepage = "http://github.com/akc/sloane"; + homepage = "http://akc.is/sloane"; description = "A command line interface to Sloane's OEIS"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -170102,6 +170711,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "slug" = callPackage + ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent + , QuickCheck, test-framework, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "slug"; + version = "0.1.1"; + sha256 = "4512ca905017cc32a03e757b4cfc21e232dd35c671a068615b89de01d80bcec2"; + libraryHaskellDepends = [ + aeson base exceptions path-pieces persistent text + ]; + testHaskellDepends = [ + base exceptions path-pieces QuickCheck test-framework + test-framework-quickcheck2 text + ]; + homepage = "https://github.com/mrkkrp/slug"; + description = "Type-safe slugs for Yesod ecosystem"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "smallarray" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable }: mkDerivation { @@ -173641,8 +174270,8 @@ self: { }: mkDerivation { pname = "splot"; - version = "0.3.12"; - sha256 = "36260828f0f616fad7b99eb6b53ab4ee6136b53683b264e88635ff3ca3b86576"; + version = "0.3.14"; + sha256 = "77b8b2bbe99a21ac0c5b2f7b7cc5cf079302501ebebc4b77fa557ab071e178ed"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -174801,7 +175430,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack" = callPackage + "stack_0_1_10_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, bifunctors, binary , binary-tagged, blaze-builder, byteable, bytestring, Cabal @@ -174857,6 +175486,75 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; + doCheck = false; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "http://haskellstack.org"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "stack" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, bifunctors, binary + , binary-tagged, blaze-builder, byteable, bytestring, Cabal + , conduit, conduit-combinators, conduit-extra, containers + , cryptohash, cryptohash-conduit, deepseq, directory, edit-distance + , either, email-validate, enclosed-exceptions, errors, exceptions + , extra, fast-logger, file-embed, filelock, filepath, fsnotify + , gitrev, hashable, hastache, hpc, hspec, http-client + , http-client-tls, http-conduit, http-types, lifted-base + , monad-control, monad-logger, monad-loops, mtl, old-locale + , optparse-applicative, optparse-simple, path, persistent + , persistent-sqlite, persistent-template, pretty, process + , project-template, QuickCheck, resourcet, retry, safe, semigroups + , split, stm, streaming-commons, tar, template-haskell, temporary + , text, text-binary, time, transformers, transformers-base, unix + , unix-compat, unordered-containers, uuid, vector + , vector-binary-instances, void, word8, yaml, zlib + }: + mkDerivation { + pname = "stack"; + version = "1.0.0"; + sha256 = "cd2f606d390fe521b6ba0794de87edcba64c4af66856af09594907c2b4f4751d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring bifunctors binary binary-tagged blaze-builder + byteable bytestring Cabal conduit conduit-combinators conduit-extra + containers cryptohash cryptohash-conduit deepseq directory + edit-distance either email-validate enclosed-exceptions errors + exceptions extra fast-logger file-embed filelock filepath fsnotify + hashable hastache hpc http-client http-client-tls http-conduit + http-types lifted-base monad-control monad-logger monad-loops mtl + old-locale optparse-applicative path persistent persistent-sqlite + persistent-template pretty process project-template resourcet retry + safe semigroups split stm streaming-commons tar template-haskell + temporary text text-binary time transformers transformers-base unix + unix-compat unordered-containers uuid vector + vector-binary-instances void word8 yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal conduit containers directory either + exceptions filelock filepath gitrev hashable http-client + http-conduit lifted-base monad-control monad-logger mtl old-locale + optparse-applicative optparse-simple path process resourcet split + text transformers unordered-containers + ]; + testHaskellDepends = [ + async attoparsec base bytestring Cabal conduit conduit-extra + containers cryptohash directory exceptions filepath hspec + http-conduit monad-logger optparse-applicative path process + QuickCheck resourcet retry temporary text transformers unix-compat + ]; doHaddock = false; doCheck = false; enableSharedExecutables = false; @@ -174916,6 +175614,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stack-run" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, Cabal, conduit + , conduit-extra, directory, filepath, MissingH, projectroot + }: + mkDerivation { + pname = "stack-run"; + version = "0.1.0.0"; + sha256 = "cf128c392f5ab5fff66ae818b0cdf739767b518ba4db94b2db537490657f629d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-terminal base bytestring Cabal conduit conduit-extra directory + filepath MissingH projectroot + ]; + homepage = "https://github.com/yamadapc/stack-run"; + description = "An equivalent to cabal run for stack"; + license = stdenv.lib.licenses.mit; + }) {}; + "stack-run-auto" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time @@ -176224,7 +176941,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm" = callPackage + "stm_2_4_4" = callPackage ({ mkDerivation, array, base }: mkDerivation { pname = "stm"; @@ -176233,6 +176950,18 @@ self: { libraryHaskellDepends = [ array base ]; description = "Software Transactional Memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stm" = callPackage + ({ mkDerivation, array, base }: + mkDerivation { + pname = "stm"; + version = "2.4.4.1"; + sha256 = "8f999095ed8d50d2056fc6e185035ee8166c50751e1af8de02ac38d382bf3384"; + libraryHaskellDepends = [ array base ]; + description = "Software Transactional Memory"; + license = stdenv.lib.licenses.bsd3; }) {}; "stm-channelize" = callPackage @@ -177052,14 +177781,14 @@ self: { }: mkDerivation { pname = "streaming"; - version = "0.1.3.4"; - sha256 = "1a23959815ca3396521c850df6b90f6d8941eddab67e6512634fead2c9c29c5a"; + version = "0.1.4.0"; + sha256 = "063a14c2ce512b3265ae69d45f208d4c01ca6da9325fa9e471a1fd1acd968e3c"; libraryHaskellDepends = [ base bytestring containers exceptions mmorph mtl resourcet time transformers transformers-base ]; homepage = "https://github.com/michaelt/streaming"; - description = "an elementary streaming prelude and a general stream type"; + description = "an elementary streaming prelude and general stream type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -177069,8 +177798,8 @@ self: { }: mkDerivation { pname = "streaming-bytestring"; - version = "0.1.3.0"; - sha256 = "6573ebde6c87e608c0b82b02c25ac15094b93f1e99bd57aab275ca68d2630a13"; + version = "0.1.4.0"; + sha256 = "121f5dbbac81fd7f74bc6c1b5f3a2ee2d99d6c38c5f772442baa44c5e29d737c"; libraryHaskellDepends = [ base bytestring deepseq exceptions mmorph mtl resourcet streaming transformers transformers-base @@ -177380,17 +178109,19 @@ self: { "streaming-utils" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, http-client - , http-client-tls, json-stream, mtl, pipes, streaming + , http-client-tls, json-stream, mtl, pipes, resourcet, streaming , streaming-bytestring, transformers }: mkDerivation { pname = "streaming-utils"; - version = "0.1.3.0"; - sha256 = "f591d4e31aada0be4b0b9ac28b23a6b16d3c26db0f37b3ccb9e05239ab81e75b"; + version = "0.1.4.0"; + sha256 = "ab0c080387b29d8fd116944b560700fa37a23d38d33ab56813a64d74546de00e"; libraryHaskellDepends = [ aeson attoparsec base bytestring http-client http-client-tls - json-stream mtl pipes streaming streaming-bytestring transformers + json-stream mtl pipes resourcet streaming streaming-bytestring + transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; @@ -178406,8 +179137,8 @@ self: { }: mkDerivation { pname = "subleq-toolchain"; - version = "0.1.8.4"; - sha256 = "96ad146348d72277bb2ad567011edee12cdab4c88a8f196d758d635b0b236003"; + version = "0.1.8.5"; + sha256 = "6a993ee41a0a4b55ee0f9bde633c092d656ee053c7e12fc97b82f42b2e1babc6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers lens mtl parsec pretty ]; @@ -179440,16 +180171,17 @@ self: { "syntactic" = callPackage ({ mkDerivation, base, constraints, containers, data-hash, deepseq - , mtl, QuickCheck, tagged, tasty, tasty-golden, tasty-quickcheck - , tasty-th, template-haskell, tree-view, utf8-string + , mtl, QuickCheck, syb, tagged, tasty, tasty-golden + , tasty-quickcheck, tasty-th, template-haskell, tree-view + , utf8-string }: mkDerivation { pname = "syntactic"; - version = "3.2.1"; - sha256 = "4e7a38e32637364913a6bc4f9f802fdcb7b5eb21f2a9a2083356f12e1129df46"; + version = "3.4"; + sha256 = "93490ba1c33c4580187f6bf739ce43bae9dce3abee539deffc6d351769111a6e"; libraryHaskellDepends = [ - base constraints containers data-hash deepseq mtl template-haskell - tree-view + base constraints containers data-hash deepseq mtl syb + template-haskell tree-view ]; testHaskellDepends = [ base containers mtl QuickCheck tagged tasty tasty-golden @@ -180302,8 +181034,8 @@ self: { ({ mkDerivation, base, bytestring, network, transformers, unix }: mkDerivation { pname = "systemd"; - version = "1.0.0"; - sha256 = "d69fd0def965bfbd63bb6b27e74e24240d662f15dfb69d64ea6b9052018f3e82"; + version = "1.0.2"; + sha256 = "5235db71cd2ed14a77003c2c659582dee64f504f4de1af9ceab72f00af4cc2aa"; libraryHaskellDepends = [ base bytestring network transformers unix ]; @@ -180830,7 +181562,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_5" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -180842,6 +181574,21 @@ self: { homepage = "http://community.haskell.org/~ndm/tagsoup/"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.6"; + sha256 = "a8358c8c09b73912c4e832248d7543e4fddaf4ac9305f5f27d0854b9410d6ac8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "http://community.haskell.org/~ndm/tagsoup/"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -183438,6 +184185,8 @@ self: { pname = "text"; version = "1.2.0.3"; sha256 = "1d38bc0a8bf60c2f3581558a7870d6db7eefbe6da5df4d80a42c9b4837f8f986"; + revision = "1"; + editedCabalFile = "1ad163864f042122ba30e6707a3e4ffe8f2b7f69c2b24db365a478fbe1e3f119"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -183463,6 +184212,8 @@ self: { pname = "text"; version = "1.2.0.4"; sha256 = "865dbb8e824c197cdda6a15e8764c057335febe05573a764e54867460e0b9700"; + revision = "1"; + editedCabalFile = "ee605e146a984f0f9ea30b9e8d92a93a765f1bcc1fa6b6d23e0487fc3f210f0b"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -183488,6 +184239,8 @@ self: { pname = "text"; version = "1.2.0.6"; sha256 = "d8fd82e876b4d1f2f4c25605adde2092308524a246fb4b3f4f665d73aaf56f73"; + revision = "1"; + editedCabalFile = "1d5d0c706835f1ca74925cd3b0aa025bf4ee0fd795581b6038c13cd030fddb47"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -183496,6 +184249,34 @@ self: { QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + doCheck = false; + homepage = "https://github.com/bos/text"; + description = "An efficient packed Unicode text type"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "text_1_2_1_3" = callPackage + ({ mkDerivation, array, base, binary, bytestring, deepseq + , directory, ghc-prim, HUnit, integer-gmp, QuickCheck + , quickcheck-unicode, random, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "text"; + version = "1.2.1.3"; + sha256 = "98364c94f259ec95e380e44bde90b37708ec6f0d45eb9efe821ab67959e9f83f"; + revision = "1"; + editedCabalFile = "0f5b6a2f9204089b6cc58071b92e9f2fc3e6d773e3aa486b4a66bf25e124712a"; + libraryHaskellDepends = [ + array base binary bytestring deepseq ghc-prim integer-gmp + ]; + testHaskellDepends = [ + array base binary bytestring deepseq directory ghc-prim HUnit + integer-gmp QuickCheck quickcheck-unicode random test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; @@ -183510,8 +184291,8 @@ self: { }: mkDerivation { pname = "text"; - version = "1.2.1.3"; - sha256 = "98364c94f259ec95e380e44bde90b37708ec6f0d45eb9efe821ab67959e9f83f"; + version = "1.2.2.0"; + sha256 = "3fb3921488b4c10f1a389f4ad1a1ae44cf1a6d1ce4305a55d1d7c745cff50088"; libraryHaskellDepends = [ array base binary bytestring deepseq ghc-prim integer-gmp ]; @@ -183520,6 +184301,7 @@ self: { integer-gmp QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; @@ -184862,10 +185644,8 @@ self: { }: mkDerivation { pname = "these"; - version = "0.6.1.0"; - sha256 = "a8e9e677b72ab4ea4e922b860abdd5f61ac69cb66e7c9f060f08ac94110f2d0d"; - revision = "2"; - editedCabalFile = "40a48f80ea0b180829df3b2eef9c29947f3567998d24e4efff75a1fd9949b0e0"; + version = "0.6.2.0"; + sha256 = "9802c398812396525789156b39e23dcb03fe3d218d588f33700386897993bee7"; libraryHaskellDepends = [ base bifunctors containers data-default-class hashable mtl profunctors semigroupoids semigroups transformers @@ -184875,7 +185655,6 @@ self: { base bifunctors containers hashable QuickCheck quickcheck-instances tasty tasty-quickcheck transformers unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; license = stdenv.lib.licenses.bsd3; @@ -185670,6 +186449,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "time-parsers" = callPackage + ({ mkDerivation, attoparsec, base, bifunctors, parsec, parsers + , tasty, tasty-hunit, template-haskell, text, time + }: + mkDerivation { + pname = "time-parsers"; + version = "0.1.0.0"; + sha256 = "e4eb246c3d97e69785a26ecd91381b4cf80e4d1d4313381ad68861b7e72ccff8"; + libraryHaskellDepends = [ base parsers template-haskell time ]; + testHaskellDepends = [ + attoparsec base bifunctors parsec parsers tasty tasty-hunit + template-haskell text time + ]; + homepage = "https://github.com/phadej/time-parsers#readme"; + description = "Parsers for types in `time`"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "time-patterns" = callPackage ({ mkDerivation, base, intervals, lens, thyme, vector-space }: mkDerivation { @@ -185941,8 +186738,8 @@ self: { }: mkDerivation { pname = "timeplot"; - version = "1.0.29"; - sha256 = "3deb70a5e5be09c4380f63522576dff71ad5aeb923cb15250961c1423d1cfd06"; + version = "1.0.31"; + sha256 = "8dc8e4901b4b2f84c654d34f6721762bb662697b89dcfad969180a00820254b2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -185950,7 +186747,6 @@ self: { containers data-default lens regex-tdfa strptime template-haskell time transformers vcs-revision ]; - jailbreak = true; homepage = "http://haskell.org/haskellwiki/Timeplot"; description = "A tool for visualizing time series from log files"; license = stdenv.lib.licenses.bsd3; @@ -187163,8 +187959,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "tracy"; - version = "0.1.0.0"; - sha256 = "33e4e073bead5fa93236a23e47ab76ca6b38a74d33ada8af25a84ae446e1c3d9"; + version = "0.1.2.0"; + sha256 = "29e1a75da8bcf1029d6e918f6b681ba401fe41e01d3bace52852d7d35759b431"; libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; @@ -190307,7 +191103,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unbound-generics" = callPackage + "unbound-generics_0_2" = callPackage ({ mkDerivation, base, containers, contravariant, deepseq, mtl , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers, transformers-compat @@ -190326,9 +191122,10 @@ self: { homepage = "http://github.com/lambdageek/unbound-generics"; description = "Support for programming with names and binders using GHC Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unbound-generics_0_3" = callPackage + "unbound-generics" = callPackage ({ mkDerivation, base, containers, contravariant, deepseq, mtl , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers, transformers-compat @@ -190347,7 +191144,6 @@ self: { homepage = "http://github.com/lambdageek/unbound-generics"; description = "Support for programming with names and binders using GHC Generics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbounded-delays_0_1_0_8" = callPackage @@ -194140,8 +194936,8 @@ self: { ({ mkDerivation, base, binary, data-default-class, deepseq }: mkDerivation { pname = "verbosity"; - version = "0.2.0.0"; - sha256 = "495d515a29366317af0936b6d5113354552816f2acbf2587dcbf99688b239b6f"; + version = "0.2.1.0"; + sha256 = "faa4121629a8e397572bb61a37e0dd95e281f68c5f779eb7ee756517796f39d3"; libraryHaskellDepends = [ base binary data-default-class deepseq ]; homepage = "https://github.com/trskop/verbosity"; description = "Simple enum that encodes application verbosity"; @@ -194489,6 +195285,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "visibility" = callPackage + ({ mkDerivation, base, containers }: + mkDerivation { + pname = "visibility"; + version = "0.1.0.0"; + sha256 = "bdac4ba5246e3a1e8759d3c0d886f0671e3baf962479e67b44888412a9dd7784"; + libraryHaskellDepends = [ base containers ]; + homepage = "https://github.com/LukaHorvat/visibility"; + description = "Simple computation of visibility polygons"; + license = stdenv.lib.licenses.mit; + }) {}; + "vision" = callPackage ({ mkDerivation, array, base, containers, directory, filepath, glib , gtk, json, MonadCatchIO-transformers, mtl, parsec, PSQueue, stm @@ -194703,8 +195511,8 @@ self: { ({ mkDerivation, base, vrpn }: mkDerivation { pname = "vrpn"; - version = "0.2.1.0"; - sha256 = "eb79f54712078283ce181e33b4fdac12b42bed7abe6d8c79b28e55771613754b"; + version = "0.2.1.3"; + sha256 = "3268782b9412fe9cc3757dcaea0d9756ef9db4c80ea4004065df548384109d68"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -195011,6 +195819,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-accept-language" = callPackage + ({ mkDerivation, base, bytestring, file-embed, http-types, text + , wai, wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "wai-accept-language"; + version = "0.1.0.1"; + sha256 = "d0d3f3e9c45edfa0c6f05e7d58091806825a1e02261d70cb448dc146480a4a31"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types text wai wai-extra word8 + ]; + executableHaskellDepends = [ + base file-embed wai wai-app-static warp + ]; + homepage = "https://github.com/mitsuji/wai-accept-language"; + description = "Rewrite based on Accept-Language header"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-app-file-cgi" = callPackage ({ mkDerivation, array, attoparsec, attoparsec-conduit, base , blaze-builder, blaze-html, bytestring, case-insensitive, conduit @@ -195022,15 +195851,15 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.0.8"; - sha256 = "bdf0d1c9f563772c362f62f02d0bffbc2bc395642921e370bd39e50e9126b229"; + version = "3.0.9"; + sha256 = "947a818500ef5b1f2c1868d15a6a1054a3abb9e83ddfcacfb0d66d4e78ea308d"; libraryHaskellDepends = [ array attoparsec attoparsec-conduit base blaze-builder blaze-html bytestring case-insensitive conduit conduit-extra containers data-default-class directory filepath http-client http-conduit http-date http-types io-choice lifted-base mime-types network process sockaddr static-hash text transformers unix wai wai-conduit - word8 + warp word8 ]; testHaskellDepends = [ base bytestring conduit conduit-extra directory doctest filepath @@ -198278,8 +199107,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.11"; - sha256 = "f62ef8b6bd0402d99867cd207cad608b1904b7b88d84db9800f34eae37eb809c"; + version = "3.1.12"; + sha256 = "2a913a576d175e49b206e680b75f4823c7f90f45d8ba89aa57aae9c40d3298e1"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -201023,7 +201852,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wreq" = callPackage + "wreq_0_4_0_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base , base16-bytestring, base64-bytestring, byteable, bytestring , case-insensitive, containers, cryptohash, directory, doctest @@ -201058,6 +201887,46 @@ self: { homepage = "http://www.serpentine.com/wreq"; description = "An easy-to-use HTTP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wreq" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec + , authenticate-oauth, base, base16-bytestring, base64-bytestring + , byteable, bytestring, case-insensitive, containers, cryptohash + , directory, doctest, exceptions, filepath, ghc-prim, hashable + , http-client, http-client-tls, http-types, HUnit, lens, lens-aeson + , mime-types, network-info, psqueues, QuickCheck, snap-core + , snap-server, template-haskell, temporary, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat, transformers, unix-compat + , unordered-containers, uuid, vector + }: + mkDerivation { + pname = "wreq"; + version = "0.4.1.0"; + sha256 = "3b8409e2fb7670d7060fdaa780008eeecb08e9b65bdab9d9690d8d26e5cb8e6d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base base16-bytestring byteable + bytestring case-insensitive containers cryptohash exceptions + ghc-prim hashable http-client http-client-tls http-types lens + lens-aeson mime-types psqueues template-haskell text time + time-locale-compat unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base base64-bytestring bytestring + case-insensitive containers directory doctest filepath hashable + http-client http-types HUnit lens lens-aeson network-info + QuickCheck snap-core snap-server temporary test-framework + test-framework-hunit test-framework-quickcheck2 text time + transformers unix-compat uuid vector + ]; + doCheck = false; + homepage = "http://www.serpentine.com/wreq"; + description = "An easy-to-use HTTP client library"; + license = stdenv.lib.licenses.bsd3; }) {}; "wreq-sb" = callPackage @@ -201269,8 +202138,8 @@ self: { ({ mkDerivation, base, stm, time, wxcore }: mkDerivation { pname = "wx"; - version = "0.92.1.0"; - sha256 = "282f18d34c69cb0139ffd0728bfa97e52dfe4f325e7829ca0c76112b3e2bd408"; + version = "0.92.2.0"; + sha256 = "a1d02b17cd336f0c435381c9f2ce74aad2059c56a00c678954089b74065a97fb"; libraryHaskellDepends = [ base stm time wxcore ]; homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; @@ -201313,13 +202182,13 @@ self: { ({ mkDerivation, base, libX11, mesa, split, wxdirect, wxGTK }: mkDerivation { pname = "wxc"; - version = "0.92.1.1"; - sha256 = "e458be811c10a0ba56deb567c56c3b71579b8c923188236c1de8ccf844c1a602"; + version = "0.92.2.0"; + sha256 = "e0da20807bafb22d51a0922211da11eb428b2a6661cb53bc98f6e17be9775191"; libraryHaskellDepends = [ base split wxdirect ]; librarySystemDepends = [ libX11 mesa ]; libraryPkgconfigDepends = [ wxGTK ]; doHaddock = false; - postInstall = "cp -v dist/build/libwxc.so.0.92.1.1 $out/lib/libwxc.so"; + postInstall = "cp -v dist/build/libwxc.so.0.92.2.0 $out/lib/libwxc.so"; postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; @@ -201334,8 +202203,8 @@ self: { }: mkDerivation { pname = "wxcore"; - version = "0.92.1.0"; - sha256 = "ac621ea45ad61cbf1a91eb717f51a72d34d6ecc7925a161d90cf4ea7f3df73d6"; + version = "0.92.2.0"; + sha256 = "76128916c5d5df9cea9fc1e1b3b56d800d87874a431e98fca4427cb41cfe283e"; libraryHaskellDepends = [ array base bytestring containers directory filepath parsec stm time wxc wxdirect @@ -201353,8 +202222,8 @@ self: { }: mkDerivation { pname = "wxdirect"; - version = "0.92.1.0"; - sha256 = "33b78dd1ea76131a4f89e1482345ba707b4f7ebcee924a12113ed08f177b0edd"; + version = "0.92.2.0"; + sha256 = "2303834061c544f7e32ffd7aaf91e644ee89e178487689f109f06625f0eefd3b"; isLibrary = true; isExecutable = true; executableHaskellDepends = [ @@ -202782,8 +203651,8 @@ self: { }: mkDerivation { pname = "xml-conduit-parse"; - version = "0.3.0.0"; - sha256 = "facc29025b4e969bfa0cb7bbaf68220c95404740d8a11f60b17ebdb31e170f36"; + version = "0.3.1.0"; + sha256 = "62a8aacdd03e216cc1f89882205b933016c0aebe2ed3e113a966c5956ec572d5"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions parsers text xml-conduit xml-types @@ -204834,8 +205703,8 @@ self: { }: mkDerivation { pname = "yes-precure5-command"; - version = "5.5.1"; - sha256 = "6d49ed24d3d3358b390abd5f19b0c59b95fbb59398222c63886ba2aec18fb828"; + version = "5.5.2"; + sha256 = "19ed62fa3277ce1356005bd8715f41526057dd152c9a2c3ab18158431ff0c52a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ From 9ca37a8a4b4e10d36c072cecd8729ba4a1928c26 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 26 Dec 2015 12:52:47 +0100 Subject: [PATCH 659/707] haskell-text: doCheck=false override is now generated by hackage2nix This is necessary to break an finite recursion in the test suite dependencies. --- pkgs/development/haskell-modules/configuration-common.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c2ed3647113..642757e66da 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -43,11 +43,6 @@ self: super: { options_1_2 = dontCheck super.options_1_2; options = dontCheck super.options; statistics = dontCheck super.statistics; - text_1_1_1_3 = dontCheck super.text_1_1_1_3; - text_1_2_0_3 = dontCheck super.text_1_2_0_3; - text_1_2_0_4 = dontCheck super.text_1_2_0_4; - text_1_2_0_6 = dontCheck super.text_1_2_0_6; - text = dontCheck super.text; c2hs = if pkgs.stdenv.isDarwin then dontCheck super.c2hs else super.c2hs; # The package doesn't compile with ruby 1.9, which is our default at the moment. From 1a07ecf9c5b832963842201f60727ca67df4f22c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 28 Dec 2015 13:25:45 +0100 Subject: [PATCH 660/707] Add LTS Haskell 3.20. --- pkgs/top-level/haskell-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index ab3a1e06393..7a44d9303bd 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -313,6 +313,9 @@ rec { lts-3_19 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.19.nix { }; }; + lts-3_20 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.20.nix { }; + }; }; } From 919d44d29ffa5aa2ea499f97f1bf1a7009366fbc Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 28 Dec 2015 00:02:44 +0200 Subject: [PATCH 661/707] openssh: Compile with '--with-pid-dir' to improve build purity The configure script tries to probe whether /var/run exists when determining the location for the pid file, which is not very nice when doing chroot builds. Just set it explicitly to avoid the problem. For reference, the culprit in configure.ac: ```` piddir=/var/run if test ! -d $piddir ; then piddir=`eval echo ${sysconfdir}` case $piddir in NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;; esac fi AC_ARG_WITH([pid-dir], [ --with-pid-dir=PATH Specify location of ssh.pid file], ... ```` Also, use the `install-nokeys` target in installPhase so we avoid installing useless host keys into $out/etc/ssh and improve built purity as well. --- pkgs/tools/networking/openssh/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 2004e453a0d..67bf5be7d5b 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -39,6 +39,7 @@ stdenv.mkDerivation rec { # properly when cross building. configureFlags = [ "--localstatedir=/var" + "--with-pid-dir=/run" "--with-mantype=man" "--with-libedit=yes" "--disable-strip" @@ -61,6 +62,7 @@ stdenv.mkDerivation rec { cp contrib/ssh-copy-id.1 $out/share/man/man1/ ''; + installTargets = [ "install-nokeys" ]; installFlags = [ "sysconfdir=\${out}/etc/ssh" ]; From 36a08ce5a0e2fea1efea62ecf518fed1eba58f3e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 28 Dec 2015 11:44:03 -0600 Subject: [PATCH 662/707] arpack: 3.2.0 -> 3.3.0 --- .../libraries/science/math/arpack/default.nix | 23 ++++++++----------- .../science/math/arpack/openblas-libdir.patch | 11 --------- .../libraries/science/math/arpack/series | 1 - 3 files changed, 10 insertions(+), 25 deletions(-) delete mode 100644 pkgs/development/libraries/science/math/arpack/openblas-libdir.patch delete mode 100644 pkgs/development/libraries/science/math/arpack/series diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix index 13bf512b32d..c9f9bcfa9a7 100644 --- a/pkgs/development/libraries/science/math/arpack/default.nix +++ b/pkgs/development/libraries/science/math/arpack/default.nix @@ -1,33 +1,30 @@ -{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }: +{ stdenv, lib, copyPathsToStore, fetchurl, autoconf, automake, gettext, libtool +, gfortran, openblas }: with stdenv.lib; let - version = "3.2.0"; + version = "3.3.0"; in stdenv.mkDerivation { name = "arpack-${version}"; src = fetchurl { url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz"; - sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff"; + sha256 = "1cz53wqzcf6czmcpfb3vb61xi0rn5bwhinczl65hpmbrglg82ndd"; }; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postPatch = '' - substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib" - ''; - + nativeBuildInputs = [ autoconf automake gettext libtool ]; buildInputs = [ gfortran openblas ]; - # Auto-detection fails because gfortran brings in BLAS by default - configureFlags = [ - "--with-blas=-lopenblas" - "--with-lapack=-lopenblas" - ]; + BLAS_LIBS = "-L${openblas}/lib -lopenblas"; FFLAGS = optional openblas.blas64 "-fdefault-integer-8"; + preConfigure = '' + ./bootstrap + ''; + meta = { homepage = "http://github.com/opencollab/arpack-ng"; description = '' diff --git a/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch deleted file mode 100644 index 421f8e85f5f..00000000000 --- a/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch +++ /dev/null @@ -1,11 +0,0 @@ -Index: arpack-ng-3.2.0/arpack.pc.in -=================================================================== ---- arpack-ng-3.2.0.orig/arpack.pc.in -+++ arpack-ng-3.2.0/arpack.pc.in -@@ -5,5 +5,5 @@ libdir=@libdir@ - Name: arpack - Description: ARPACK-NG - Version: @PACKAGE_VERSION@ --Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ -+Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ - Cflags: diff --git a/pkgs/development/libraries/science/math/arpack/series b/pkgs/development/libraries/science/math/arpack/series deleted file mode 100644 index 6ac0b3286ef..00000000000 --- a/pkgs/development/libraries/science/math/arpack/series +++ /dev/null @@ -1 +0,0 @@ -openblas-libdir.patch From b863b5fc3595d4de69ffdf1732416b625286a72c Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" Date: Mon, 28 Dec 2015 20:28:48 +0100 Subject: [PATCH 663/707] Remove yasnippet's manual derivation 11503 related --- pkgs/top-level/emacs-packages.nix | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index fe57a2f122a..3a75f2a9fd1 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -1984,29 +1984,6 @@ let }; }; - yasnippet = melpaBuild rec { - pname = "yasnippet"; - version = "0.8.1"; - src = fetchFromGitHub { - owner = "capitaomorte"; - repo = pname; - rev = "01139a2deb9eda272b9b771fbbe15d096061efa4"; - sha256 = "1b0bxzkmw7yd1yf6326zf52aq63n283vy57pysj8cc34d9bk6nnk"; - }; - meta = { - description = "A template system for Emacs"; - longDescription = '' - YASnippet is a template system for Emacs. - It allows you to type an abbreviation and automatically expand it into - function templates. Bundled language templates include: C, C++, C#, - Perl, Python, Ruby, SQL, LaTeX, HTML, CSS and more. - The snippet syntax is inspired from TextMate's syntax, you can even import - most TextMate templates to YASnippet. - ''; - license = gpl2Plus; - }; - }; - zenburn-theme = melpaBuild rec { pname = "zenburn-theme"; version = "2.2"; From fddf0dfa49676812f8867c336d465cda8017fcfe Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" Date: Mon, 28 Dec 2015 20:29:54 +0100 Subject: [PATCH 664/707] Remove deferred's manual derivation 11503 related --- pkgs/top-level/emacs-packages.nix | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3a75f2a9fd1..17610ddb232 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -473,28 +473,6 @@ let }; }; - deferred = melpaBuild rec { - version = "0.3.2"; - pname = "deferred"; - - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-${pname}"; - rev = "896d4b53210289afe489e1ee7db4e12cb9248109"; - sha256 = "0ysahdyvlg240dynwn23kk2d9kb432zh2skr1gydm3rxwn6f18r0"; - }; - - meta = { - description = "Simple asynchronous functions for emacs-lisp"; - longDescription = '' - deferred.el provides facilities to manage asynchronous tasks. - The API and implementations were translated from JSDeferred (by cho45) - and Mochikit.Async (by Bob Ippolito) in JavaScript. - ''; - license = gpl3Plus; - }; - }; - diminish = melpaBuild rec { pname = "diminish"; version = "0.44"; From 4e4931507b9ad5c1fdd2335149a900cd5a8710a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Dec 2015 22:27:47 +0100 Subject: [PATCH 665/707] fix mesos build, fixes #11638 --- .../networking/cluster/mesos/default.nix | 2 +- .../cluster/mesos/fetch-mesos-deps.sh | 2359 +++++++++-------- .../networking/cluster/mesos/mesos-deps.nix | 2 +- 3 files changed, 1210 insertions(+), 1153 deletions(-) diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix index 0651f729cdc..cb6be73ec9b 100644 --- a/pkgs/applications/networking/cluster/mesos/default.nix +++ b/pkgs/applications/networking/cluster/mesos/default.nix @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { dontDisableStatic = true; src = fetchurl { - url = "http://archive.apache.org/dist/mesos/${version}/${name}.tar.gz"; + url = "mirror://apache/mesos/${version}/${name}.tar.gz"; sha256 = "1v5xpn4wal4vcrvcklchx9slkpa8xlwqkdbnxzy9zkzpq5g3arxr"; }; diff --git a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh index 3fafc427bbc..bcdae83839f 100644 --- a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh +++ b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh @@ -9,1235 +9,1292 @@ function fetchArtifact { curl --fail --location --insecure --retry 3 --max-redirs 20 "$url" --output "$out/$repoPath" } -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom -fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom -fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar -fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom -fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 -fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 -fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom -fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar -fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 -fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom -fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 +fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.jar +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.jar +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar +fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.jar +fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar +fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.jar +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 +fetchArtifact asm/asm/3.2/asm-3.2.pom +fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 +fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar +fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 +fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom +fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 +fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom +fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 +fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom +fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 +fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom +fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 +fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom +fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 +fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar +fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 +fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom +fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 +fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 +fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.jar fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 -fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 -fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 +fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom +fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 +fetchArtifact com/google/google/1/google-1.pom +fetchArtifact com/google/google/1/google-1.pom.sha1 +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 +fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom +fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar.sha1 +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom.sha1 +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom +fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 +fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom +fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 +fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom +fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 +fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar +fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 +fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom +fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar.sha1 fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom -fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar +fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 -fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom -fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 -fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar -fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 -fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom -fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 -fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom -fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar -fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar.sha1 +fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom +fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom +fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -fetchArtifact com/google/google/1/google-1.pom -fetchArtifact com/google/google/1/google-1.pom.sha1 -fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom -fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar -fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom -fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 +fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar +fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom.sha1 -fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 -fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 -fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom -fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 -fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom -fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar -fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom -fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar -fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 -fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 -fetchArtifact asm/asm/3.2/asm-3.2.pom -fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar -fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 -fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom -fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 -fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 -fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom -fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 -fetchArtifact velocity/velocity/1.5/velocity-1.5.pom.sha1 -fetchArtifact velocity/velocity/1.5/velocity-1.5.jar -fetchArtifact velocity/velocity/1.5/velocity-1.5.pom -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 -fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom -fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 -fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 -fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom -fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 -fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 -fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom -fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 -fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 +fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom +fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 +fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 +fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar +fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 +fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom +fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 +fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom +fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 +fetchArtifact junit/junit/4.10/junit-4.10.pom +fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 +fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom +fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 +fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom +fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 +fetchArtifact org/apache/apache/10/apache-10.pom +fetchArtifact org/apache/apache/10/apache-10.pom.sha1 +fetchArtifact org/apache/apache/11/apache-11.pom +fetchArtifact org/apache/apache/11/apache-11.pom.sha1 +fetchArtifact org/apache/apache/13/apache-13.pom +fetchArtifact org/apache/apache/13/apache-13.pom.sha1 +fetchArtifact org/apache/apache/2/apache-2.pom +fetchArtifact org/apache/apache/2/apache-2.pom.sha1 +fetchArtifact org/apache/apache/3/apache-3.pom +fetchArtifact org/apache/apache/3/apache-3.pom.sha1 +fetchArtifact org/apache/apache/4/apache-4.pom +fetchArtifact org/apache/apache/4/apache-4.pom.sha1 +fetchArtifact org/apache/apache/5/apache-5.pom +fetchArtifact org/apache/apache/5/apache-5.pom.sha1 +fetchArtifact org/apache/apache/6/apache-6.pom +fetchArtifact org/apache/apache/6/apache-6.pom.sha1 +fetchArtifact org/apache/apache/7/apache-7.pom +fetchArtifact org/apache/apache/7/apache-7.pom.sha1 +fetchArtifact org/apache/apache/9/apache-9.pom +fetchArtifact org/apache/apache/9/apache-9.pom.sha1 +fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar +fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 +fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom +fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom +fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom +fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom +fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom +fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom +fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar -fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 +fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom +fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom -fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom +fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 -fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom.sha1 -fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar -fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom -fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom -fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom -fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar -fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar -fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom -fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom -fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom -fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom -fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom -fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom -fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom -fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom -fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom -fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom -fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom -fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom -fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom -fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom -fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom -fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 -fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom -fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom -fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom -fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom -fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom -fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom -fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom -fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom -fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom -fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom -fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom -fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom -fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom -fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom -fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom -fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom -fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom -fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom -fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom -fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom -fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom -fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom -fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom -fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom -fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom -fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom -fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom -fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom -fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom -fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom -fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom -fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar -fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom -fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom -fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 -fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom -fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 -fetchArtifact org/apache/apache/7/apache-7.pom -fetchArtifact org/apache/apache/7/apache-7.pom.sha1 -fetchArtifact org/apache/apache/2/apache-2.pom -fetchArtifact org/apache/apache/2/apache-2.pom.sha1 -fetchArtifact org/apache/apache/4/apache-4.pom -fetchArtifact org/apache/apache/4/apache-4.pom.sha1 -fetchArtifact org/apache/apache/9/apache-9.pom -fetchArtifact org/apache/apache/9/apache-9.pom.sha1 -fetchArtifact org/apache/apache/13/apache-13.pom -fetchArtifact org/apache/apache/13/apache-13.pom.sha1 -fetchArtifact org/apache/apache/3/apache-3.pom -fetchArtifact org/apache/apache/3/apache-3.pom.sha1 -fetchArtifact org/apache/apache/5/apache-5.pom -fetchArtifact org/apache/apache/5/apache-5.pom.sha1 -fetchArtifact org/apache/apache/6/apache-6.pom.sha1 -fetchArtifact org/apache/apache/6/apache-6.pom -fetchArtifact org/apache/apache/11/apache-11.pom -fetchArtifact org/apache/apache/11/apache-11.pom.sha1 -fetchArtifact org/apache/apache/10/apache-10.pom -fetchArtifact org/apache/apache/10/apache-10.pom.sha1 -fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar -fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 -fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom -fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom -fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom -fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom -fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom -fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom -fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom -fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom -fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom.sha1 -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar.sha1 -fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom.sha1 -fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom +fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom +fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom +fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom +fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom +fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom +fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom +fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom +fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom +fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom +fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar +fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom +fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar +fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom +fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom +fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom +fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom +fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom +fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom +fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom +fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom +fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom +fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom +fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom +fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom +fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom +fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom +fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom +fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom +fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom +fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom +fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom +fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom +fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom +fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom +fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom +fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom +fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom +fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom +fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom +fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom +fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom +fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom +fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom +fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom +fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom +fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom +fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom +fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom +fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar +fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom +fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 +fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom +fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom.sha1 +fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 +fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom +fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 +fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom +fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 +fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom +fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar.sha1 +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom.sha1 +fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom +fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom +fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar -fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 -fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 -fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 +fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 -fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 -fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom.sha1 -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 -fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 -fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom +fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar +fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom.sha1 -fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 -fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar -fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom -fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 -fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom -fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 -fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom -fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 -fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar -fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 -fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 -fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 -fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 +fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom +fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom +fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom +fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 -fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar -fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom -fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom -fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom -fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom +fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 +fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar +fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 +fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom +fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom +fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom +fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom +fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom +fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 +fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom +fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 +fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom +fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom -fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom -fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom -fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom -fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar -fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom -fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar -fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 -fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 -fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 -fetchArtifact junit/junit/4.10/junit-4.10.pom -fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom -fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 -fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 -fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom -fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 -fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 -fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom -fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 -fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom -fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar.sha1 -fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom.sha1 +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 +fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar +fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom +fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom +fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom +fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom +fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar +fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar.sha1 +fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom +fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom.sha1 +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 +fetchArtifact velocity/velocity/1.5/velocity-1.5.jar +fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 +fetchArtifact velocity/velocity/1.5/velocity-1.5.pom +fetchArtifact velocity/velocity/1.5/velocity-1.5.pom.sha1 +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 +fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom +fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 stopNest diff --git a/pkgs/applications/networking/cluster/mesos/mesos-deps.nix b/pkgs/applications/networking/cluster/mesos/mesos-deps.nix index 7f60dab2def..f8d5dd2c9d6 100644 --- a/pkgs/applications/networking/cluster/mesos/mesos-deps.nix +++ b/pkgs/applications/networking/cluster/mesos/mesos-deps.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { outputHashAlgo = "sha256"; outputHashMode = "recursive"; - outputHash = "03qjq481ly5ajynlr9iqvrjra5fvv2jz4wp2f3in5vnxa61inrrk"; + outputHash = "12c6z5yvp60v57f6nijifp14i56bb5614hac1qg528s9liaf8vml"; buildInputs = [ curl ]; From af25cc9427e66fe31b1cdc755badae50c3aa08f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Dec 2015 22:39:22 +0100 Subject: [PATCH 666/707] fix virtviewer build --- pkgs/applications/virtualization/virt-viewer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix index 2fe7e0bcc23..a6e3dfff060 100644 --- a/pkgs/applications/virtualization/virt-viewer/default.nix +++ b/pkgs/applications/virtualization/virt-viewer/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp , libgcrypt, gnupg, cyrus_sasl, shared_mime_info, libvirt, libcap_ng, yajl -, gsettings_desktop_schemas, makeWrapper +, gsettings_desktop_schemas, makeWrapper, numactl , spiceSupport ? true, spice_gtk ? null, spice_protocol ? null, libcap ? null, gdbm ? null }: @@ -26,7 +26,7 @@ stdenv.mkDerivation { }; buildInputs = [ - pkgconfig intltool glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl + pkgconfig intltool glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl numactl shared_mime_info libvirt libcap_ng yajl gsettings_desktop_schemas makeWrapper ] ++ optionals spiceSupport [ spice_gtk spice_protocol libcap gdbm ]; From 876a182b662e05b38046da6b3df1783374a49e02 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 10:10:51 +0000 Subject: [PATCH 667/707] libvirt: fix including libpcap --- pkgs/development/libraries/libvirt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 2c31ef323f2..1c90b06f5b1 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libxml2 gnutls perl python readline gettext libtasn1 libgcrypt yajl makeWrapper - libxslt xhtml1 perlPackages.XMLXPath curl + libxslt xhtml1 perlPackages.XMLXPath curl libpcap ] ++ stdenv.lib.optionals stdenv.isLinux [ libpciaccess devicemapper lvm2 utillinux udev libcap_ng libnl numad numactl ] ++ stdenv.lib.optionals stdenv.isDarwin [ From 4e225b61d250100adcb46861788bef7d908baeeb Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 10:57:52 +0000 Subject: [PATCH 668/707] libvirt: add xen support --- pkgs/development/libraries/libvirt/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 1c90b06f5b1..9e69bb8d56f 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -2,7 +2,7 @@ , iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng , dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages -, curl, libiconv, gmp +, curl, libiconv, gmp, xen }: stdenv.mkDerivation rec { @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { gettext libtasn1 libgcrypt yajl makeWrapper libxslt xhtml1 perlPackages.XMLXPath curl libpcap ] ++ stdenv.lib.optionals stdenv.isLinux [ - libpciaccess devicemapper lvm2 utillinux udev libcap_ng libnl numad numactl + libpciaccess devicemapper lvm2 utillinux udev libcap_ng + libnl numad numactl xen ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv gmp ]; From 8260022a1bf7c4a63b095ad96eeb36c1e7786c84 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 11:39:13 +0000 Subject: [PATCH 669/707] libvirt-glib: 0.2.0 -> 0.2.3 This also fixes the build with the xen-supporting libvirt and removes obsolete workarounds. --- .../libraries/libvirt-glib/default.nix | 23 ++++--------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/pkgs/development/libraries/libvirt-glib/default.nix b/pkgs/development/libraries/libvirt-glib/default.nix index 39b05380472..ae83ce78d5f 100644 --- a/pkgs/development/libraries/libvirt-glib/default.nix +++ b/pkgs/development/libraries/libvirt-glib/default.nix @@ -1,36 +1,21 @@ { stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl , nettle, libgcrypt, python, pygobject, gobjectIntrospection, libcap_ng, numactl +, xen }: stdenv.mkDerivation rec { - name = "libvirt-glib-0.2.0"; + name = "libvirt-glib-0.2.3"; src = fetchurl { url = "http://libvirt.org/sources/glib/${name}.tar.gz"; - sha256 = "02saqkk4wzsimsan7s9yc5bx05xn7j00hnxhq4sczkgr4krf1drh"; + sha256 = "1pahj8qa7k2307sd57rwqwq1hijya02v0sxk91hl3cw48niimcf3"; }; buildInputs = [ pkgconfig libvirt glib libxml2 intltool libtool yajl nettle libgcrypt - python pygobject gobjectIntrospection libcap_ng numactl + python pygobject gobjectIntrospection libcap_ng numactl xen ]; - # Compiler flag -fstack-protector-all fixes this build error: - # - # ./.libs/libvirt-glib-1.0.so: undefined reference to `__stack_chk_guard' - # - # And the extra include path fixes this build error: - # - # In file included from ../libvirt-gobject/libvirt-gobject-domain-device.h:30:0, - # from /tmp/nix-build-libvirt-glib-0.1.7.drv-2/libvirt-glib-0.1.7/libvirt-gobject/libvirt-gobject.h:33, - # from :4: - # ../libvirt-gobject/libvirt-gobject-domain.h:33:29: fatal error: libvirt/libvirt.h: No such file or directory - # compilation terminated. - # make[3]: *** [LibvirtGObject-1.0.gir] Error 1 - preConfigure = '' - export NIX_CFLAGS_COMPILE="-fstack-protector-all -I${libvirt}/include" - ''; - meta = with stdenv.lib; { description = "Library for working with virtual machines"; longDescription = '' From 729fb7a44062c6878d5e20e49dd9b827ca8a8605 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 12:08:10 +0000 Subject: [PATCH 670/707] virt-viewer: fix build and clean up --- .../virtualization/virt-viewer/default.nix | 25 ++++++++----------- pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix index a6e3dfff060..f63eeb60306 100644 --- a/pkgs/applications/virtualization/virt-viewer/default.nix +++ b/pkgs/applications/virtualization/virt-viewer/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp , libgcrypt, gnupg, cyrus_sasl, shared_mime_info, libvirt, libcap_ng, yajl -, gsettings_desktop_schemas, makeWrapper, numactl +, gsettings_desktop_schemas, makeWrapper, xen, numactl , spiceSupport ? true, spice_gtk ? null, spice_protocol ? null, libcap ? null, gdbm ? null }: @@ -9,25 +9,20 @@ assert spiceSupport -> with stdenv.lib; -let sourceInfo = rec { - baseName="virt-viewer"; - version="2.0"; - name="${baseName}-${version}"; - url="http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz"; - hash="0dylhpk5rq9jz0l1cxs50q2s74z0wingygm1m33bmnmcnny87ig9"; -}; in - -stdenv.mkDerivation { - inherit (sourceInfo) name version; +stdenv.mkDerivation rec { + baseName = "virt-viewer"; + version = "2.0"; + name = "${baseName}-${version}"; src = fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.hash; + url = "http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz"; + sha256 = "0dylhpk5rq9jz0l1cxs50q2s74z0wingygm1m33bmnmcnny87ig9"; }; - buildInputs = [ - pkgconfig intltool glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl numactl + buildInputs = [ + pkgconfig intltool glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl shared_mime_info libvirt libcap_ng yajl gsettings_desktop_schemas makeWrapper + xen numactl ] ++ optionals spiceSupport [ spice_gtk spice_protocol libcap gdbm ]; postInstall = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05a1525fd4b..e8ceb32a499 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13469,7 +13469,7 @@ let neovim-pygui = pythonPackages.neovim_gui; - virtviewer = callPackage ../applications/virtualization/virt-viewer { + virt-viewer = callPackage ../applications/virtualization/virt-viewer { gtkvnc = gtkvnc.override { enableGTK3 = true; }; spice_gtk = spice_gtk.override { enableGTK3 = true; }; }; @@ -15865,6 +15865,7 @@ aliases = with self; rec { tftp_hpa = tftp-hpa; # added 2015-04-03 manpages = man-pages; # added 2015-12-06 mssys = ms-sys; # added 2015-12-13 + virtviewer = virt-viewer; # added 2015-12-24 }; tweakAlias = _n: alias: with lib; From 0bd5a83403881fe996f9d6944815a4027dfdc562 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 23:16:05 +0000 Subject: [PATCH 671/707] libosinfo: 0.2.11 -> 0.2.12 Unbreaks gnome-boxes 3.18 --- pkgs/development/libraries/libosinfo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libosinfo/default.nix b/pkgs/development/libraries/libosinfo/default.nix index 7c103d76bd5..83873cc3660 100644 --- a/pkgs/development/libraries/libosinfo/default.nix +++ b/pkgs/development/libraries/libosinfo/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "libosinfo-0.2.11"; + name = "libosinfo-0.2.12"; src = fetchurl { url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz"; - sha256 = "0889zvidhmpk3nd7c1xhh3fkk9i014dkr6zdlddh89kbflva2sxv"; + sha256 = "1vcg8ylh7q69s9y6hj94dqfffwfbann3i28yqgfc01navf6yl07s"; }; buildInputs = [ From 8eede9e41ecdd18b93388fb044eef445eb19ada3 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 24 Dec 2015 23:16:59 +0000 Subject: [PATCH 672/707] gnome-boxes, libguestfs: fix builds due to libvirt Adds link time dependencies which are now used in libvirt and unbreaks these packages --- pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix | 6 +++--- pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix | 6 +++--- pkgs/development/libraries/libguestfs/default.nix | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix index 10eaa34a8a2..2c670b00f8a 100644 --- a/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix @@ -2,8 +2,8 @@ , glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice_gtk , spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala , libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg -, desktop_file_utils, mtools, cdrkit, libcdio -, libusb, libarchive, acl +, desktop_file_utils, mtools, cdrkit, libcdio, libgudev +, libusb, libarchive, acl, xen, numactl }: # TODO: ovirt (optional) @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { gobjectIntrospection libxml2 gtk3 gtkvnc libvirt spice_gtk spice_protocol libuuid libsoup libosinfo systemd tracker vala libcap_ng libcap yajl gmp gdbm cyrus_sasl gnome3.defaultIconTheme libusb libarchive - librsvg desktop_file_utils acl + librsvg desktop_file_utils acl libgudev xen numactl ]; preFixup = '' diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix index 90955bd3ccf..6f5af374dbc 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix @@ -2,8 +2,8 @@ , glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice_gtk , spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala , libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg -, desktop_file_utils, mtools, cdrkit, libcdio -, libusb, libarchive, acl +, desktop_file_utils, mtools, cdrkit, libcdio, numactl, xen +, libusb, libarchive, acl, libgudev }: # TODO: ovirt (optional) @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { gobjectIntrospection libxml2 gtk3 gtkvnc libvirt spice_gtk spice_protocol libuuid libsoup libosinfo systemd tracker vala libcap_ng libcap yajl gmp gdbm cyrus_sasl gnome3.defaultIconTheme libusb libarchive - librsvg desktop_file_utils acl + librsvg desktop_file_utils acl libgudev numactl xen ]; preFixup = '' diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix index fb988db65d1..003c1cf3432 100644 --- a/pkgs/development/libraries/libguestfs/default.nix +++ b/pkgs/development/libraries/libguestfs/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, autoconf, automake, libtool, makeWrapper , ncurses, cpio, gperf, perl, cdrkit, flex, bison, qemu, pcre, augeas, libxml2 , acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex -, gmp, readline, file, libintlperl, GetoptLong, SysVirt }: +, gmp, readline, file, libintlperl, GetoptLong, SysVirt, numactl, xen }: stdenv.mkDerivation rec { name = "libguestfs-${version}"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { makeWrapper pkgconfig autoconf automake libtool ncurses cpio gperf perl cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig systemd fuse yajl libvirt gmp readline file hivex libintlperl GetoptLong - SysVirt + SysVirt numactl xen ]; configureFlags = "--disable-appliance --disable-daemon"; From 97a40f6de67ea64d93c8a1b30daede3c22026f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Dec 2015 22:49:11 +0100 Subject: [PATCH 673/707] pythonPackages.polylint: remove obsolete build --- pkgs/top-level/python-packages.nix | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 38144ac3f37..71980a33e2d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14000,25 +14000,6 @@ in modules // { }; - polylint = buildPythonPackage rec { - name = "polylint-${version}"; - version = "158125c6ab"; - - src = pkgs.fetchgit { - url = "https://github.com/bendavis78/polylint"; - rev = version; - sha256 = "ea10c67e9ce6df0936d6e2015382acba4f9cc559e2d6a9471f474f6bda78a266"; - }; - - propagatedBuildInputs = with self; [ html5lib lxml cssselect ]; - - meta = { - description = "Fast HTML linter for polymer"; - homepage = https://github.com/bendavis78/polylint; - }; - }; - - powerline = buildPythonPackage rec { rev = "2.1.4"; name = "powerline-${rev}"; From bfd77fdbbe8dbc56955d4204602ccb8ff7acfd34 Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Mon, 28 Dec 2015 22:49:36 +0100 Subject: [PATCH 674/707] amarok: add necessary dependencies to fix failing build --- pkgs/applications/audio/amarok/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index e0519f2db5c..aec2768e450 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -2,6 +2,7 @@ , qtscriptgenerator, gettext, curl , libxml2, mysql, taglib , taglib_extras, loudmouth , kdelibs , qca2, libmtp, liblastfm, libgpod , phonon , strigi, soprano, qjson, ffmpeg, libofa, nepomuk_core ? null +, lz4, lzo, snappy, libaio }: stdenv.mkDerivation rec { @@ -23,6 +24,7 @@ stdenv.mkDerivation rec { qtscriptgenerator stdenv.cc.libc gettext curl libxml2 mysql.lib taglib taglib_extras loudmouth kdelibs phonon strigi soprano qca2 libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core + lz4 lzo snappy libaio ]; # This is already fixed upstream, will be release in 2.9 From 4f6c12de3076baef5025d902ccf74689c968b240 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 27 Dec 2015 19:41:23 +0000 Subject: [PATCH 675/707] spotify: Use specific openssl version Spotify needs an ABI compatible libssl as it is a binary. Only changes things if openssl is aliased to another libssl. --- pkgs/applications/audio/spotify/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index f53154217a8..81c2ee59bc5 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl, freetype +{ fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl_1_0_1, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf , libgcrypt, chromium, udev, fontconfig , dbus, expat, ffmpeg_0_10 }: @@ -67,8 +67,8 @@ stdenv.mkDerivation { # Work around Spotify referring to a specific minor version of # OpenSSL. - ln -s ${openssl}/lib/libssl.so $libdir/libssl.so.1.0.0 - ln -s ${openssl}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 + ln -s ${openssl_1_0_1}/lib/libssl.so $libdir/libssl.so.1.0.0 + ln -s ${openssl_1_0_1}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 ln -s ${nspr}/lib/libnspr4.so $libdir/libnspr4.so ln -s ${nspr}/lib/libplc4.so $libdir/libplc4.so From 527f3574b7ecf317b1873165a1724715a801ba21 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Mon, 28 Dec 2015 16:59:24 -0500 Subject: [PATCH 676/707] stdenvBootstrapTools.x86_64-darwin: unbreak This is blocking Hydra from updating the nixpkgs-unstable channel. Also add myself as a maintainer so Hydra can notify me if it breaks again --- pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix index 932929a0efc..961adbeaaad 100644 --- a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix @@ -68,7 +68,7 @@ rec { # Copy what we need of clang cp -d ${llvmPackages.clang-unwrapped}/bin/clang $out/bin cp -d ${llvmPackages.clang-unwrapped}/bin/clang++ $out/bin - cp -d ${llvmPackages.clang-unwrapped}/bin/clang-3.6 $out/bin + cp -d ${llvmPackages.clang-unwrapped}/bin/clang-[0-9].[0-9] $out/bin cp -rL ${llvmPackages.clang-unwrapped}/lib/clang $out/lib @@ -150,6 +150,10 @@ rec { ''; allowedReferences = []; + + meta = { + maintainers = [ stdenv.lib.maintainers.copumpkin ]; + }; }; dist = stdenv.mkDerivation { From af751a7845bc16d7ea95e4d1cefbe4e07baae49e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Dec 2015 23:14:28 +0100 Subject: [PATCH 677/707] qt55.openbr: fix source --- pkgs/development/libraries/openbr/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/openbr/default.nix b/pkgs/development/libraries/openbr/default.nix index 2b4d11919fb..dd40311b807 100644 --- a/pkgs/development/libraries/openbr/default.nix +++ b/pkgs/development/libraries/openbr/default.nix @@ -1,14 +1,15 @@ -{ stdenv, fetchgit, cmake, opencv, qtbase, qtsvg }: +{ stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }: stdenv.mkDerivation rec { version = "0.5"; name = "openbr-${version}"; - src = fetchgit { - url = "https://github.com/biometrics/openbr.git"; + src = fetchFromGitHub { + owner = "biometrics"; + repo = "openbr"; rev = "cc364a89a86698cd8d3052f42a3cb520c929b325"; - sha256 = "16b3mmsf9r1yqqaw89fx0c3bgfg86dz4phry89wqy2hw05szgda3"; + sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz"; }; buildInputs = [ opencv qtbase qtsvg ]; From 090efc2907fb4c37cd519ec3005a026a34120d8c Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Wed, 23 Dec 2015 18:00:22 -0500 Subject: [PATCH 678/707] subgit: init at 3.1.0 --- .../git-and-tools/default.nix | 2 ++ .../git-and-tools/subgit/default.nix | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/version-management/git-and-tools/subgit/default.nix diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 6d832f9778f..4d3c31b4f91 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -94,6 +94,8 @@ rec { svn2git_kde = callPackage ./svn2git-kde { }; + subgit = callPackage ./subgit { }; + darcsToGit = callPackage ./darcs-to-git { }; gitflow = callPackage ./gitflow { }; diff --git a/pkgs/applications/version-management/git-and-tools/subgit/default.nix b/pkgs/applications/version-management/git-and-tools/subgit/default.nix new file mode 100644 index 00000000000..0774bbc9a62 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/subgit/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, unzip, makeWrapper, jre }: + +stdenv.mkDerivation { + name = "subgit-3.1.0"; + + meta = { + description = "A tool for a smooth, stress-free SVN to Git migration"; + longDescription = "Create writable Git mirror of a local or remote Subversion repository and use both Subversion and Git as long as you like. You may also do a fast one-time import from Subversion to Git."; + homepage = http://subgit.com; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.all; + }; + + buildInputs = [ unzip makeWrapper ]; + + installPhase = '' + mkdir $out; + cp -r bin lib $out; + wrapProgram $out/bin/subgit --set JAVA_HOME ${jre}; + ''; + + src = fetchurl { + url = http://old.subgit.com/download/subgit-3.1.0.zip; + sha256 = "08qhpg6y2ziwplm0z1ghh1wfp607sw4hyb53a7qzfn759j5kcdrg"; + }; +} \ No newline at end of file From 2c9369dc439ef7e68ed4839b16dad0d2d7628b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Tue, 29 Dec 2015 09:17:06 +0100 Subject: [PATCH 679/707] i2pd: 2.1.0 -> 2.2.0 --- pkgs/tools/networking/i2pd/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/networking/i2pd/default.nix b/pkgs/tools/networking/i2pd/default.nix index 4007ec4add1..a11f0347ce5 100644 --- a/pkgs/tools/networking/i2pd/default.nix +++ b/pkgs/tools/networking/i2pd/default.nix @@ -4,24 +4,20 @@ stdenv.mkDerivation rec { name = pname + "-" + version; pname = "i2pd"; - version = "2.1.0"; + version = "2.2.0"; src = fetchFromGitHub { owner = "PurpleI2P"; repo = pname; rev = version; - sha256 = "06y6pi0wlxpasncm4qq30sh0cavwl2f4gdz0hss70if8mr6z9hyq"; + sha256 = "0slrfmgrf9b689wpsdpvsnmhbqsygcy558dz259k6xcf50f7lfqh"; }; buildInputs = [ boost zlib openssl ]; makeFlags = "USE_AESNI=no"; - patches = [ (fetchpatch { - url = https://github.com/PurpleI2P/i2pd/commit/4109ab1590791f3c1bf4e9eceec2d43be7b5ea47.patch; - sha256 = "17zg9iah59icy8nn1nwfnsnbzpafgrsasz1pmb2q4iywb7wbnkzi"; - }) ]; installPhase = '' - install -D i2p $out/bin/i2pd + install -D i2pd $out/bin/i2pd ''; meta = with stdenv.lib; { From b604318ad85834f1368d531014a75b0b74b0b775 Mon Sep 17 00:00:00 2001 From: Emery Date: Tue, 29 Dec 2015 11:44:07 +0100 Subject: [PATCH 680/707] ratox: fix src hash mismatch --- .../networking/instant-messengers/ratox/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/ratox/default.nix b/pkgs/applications/networking/instant-messengers/ratox/default.nix index 238b7209799..053e8a9c973 100644 --- a/pkgs/applications/networking/instant-messengers/ratox/default.nix +++ b/pkgs/applications/networking/instant-messengers/ratox/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://git.2f30.org/ratox/snapshot/${name}.tar.gz"; - sha256 = "1fm9b3clvnc2nf0pd1z8g08kfszwhk1ij1lyx57wl8vd51z4xsi5"; + sha256 = "0xnw3zcz9frmcxqhwg38hhnsy1g5xl9yc19nl0vwi5awz8wqqy19"; }; buildInputs = [ libtoxcore ]; From 4f3d769d6f75f47c748f82397bf439e589689dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 29 Dec 2015 13:15:34 +0100 Subject: [PATCH 681/707] conky: add meta.platforms --- pkgs/os-specific/linux/conky/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix index 46b749f55e8..97eab37e4e1 100644 --- a/pkgs/os-specific/linux/conky/default.nix +++ b/pkgs/os-specific/linux/conky/default.nix @@ -122,5 +122,6 @@ stdenv.mkDerivation rec { description = "Advanced, highly configurable system monitor based on torsmo"; maintainers = [ maintainers.guibert ]; license = licenses.gpl3Plus; + platforms = platforms.linux; }; } From bc6e050f211ce44e838368895c745da30d0bfd61 Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Thu, 24 Dec 2015 16:32:44 -0800 Subject: [PATCH 682/707] mesa: add download url (close #11942) vcunat refactored a bit (too long line, etc.) and reordered the URLs. --- pkgs/development/libraries/mesa/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 11fafc8f038..3bfdf8f3a77 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -33,8 +33,10 @@ stdenv.mkDerivation { src = fetchurl { urls = [ - "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" + (with stdenv.lib; ''ftp://ftp.freedesktop.org/pub/mesa/older-versions/'' + + head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'') + "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" ]; sha256 = "9c255a2a6695fcc6ef4a279e1df0aeaf417dc142f39ee59dfb533d80494bb67a"; }; From f1aa829a43e39f64c47e557c08b2fb41fbc68eea Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Sat, 26 Dec 2015 17:25:40 +0100 Subject: [PATCH 683/707] use official taglib-extras source --- pkgs/development/libraries/taglib-extras/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/taglib-extras/default.nix b/pkgs/development/libraries/taglib-extras/default.nix index 623119703d4..882116bd3f1 100644 --- a/pkgs/development/libraries/taglib-extras/default.nix +++ b/pkgs/development/libraries/taglib-extras/default.nix @@ -3,7 +3,7 @@ stdenv.mkDerivation rec { name = "taglib-extras-1.0.1"; src = fetchurl { - url = "http://www.kollide.net/~jefferai/${name}.tar.gz"; + url = "http://ftp.rz.uni-wuerzburg.de/pub/unix/kde/taglib-extras/1.0.1/src/${name}.tar.gz"; sha256 = "0cln49ws9svvvals5fzxjxlzqm0fzjfymn7yfp4jfcjz655nnm7y"; }; buildInputs = [ taglib ]; From f6df6d8d468a6cee3e995df8206ed5903d416797 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 29 Dec 2015 15:56:20 +0100 Subject: [PATCH 684/707] linux: 3.18.24 -> 3.18.25 --- pkgs/os-specific/linux/kernel/linux-3.18.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index 544cd4e897f..24a568f5feb 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.24"; + version = "3.18.25"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "06wcgzhbiddzrabfd3z0zsb9qwa2phva5cq7gg0mzff67a6cym7d"; + sha256 = "14pz8mvk48i2y1ffkhczjcm2icpb2g9xlpzyrvvis42n5178fjf6"; }; features.iwlwifi = true; From 36a4600422dccf4a2deb91652e7f6e992bab6696 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 29 Dec 2015 15:48:40 +0100 Subject: [PATCH 685/707] remove fetchFromGitorious (close #12024) The site has retired and it's not used by anything. --- pkgs/top-level/all-packages.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0e8f03b4904..d852fdd24a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -374,13 +374,6 @@ let meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; }; - # gitorious example - fetchFromGitorious = { owner, repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; - url = "https://gitorious.org/${owner}/${repo}/archive/${rev}.tar.gz"; - meta.homepage = "https://gitorious.org/${owner}/${repo}/"; - }; - # cgit example, snapshot support is optional in cgit fetchFromSavannah = { repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { inherit name sha256; @@ -2968,7 +2961,7 @@ let rtorrent = callPackage ../tools/networking/p2p/rtorrent { }; rubber = callPackage ../tools/typesetting/rubber { }; - + runzip = callPackage ../tools/archivers/runzip { }; rxp = callPackage ../tools/text/xml/rxp { }; From 74aac178782af088cd40e2a1c224223b6692dc7c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 29 Dec 2015 16:39:26 +0100 Subject: [PATCH 686/707] Force rebuild of some corrupted files --- nixos/modules/virtualisation/qemu-vm.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index e90e319a36b..5c468604443 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -40,16 +40,17 @@ let if [ -z "$TMPDIR" -o -z "$USE_TMPDIR" ]; then TMPDIR=$(mktemp -d nix-vm.XXXXXXXXXX --tmpdir) fi + # Create a directory for exchanging data with the VM. mkdir -p $TMPDIR/xchg ${if cfg.useBootLoader then '' - # Create a writable copy/snapshot of the boot disk - # A writable boot disk can be booted from automatically + # Create a writable copy/snapshot of the boot disk. + # A writable boot disk can be booted from automatically. ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 -b ${bootDisk}/disk.img $TMPDIR/disk.img || exit 1 ${if cfg.useEFIBoot then '' - # VM needs a writable flash BIOS + # VM needs a writable flash BIOS. cp ${bootDisk}/bios.bin $TMPDIR || exit 1 chmod 0644 $TMPDIR/bios.bin || exit 1 '' else '' From b91dcad4bc73006b79db21802e1e46c333298093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Dec 2015 16:50:21 +0100 Subject: [PATCH 687/707] fetchFromBitBucket: auto-remove an impure file Also fix the hash in goPackages.inflect, the only user of the fetcher ATM. Closes #12002 (different `inflect` fix), fixes #12012. Using fetchzip-derived functions is likely more efficient than fetchhg, and it's lighter on dependencies (hash is the same as with fetchhg in this case). --- pkgs/build-support/fetchzip/default.nix | 6 ++++-- pkgs/top-level/all-packages.nix | 1 + pkgs/top-level/go-packages.nix | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/fetchzip/default.nix b/pkgs/build-support/fetchzip/default.nix index 46e7d917160..9015f951a51 100644 --- a/pkgs/build-support/fetchzip/default.nix +++ b/pkgs/build-support/fetchzip/default.nix @@ -10,6 +10,7 @@ { # Optionally move the contents of the unpacked tree up one level. stripRoot ? true , url +, extraPostFetch ? "" , ... } @ args: lib.overrideDerivation (fetchurl ({ @@ -47,7 +48,8 @@ lib.overrideDerivation (fetchurl ({ fi '' else '' mv "$unpackDir"/* "$out/" - ''); -} // removeAttrs args [ "stripRoot" ])) + '') #*/ + + extraPostFetch; +} // removeAttrs args [ "stripRoot" "extraPostFetch" ])) # Hackety-hack: we actually need unzip hooks, too (x: {nativeBuildInputs = x.nativeBuildInputs++ [unzip];}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d852fdd24a4..c20403321c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -372,6 +372,7 @@ let inherit name sha256; url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; + extraPostFetch = ''rm -f "$out"/.hg_archival.txt''; # impure file; see #12002 }; # cgit example, snapshot support is optional in cgit diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e1825ace20d..b05793a6043 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1751,7 +1751,7 @@ let rev = "8961c3750a47b8c0b3e118d52513b97adf85a7e8"; owner = "pkg"; repo = "inflect"; - sha256 = "04iln5b9iyvr6bcn5cj2zq6vqk3a2b4vsy48y2kylhk7qnakip99"; + sha256 = "11qdyr5gdszy24ai1bh7sf0cgrb4q7g7fsd11kbpgj5hjiigxb9a"; }; }; From 6a51a615b4c144702a64c586eccc35ad709ab119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Dec 2015 17:07:26 +0100 Subject: [PATCH 688/707] goPackages.inflect: add version suffix Instead of approach in #12002, I chose the commit-date style to preserve linearity if it (ever) gets updates. The package seems to do no releases. --- pkgs/top-level/go-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b05793a6043..93eb04e5442 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1745,7 +1745,7 @@ let }; inflect = buildGoPackage { - name = "inflect"; + name = "inflect-2013-08-29"; goPackagePath = "bitbucket.org/pkg/inflect"; src = fetchFromBitbucket { rev = "8961c3750a47b8c0b3e118d52513b97adf85a7e8"; From 7906169ce18577fb4cba9a5dd09bab5557e99c20 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 29 Dec 2015 17:21:49 +0100 Subject: [PATCH 689/707] Add some preferLocalBuild --- nixos/release.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/release.nix b/nixos/release.nix index e1235c5fe28..2dc3f9efc71 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -47,6 +47,7 @@ let }; inherit iso; passthru = { inherit config; }; + preferLocalBuild = true; } '' mkdir -p $out/nix-support @@ -149,6 +150,7 @@ in rec { maintainers = maintainers.eelco; }; ova = config.system.build.virtualBoxOVA; + preferLocalBuild = true; } '' mkdir -p $out/nix-support @@ -168,6 +170,7 @@ in rec { boot.loader.grub.device = mkDefault "/dev/sda"; }); }).config.system.build.toplevel; + preferLocalBuild = true; } "mkdir $out; ln -s $toplevel $out/dummy"); From 63bf2a551e9f371ef26b40c12d4db61d3b56fbda Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 29 Dec 2015 17:54:06 +0100 Subject: [PATCH 690/707] nixUnstable: 1.11pre4334_7431932 -> 1.11pre4345_b8258a4 --- pkgs/tools/package-management/nix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 7f134c18844..36c075071d6 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -97,10 +97,10 @@ in rec { }; nixUnstable = lib.lowPrio (common rec { - name = "nix-1.11pre4334_7431932"; + name = "nix-1.11pre4345_b8258a4"; src = fetchurl { - url = "http://hydra.nixos.org/build/28747184/download/4/${name}.tar.xz"; - sha256 = "ccb0c5be03b9af1bf89e79758868b0cd62c79fd7a0f0791cdb99df86e4240fc4"; + url = "http://hydra.nixos.org/build/29615957/download/4/${name}.tar.xz"; + sha256 = "06944da78e46d8f2cbeeb02c1ab3127a06935e984bcf7a972041c7d91814f0f2"; }; }); From 6da327b43367ec13eb21d06f7595856b5c54c363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 29 Dec 2015 19:32:30 +0100 Subject: [PATCH 691/707] Chromium updates --- .../networking/browsers/chromium/common.nix | 1 + .../browsers/chromium/source/sources.nix | 24 +++++++++---------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index fbd775f6f98..237dfd17ac7 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -145,6 +145,7 @@ let linux_use_gold_binary = false; linux_use_gold_flags = false; proprietary_codecs = false; + use_sysroot = false; use_gnome_keyring = gnomeKeyringSupport; use_gconf = gnomeSupport; use_gio = gnomeSupport; diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 04ab0c95b16..dc6f22434db 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,21 +1,21 @@ # This file is autogenerated from update.sh in the parent directory. { dev = { - version = "49.0.2587.3"; - sha256 = "05mhd6z833w1r4v7jz8rbm06j29h0l4ix45v29l5npv41sqr4lj2"; - sha256bin32 = "1lrf3zfzy3yif854nkrl6acdfwc93xhry9ykfjjr1a4mpnlqbp1v"; - sha256bin64 = "1sn1p5jh2gy463np99xw7jhcl9hd28b4gm2wqv19z0a67k84jdpd"; + version = "49.0.2593.0"; + sha256 = "1krkf8dg10xnvxs4zfvy2rkp0v3gxg55418b11kmfywsxjfi09hv"; + sha256bin32 = "0sarfj8r6x28pbmcpd5facm6liifazj744c9qn6ci6xg7f8jlnxi"; + sha256bin64 = "1l5s504mmr4v5y67fsla9hyrk7dm155yc790ld87s1ya03h455gr"; }; beta = { - version = "48.0.2564.41"; - sha256 = "06k5vjv1argvxssjrlvyxn5gi93gx8r8dqanv3cpvwpw8nwyqrdj"; - sha256bin32 = "0k77hpacnz0plh67wd2p6dxbpkcb8930p08inxy3mzjlralq9fyj"; - sha256bin64 = "1zdisb36s5nh7h7swfyjb2shxpapp1anpil4prfd3jkf6bv64k1i"; + version = "48.0.2564.48"; + sha256 = "1qasdz9rwdqa2if8y4kkk19fspgjpk3q782c8l1p5n2cm25lkfa9"; + sha256bin32 = "0pgc3iy4s7whmckc14r0cvgmk7pqgidd2w0xv53bfq2k504b5ykw"; + sha256bin64 = "1lx6l8s2wdgzldbm8licpf22l6z13mvq05xlbn8ybizhn159nykj"; }; stable = { - version = "47.0.2526.80"; - sha256 = "01adc5fh2agk2d5a15pg230x3h43h4lxmzlvwbm43dm34f1i81xi"; - sha256bin32 = "0779z35snwc3qnh5fzf9gm4mmw8vj0j8k3w3vlksn532hclyl6b6"; - sha256bin64 = "0xj9i06xdsarfl1jfw6ra3j1ri0iqnjafqw2p2r4kaqsgf1a2fdv"; + version = "47.0.2526.106"; + sha256 = "1rjqkawj7l127cd9s1wxwn4v7dfbrlahml98sam3fg8a6drm0lv4"; + sha256bin32 = "14svd5x8lzfyyigfirxx1q9pg2bsnnb0fdwa7vvh1awq3zzfd38n"; + sha256bin64 = "121289vwaz391b32hp2lihlpaql76y44gdpqkl9a3md0j1zk1nd9"; }; } From 7466e0f264426f47086dbabb0384b0ebd3026c0c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 29 Dec 2015 13:23:49 -0600 Subject: [PATCH 692/707] melpaBuild: accept recipeFile in lieu of fileSpecs --- pkgs/build-support/emacs/melpa.nix | 11 +++++++++++ pkgs/build-support/emacs/melpa2nix.el | 9 +++++++++ 2 files changed, 20 insertions(+) diff --git a/pkgs/build-support/emacs/melpa.nix b/pkgs/build-support/emacs/melpa.nix index a1f10ad3143..8fd2a00b50a 100644 --- a/pkgs/build-support/emacs/melpa.nix +++ b/pkgs/build-support/emacs/melpa.nix @@ -8,6 +8,8 @@ with lib; { pname , version +, recipeFile ? null + , files ? null , fileSpecs ? [ "*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" @@ -43,8 +45,17 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({ runHook preBuild emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \ + ${if recipeFile == null + then + '' -f melpa2nix-build-package \ ${pname} ${version} ${targets} + '' + else + '' + -f melpa2nix-build-package-from-recipe \ + ${pname} ${version} ${recipeFile} + ''} runHook postBuild ''; diff --git a/pkgs/build-support/emacs/melpa2nix.el b/pkgs/build-support/emacs/melpa2nix.el index 858ffd7593b..f1309fc0d57 100644 --- a/pkgs/build-support/emacs/melpa2nix.el +++ b/pkgs/build-support/emacs/melpa2nix.el @@ -21,6 +21,15 @@ (`(,package ,version . ,files) (melpa2nix-package-build-archive package version files)))) +(defun melpa2nix-build-package-from-recipe () + (if (not noninteractive) + (error "`melpa2nix-build-package' is to be used only with -batch")) + (pcase command-line-args-left + (`(,package ,version ,recipe-file) + (let* ((rcp (cdr (package-build--read-from-file recipe-file))) + (files (package-build--config-file-list rcp))) + (melpa2nix-package-build-archive package version files))))) + (defun melpa2nix-package-build-archive (name version files) "Build a package archive for package NAME." (package-build--message "\n;;; %s\n" name) From 1d8e3db9fff600d444644d3619da965e050290f5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 29 Dec 2015 13:24:28 -0600 Subject: [PATCH 693/707] melpa-packages: use recipeFile --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 891bb5df567..16f14769591 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -36,10 +36,14 @@ let or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; src = fetch args; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}"; + inherit (recipe.recipe) sha256; + }; in melpaBuild { pname = name; inherit (recipe) version; - inherit src; + inherit recipeFile src; packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; From c266de63eebb690b80ecf3cae59d3d0b56e46aae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 29 Dec 2015 13:24:42 -0600 Subject: [PATCH 694/707] melpa-stable-packages: use recipeFile --- .../editors/emacs-modes/melpa-stable-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 7572c722e33..2dadbae8535 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -38,10 +38,14 @@ let or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; src = fetch args; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}"; + inherit (recipe.recipe) sha256; + }; in melpaBuild { pname = name; inherit (recipe) version; - inherit src; + inherit recipeFile src; packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; From 281b584e4acbafde94695dfdf7c25f8718469313 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 29 Dec 2015 13:55:54 +0100 Subject: [PATCH 695/707] liquidwar: use stdenv This replaces use of builderDefsPackage (#4210). --- pkgs/games/liquidwar/default.nix | 52 +++++++++++++------------------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 22 insertions(+), 32 deletions(-) diff --git a/pkgs/games/liquidwar/default.nix b/pkgs/games/liquidwar/default.nix index 602daa1ee86..ce346459201 100644 --- a/pkgs/games/liquidwar/default.nix +++ b/pkgs/games/liquidwar/default.nix @@ -1,11 +1,20 @@ -a @ { xproto, libX11, libXrender +{ stdenv, fetchurl, xproto, libX11, libXrender , gmp, mesa, libjpeg, libpng -, expat, gettext, perl +, expat, gettext, perl, guile , SDL, SDL_image, SDL_mixer, SDL_ttf , curl, sqlite -, libogg, libvorbis, libcaca, csound, cunit, ... } : -let - buildInputs = with a; [ +, libogg, libvorbis, libcaca, csound, cunit } : + +stdenv.mkDerivation rec { + name = "liquidwar6-${version}"; + version = "0.6.3902"; + + src = fetchurl { + url = "mirror://gnu/liquidwar6/${name}.tar.gz"; + sha256 = "1976nnl83d8wspjhb5d5ivdvdxgb8lp34wp54jal60z4zad581fn"; + }; + + buildInputs = [ xproto libX11 gmp guile mesa libjpeg libpng expat gettext perl @@ -14,34 +23,15 @@ let libogg libvorbis csound libXrender libcaca cunit ]; -in -rec { - name = "liquidwar6-${meta.version}"; - src = a.fetchurl { - url = "mirror://gnu/liquidwar6/${name}.tar.gz"; - sha256 = "1976nnl83d8wspjhb5d5ivdvdxgb8lp34wp54jal60z4zad581fn"; - }; + # To avoid problems finding SDL_types.h. + configureFlags = [ "CFLAGS=-I${SDL}/include/SDL" ]; - inherit buildInputs; - configureFlags = []; - - /* doConfigure should be removed if not needed */ - phaseNames = ["setVars" "doConfigure" "doMakeInstall"]; - - setVars = a.noDepEntry ('' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${a.SDL}/include/SDL" - ''); - - meta = { + meta = with stdenv.lib; { description = "Quick tactics game"; - maintainers = [ - a.lib.maintainers.raskin - ]; - platforms = with a.lib.platforms; - linux; - homepage = "http://www.gnu.org/software/liquidwar6/"; - version = "0.6.3902"; - updateWalker=true; + homepage = "http://www.gnu.org/software/liquidwar6/"; + maintainers = [ maintainers.raskin ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e8ceb32a499..5b90ab3e8b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14139,7 +14139,7 @@ let lincity_ng = callPackage ../games/lincity/ng.nix {}; - liquidwar = builderDefsPackage (callPackage ../games/liquidwar) { + liquidwar = callPackage ../games/liquidwar { guile = guile_1_8; }; From 73184f5f59db0ecb46d09cf6a26111493496c1ea Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 29 Dec 2015 15:16:12 +0100 Subject: [PATCH 696/707] stardust: use stdenv This replaces use of builderDefsPackage (#4210). --- pkgs/games/stardust/default.nix | 77 ++++++++++----------------------- 1 file changed, 23 insertions(+), 54 deletions(-) diff --git a/pkgs/games/stardust/default.nix b/pkgs/games/stardust/default.nix index c7ee0df6a7a..aa68da6b73d 100644 --- a/pkgs/games/stardust/default.nix +++ b/pkgs/games/stardust/default.nix @@ -1,62 +1,31 @@ -x@{builderDefsPackage - , zlib, libtiff, libxml2, SDL, xproto, libX11, libXi, inputproto, libXmu - , libXext, xextproto, mesa - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; +{ stdenv, fetchurl, zlib, libtiff, libxml2, SDL, xproto, libX11 +, libXi, inputproto, libXmu, libXext, xextproto, mesa }: - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="stardust"; - version="0.1.13"; - name="${baseName}-${version}"; - url="http://iwar.free.fr/IMG/gz/${name}.tar.gz"; - hash="19rs9lz5y5g2yiq1cw0j05b11digw40gar6rw8iqc7bk3s8355xp"; - }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.hash; +stdenv.mkDerivation rec { + name = "stardust-${version}"; + version = "0.1.13"; + + src = fetchurl { + url = "http://iwar.free.fr/IMG/gz/${name}.tar.gz"; + sha256 = "19rs9lz5y5g2yiq1cw0j05b11digw40gar6rw8iqc7bk3s8355xp"; }; - inherit (sourceInfo) name version; - inherit buildInputs; - - /* doConfigure should be removed if not needed */ - phaseNames = ["doConfigure" "fixPaths" "doMakeInstall"]; - - configureFlags = [ - "--bindir=$out/bin" - "--datadir=$out/share" - ]; - - makeFlags = [ - "bindir=$out/bin" - "datadir=$out/share" + buildInputs = [ + zlib libtiff libxml2 SDL xproto libX11 libXi inputproto + libXmu libXext xextproto mesa ]; - fixPaths = a.fullDepEntry ('' - sed -e "s@#define PACKAGE .*@#define PACKAGE \"stardust\"@" -i config.h - '') ["minInit"]; + installFlags = [ "bindir=\${out}/bin" ]; - meta = { + postConfigure = '' + substituteInPlace config.h \ + --replace '#define PACKAGE ""' '#define PACKAGE "stardust"' + ''; + + meta = with stdenv.lib; { description = "Space flight simulator"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; - passthru = { - updateInfo = { - downloadPage = "http://iwar.free.fr/article.php3?id_article=6"; - }; - }; -}) x - +} From b9f1140e4d14ef91a05e0e1eeda57b84fff5f627 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 29 Dec 2015 15:39:45 +0100 Subject: [PATCH 697/707] atanks: use stdenv This replaces use of builderDefsPackage (#4210). --- pkgs/games/atanks/default.nix | 65 +++++++++--------------------- pkgs/games/atanks/default.upstream | 5 --- 2 files changed, 19 insertions(+), 51 deletions(-) delete mode 100644 pkgs/games/atanks/default.upstream diff --git a/pkgs/games/atanks/default.nix b/pkgs/games/atanks/default.nix index 9ebfb724779..4b9b097bbb7 100644 --- a/pkgs/games/atanks/default.nix +++ b/pkgs/games/atanks/default.nix @@ -1,53 +1,26 @@ -x@{builderDefsPackage - , allegro - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; +{ stdenv, fetchurl, allegro }: - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="atanks"; - version = "6.2"; - name="${baseName}-${version}"; - project="${baseName}"; - url="mirror://sourceforge/project/${project}/${baseName}/${name}/${name}.tar.gz"; +stdenv.mkDerivation rec { + name = "atanks-${version}"; + version = "6.2"; + + src = fetchurl { + url = "mirror://sourceforge/project/atanks/atanks/${name}/${name}.tar.gz"; sha256 = "1s1lb87ind0y9d6hmfaf1b9wks8q3hd6w5n9dibq75rxqmcfvlpy"; }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.sha256; - }; - inherit (sourceInfo) name version; - inherit buildInputs; + buildInputs = [ allegro ]; - /* doConfigure should be removed if not needed */ - phaseNames = ["fixInstall" "doMakeInstall"]; - makeFlags=[ - "PREFIX=$out/" - ]; - fixInstall = a.fullDepEntry ('' - sed -e "s@INSTALL=.*bin/install @INSTALL=install @" -i Makefile - sed -e "s@-g 0 -m ... -o 0@@" -i Makefile - sed -e 's@/usr/@'"$out"'@g' -i Makefile - '') ["doUnpack" "minInit"]; - - meta = { + patchPhase = '' + substituteInPlace Makefile --replace /usr $out + ''; + + makeFlags = [ "PREFIX=$(out)/" "INSTALL=install" ]; + + meta = with stdenv.lib; { description = "Atomic Tanks ballistics game"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - downloadPage = "http://sourceforge.net/projects/atanks/files/atanks/"; - inherit version; + homepage = http://atanks.sourceforge.net/; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; -}) x - +} diff --git a/pkgs/games/atanks/default.upstream b/pkgs/games/atanks/default.upstream deleted file mode 100644 index f52364b3427..00000000000 --- a/pkgs/games/atanks/default.upstream +++ /dev/null @@ -1,5 +0,0 @@ -url http://sourceforge.net/projects/atanks/files/atanks/ -version_link 'atanks[-][0-9.]+/$' -version_link '[.]tar[.][a-z0-9]+/download' -SF_redirect -do_overwrite () { do_overwrite_just_version; } From aca3851b88c995e0cbb42bcf3822f5202fec7648 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 29 Dec 2015 16:24:48 +0100 Subject: [PATCH 698/707] tbe: r2048 -> 0.9.2.1 Also replace use of builderDefsPackage (#4210). --- pkgs/games/the-butterfly-effect/default.nix | 76 ++++++--------------- 1 file changed, 20 insertions(+), 56 deletions(-) diff --git a/pkgs/games/the-butterfly-effect/default.nix b/pkgs/games/the-butterfly-effect/default.nix index 3cf91e11a55..8775fb103d8 100644 --- a/pkgs/games/the-butterfly-effect/default.nix +++ b/pkgs/games/the-butterfly-effect/default.nix @@ -1,64 +1,28 @@ -x@{builderDefsPackage - , qt4, box2d, which - ,fetchsvn, cmake - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - ["fetchsvn"]; +{ stdenv, fetchurl, qt4, box2d, which, cmake }: - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="tbe"; - revision="2048"; - version="r${revision}"; - name="${baseName}-${version}"; - url="https://tbe.svn.sourceforge.net/svnroot/tbe/trunk"; - hash="19pqpkil4r5y9j4nszkbs70lq720nvqw8g8magd8nf2n3l9nqm51"; +stdenv.mkDerivation rec { + name = "tbe-${version}"; + version = "0.9.2.1"; + + src = fetchurl { + url = "https://github.com/kaa-ching/tbe/archive/v${version}.tar.gz"; + sha256 = "1cs4q9qiakfd2m1lvfsvfgf8yvhxzmc06glng5d80piwyn6ymzxg"; }; -in -rec { - srcDrv = a.fetchsvn { - url = sourceInfo.url; - sha256 = sourceInfo.hash; - rev = sourceInfo.revision; - }; - src = srcDrv + "/"; - inherit (sourceInfo) name version; - inherit buildInputs; + buildInputs = [ qt4 box2d which cmake ]; - phaseNames = ["setVars" "doCmake" "doMakeInstall" "doDeploy"]; - - setVars = a.noDepEntry '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${a.box2d}/include/Box2D" + installPhase = '' + make DESTDIR=.. install + mkdir -p $out/bin + cp ../usr/games/tbe $out/bin + cp -r ../usr/share $out/ ''; - doDeploy = a.fullDepEntry '' - mkdir -p "$out/share/tbe" - cp -r . "$out/share/tbe/build-dir" - mkdir -p "$out/bin" - echo '#!${a.stdenv.shell}' >> "$out/bin/tbe" - echo "$out/share/tbe/build-dir/tbe \"\$@\"" >> "$out/bin/tbe" - chmod a+x "$out/bin/tbe" - '' ["minInit" "doMake" "defEnsureDir"]; - - meta = { + meta = with stdenv.lib; { description = "A physics-based game vaguely similar to Incredible Machine"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - license = a.stdenv.lib.licenses.gpl2; + homepage = http://the-butterfly-effect.org/; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl2; }; - passthru = { - inherit srcDrv; - updateInfo = { - downloadPage = "http://sourceforge.net/projects/tbe/files/"; - }; - }; -}) x +} From a04916cdc48f5e1a993eb7c48d65a6c816569d94 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 29 Dec 2015 17:02:16 +0100 Subject: [PATCH 699/707] sauerbraten: use stdenv This replaces use of builderDefsPackage (#4210). --- pkgs/games/sauerbraten/default.nix | 101 ++++++++++++----------------- 1 file changed, 40 insertions(+), 61 deletions(-) diff --git a/pkgs/games/sauerbraten/default.nix b/pkgs/games/sauerbraten/default.nix index 8f3fb53f7e3..61a9310ae21 100644 --- a/pkgs/games/sauerbraten/default.nix +++ b/pkgs/games/sauerbraten/default.nix @@ -1,77 +1,56 @@ -x@{builderDefsPackage - , fetchsvn, mesa, SDL, SDL_image, SDL_mixer - , libpng, zlib, libjpeg, imagemagick, libX11 - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - ["fetchsvn"]; +{ stdenv, fetchsvn, mesa, SDL, SDL_image, SDL_mixer +, libpng, zlib, libjpeg, imagemagick, libX11 +}: - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="sauerbraten"; - version="5000"; - name="${baseName}-r${version}"; - url="https://svn.code.sf.net/p/sauerbraten/code"; - hash="17libj7dslprlwppdk3vyxdcigbsa4czln8gdyz9j264m11z1cbh"; - }; -in -rec { - srcDrv = a.fetchsvn { - url = sourceInfo.url; - sha256 = sourceInfo.hash; - rev = sourceInfo.version; +stdenv.mkDerivation rec { + name = "sauerbraten-r${version}"; + version = "5000"; + + src = fetchsvn { + url = "https://svn.code.sf.net/p/sauerbraten/code"; + sha256 = "17libj7dslprlwppdk3vyxdcigbsa4czln8gdyz9j264m11z1cbh"; + rev = version; }; - src = srcDrv + "/"; + buildInputs = [ + mesa SDL SDL_image SDL_mixer libpng zlib libjpeg imagemagick + libX11 + ]; - inherit (sourceInfo) name version; - inherit buildInputs; - - phaseNames = ["setVars" "doMakeInstall" "doCreateScripts"]; - - setVars = a.noDepEntry '' + preBuild = '' export NIX_LDFLAGS="$NIX_LDFLAGS -lX11" + pushd src ''; - doUnpack = a.fullDepEntry '' - mkdir -p $out/share/sauerbraten/build-dir - ln -s $out/share/sauerbraten/build-dir - cd $out/share/sauerbraten/build-dir - (cd ${src}; find . -type d) | tail -n +2 | xargs -L 1 mkdir - (cd ${src}; find . -type f) | while read; do ln -s ${src}/"$REPLY" "$(dirname "$REPLY")"; done - cd src - ls - make clean - sed -e '/[.]h[.]gch/,/-o/s@-o@-x c++-header -o@' -i Makefile - '' ["minInit" "addInputs" "defEnsureDir"]; - - doCreateScripts = a.fullDepEntry '' - cd .. - mkdir -p $out/bin - echo '#! /bin/sh' >> $out/bin/sauerbraten_server - echo 'cd "'"$out"'/share/sauerbraten/build-dir"' >> $out/bin/sauerbraten_server - echo './bin_unix/native_server "$@"' >> $out/bin/sauerbraten_server - echo '#! /bin/sh' >> $out/bin/sauerbraten_client - echo 'cd "'"$out"'/share/sauerbraten/build-dir"' >> $out/bin/sauerbraten_client - echo './bin_unix/native_client "$@"' >> $out/bin/sauerbraten_client + installPhase = '' + popd + mkdir -p $out/bin $out/share/sauerbraten $out/share/doc/sauerbraten + cp -rv "docs/"* $out/share/doc/sauerbraten/ + cp -v src/sauer_client src/sauer_server $out/share/sauerbraten/ + cp -rv packages $out/share/sauerbraten/ + cp -rv data $out/share/sauerbraten/ + cat > $out/bin/sauerbraten_server < $out/bin/sauerbraten_client < Date: Tue, 29 Dec 2015 15:29:35 +0100 Subject: [PATCH 700/707] ding: init at 1.8 (close #11989) vcunat improved meta. --- lib/maintainers.nix | 1 + pkgs/applications/misc/ding/default.nix | 53 +++++++++++++++++++++++++ pkgs/applications/misc/ding/dict.patch | 26 ++++++++++++ pkgs/top-level/all-packages.nix | 5 +++ 4 files changed, 85 insertions(+) create mode 100644 pkgs/applications/misc/ding/default.nix create mode 100644 pkgs/applications/misc/ding/dict.patch diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 610d399b906..9918ae61537 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -99,6 +99,7 @@ ericsagnes = "Eric Sagnes "; erikryb = "Erik Rybakken "; ertes = "Ertugrul Söylemez "; + exi = "Reno Reckling "; exlevan = "Alexey Levan "; falsifian = "James Cook "; flosse = "Markus Kohlhase "; diff --git a/pkgs/applications/misc/ding/default.nix b/pkgs/applications/misc/ding/default.nix new file mode 100644 index 00000000000..a044eb1df92 --- /dev/null +++ b/pkgs/applications/misc/ding/default.nix @@ -0,0 +1,53 @@ +{ aspell, aspellDicts_de, aspellDicts_en, buildEnv, fetchurl, fortune, gnugrep, makeWrapper, stdenv, tk, tre }: +let + aspellEnv = buildEnv { + name = "env-ding-aspell"; + paths = [ + aspell + aspellDicts_de + aspellDicts_en + ]; + }; +in +stdenv.mkDerivation rec { + name = "ding-1.8"; + + src = fetchurl { + url = "http://ftp.tu-chemnitz.de/pub/Local/urz/ding/${name}.tar.gz"; + sha256 = "00z97ndwmzsgig9q6y98y8nbxy76pyi9qyj5qfpbbck24gakpz5l"; + }; + + buildInputs = [ aspellEnv fortune gnugrep makeWrapper tk tre ]; + + patches = [ ./dict.patch ]; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/share/dict + mkdir -p $out/share/man/man1 + mkdir -p $out/share/applications + mkdir -p $out/share/pixmaps + + for f in ding ding.1; do + sed -i "s@/usr/share@$out/share@g" "$f" + done + + sed -i "s@/usr/bin/fortune@fortune@g" ding + + cp ding $out/bin/ + cp de-en.txt $out/share/dict/ + cp ding.1 $out/share/man/man1/ + cp ding.png $out/share/pixmaps/ + cp ding.desktop $out/share/applications/ + + wrapProgram $out/bin/ding --prefix PATH : ${gnugrep}/bin:${aspellEnv}/bin:${tk}/bin:${fortune}/bin --prefix ASPELL_CONF : "\"prefix ${aspellEnv};\"" + ''; + + meta = with stdenv.lib; { + description = "Simple and fast dictionary lookup tool"; + homepage = https://www-user.tu-chemnitz.de/~fri/ding/; + license = licenses.gpl2Plus; + platforms = platforms.linux; # homepage says: unix-like except darwin + maintainers = [ maintainers.exi ]; + }; +} diff --git a/pkgs/applications/misc/ding/dict.patch b/pkgs/applications/misc/ding/dict.patch new file mode 100644 index 00000000000..70ecea10550 --- /dev/null +++ b/pkgs/applications/misc/ding/dict.patch @@ -0,0 +1,26 @@ +Ding persists its settings to $HOME/.dingrc on startup, this sadly includes the path to the dictionary. +On all other distributions, that would be /usr/share/dict/de-en.txt and would hardly ever change. +On nixos, this will indeed change on ever update and would break it for all users. +This just comments out the dictionary path in the .dingrc so the user can still set it if she wants to, but it will not affect normal operations. +--- a/ding ++++ b/ding +@@ -899,7 +899,9 @@ if { ! [info exists ding_version]} { + } + + # Change path of default ger-eng.txt when upgrading from version 1.1 +- if {$searchmeth($i,dictfile) == {/usr/dict/ger-eng.txt} && ++ if {! [info exists searchmeth($i,dictfile)]} { ++ set searchmeth($i,dictfile) $default_searchmeth(0,dictfile) ++ } elseif {$searchmeth($i,dictfile) == {/usr/dict/ger-eng.txt} && + $ding_version == {1.1}} { + set searchmeth($i,dictfile) $default_searchmeth(0,dictfile) + debug 2 "New path and name of ger-eng.txt configured: $default_searchmeth(0,dictfile)" +@@ -5065,7 +5067,7 @@ proc saveOptions {} { + foreach i $searchmpos { + puts $fd "set searchmeth($n,name) {$searchmeth($i,name)}" + puts $fd "set searchmeth($n,type) {$searchmeth($i,type)}" +- puts $fd "set searchmeth($n,dictfile) {$searchmeth($i,dictfile)}" ++ puts $fd "#set searchmeth($n,dictfile) {$searchmeth($i,dictfile)}" + puts $fd "set searchmeth($n,separator) {$searchmeth($i,separator)}" + puts $fd "set searchmeth($n,language1) {$searchmeth($i,language1)}" + puts $fd "set searchmeth($n,language2) {$searchmeth($i,language2)}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 50b2669e96d..6ec1aff8776 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -813,6 +813,11 @@ let dialog = callPackage ../development/tools/misc/dialog { }; + ding = callPackage ../applications/misc/ding { + aspellDicts_de = aspellDicts.de; + aspellDicts_en = aspellDicts.en; + }; + direnv = callPackage ../tools/misc/direnv { }; discount = callPackage ../tools/text/discount { }; From 3a8112f7daf69190f81a5420bef3c5fac4aaf703 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 29 Dec 2015 20:52:19 +0100 Subject: [PATCH 701/707] r-modules: prefer gsl 1.x since 2.x is unsupported by r-gsl-1.9.x --- pkgs/development/r-modules/default.nix | 62 +++++++++++++------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 14be68988f8..ee3a17fdb3c 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -221,53 +221,53 @@ let }; packagesWithNativeBuildInputs = { - abn = [ pkgs.gsl ]; + abn = [ pkgs.gsl_1 ]; adimpro = [ pkgs.imagemagick ]; audio = [ pkgs.portaudio ]; - BayesSAE = [ pkgs.gsl ]; - BayesVarSel = [ pkgs.gsl ]; + BayesSAE = [ pkgs.gsl_1 ]; + BayesVarSel = [ pkgs.gsl_1 ]; BayesXsrc = [ pkgs.readline pkgs.ncurses ]; bigGP = [ pkgs.openmpi ]; BiocCheck = [ pkgs.which ]; Biostrings = [ pkgs.zlib ]; - bnpmr = [ pkgs.gsl ]; - BNSP = [ pkgs.gsl ]; + bnpmr = [ pkgs.gsl_1 ]; + BNSP = [ pkgs.gsl_1 ]; cairoDevice = [ pkgs.gtk2 ]; Cairo = [ pkgs.libtiff pkgs.libjpeg pkgs.cairo ]; Cardinal = [ pkgs.which ]; chebpol = [ pkgs.fftw ]; ChemmineOB = [ pkgs.openbabel pkgs.pkgconfig ]; - cit = [ pkgs.gsl ]; + cit = [ pkgs.gsl_1 ]; curl = [ pkgs.curl ]; devEMF = [ pkgs.xorg.libXft ]; - diversitree = [ pkgs.gsl pkgs.fftw ]; + diversitree = [ pkgs.gsl_1 pkgs.fftw ]; EMCluster = [ pkgs.liblapack ]; fftw = [ pkgs.fftw ]; fftwtools = [ pkgs.fftw ]; Formula = [ pkgs.gmp ]; - geoCount = [ pkgs.gsl ]; + geoCount = [ pkgs.gsl_1 ]; git2r = [ pkgs.zlib pkgs.openssl ]; - GLAD = [ pkgs.gsl ]; + GLAD = [ pkgs.gsl_1 ]; glpkAPI = [ pkgs.gmp pkgs.glpk ]; gmp = [ pkgs.gmp ]; - graphscan = [ pkgs.gsl ]; - gsl = [ pkgs.gsl ]; - HiCseg = [ pkgs.gsl ]; - iBMQ = [ pkgs.gsl ]; + graphscan = [ pkgs.gsl_1 ]; + gsl = [ pkgs.gsl_1 ]; + HiCseg = [ pkgs.gsl_1 ]; + iBMQ = [ pkgs.gsl_1 ]; igraph = [ pkgs.gmp ]; JavaGD = [ pkgs.jdk ]; jpeg = [ pkgs.libjpeg ]; - KFKSDS = [ pkgs.gsl ]; + KFKSDS = [ pkgs.gsl_1 ]; kza = [ pkgs.fftw ]; - libamtrack = [ pkgs.gsl ]; - mixcat = [ pkgs.gsl ]; - mvabund = [ pkgs.gsl ]; + libamtrack = [ pkgs.gsl_1 ]; + mixcat = [ pkgs.gsl_1 ]; + mvabund = [ pkgs.gsl_1 ]; mwaved = [ pkgs.fftw ]; ncdf4 = [ pkgs.netcdf ]; ncdf = [ pkgs.netcdf ]; nloptr = [ pkgs.nlopt ]; openssl = [ pkgs.openssl ]; - outbreaker = [ pkgs.gsl ]; + outbreaker = [ pkgs.gsl_1 ]; pander = [ pkgs.pandoc pkgs.which ]; pbdMPI = [ pkgs.openmpi ]; pbdNCDF4 = [ pkgs.netcdf ]; @@ -278,7 +278,7 @@ let proj4 = [ pkgs.proj ]; qtbase = [ pkgs.qt4 ]; qtpaint = [ pkgs.qt4 ]; - R2GUESS = [ pkgs.gsl ]; + R2GUESS = [ pkgs.gsl_1 ]; R2SWF = [ pkgs.zlib pkgs.libpng pkgs.freetype ]; RAppArmor = [ pkgs.libapparmor ]; rapportools = [ pkgs.which ]; @@ -286,9 +286,9 @@ let rbamtools = [ pkgs.zlib ]; rcdd = [ pkgs.gmp ]; RcppCNPy = [ pkgs.zlib ]; - RcppGSL = [ pkgs.gsl ]; + RcppGSL = [ pkgs.gsl_1 ]; RcppOctave = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre pkgs.octave ]; - RcppZiggurat = [ pkgs.gsl ]; + RcppZiggurat = [ pkgs.gsl_1 ]; rgdal = [ pkgs.proj pkgs.gdal ]; rgeos = [ pkgs.geos ]; rggobi = [ pkgs.ggobi pkgs.gtk2 pkgs.libxml2 ]; @@ -297,11 +297,11 @@ let RGtk2 = [ pkgs.gtk2 ]; Rhpc = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.openmpi pkgs.pcre ]; Rhtslib = [ pkgs.zlib ]; - ridge = [ pkgs.gsl ]; + ridge = [ pkgs.gsl_1 ]; RJaCGH = [ pkgs.zlib ]; rjags = [ pkgs.jags ]; rJava = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre pkgs.jdk pkgs.libzip ]; - Rlibeemd = [ pkgs.gsl ]; + Rlibeemd = [ pkgs.gsl_1 ]; rmatio = [ pkgs.zlib ]; Rmpfr = [ pkgs.gmp pkgs.mpfr ]; Rmpi = [ pkgs.openmpi ]; @@ -326,28 +326,28 @@ let SAVE = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre ]; sdcTable = [ pkgs.gmp pkgs.glpk ]; seewave = [ pkgs.fftw pkgs.libsndfile ]; - SemiCompRisks = [ pkgs.gsl ]; + SemiCompRisks = [ pkgs.gsl_1 ]; seqinr = [ pkgs.zlib ]; seqminer = [ pkgs.zlib pkgs.bzip2 ]; showtext = [ pkgs.zlib pkgs.libpng pkgs.icu pkgs.freetype ]; - simplexreg = [ pkgs.gsl ]; + simplexreg = [ pkgs.gsl_1 ]; SOD = [ pkgs.cudatoolkit ]; # requres CL/cl.h spate = [ pkgs.fftw ]; sprint = [ pkgs.openmpi ]; ssanv = [ pkgs.proj ]; - stsm = [ pkgs.gsl ]; + stsm = [ pkgs.gsl_1 ]; stringi = [ pkgs.icu ]; - survSNP = [ pkgs.gsl ]; + survSNP = [ pkgs.gsl_1 ]; sysfonts = [ pkgs.zlib pkgs.libpng pkgs.freetype ]; TAQMNGR = [ pkgs.zlib ]; tiff = [ pkgs.libtiff ]; - TKF = [ pkgs.gsl ]; + TKF = [ pkgs.gsl_1 ]; tkrplot = [ pkgs.xorg.libX11 ]; - topicmodels = [ pkgs.gsl ]; + topicmodels = [ pkgs.gsl_1 ]; udunits2 = [ pkgs.udunits pkgs.expat ]; V8 = [ pkgs.v8 ]; - VBLPCM = [ pkgs.gsl ]; - VBmix = [ pkgs.gsl pkgs.fftw pkgs.qt4 ]; + VBLPCM = [ pkgs.gsl_1 ]; + VBmix = [ pkgs.gsl_1 pkgs.fftw pkgs.qt4 ]; WhopGenome = [ pkgs.zlib ]; XBRL = [ pkgs.zlib pkgs.libxml2 ]; xml2 = [ pkgs.libxml2 ]; From ebe4d609ea893bc6720a1242596e0b9e9e63d1b8 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Tue, 29 Dec 2015 23:40:43 +0000 Subject: [PATCH 702/707] supertux: bump to version 0.4.0 --- pkgs/games/super-tux/default.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/games/super-tux/default.nix b/pkgs/games/super-tux/default.nix index 11429cfadd2..163320d8ae2 100644 --- a/pkgs/games/super-tux/default.nix +++ b/pkgs/games/super-tux/default.nix @@ -1,25 +1,19 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer +{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer , curl, gettext, libogg, libvorbis, mesa, openal, physfs, boost, glew , libiconv }: stdenv.mkDerivation rec { name = "supertux-${version}"; - version = "0.3.5a"; + version = "0.4.0"; - src = fetchFromGitHub { - owner = "SuperTux"; - repo = "supertux"; - rev = "v${version}"; - sha256 = "0f522wsv0gx7v1h70x8xznklaqr5bm2l9h7ls9vjywy0z4iy1ahp"; + src = fetchurl { + url = https://github.com/SuperTux/supertux/releases/download/v0.4.0/supertux-0.4.0.tar.bz2; + sha256 = "10ppmy6w77lxj8bdzjahc9bidgl4qgzr9rimn15rnqay84ydx3fi"; }; buildInputs = [ pkgconfig cmake SDL2 SDL2_image SDL2_mixer curl gettext libogg libvorbis mesa openal physfs boost glew libiconv ]; - preConfigure = '' - patchShebangs configure - ''; - postInstall = '' mkdir $out/bin ln -s $out/games/supertux2 $out/bin From 878544e4f6a9b60cad055e1f1e353d3b956f343a Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 29 Dec 2015 21:01:19 -0500 Subject: [PATCH 703/707] perl-5.2{0,2}: remove unnecessary patch for darwin The patch no longer applies on 5.20 and is breaking everything. I tried building both 5.20 and 5.22 and both seemed to work fine without the patch. --- .../development/interpreters/perl/5.20/default.nix | 2 +- .../interpreters/perl/5.20/no-libutil.patch | 12 ------------ .../development/interpreters/perl/5.22/default.nix | 2 +- .../interpreters/perl/5.22/no-libutil.patch | 14 -------------- 4 files changed, 2 insertions(+), 28 deletions(-) delete mode 100644 pkgs/development/interpreters/perl/5.20/no-libutil.patch delete mode 100644 pkgs/development/interpreters/perl/5.22/no-libutil.patch diff --git a/pkgs/development/interpreters/perl/5.20/default.nix b/pkgs/development/interpreters/perl/5.20/default.nix index 659fad6bb9b..9cc8af5f427 100644 --- a/pkgs/development/interpreters/perl/5.20/default.nix +++ b/pkgs/development/interpreters/perl/5.20/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { ./no-sys-dirs.patch ] ++ optional stdenv.isSunOS ./ld-shared.patch - ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ] ; + ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ]; # There's an annoying bug on sandboxed Darwin in Perl's Cwd.pm where it looks for pwd # in /bin/pwd and /usr/bin/pwd and then falls back on just "pwd" if it can't get them diff --git a/pkgs/development/interpreters/perl/5.20/no-libutil.patch b/pkgs/development/interpreters/perl/5.20/no-libutil.patch deleted file mode 100644 index 68d44612bfe..00000000000 --- a/pkgs/development/interpreters/perl/5.20/no-libutil.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru -x '*~' perl-5.14.2-orig/Configure perl-5.14.2/Configure ---- perl-5.14.2-orig/Configure 2011-09-26 11:44:34.000000000 +0200 -+++ perl-5.14.2/Configure 2012-02-16 17:24:50.779839039 +0100 -@@ -1368,7 +1368,7 @@ - : List of libraries we want. - : If anyone needs extra -lxxx, put those in a hint file. - libswanted="socket bind inet nsl nm ndbm gdbm dbm db malloc dl ld sun" --libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" -+libswanted="$libswanted m crypt sec c cposix posix ucb bsd BSD" - : We probably want to search /usr/shlib before most other libraries. - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. - glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` diff --git a/pkgs/development/interpreters/perl/5.22/default.nix b/pkgs/development/interpreters/perl/5.22/default.nix index 53e777c19a1..34a26023adf 100644 --- a/pkgs/development/interpreters/perl/5.22/default.nix +++ b/pkgs/development/interpreters/perl/5.22/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { ./no-sys-dirs.patch ] ++ optional stdenv.isSunOS ./ld-shared.patch - ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ]; + ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ]; # Build a thread-safe Perl with a dynamic libperls.o. We need the # "installstyle" option to ensure that modules are put under diff --git a/pkgs/development/interpreters/perl/5.22/no-libutil.patch b/pkgs/development/interpreters/perl/5.22/no-libutil.patch deleted file mode 100644 index d6356a52437..00000000000 --- a/pkgs/development/interpreters/perl/5.22/no-libutil.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/Configure b/Configure -index 0a405d3..1871298 100755 ---- a/Configure -+++ b/Configure -@@ -1455,7 +1455,7 @@ libswanted_uselargefiles='' - : List of libraries we want. - : If anyone needs extra -lxxx, put those in a hint file. - libswanted="cl pthread socket bind inet nsl nm ndbm gdbm dbm db malloc dl ld" --libswanted="$libswanted sun m crypt sec util c cposix posix ucb bsd BSD" -+libswanted="$libswanted sun m crypt sec c cposix posix ucb bsd BSD" - : We probably want to search /usr/shlib before most other libraries. - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. - glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` - From cd7612b8419d6f02884927d56718fd41749fe0a1 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Wed, 30 Dec 2015 04:58:29 +0000 Subject: [PATCH 704/707] amazon-image: enable configure-from-userdata and the corresponding VM test --- nixos/modules/virtualisation/amazon-image.nix | 2 +- nixos/modules/virtualisation/amazon-init.nix | 1 - nixos/release.nix | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index bf2364a0459..7ccc9df740e 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -11,7 +11,7 @@ with lib; let cfg = config.ec2; in { - imports = [ ../profiles/headless.nix ./ec2-data.nix ./amazon-grow-partition.nix ]; + imports = [ ../profiles/headless.nix ./ec2-data.nix ./amazon-grow-partition.nix ./amazon-init.nix ]; config = { diff --git a/nixos/modules/virtualisation/amazon-init.nix b/nixos/modules/virtualisation/amazon-init.nix index 21cbbfda0b6..96cd57e6db5 100644 --- a/nixos/modules/virtualisation/amazon-init.nix +++ b/nixos/modules/virtualisation/amazon-init.nix @@ -44,7 +44,6 @@ let nixos-rebuild switch ''; in { - imports = [ "${modulesPath}/virtualisation/amazon-image.nix" ]; boot.postBootCommands = '' ${bootScript} & ''; diff --git a/nixos/release.nix b/nixos/release.nix index 2dc3f9efc71..d7c736d66a9 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -223,7 +223,7 @@ in rec { tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; - #tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; + tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; tests.firefox = callTest tests/firefox.nix {}; tests.firewall = callTest tests/firewall.nix {}; tests.fleet = hydraJob (import tests/fleet.nix { system = "x86_64-linux"; }); From fff938f72a7c18173c457cac38f2c34727f2ba93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 30 Dec 2015 10:59:02 +0100 Subject: [PATCH 705/707] liferea: maintenance update 1.10.16 -> 1.10.17 Also refactor meta. --- .../networking/newsreaders/liferea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/newsreaders/liferea/default.nix b/pkgs/applications/networking/newsreaders/liferea/default.nix index def45c7e756..7c148e3de41 100644 --- a/pkgs/applications/networking/newsreaders/liferea/default.nix +++ b/pkgs/applications/networking/newsreaders/liferea/default.nix @@ -6,14 +6,14 @@ }: let pname = "liferea"; - version = "1.10.16"; + version = "1.10.17"; in stdenv.mkDerivation rec { name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2"; - sha256 = "0b8cvlyiamc4hwjcxzs0h3mk3gxnmnwyi79mjv36601xgfjs5f9j"; + sha256 = "0svgl50w3hai31n5sm42sl0cd86c32cka0xzfy4r8gi0lyjdjxyx"; }; buildInputs = with gst_all_1; [ @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with stdenv.lib; { description = "A GTK-based news feed agregator"; homepage = http://lzone.de/liferea/; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [ vcunat romildo ]; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ vcunat romildo ]; + platforms = platforms.linux; longDescription = '' Liferea (Linux Feed Reader) is an RSS/RDF feed reader. From 8627b268746aebd2fda1f386647e5ff12bcfee95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 30 Dec 2015 11:40:44 +0100 Subject: [PATCH 706/707] libpng-1.2: security update 1.2.54 -> 1.2.55 It should finally fix #11030 and CVE-2015-8126 for 1.2. --- pkgs/development/libraries/libpng/12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix index d2fa6b184d6..7ae3d0e1d68 100644 --- a/pkgs/development/libraries/libpng/12.nix +++ b/pkgs/development/libraries/libpng/12.nix @@ -3,11 +3,11 @@ assert !(stdenv ? cross) -> zlib != null; stdenv.mkDerivation rec { - name = "libpng-1.2.54"; + name = "libpng-1.2.55"; src = fetchurl { url = "mirror://sourceforge/libpng/${name}.tar.xz"; - sha256 = "0wnjy7gqn0f24qrlggs7kl0ij59by413j1xmqp12n3vqh9j531fg"; + sha256 = "0zkra0b9lrpk2axassdgkqinmc2ba6b473sm52xbpyknaqs2fljy"; }; propagatedBuildInputs = [ zlib ]; From 468f698f609e123bb0ffae67181d07ac99eb2204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 30 Dec 2015 12:06:00 +0100 Subject: [PATCH 707/707] rsync: security update 3.1.1 -> 3.1.2 This should fix CVE-2014-9512. https://download.samba.org/pub/rsync/src/rsync-3.1.2-NEWS --- pkgs/applications/networking/sync/rsync/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix index 5e09beb4c47..c13bb1b329d 100644 --- a/pkgs/applications/networking/sync/rsync/default.nix +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -7,18 +7,18 @@ assert enableACLs -> acl != null; stdenv.mkDerivation rec { name = "rsync-${version}"; - version = "3.1.1"; + version = "3.1.2"; mainSrc = fetchurl { # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 url = "mirror://samba/rsync/src/rsync-${version}.tar.gz"; - sha256 = "0896iah6w72q5izpxgkai75bn40dqkqifi2ivcxjzr2zrx7kdr3x"; + sha256 = "1hm1q04hz15509f0p9bflw4d6jzfvpm1d36dxjwihk1wzakn5ypc"; }; patchesSrc = fetchurl { # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 url = "mirror://samba/rsync/rsync-patches-${version}.tar.gz"; - sha256 = "0iij996xbyn20yr4w3kv3rw3cx4jwkg2k85x6w5hb5xlgsis8zjl"; + sha256 = "09i3dcl37p22dp75vlnsvx7bm05ggafnrf1zwhf2kbij4ngvxvpd"; }; srcs = [mainSrc] ++ stdenv.lib.optional enableCopyDevicesPatch patchesSrc;